diff --git a/docs/xplat/src/lib/platform-context.ts b/docs/xplat/src/lib/platform-context.ts index ed55943b23..7a1f5183f4 100644 --- a/docs/xplat/src/lib/platform-context.ts +++ b/docs/xplat/src/lib/platform-context.ts @@ -27,16 +27,29 @@ export interface ApiPackageConfig { */ noPackagePrefix?: boolean; /** - * Optional suffix appended to the class name before lowercasing, e.g. - * Angular DV packages append "Component" so `CategoryChart` resolves to - * `igniteui_angular_charts.igxcategorychartcomponent.html`. - * Only applied when `prefixed={true}`. + * When true the class name casing is preserved as-is (no .toLowerCase()). + * New api-docs routes use PascalCase symbol names. + */ + preserveCase?: boolean; + /** + * Preferred class-name suffix used by ApiLink. The generated registry tries + * both the suffixed and unsuffixed names, so this does not mean every API + * symbol is expected to have the suffix. */ classSuffix?: string; + /** + * When true, member anchor names are PascalCase (first letter uppercased). + * Blazor API docs use PascalCase anchors. + */ + pascalCaseMembers?: boolean; } export interface PlatformContext { name: PlatformName; + /** Optional compact ApiLink symbol index loaded by the docs host at build time. */ + apiLinkIndex?: { + symbols?: Record; + }; /** Lower-case slug used in URLs, e.g. "angular" */ lower: string; /** Component class prefix, e.g. "Igx" / "Igr" / "Igc" / "Igb" */ @@ -67,23 +80,81 @@ export interface PlatformContext { }; } +function getBuildMode(): string { + return process.env.DOCS_ENV ?? process.env.NODE_ENV ?? 'development'; +} + +function getApiDocsBaseUrl(): string { + const value = process.env.API_DOCS_BASE_URL + ?? (getBuildMode() === 'staging' + ? 'https://staging.infragistics.com/api' + : getBuildMode() === 'production' + ? 'https://www.infragistics.com/api' + : 'https://staging.infragistics.com/api'); + const trimmed = value.replace(/\/+$/, ''); + return trimmed.endsWith('/api') ? trimmed : `${trimmed}/api`; +} + +const API_DOCS_BASE_URL = getApiDocsBaseUrl(); + +function getApiLinkIndexName(): string { + return process.env.API_LINK_INDEX_VERSION + ?? (getBuildMode() === 'production' ? 'prod-latest' : 'staging-latest'); +} + +function apiDocsPlatformPath(platform: PlatformName): string { + return platform === 'WebComponents' ? 'webcomponents' : platform.toLowerCase(); +} + +function apiDocRoot(platform: PlatformName, packageId: string): string { + return `${API_DOCS_BASE_URL}/${apiDocsPlatformPath(platform)}/${packageId}/latest`; +} + +function apiPackage(platform: PlatformName, packageId: string, options: Partial = {}): ApiPackageConfig { + return { + docRoot: apiDocRoot(platform, packageId), + packageId, + noPackagePrefix: true, + preserveCase: true, + ...options, + }; +} + +function loadApiLinkIndex(platform: PlatformName): PlatformContext['apiLinkIndex'] { + try { + const file = path.resolve( + process.cwd(), + 'src', + 'data', + 'api-link-index', + apiDocsPlatformPath(platform), + `${getApiLinkIndexName()}.json` + ); + if (!fs.existsSync(file)) return undefined; + return JSON.parse(fs.readFileSync(file, 'utf-8')); + } catch { + return undefined; + } +} + const PLATFORMS: Record = { Angular: { name: 'Angular', + apiLinkIndex: loadApiLinkIndex('Angular'), lower: 'angular', prefix: 'Igx', productName: 'Ignite UI for Angular', productSpinal: 'ignite-ui-angular', apiPackages: { - core: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest', packageId: 'igniteui-angular', noPackagePrefix: true }, - charts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/api/docs/typescript/latest', packageId: 'igniteui_angular_charts', classSuffix: 'Component' }, - grids: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest', packageId: 'igniteui-angular-grids', noPackagePrefix: true }, - gauges: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/api/docs/typescript/latest', packageId: 'igniteui_angular_gauges', classSuffix: 'Component' }, - maps: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/api/docs/typescript/latest', packageId: 'igniteui_angular_maps', classSuffix: 'Component' }, - excel: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/api/docs/typescript/latest', packageId: 'igniteui_angular_excel', classSuffix: 'Component' }, - spreadsheet: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/api/docs/typescript/latest', packageId: 'igniteui_angular_spreadsheet', classSuffix: 'Component' }, - inputs: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest', packageId: 'igniteui-angular', noPackagePrefix: true }, - layouts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest', packageId: 'igniteui-angular', noPackagePrefix: true }, + core: apiPackage('Angular', 'igniteui-angular', { classSuffix: 'Component' }), + charts: apiPackage('Angular', 'igniteui-angular-charts', { classSuffix: 'Component' }), + grids: apiPackage('Angular', 'igniteui-angular', { classSuffix: 'Component' }), + gauges: apiPackage('Angular', 'igniteui-angular-gauges', { classSuffix: 'Component' }), + maps: apiPackage('Angular', 'igniteui-angular-maps', { classSuffix: 'Component' }), + excel: apiPackage('Angular', 'igniteui-angular-excel', { classSuffix: 'Component' }), + spreadsheet: apiPackage('Angular', 'igniteui-angular-spreadsheet', { classSuffix: 'Component' }), + inputs: apiPackage('Angular', 'igniteui-angular', { classSuffix: 'Component' }), + layouts: apiPackage('Angular', 'igniteui-angular', { classSuffix: 'Component' }), }, packages: { common: 'igniteui-angular', @@ -100,21 +171,23 @@ const PLATFORMS: Record = { }, React: { name: 'React', + apiLinkIndex: loadApiLinkIndex('React'), lower: 'react', prefix: 'Igr', productName: 'Ignite UI for React', productSpinal: 'ignite-ui-react', apiPackages: { - core: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/docs/typescript/latest', packageId: 'igniteui-react' }, - charts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_charts' }, - grids: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/docs/typescript/latest', packageId: 'igniteui-react-grids' }, - gauges: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_gauges' }, - maps: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_maps' }, - inputs: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_inputs' }, - layouts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_layouts' }, - excel: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_excel' }, - spreadsheet: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_spreadsheet' }, - datasources: { docRoot: 'https://www.infragistics.com/products/ignite-ui-react/api/docs/typescript/latest', packageId: 'igniteui_react_datasources' }, + core: apiPackage('React', 'igniteui-react'), + charts: apiPackage('React', 'igniteui-react-charts'), + grids: apiPackage('React', 'igniteui-react-grids'), + gauges: apiPackage('React', 'igniteui-react-gauges'), + maps: apiPackage('React', 'igniteui-react-maps'), + inputs: apiPackage('React', 'igniteui-react-inputs'), + layouts: apiPackage('React', 'igniteui-react-layouts'), + excel: apiPackage('React', 'igniteui-react-excel'), + spreadsheet: apiPackage('React', 'igniteui-react-spreadsheet'), + datasources: apiPackage('React', 'igniteui-react-datasources'), + dockmanager: apiPackage('React', 'igniteui-react-dockmanager'), }, packages: { common: '@infragistics/igniteui-react', @@ -131,21 +204,24 @@ const PLATFORMS: Record = { }, WebComponents: { name: 'WebComponents', + apiLinkIndex: loadApiLinkIndex('WebComponents'), lower: 'webcomponents', prefix: 'Igc', productName: 'Ignite UI for Web Components', productSpinal: 'ignite-ui-web-components', apiPackages: { - core: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/docs/typescript/latest', packageId: 'igniteui-webcomponents' }, - charts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_charts' }, - grids: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_data_grids' }, - gauges: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_gauges' }, - maps: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_maps' }, - inputs: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_inputs' }, - layouts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_layouts' }, - excel: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_excel' }, - spreadsheet: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_spreadsheet' }, - datasources: { docRoot: 'https://www.infragistics.com/products/ignite-ui-web-components/api/docs/typescript/latest', packageId: 'igniteui_webcomponents_datasources' }, + core: apiPackage('WebComponents', 'igniteui-webcomponents', { classSuffix: 'Component' }), + charts: apiPackage('WebComponents', 'igniteui-webcomponents-charts', { classSuffix: 'Component' }), + grids: apiPackage('WebComponents', 'igniteui-webcomponents-grids', { classSuffix: 'Component' }), + gauges: apiPackage('WebComponents', 'igniteui-webcomponents-gauges', { classSuffix: 'Component' }), + maps: apiPackage('WebComponents', 'igniteui-webcomponents-maps', { classSuffix: 'Component' }), + inputs: apiPackage('WebComponents', 'igniteui-webcomponents-inputs', { classSuffix: 'Component' }), + layouts: apiPackage('WebComponents', 'igniteui-webcomponents-layouts', { classSuffix: 'Component' }), + excel: apiPackage('WebComponents', 'igniteui-webcomponents-excel', { classSuffix: 'Component' }), + spreadsheet: apiPackage('WebComponents', 'igniteui-webcomponents-spreadsheet', { classSuffix: 'Component' }), + datasources: apiPackage('WebComponents', 'igniteui-webcomponents-datasources', { classSuffix: 'Component' }), + dockmanager: apiPackage('WebComponents', 'igniteui-dockmanager', { classSuffix: 'Component' }), + gridlite: apiPackage('WebComponents', 'igniteui-grid-lite', { classSuffix: 'Component' }), }, packages: { common: 'igniteui-webcomponents', @@ -162,18 +238,22 @@ const PLATFORMS: Record = { }, Blazor: { name: 'Blazor', + apiLinkIndex: loadApiLinkIndex('Blazor'), lower: 'blazor', prefix: 'Igb', productName: 'Ignite UI for Blazor', productSpinal: 'ignite-ui-blazor', apiPackages: { - core: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/docs/typescript/latest', packageId: 'igniteui-blazor' }, - charts: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/api/docs/typescript/latest', packageId: 'igniteui_blazor_charts' }, - grids: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/api/docs/typescript/latest', packageId: 'igniteui_blazor_data_grids' }, - gauges: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/api/docs/typescript/latest', packageId: 'igniteui_blazor_gauges' }, - maps: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/api/docs/typescript/latest', packageId: 'igniteui_blazor_maps' }, - excel: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/api/docs/typescript/latest', packageId: 'igniteui_blazor_excel' }, - spreadsheet: { docRoot: 'https://www.infragistics.com/products/ignite-ui-blazor/api/docs/typescript/latest', packageId: 'igniteui_blazor_spreadsheet' }, + core: apiPackage('Blazor', 'IgniteUI.Blazor', { pascalCaseMembers: true }), + charts: apiPackage('Blazor', 'IgniteUI.Blazor', { pascalCaseMembers: true }), + grids: apiPackage('Blazor', 'IgniteUI.Blazor', { pascalCaseMembers: true }), + gauges: apiPackage('Blazor', 'IgniteUI.Blazor', { pascalCaseMembers: true }), + maps: apiPackage('Blazor', 'IgniteUI.Blazor', { pascalCaseMembers: true }), + excel: apiPackage('Blazor', 'IgniteUI.Blazor.Documents.Excel', { pascalCaseMembers: true }), + spreadsheet: apiPackage('Blazor', 'IgniteUI.Blazor', { pascalCaseMembers: true }), + documentsCore: apiPackage('Blazor', 'IgniteUI.Blazor.Documents.Core', { pascalCaseMembers: true }), + lite: apiPackage('Blazor', 'IgniteUI.Blazor.Lite', { pascalCaseMembers: true }), + gridlite: apiPackage('Blazor', 'IgniteUI.Blazor.GridLite', { pascalCaseMembers: true }), }, packages: { common: 'IgniteUI.Blazor', diff --git a/src/data/api-link-index/angular/staging-latest.json b/src/data/api-link-index/angular/staging-latest.json new file mode 100644 index 0000000000..ae59fb2161 --- /dev/null +++ b/src/data/api-link-index/angular/staging-latest.json @@ -0,0 +1 @@ +{"platform":"angular","version":"latest","generatedAt":"2026-06-02T09:18:05.836Z","packages":["igniteui-angular-charts","igniteui-angular-core","igniteui-angular-dashboards","igniteui-angular-excel","igniteui-angular-fdc3","igniteui-angular-gauges","igniteui-angular-inputs","igniteui-angular-layouts","igniteui-angular-maps","igniteui-angular-spreadsheet","igniteui-angular-spreadsheet-chart-adapter"],"symbols":{"AngularRenderer":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/AngularRenderer","k":"class","s":"classes","m":{"constructor":"constructor","rootWrapper":"rootWrapper","addSizeWatcher":"addSizeWatcher","append":"append","appendToBody":"appendToBody","clearTimeout":"clearTimeout","createElement":"createElement","createElementNS":"createElementNS","destroy":"destroy","endCSSQuery":"endCSSQuery","expandTemplate":"expandTemplate","get2DCanvasContext":"get2DCanvasContext","getClearTimeout":"getClearTimeout","getCssDefaultPropertyValue":"getCssDefaultPropertyValue","getCssDefaultValuesForClassCollection":"getCssDefaultValuesForClassCollection","getCurrentDiscovery":"getCurrentDiscovery","getDefaultFontHeight":"getDefaultFontHeight","getExternal":"getExternal","getHeightForFontString":"getHeightForFontString","getPortal":"getPortal","getRequestAnimationFrame":"getRequestAnimationFrame","getResourceString":"getResourceString","getSetTimeout":"getSetTimeout","getSubRenderer":"getSubRenderer","getWrapper":"getWrapper","globalListen":"globalListen","hasBody":"hasBody","hasWindow":"hasWindow","querySelector":"querySelector","removeSizeWatcher":"removeSizeWatcher","runInMainZone":"runInMainZone","setCssQueryFontString":"setCssQueryFontString","setCultureId":"setCultureId","setResourceBundleId":"setResourceBundleId","setTimeout":"setTimeout","startCSSQuery":"startCSSQuery","supportsAnimation":"supportsAnimation","supportsDOMEvents":"supportsDOMEvents","withRenderer":"withRenderer"}}],"AngularWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/AngularWrapper","k":"class","s":"classes","m":{"constructor":"constructor","addClass":"addClass","append":"append","before":"before","clone":"clone","destroy":"destroy","findByClass":"findByClass","focus":"focus","getAttribute":"getAttribute","getChildAt":"getChildAt","getChildCount":"getChildCount","getNativeElement":"getNativeElement","getOffset":"getOffset","getOffsetHelper":"getOffsetHelper","getProperty":"getProperty","getStyleProperty":"getStyleProperty","getText":"getText","height":"height","hide":"hide","listen":"listen","outerHeight":"outerHeight","outerHeightWithMargin":"outerHeightWithMargin","outerWidth":"outerWidth","outerWidthWithMargin":"outerWidthWithMargin","parent":"parent","querySelectorAll":"querySelectorAll","remove":"remove","removeChild":"removeChild","removeChildren":"removeChildren","removeClass":"removeClass","setAttribute":"setAttribute","setOffset":"setOffset","setProperty":"setProperty","setRawPosition":"setRawPosition","setRawSize":"setRawSize","setRawStyleProperty":"setRawStyleProperty","setRawText":"setRawText","setRawXPosition":"setRawXPosition","setRawYPosition":"setRawYPosition","setStyleProperty":"setStyleProperty","setText":"setText","show":"show","unlistenAll":"unlistenAll","width":"width","withRenderer":"withRenderer"}}],"ArrayBox$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/ArrayBox-1","k":"class","s":"classes","m":{"constructor":"constructor","$arrayWrapper":"$arrayWrapper","isFixedSize":"isFixedSize","isReadOnly":"isReadOnly","isSynchronized":"isSynchronized","syncRoot":"syncRoot","$type":"$type","count":"count","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","equals":"equals","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","getHashCode":"getHashCode","indexOf":"indexOf","insert":"insert","insertRange":"insertRange","item":"item","remove":"remove","removeAt":"removeAt","removeRange":"removeRange","reverse":"reverse"}}],"Base":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Base","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"BaseError":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/BaseError","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"BinaryUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/BinaryUtil","k":"class","s":"classes","m":{"constructor":"constructor","getBinary":"getBinary","isResponseTypeSupported":"isResponseTypeSupported"}}],"Calendar":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Calendar","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","addMonths":"addMonths","addYears":"addYears","equals":"equals","eras":"eras","getDayOfMonth":"getDayOfMonth","getDaysInMonth":"getDaysInMonth","getDaysInYear":"getDaysInYear","getEra":"getEra","getHashCode":"getHashCode","getMonth":"getMonth","getYear":"getYear","memberwiseClone":"memberwiseClone","toDateTime":"toDateTime","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"CollectionAdapter":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/CollectionAdapter","k":"class","s":"classes","m":{"constructor":"constructor","actualContent":"actualContent","collisionChecker":"collisionChecker","addManualItem":"addManualItem","clearManualItems":"clearManualItems","insertManualItem":"insertManualItem","notifyContentChanged":"notifyContentChanged","onQueryChanged":"onQueryChanged","removeManualItem":"removeManualItem","removeManualItemAt":"removeManualItemAt","shiftContentToManual":"shiftContentToManual","syncItems":"syncItems","updateQuery":"updateQuery"}}],"CompareInfo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/CompareInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","compare1":"compare1","compare4":"compare4","compare5":"compare5","equals":"equals","getHashCode":"getHashCode","indexOf1":"indexOf1","indexOf3":"indexOf3","indexOf5":"indexOf5","indexOf6":"indexOf6","memberwiseClone":"memberwiseClone","referenceEquals":"referenceEquals","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic"}}],"CompareUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/CompareUtil","k":"class","s":"classes","m":{"constructor":"constructor","compareTo":"compareTo","compareToObject":"compareToObject"}}],"ComponentRendererAdapter":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/ComponentRendererAdapter","k":"class","s":"classes","m":{"constructor":"constructor","isBlazorRenderer":"isBlazorRenderer","addItemToCollection":"addItemToCollection","clearCollection":"clearCollection","clearContainer":"clearContainer","coerceToEnum":"coerceToEnum","createBrushCollection":"createBrushCollection","createColorCollection":"createColorCollection","createDoubleCollection":"createDoubleCollection","createHandler":"createHandler","createObject":"createObject","disposeHandler":"disposeHandler","ensureExternalObject":"ensureExternalObject","executeMethod":"executeMethod","flushChanges":"flushChanges","forPropertyValueItem":"forPropertyValueItem","getMarkupCollection":"getMarkupCollection","getMarkupTypeMatcher":"getMarkupTypeMatcher","getPropertyValue":"getPropertyValue","getRootObject":"getRootObject","mustManageInMarkup":"mustManageInMarkup","onPendingRef":"onPendingRef","onUIThread":"onUIThread","publicCollectionAsObjectArray":"publicCollectionAsObjectArray","removeItemFromCollection":"removeItemFromCollection","removeRootItem":"removeRootItem","replaceItemInCollection":"replaceItemInCollection","replaceRootItem":"replaceRootItem","resetPropertyOnTarget":"resetPropertyOnTarget","serializeBrush":"serializeBrush","serializeBrushCollection":"serializeBrushCollection","serializeColor":"serializeColor","serializeColorCollection":"serializeColorCollection","serializeDoubleCollection":"serializeDoubleCollection","serializePixelPoint":"serializePixelPoint","serializePixelRect":"serializePixelRect","serializePixelSize":"serializePixelSize","serializePoint":"serializePoint","serializeRect":"serializeRect","serializeSize":"serializeSize","serializeTimespan":"serializeTimespan","setHandler":"setHandler","setOrUpdateCollectionOnTarget":"setOrUpdateCollectionOnTarget","setPropertyValue":"setPropertyValue"}}],"ConvertUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/ConvertUtil","k":"class","s":"classes","m":{"constructor":"constructor","convertToNumber":"convertToNumber","toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toSByte":"toSByte","toSingle":"toSingle","toString1":"toString1","toUInt16":"toUInt16","toUInt32":"toUInt32","toUInt64":"toUInt64"}}],"CultureInfo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/CultureInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","calendar":"calendar","compareInfo":"compareInfo","dateTimeFormat":"dateTimeFormat","name":"name","numberFormat":"numberFormat","twoLetterISOLanguageName":"twoLetterISOLanguageName","currentCulture":"currentCulture","invariantCulture":"invariantCulture","clone":"clone","equals":"equals","getFormat":"getFormat","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getCultureInfo":"getCultureInfo","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"DataVisualizationLocaleCs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleDa":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleDe":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleEn":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleEs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleFr":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleHu":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleIt":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleJa":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleKo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleKo","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleNb":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleNl":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocalePl":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocalePt":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleRo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleSv":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleTr":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleZhHans":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleZhHant":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DataVisualizationLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DateTimeFormat":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DateTimeFormat","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","dateSeparator":"dateSeparator","longDatePattern":"longDatePattern","monthNames":"monthNames","shortDatePattern":"shortDatePattern","shortTimePattern":"shortTimePattern","timeSeparator":"timeSeparator","clone":"clone","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"DictionaryUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/DictionaryUtil","k":"class","s":"classes","m":{"constructor":"constructor","dictionaryCreate":"dictionaryCreate","dictionaryGetDictionary":"dictionaryGetDictionary","dictionaryGetEnumerator":"dictionaryGetEnumerator","dictionaryGetKeys":"dictionaryGetKeys","dictionaryGetValues":"dictionaryGetValues","en":"en"}}],"Enum":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Enum","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"EnumBox":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EnumBox","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","value":"value","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getActualName":"getActualName","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","toDouble":"toDouble","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"EnumerableWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EnumerableWrapper","k":"class","s":"classes","m":{"constructor":"constructor"}}],"EnumerableWrapperObject":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EnumerableWrapperObject","k":"class","s":"classes","m":{"constructor":"constructor"}}],"EnumeratorWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EnumeratorWrapper","k":"class","s":"classes","m":{"constructor":"constructor","next":"next"}}],"EnumeratorWrapperObject":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EnumeratorWrapperObject","k":"class","s":"classes","m":{"constructor":"constructor","next":"next"}}],"EnumUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EnumUtil","k":"class","s":"classes","m":{"constructor":"constructor","enumHasFlag":"enumHasFlag","getEnumValue":"getEnumValue","getFlaggedName":"getFlaggedName","getName":"getName","getNames":"getNames","getValues":"getValues","isDefined":"isDefined","parse":"parse","toDouble":"toDouble","toObject":"toObject","toString":"toString","tryParse$1":"tryParse$1"}}],"EventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/EventArgs","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","empty":"empty","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"FormatException":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/FormatException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"HttpRequestUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/HttpRequestUtil","k":"class","s":"classes","m":{"constructor":"constructor","submit":"submit"}}],"IgCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgEvent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgEvent","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","emit":"emit","remove":"remove"}}],"IgxAsyncCompletedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxAsyncCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancelled":"ngAcceptInputType_cancelled","cancelled":"cancelled","errorMessage":"errorMessage","userState":"userState"}}],"IgxBaseGenericDataSource":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxBaseGenericDataSource","k":"class","s":"classes","m":{"constructor":"constructor","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","findByName":"findByName","queueAutoRefresh":"queueAutoRefresh","_createFromInternal":"_createFromInternal"}}],"IgxCancelEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxCancelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancel":"ngAcceptInputType_cancel","cancel":"cancel"}}],"IgxCancellingMultiScaleImageEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxCancellingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","uri":"uri"}}],"IgxCaptureImageSettings":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxCaptureImageSettings","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_addToClipboard":"ngAcceptInputType_addToClipboard","ngAcceptInputType_format":"ngAcceptInputType_format","addToClipboard":"addToClipboard","format":"format","findByName":"findByName"}}],"IgxChildContentComponent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxChildContentComponent","k":"class","s":"classes","m":{"constructor":"constructor","viewContainer":"viewContainer","ɵcmp":"ɵcmp","ɵfac":"ɵfac","alignItems":"alignItems","display":"display","flexDirection":"flexDirection","template":"template","markChanged":"markChanged"}}],"IgxComponentRendererContainerComponent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxComponentRendererContainerComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","isAngularHost":"isAngularHost","ɵcmp":"ɵcmp","ɵfac":"ɵfac","height":"height","width":"width","clearContainer":"clearContainer","createObject":"createObject","determineInjector":"determineInjector","getRootObject":"getRootObject","getSpecificAnchor":"getSpecificAnchor","replaceRootItem":"replaceRootItem","isEvent":"isEvent"}}],"IgxContentChildCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxContentChildCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxDataContext":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataContext","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","actualItemBrush":"actualItemBrush","i":"i","item":"item","itemBrush":"itemBrush","itemLabel":"itemLabel","legendLabel":"legendLabel","outline":"outline","series":"series","thickness":"thickness","findByName":"findByName"}}],"IgxDataLegendSeriesContext":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataLegendSeriesContext","k":"class","s":"classes","m":{"constructor":"constructor","seriesFamily":"seriesFamily","findByName":"findByName","getSeriesValue":"getSeriesValue","getSeriesValueInfo":"getSeriesValueInfo","getSeriesValues":"getSeriesValues","setSeriesValue":"setSeriesValue","setSeriesValueInfo":"setSeriesValueInfo"}}],"IgxDataLegendSeriesValueInfo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataLegendSeriesValueInfo","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_allowLabels":"ngAcceptInputType_allowLabels","ngAcceptInputType_allowUnits":"ngAcceptInputType_allowUnits","ngAcceptInputType_formatAllowAbbreviation":"ngAcceptInputType_formatAllowAbbreviation","ngAcceptInputType_formatAllowCurrency":"ngAcceptInputType_formatAllowCurrency","ngAcceptInputType_formatAllowDecimal":"ngAcceptInputType_formatAllowDecimal","ngAcceptInputType_formatAllowInteger":"ngAcceptInputType_formatAllowInteger","ngAcceptInputType_formatAllowPercent":"ngAcceptInputType_formatAllowPercent","ngAcceptInputType_formatMaxFractions":"ngAcceptInputType_formatMaxFractions","ngAcceptInputType_formatMinFractions":"ngAcceptInputType_formatMinFractions","ngAcceptInputType_formatUseNegativeColor":"ngAcceptInputType_formatUseNegativeColor","ngAcceptInputType_formatUsePositiveColor":"ngAcceptInputType_formatUsePositiveColor","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isExcludeByDefault":"ngAcceptInputType_isExcludeByDefault","ngAcceptInputType_orderIndex":"ngAcceptInputType_orderIndex","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_valueType":"ngAcceptInputType_valueType","allowLabels":"allowLabels","allowUnits":"allowUnits","formatAllowAbbreviation":"formatAllowAbbreviation","formatAllowCurrency":"formatAllowCurrency","formatAllowDecimal":"formatAllowDecimal","formatAllowInteger":"formatAllowInteger","formatAllowPercent":"formatAllowPercent","formatMaxFractions":"formatMaxFractions","formatMinFractions":"formatMinFractions","formatUseNegativeColor":"formatUseNegativeColor","formatUsePositiveColor":"formatUsePositiveColor","formatWithSeriesColor":"formatWithSeriesColor","index":"index","isExcludeByDefault":"isExcludeByDefault","memberLabel":"memberLabel","memberPath":"memberPath","memberSymbol":"memberSymbol","memberUnit":"memberUnit","orderIndex":"orderIndex","value":"value","valueNegativePrefix":"valueNegativePrefix","valueNegativeSuffix":"valueNegativeSuffix","valuePositivePrefix":"valuePositivePrefix","valuePositiveSuffix":"valuePositiveSuffix","valueType":"valueType","findByName":"findByName","toString":"toString"}}],"IgxDataLegendSummaryColumn":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataLegendSummaryColumn","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_allowLabels":"ngAcceptInputType_allowLabels","ngAcceptInputType_allowUnits":"ngAcceptInputType_allowUnits","ngAcceptInputType_formatAllowAbbreviation":"ngAcceptInputType_formatAllowAbbreviation","ngAcceptInputType_formatAllowCurrency":"ngAcceptInputType_formatAllowCurrency","ngAcceptInputType_formatAllowDecimal":"ngAcceptInputType_formatAllowDecimal","ngAcceptInputType_formatAllowInteger":"ngAcceptInputType_formatAllowInteger","ngAcceptInputType_formatAllowPercent":"ngAcceptInputType_formatAllowPercent","ngAcceptInputType_formatMaxFractions":"ngAcceptInputType_formatMaxFractions","ngAcceptInputType_formatMinFractions":"ngAcceptInputType_formatMinFractions","ngAcceptInputType_formatUseNegativeColor":"ngAcceptInputType_formatUseNegativeColor","ngAcceptInputType_formatUsePositiveColor":"ngAcceptInputType_formatUsePositiveColor","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isExcludeByDefault":"ngAcceptInputType_isExcludeByDefault","ngAcceptInputType_orderIndex":"ngAcceptInputType_orderIndex","ngAcceptInputType_seriesLabels":"ngAcceptInputType_seriesLabels","ngAcceptInputType_seriesUnits":"ngAcceptInputType_seriesUnits","ngAcceptInputType_seriesValues":"ngAcceptInputType_seriesValues","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_valueType":"ngAcceptInputType_valueType","allowLabels":"allowLabels","allowUnits":"allowUnits","formatAllowAbbreviation":"formatAllowAbbreviation","formatAllowCurrency":"formatAllowCurrency","formatAllowDecimal":"formatAllowDecimal","formatAllowInteger":"formatAllowInteger","formatAllowPercent":"formatAllowPercent","formatMaxFractions":"formatMaxFractions","formatMinFractions":"formatMinFractions","formatUseNegativeColor":"formatUseNegativeColor","formatUsePositiveColor":"formatUsePositiveColor","formatWithSeriesColor":"formatWithSeriesColor","index":"index","isExcludeByDefault":"isExcludeByDefault","memberLabel":"memberLabel","memberPath":"memberPath","memberSymbol":"memberSymbol","memberUnit":"memberUnit","orderIndex":"orderIndex","seriesLabels":"seriesLabels","seriesUnits":"seriesUnits","seriesValues":"seriesValues","value":"value","valueNegativePrefix":"valueNegativePrefix","valueNegativeSuffix":"valueNegativeSuffix","valuePositivePrefix":"valuePositivePrefix","valuePositiveSuffix":"valuePositiveSuffix","valueType":"valueType","addLabel":"addLabel","addUnits":"addUnits","addValue":"addValue","findByName":"findByName","toString":"toString"}}],"IgxDataSeriesCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxDataSourceDataProviderSchemaChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceDataProviderSchemaChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_count":"ngAcceptInputType_count","count":"count","schema":"schema"}}],"IgxDataSourceGroupDescription":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_sortDirection":"ngAcceptInputType_sortDirection","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgxDataSourceGroupDescriptionCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgxDataSourcePropertiesRequestedChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourcePropertiesRequestedChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxDataSourceRootSummariesChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceRootSummariesChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxDataSourceRowExpansionChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceRowExpansionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_newState":"ngAcceptInputType_newState","ngAcceptInputType_oldState":"ngAcceptInputType_oldState","ngAcceptInputType_rowIndex":"ngAcceptInputType_rowIndex","newState":"newState","oldState":"oldState","rowIndex":"rowIndex"}}],"IgxDataSourceSchemaChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceSchemaChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_count":"ngAcceptInputType_count","count":"count","schema":"schema"}}],"IgxDataSourceSortDescription":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_sortDirection":"ngAcceptInputType_sortDirection","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgxDataSourceSortDescriptionCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgxDataSourceSummaryDescription":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_operand":"ngAcceptInputType_operand","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgxDataSourceSummaryDescriptionCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDataSourceSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgxDateTimeFormatSpecifier":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDateTimeFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fractionalSecondDigits":"ngAcceptInputType_fractionalSecondDigits","calendar":"calendar","dateStyle":"dateStyle","day":"day","dayPeriod":"dayPeriod","era":"era","formatMatcher":"formatMatcher","fractionalSecondDigits":"fractionalSecondDigits","hour":"hour","hour12":"hour12","hourCycle":"hourCycle","locale":"locale","localeMatcher":"localeMatcher","minute":"minute","month":"month","numberingSystem":"numberingSystem","second":"second","timeStyle":"timeStyle","timeZone":"timeZone","timeZoneName":"timeZoneName","weekDay":"weekDay","year":"year","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgxDoubleValueChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDoubleValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_newValue":"ngAcceptInputType_newValue","ngAcceptInputType_oldValue":"ngAcceptInputType_oldValue","newValue":"newValue","oldValue":"oldValue"}}],"IgxDownloadingMultiScaleImageEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxDownloadingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","image":"image","uri":"uri"}}],"IgxFilterExpressionCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxFilterExpressionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","count":"count","i":"i","onChanged":"onChanged","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","syncTarget":"syncTarget","add":"add","clear":"clear","findByName":"findByName","get":"get","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","set":"set","toArray":"toArray"}}],"IgxFocusEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","fromTarget":"fromTarget","target":"target"}}],"IgxFormatSpecifier":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgxFormatSpecifierCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxFormatSpecifierCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxGenericVirtualDataSource":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxGenericVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","pageRequested":"pageRequested","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","addSchemaProperty":"addSchemaProperty","addSummaryDate":"addSummaryDate","addSummaryDouble":"addSummaryDouble","addSummaryInt":"addSummaryInt","addSummaryString":"addSummaryString","fillColumnBool":"fillColumnBool","fillColumnDate":"fillColumnDate","fillColumnDouble":"fillColumnDouble","fillColumnInt":"fillColumnInt","fillColumnString":"fillColumnString","fillCount":"fillCount","fillGroupEnd":"fillGroupEnd","fillGroupStart":"fillGroupStart","fillGroupValueDate":"fillGroupValueDate","fillGroupValueDouble":"fillGroupValueDouble","fillGroupValueInt":"fillGroupValueInt","fillGroupValueString":"fillGroupValueString","fillPageEnd":"fillPageEnd","fillPageStart":"fillPageStart","findByName":"findByName","queueAutoRefresh":"queueAutoRefresh","_createFromInternal":"_createFromInternal"}}],"IgxGetTileImageUriArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxGetTileImageUriArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_tileLevel":"ngAcceptInputType_tileLevel","ngAcceptInputType_tilePositionX":"ngAcceptInputType_tilePositionX","ngAcceptInputType_tilePositionY":"ngAcceptInputType_tilePositionY","tileImageUri":"tileImageUri","tileLevel":"tileLevel","tilePositionX":"tilePositionX","tilePositionY":"tilePositionY"}}],"IgxHeatTileGenerator":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxHeatTileGenerator","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_blurRadius":"ngAcceptInputType_blurRadius","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_maxBlurRadius":"ngAcceptInputType_maxBlurRadius","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_scaleColorOffsets":"ngAcceptInputType_scaleColorOffsets","ngAcceptInputType_useBlurRadiusAdjustedForZoom":"ngAcceptInputType_useBlurRadiusAdjustedForZoom","ngAcceptInputType_useGlobalMinMax":"ngAcceptInputType_useGlobalMinMax","ngAcceptInputType_useGlobalMinMaxAdjustedForZoom":"ngAcceptInputType_useGlobalMinMaxAdjustedForZoom","ngAcceptInputType_useLogarithmicScale":"ngAcceptInputType_useLogarithmicScale","ngAcceptInputType_useWebWorkers":"ngAcceptInputType_useWebWorkers","ngAcceptInputType_values":"ngAcceptInputType_values","ngAcceptInputType_xValues":"ngAcceptInputType_xValues","ngAcceptInputType_yValues":"ngAcceptInputType_yValues","blurRadius":"blurRadius","logarithmBase":"logarithmBase","maxBlurRadius":"maxBlurRadius","maximumColor":"maximumColor","maximumValue":"maximumValue","minimumColor":"minimumColor","minimumValue":"minimumValue","scaleColorOffsets":"scaleColorOffsets","scaleColors":"scaleColors","useBlurRadiusAdjustedForZoom":"useBlurRadiusAdjustedForZoom","useGlobalMinMax":"useGlobalMinMax","useGlobalMinMaxAdjustedForZoom":"useGlobalMinMaxAdjustedForZoom","useLogarithmicScale":"useLogarithmicScale","useWebWorkers":"useWebWorkers","values":"values","webWorkerInstance":"webWorkerInstance","webWorkerScriptPath":"webWorkerScriptPath","xValues":"xValues","yValues":"yValues","cancelTile":"cancelTile","destroy":"destroy","findByName":"findByName","getTile":"getTile"}}],"IgxHighlightingInfo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxHighlightingInfo","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_isExclusive":"ngAcceptInputType_isExclusive","ngAcceptInputType_isFullRange":"ngAcceptInputType_isFullRange","ngAcceptInputType_isMarker":"ngAcceptInputType_isMarker","ngAcceptInputType_progress":"ngAcceptInputType_progress","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_state":"ngAcceptInputType_state","context":"context","endIndex":"endIndex","isExclusive":"isExclusive","isFullRange":"isFullRange","isMarker":"isMarker","progress":"progress","startIndex":"startIndex","state":"state","findByName":"findByName"}}],"IgxImageCapturedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxImageCapturedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","base64Data":"base64Data","image":"image","settings":"settings"}}],"IgxImageLoadEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxImageLoadEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_status":"ngAcceptInputType_status","data":"data","error":"error","path":"path","status":"status"}}],"IgxKeyEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxKeyEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_alt":"ngAcceptInputType_alt","ngAcceptInputType_ctrl":"ngAcceptInputType_ctrl","ngAcceptInputType_defaultPrevented":"ngAcceptInputType_defaultPrevented","ngAcceptInputType_keyCode":"ngAcceptInputType_keyCode","ngAcceptInputType_modifiers":"ngAcceptInputType_modifiers","ngAcceptInputType_shift":"ngAcceptInputType_shift","alt":"alt","ctrl":"ctrl","defaultPrevented":"defaultPrevented","keyCode":"keyCode","modifiers":"modifiers","originalEvent":"originalEvent","shift":"shift","preventDefault":"preventDefault","stopPropagation":"stopPropagation"}}],"IgxNumberFormatSpecifier":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxNumberFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_maximumFractionDigits":"ngAcceptInputType_maximumFractionDigits","ngAcceptInputType_maximumSignificantDigits":"ngAcceptInputType_maximumSignificantDigits","ngAcceptInputType_minimumFractionDigits":"ngAcceptInputType_minimumFractionDigits","ngAcceptInputType_minimumIntegerDigits":"ngAcceptInputType_minimumIntegerDigits","ngAcceptInputType_minimumSignificantDigits":"ngAcceptInputType_minimumSignificantDigits","ngAcceptInputType_useGrouping":"ngAcceptInputType_useGrouping","compactDisplay":"compactDisplay","currency":"currency","currencyCode":"currencyCode","currencyDisplay":"currencyDisplay","currencySign":"currencySign","locale":"locale","localeMatcher":"localeMatcher","maximumFractionDigits":"maximumFractionDigits","maximumSignificantDigits":"maximumSignificantDigits","minimumFractionDigits":"minimumFractionDigits","minimumIntegerDigits":"minimumIntegerDigits","minimumSignificantDigits":"minimumSignificantDigits","notation":"notation","numberingSystem":"numberingSystem","signDisplay":"signDisplay","style":"style","unit":"unit","unitDisplay":"unitDisplay","useGrouping":"useGrouping","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgxObjectCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxObjectCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxOnClosedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxOnClosedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxOnPopupEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxOnPopupEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxPageRequestedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxPageRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dataSourceId":"ngAcceptInputType_dataSourceId","ngAcceptInputType_isSchemaRequest":"ngAcceptInputType_isSchemaRequest","ngAcceptInputType_pageIndex":"ngAcceptInputType_pageIndex","ngAcceptInputType_pageSize":"ngAcceptInputType_pageSize","ngAcceptInputType_requestId":"ngAcceptInputType_requestId","dataSourceId":"dataSourceId","isSchemaRequest":"isSchemaRequest","pageIndex":"pageIndex","pageSize":"pageSize","requestId":"requestId"}}],"IgxPopupComponent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxPopupComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","ngAcceptInputType_actualElevation":"ngAcceptInputType_actualElevation","ngAcceptInputType_animationDuration":"ngAcceptInputType_animationDuration","ngAcceptInputType_animationEnabled":"ngAcceptInputType_animationEnabled","ngAcceptInputType_animationType":"ngAcceptInputType_animationType","ngAcceptInputType_cornerRadius":"ngAcceptInputType_cornerRadius","ngAcceptInputType_disableHitTestDuringAnimation":"ngAcceptInputType_disableHitTestDuringAnimation","ngAcceptInputType_elevation":"ngAcceptInputType_elevation","ngAcceptInputType_isClosing":"ngAcceptInputType_isClosing","ngAcceptInputType_isFixed":"ngAcceptInputType_isFixed","ngAcceptInputType_isFocusable":"ngAcceptInputType_isFocusable","ngAcceptInputType_isHitTestVisible":"ngAcceptInputType_isHitTestVisible","ngAcceptInputType_isPointerEnabled":"ngAcceptInputType_isPointerEnabled","ngAcceptInputType_isShowing":"ngAcceptInputType_isShowing","ngAcceptInputType_isShown":"ngAcceptInputType_isShown","ngAcceptInputType_pointerPosition":"ngAcceptInputType_pointerPosition","ngAcceptInputType_pointerSize":"ngAcceptInputType_pointerSize","ngAcceptInputType_useTopLayer":"ngAcceptInputType_useTopLayer","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAmbientShadowColor":"actualAmbientShadowColor","actualElevation":"actualElevation","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","animationDuration":"animationDuration","animationEnabled":"animationEnabled","animationType":"animationType","background":"background","cornerRadius":"cornerRadius","disableHitTestDuringAnimation":"disableHitTestDuringAnimation","elevation":"elevation","height":"height","i":"i","isClosing":"isClosing","isFixed":"isFixed","isFocusable":"isFocusable","isHitTestVisible":"isHitTestVisible","isPointerEnabled":"isPointerEnabled","isShowing":"isShowing","isShown":"isShown","measuringContentSize":"measuringContentSize","onClosed":"onClosed","onPopup":"onPopup","pointerBackground":"pointerBackground","pointerPosition":"pointerPosition","pointerSize":"pointerSize","popupGotFocus":"popupGotFocus","popupLostFocus":"popupLostFocus","useTopLayer":"useTopLayer","width":"width","close":"close","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","showRelativeToExclusionRect":"showRelativeToExclusionRect","updateStyle":"updateStyle"}}],"IgxPopupMeasuringContentSizeEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxPopupMeasuringContentSizeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxPropertyUpdatedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxPropertyUpdatedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue","propertyName":"propertyName"}}],"IgxProvideCalculatorEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxProvideCalculatorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","calculator":"calculator"}}],"IgxRectChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxRectChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_newRect":"ngAcceptInputType_newRect","ngAcceptInputType_oldRect":"ngAcceptInputType_oldRect","newRect":"newRect","oldRect":"oldRect"}}],"IgxShapeDataSource":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxShapeDataSource","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_computedWorldRect":"ngAcceptInputType_computedWorldRect","ngAcceptInputType_count":"ngAcceptInputType_count","ngAcceptInputType_deferImportCompleted":"ngAcceptInputType_deferImportCompleted","ngAcceptInputType_worldRect":"ngAcceptInputType_worldRect","computedWorldRect":"computedWorldRect","count":"count","databaseSource":"databaseSource","deferImportCompleted":"deferImportCompleted","filter":"filter","i":"i","importCompleted":"importCompleted","importPending":"importPending","name":"name","shapefileSource":"shapefileSource","shapeHeader":"shapeHeader","shapeType":"shapeType","worldRect":"worldRect","dataBind":"dataBind","findByName":"findByName","getLargestShapeBoundsForRecord":"getLargestShapeBoundsForRecord","getMaxLongitude":"getMaxLongitude","getPointData":"getPointData","getRecord":"getRecord","getRecordBounds":"getRecordBounds","getRecordFieldNames":"getRecordFieldNames","getRecordsCount":"getRecordsCount","getRecordValue":"getRecordValue","getRecordValues":"getRecordValues","getWorldBounds":"getWorldBounds","removeRecord":"removeRecord","sendImportCompleted":"sendImportCompleted","setRecordValue":"setRecordValue","setRecordValues":"setRecordValues","setWorldBounds":"setWorldBounds","shiftAllShapes":"shiftAllShapes","shiftShapes":"shiftShapes"}}],"IgxShapefileRecord":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxShapefileRecord","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bounds":"ngAcceptInputType_bounds","bounds":"bounds","fieldsNames":"fieldsNames","fieldsTypes":"fieldsTypes","fieldValues":"fieldValues","i":"i","points":"points","shapeType":"shapeType","findByName":"findByName","getFieldValue":"getFieldValue","setFieldValue":"setFieldValue"}}],"IgxShapeFilterRecordEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxShapeFilterRecordEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldInclude":"ngAcceptInputType_shouldInclude","record":"record","shouldInclude":"shouldInclude"}}],"IgxSimpleDefaultTooltipComponent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxSimpleDefaultTooltipComponent","k":"class","s":"classes","m":{"constructor":"constructor","labelText":"labelText","onContentReady":"onContentReady","tooltip":"tooltip","ɵcmp":"ɵcmp","ɵfac":"ɵfac","ensureDefaultTooltip":"ensureDefaultTooltip","getLabel":"getLabel","ngAfterContentInit":"ngAfterContentInit","register":"register"}}],"IgxStockChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxStockChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_addedSymbols":"ngAcceptInputType_addedSymbols","ngAcceptInputType_removedSymbols":"ngAcceptInputType_removedSymbols","addedSymbols":"addedSymbols","removedSymbols":"removedSymbols"}}],"IgxStyle":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxStyle","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgxTemplateContentComponent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxTemplateContentComponent","k":"class","s":"classes","m":{"constructor":"constructor","viewContainer":"viewContainer","ɵcmp":"ɵcmp","ɵfac":"ɵfac","context":"context","template":"template","markChanged":"markChanged"}}],"IgxToolCommandArgumentCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxToolCommandArgumentCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxTooltipContainerComponent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxTooltipContainerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ɵcmp":"ɵcmp","ɵfac":"ɵfac","containerTemplate":"containerTemplate","context":"context","template":"template","register":"register"}}],"IgxTransactionState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxTransactionState","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_transactionType":"ngAcceptInputType_transactionType","id":"id","transactionType":"transactionType","value":"value","version":"version","findByName":"findByName"}}],"IgxTriangulationDataSource":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxTriangulationDataSource","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","importCompleted":"importCompleted","source":"source","findByName":"findByName","getPointData":"getPointData","getTriangleData":"getTriangleData"}}],"IgxTriangulationStatusEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxTriangulationStatusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_currentStatus":"ngAcceptInputType_currentStatus","currentStatus":"currentStatus"}}],"IgxUploadDataCompletedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxUploadDataCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancelled":"ngAcceptInputType_cancelled","ngAcceptInputType_result":"ngAcceptInputType_result","cancelled":"cancelled","errorMessage":"errorMessage","result":"result","userState":"userState"}}],"IgxUploadStringCompletedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IgxUploadStringCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancelled":"ngAcceptInputType_cancelled","cancelled":"cancelled","errorMessage":"errorMessage","result":"result","userState":"userState"}}],"IterableWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IterableWrapper","k":"class","s":"classes","m":{"constructor":"constructor","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject"}}],"IteratorWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/IteratorWrapper","k":"class","s":"classes","m":{"constructor":"constructor","current":"current","currentObject":"currentObject","dispose":"dispose","moveNext":"moveNext","reset":"reset"}}],"NamePatcher":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/NamePatcher","k":"class","s":"classes","m":{"constructor":"constructor","_patched":"_patched","ensurePatched":"ensurePatched","ensureStylablePatched":"ensureStylablePatched"}}],"NotSupportedException":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/NotSupportedException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Nullable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Nullable","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","getUnderlyingType":"getUnderlyingType","referenceEquals":"referenceEquals"}}],"Nullable$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Nullable-1","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","isNullable":"isNullable","$t":"$t","nextHashCode":"nextHashCode","hasValue":"hasValue","value":"value","equals":"equals","getDefaultValue":"getDefaultValue","getHashCode":"getHashCode","getValueOrDefault":"getValueOrDefault","getValueOrDefault1":"getValueOrDefault1","memberwiseClone":"memberwiseClone","postDecrement":"postDecrement","postIncrement":"postIncrement","preDecrement":"preDecrement","preIncrement":"preIncrement","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","nullableEquals":"nullableEquals","referenceEquals":"referenceEquals"}}],"NumberFormatInfo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/NumberFormatInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","currencySymbol":"currencySymbol","nativeDigits":"nativeDigits","negativeSign":"negativeSign","numberDecimalSeparator":"numberDecimalSeparator","numberGroupSeparator":"numberGroupSeparator","numberGroupSizes":"numberGroupSizes","percentSymbol":"percentSymbol","positiveSign":"positiveSign","clone":"clone","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"PlatformConstants":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/PlatformConstants","k":"class","s":"classes","m":{"constructor":"constructor","Postfix":"Postfix","Prefix":"Prefix"}}],"PointUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/PointUtil","k":"class","s":"classes","m":{"constructor":"constructor","create":"create","createXY":"createXY","equals":"equals","notEquals":"notEquals"}}],"PortalManager":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/PortalManager","k":"class","s":"classes","m":{"constructor":"constructor","detectChanges":"detectChanges","renderer":"renderer","dynamicContent":"dynamicContent","_destroy":"_destroy","getPortal":"getPortal","onChildContentChanged":"onChildContentChanged"}}],"PromiseFactory":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/PromiseFactory","k":"class","s":"classes","m":{"constructor":"constructor","promise":"promise","reject":"reject","resolve":"resolve"}}],"PromiseWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/PromiseWrapper","k":"class","s":"classes","m":{"constructor":"constructor","always":"always","done":"done","fail":"fail","state":"state","then":"then"}}],"PropertyChangedEventArgs":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/PropertyChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","propertyName":"propertyName","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"ReflectionUtil":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/ReflectionUtil","k":"class","s":"classes","m":{"constructor":"constructor","getPropertyGetter":"getPropertyGetter"}}],"Stream":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Stream","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","canRead":"canRead","canSeek":"canSeek","canWrite":"canWrite","length":"length","position":"position","close":"close","dispose":"dispose","equals":"equals","flush":"flush","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","read":"read","readByte":"readByte","seek":"seek","setLength":"setLength","write":"write","writeByte":"writeByte","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"SystemException":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/SystemException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Thread":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Thread","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","currentCulture":"currentCulture","currentThread":"currentThread","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/Type","k":"class","s":"classes","m":{"constructor":"constructor","_$nullNullable":"_$nullNullable","$type":"$type","baseType":"baseType","enumInfo":"enumInfo","identifier":"identifier","InstanceConstructor":"InstanceConstructor","interfaces":"interfaces","isEnumType":"isEnumType","isNullable":"isNullable","name":"name","specializationCache":"specializationCache","stringId":"stringId","typeArguments":"typeArguments","nextHashCode":"nextHashCode","fullName":"fullName","genericTypeArguments":"genericTypeArguments","isGenericType":"isGenericType","isGenericTypeDefinition":"isGenericTypeDefinition","isPrimitive":"isPrimitive","isValueType":"isValueType","typeName":"typeName","equals":"equals","generateString":"generateString","getHashCode":"getHashCode","getSpecId":"getSpecId","getStaticFields":"getStaticFields","initSelfReferences":"initSelfReferences","isAssignableFrom":"isAssignableFrom","isInstanceOfType":"isInstanceOfType","memberwiseClone":"memberwiseClone","specialize":"specialize","canAssign":"canAssign","canAssignSimple":"canAssignSimple","checkEquals":"checkEquals","compare":"compare","compareSimple":"compareSimple","createInstance":"createInstance","decodePropType":"decodePropType","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getDefaultValue":"getDefaultValue","getHashCodeStatic":"getHashCodeStatic","getPrimitiveHashCode":"getPrimitiveHashCode","op_Equality":"op_Equality","op_Inequality":"op_Inequality","referenceEquals":"referenceEquals"}}],"TypeRegistrar":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/TypeRegistrar","k":"class","s":"classes","m":{"constructor":"constructor","_registrar":"_registrar","callRegister":"callRegister","create":"create","createFromInternal":"createFromInternal","get":"get","isRegistered":"isRegistered","register":"register","registerCons":"registerCons"}}],"ValueType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/classes/ValueType","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"AngularWrapperPosition":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/AngularWrapperPosition","k":"interface","s":"interfaces","m":{"left":"left","top":"top"}}],"Delegate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/Delegate","k":"interface","s":"interfaces","m":{"original":"original","target":"target","enumerate":"enumerate"}}],"DomPortal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/DomPortal","k":"interface","s":"interfaces","m":{"componentRef":"componentRef","portalContainer":"portalContainer","destroy":"destroy"}}],"DomRenderer":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/DomRenderer","k":"interface","s":"interfaces","m":{"rootWrapper":"rootWrapper","append":"append","appendToBody":"appendToBody","clearTimeout":"clearTimeout","createElement":"createElement","createElementNS":"createElementNS","destroy":"destroy","endCSSQuery":"endCSSQuery","expandTemplate":"expandTemplate","get2DCanvasContext":"get2DCanvasContext","getClearTimeout":"getClearTimeout","getCssDefaultPropertyValue":"getCssDefaultPropertyValue","getCssDefaultValuesForClassCollection":"getCssDefaultValuesForClassCollection","getExternal":"getExternal","getHeightForFontString":"getHeightForFontString","getPortal":"getPortal","getRequestAnimationFrame":"getRequestAnimationFrame","getResourceString":"getResourceString","getSetTimeout":"getSetTimeout","getSubRenderer":"getSubRenderer","getWrapper":"getWrapper","globalListen":"globalListen","hasBody":"hasBody","hasWindow":"hasWindow","querySelector":"querySelector","runInMainZone":"runInMainZone","setCssQueryFontString":"setCssQueryFontString","setCultureId":"setCultureId","setResourceBundleId":"setResourceBundleId","setTimeout":"setTimeout","startCSSQuery":"startCSSQuery","supportsAnimation":"supportsAnimation","supportsDOMEvents":"supportsDOMEvents"}}],"DomWrapper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/DomWrapper","k":"interface","s":"interfaces","m":{"addClass":"addClass","append":"append","before":"before","clone":"clone","destroy":"destroy","findByClass":"findByClass","focus":"focus","getAttribute":"getAttribute","getChildAt":"getChildAt","getChildCount":"getChildCount","getNativeElement":"getNativeElement","getOffset":"getOffset","getProperty":"getProperty","getStyleProperty":"getStyleProperty","getText":"getText","height":"height","hide":"hide","listen":"listen","outerHeight":"outerHeight","outerHeightWithMargin":"outerHeightWithMargin","outerWidth":"outerWidth","outerWidthWithMargin":"outerWidthWithMargin","parent":"parent","querySelectorAll":"querySelectorAll","remove":"remove","removeChild":"removeChild","removeChildren":"removeChildren","removeClass":"removeClass","setAttribute":"setAttribute","setOffset":"setOffset","setProperty":"setProperty","setRawPosition":"setRawPosition","setRawSize":"setRawSize","setRawStyleProperty":"setRawStyleProperty","setRawText":"setRawText","setRawXPosition":"setRawXPosition","setRawYPosition":"setRawYPosition","setStyleProperty":"setStyleProperty","setText":"setText","show":"show","unlistenAll":"unlistenAll","width":"width"}}],"DomWrapperPosition":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/DomWrapperPosition","k":"interface","s":"interfaces","m":{"left":"left","top":"top"}}],"EnumInfo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/EnumInfo","k":"interface","s":"interfaces","m":{"actualNames":"actualNames","actualNamesValuesMap":"actualNamesValuesMap","mustCoerceToInt":"mustCoerceToInt","names":"names","namesValuesMap":"namesValuesMap"}}],"ICollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/ICollection","k":"interface","s":"interfaces","m":{"count":"count","isSynchronized":"isSynchronized","syncRoot":"syncRoot","copyTo":"copyTo","getEnumeratorObject":"getEnumeratorObject"}}],"ICollection$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/ICollection-1","k":"interface","s":"interfaces","m":{"count":"count","isReadOnly":"isReadOnly","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","remove":"remove"}}],"IComparable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IComparable","k":"interface","s":"interfaces","m":{"compareToObject":"compareToObject"}}],"IComparable$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IComparable-1","k":"interface","s":"interfaces","m":{"compareTo":"compareTo"}}],"IConvertible":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IConvertible","k":"interface","s":"interfaces","m":{"toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toSByte":"toSByte","toSingle":"toSingle","toString1":"toString1","toUInt16":"toUInt16","toUInt32":"toUInt32","toUInt64":"toUInt64"}}],"IDictionary":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IDictionary","k":"interface","s":"interfaces"}],"IDisposable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IDisposable","k":"interface","s":"interfaces","m":{"dispose":"dispose"}}],"IEnumerable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEnumerable","k":"interface","s":"interfaces","m":{"getEnumeratorObject":"getEnumeratorObject"}}],"IEnumerable$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEnumerable-1","k":"interface","s":"interfaces","m":{"getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject"}}],"IEnumerator":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEnumerator","k":"interface","s":"interfaces","m":{"currentObject":"currentObject","moveNext":"moveNext","reset":"reset"}}],"IEnumerator$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEnumerator-1","k":"interface","s":"interfaces","m":{"current":"current","currentObject":"currentObject","dispose":"dispose","moveNext":"moveNext","reset":"reset"}}],"IEqualityComparer":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEqualityComparer","k":"interface","s":"interfaces","m":{"equals":"equals","getHashCode":"getHashCode"}}],"IEqualityComparer$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEqualityComparer-1","k":"interface","s":"interfaces","m":{"equalsC":"equalsC","getHashCodeC":"getHashCodeC"}}],"IEquatable$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IEquatable-1","k":"interface","s":"interfaces","m":{"equals":"equals"}}],"IFormatProvider":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IFormatProvider","k":"interface","s":"interfaces","m":{"getFormat":"getFormat"}}],"IgDataTemplate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IgDataTemplate","k":"interface","s":"interfaces","m":{"measure":"measure","passCompleted":"passCompleted","passStarting":"passStarting","render":"render"}}],"IgPoint":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IgPoint","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"IgRect":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IgRect","k":"interface","s":"interfaces","m":{"height":"height","left":"left","top":"top","width":"width"}}],"IgSize":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IgSize","k":"interface","s":"interfaces","m":{"height":"height","width":"width"}}],"IList":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IList","k":"interface","s":"interfaces","m":{"count":"count","isFixedSize":"isFixedSize","isReadOnly":"isReadOnly","isSynchronized":"isSynchronized","syncRoot":"syncRoot","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"IList$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IList-1","k":"interface","s":"interfaces","m":{"count":"count","isReadOnly":"isReadOnly","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"INotifyPropertyChanged":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/INotifyPropertyChanged","k":"interface","s":"interfaces","m":{"propertyChanged":"propertyChanged"}}],"IRenderTemplateObject":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/IRenderTemplateObject","k":"interface","s":"interfaces","m":{"strings":"strings","values":"values"}}],"LegacyGestureEvent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/LegacyGestureEvent","k":"interface","s":"interfaces","m":{"scale":"scale"}}],"NormalizedEvent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/NormalizedEvent","k":"interface","s":"interfaces","m":{"button":"button","originalEvent":"originalEvent","pageX":"pageX","pageY":"pageY","target":"target","wheelDelta":"wheelDelta"}}],"Point":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/Point","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"XmlAttribute":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlAttribute","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlDocument":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlDocument","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","documentElement":"documentElement","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","createElementNS":"createElementNS","createNode":"createNode","getAttributeNodeNS":"getAttributeNodeNS","importNode":"importNode","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlElement":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlElement","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlLinkedNode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlLinkedNode","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlNamedNodeMap":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlNamedNodeMap","k":"interface","s":"interfaces","m":{"getQualifiedItem":"getQualifiedItem"}}],"XmlNode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlNode","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlNodeList":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/interfaces/XmlNodeList","k":"interface","s":"interfaces","m":{"length":"length","getQualifiedItem":"getQualifiedItem","item":"item"}}],"BaseControlTheme":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/BaseControlTheme","k":"enum","s":"enums","m":{"Default":"Default","DenaliLight":"DenaliLight","MaterialLight":"MaterialLight","RevealDark":"RevealDark","RevealLight":"RevealLight","SlingshotDark":"SlingshotDark","SlingshotLight":"SlingshotLight"}}],"CalendarWeekRule":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CalendarWeekRule","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"CalloutCollisionMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CalloutCollisionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Greedy":"Greedy","GreedyCenterOfMass":"GreedyCenterOfMass","RadialBestFit":"RadialBestFit","RadialCenter":"RadialCenter","RadialInsideEnd":"RadialInsideEnd","RadialOutsideEnd":"RadialOutsideEnd","SimulatedAnnealing":"SimulatedAnnealing"}}],"CancelBehavior":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CancelBehavior","k":"enum","s":"enums","m":{"KeepCurrent":"KeepCurrent","ToBeginning":"ToBeginning","ToEnd":"ToEnd"}}],"CaptureImageFormat":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CaptureImageFormat","k":"enum","s":"enums","m":{"Jpeg":"Jpeg","Png":"Png"}}],"CodeGenerationLibraryItemContentLocation":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CodeGenerationLibraryItemContentLocation","k":"enum","s":"enums","m":{"CDN":"CDN","CDNSkipHydrate":"CDNSkipHydrate","Code":"Code","JsonFile":"JsonFile"}}],"CodeGenerationLibraryItemPlatform":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CodeGenerationLibraryItemPlatform","k":"enum","s":"enums","m":{"All":"All","AllWeb":"AllWeb","Android":"Android","Angular":"Angular","Blazor":"Blazor","Desktop":"Desktop","DotNet":"DotNet","iOS":"iOS","JQuery":"JQuery","Kotlin":"Kotlin","React":"React","Swift":"Swift","Unknown":"Unknown","Web":"Web","WebComponents":"WebComponents","Win":"Win","WindowsForms":"WindowsForms","WPF":"WPF","XPlat":"XPlat"}}],"CodeGenerationLibraryItemType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CodeGenerationLibraryItemType","k":"enum","s":"enums","m":{"Data":"Data","EventHandler":"EventHandler","Template":"Template","Unknown":"Unknown"}}],"CodeGenerationTargetPlatforms":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CodeGenerationTargetPlatforms","k":"enum","s":"enums","m":{"Angular":"Angular","Blazor":"Blazor","Kotlin":"Kotlin","React":"React","Swift":"Swift","WebComponents":"WebComponents","WindowsForms":"WindowsForms","WPF":"WPF"}}],"CollisionGeometryType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CollisionGeometryType","k":"enum","s":"enums","m":{"Box":"Box","Boxes":"Boxes","Circle":"Circle","PieSlice":"PieSlice"}}],"CompareOptions":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/CompareOptions","k":"enum","s":"enums","m":{"IgnoreCase":"IgnoreCase","IgnoreKanaType":"IgnoreKanaType","IgnoreNonSpace":"IgnoreNonSpace","IgnoreSymbols":"IgnoreSymbols","IgnoreWidth":"IgnoreWidth","None":"None","Ordinal":"Ordinal","OrdinalIgnoreCase":"OrdinalIgnoreCase","StringSort":"StringSort"}}],"ControlDisplayDensity":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ControlDisplayDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"DataAbbreviationMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataAbbreviationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Billion":"Billion","Independent":"Independent","Kilo":"Kilo","Million":"Million","None":"None","Quadrillion":"Quadrillion","Shared":"Shared","Trillion":"Trillion","Unset":"Unset"}}],"DataLegendHeaderDateMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendHeaderDateMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendHeaderTimeMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendHeaderTimeMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendLabelMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendLayoutMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendLayoutMode","k":"enum","s":"enums","m":{"Table":"Table","Vertical":"Vertical"}}],"DataLegendSeriesFamily":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendSeriesFamily","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Geographic":"Geographic","Highlight":"Highlight","Indicator":"Indicator","Polar":"Polar","Radial":"Radial","Range":"Range","Scatter":"Scatter","Shape":"Shape","Stacked":"Stacked"}}],"DataLegendSeriesValueType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendSeriesValueType","k":"enum","s":"enums","m":{"Angle":"Angle","Average":"Average","Change":"Change","Close":"Close","Fill":"Fill","High":"High","Low":"Low","Open":"Open","Radius":"Radius","Range":"Range","Summary":"Summary","TypicalPrice":"TypicalPrice","Value":"Value","Volume":"Volume","XValue":"XValue","YValue":"YValue"}}],"DataLegendSummaryType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendSummaryType","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","Max":"Max","Min":"Min","None":"None","Total":"Total"}}],"DataLegendUnitsMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendUnitsMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendValueMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataLegendValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Currency":"Currency","Decimal":"Decimal"}}],"DataSeriesAxisType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSeriesAxisType","k":"enum","s":"enums","m":{"Category":"Category","CategoryAngle":"CategoryAngle","ContinuousDateTime":"ContinuousDateTime","DiscreteDateTime":"DiscreteDateTime","Linear":"Linear","Logarithmic":"Logarithmic","NotApplicable":"NotApplicable","ProportionalCategoryAngle":"ProportionalCategoryAngle","RadialLinear":"RadialLinear","RadialLogarithmic":"RadialLogarithmic"}}],"DataSeriesIntent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSeriesIntent","k":"enum","s":"enums","m":{"AxisDateValue":"AxisDateValue","AxisLabelValue":"AxisLabelValue","CloseSeriesValue":"CloseSeriesValue","DontPlot":"DontPlot","GenerationInput":"GenerationInput","HighSeriesValue":"HighSeriesValue","LowSeriesValue":"LowSeriesValue","OpenSeriesValue":"OpenSeriesValue","PrimarySeriesValue":"PrimarySeriesValue","SalesFixedCost":"SalesFixedCost","SalesMarginalProfit":"SalesMarginalProfit","SalesRevenue":"SalesRevenue","SalesTotalCost":"SalesTotalCost","SalesUnit":"SalesUnit","SalesVariableCost":"SalesVariableCost","SeriesAngle":"SeriesAngle","SeriesFill":"SeriesFill","SeriesGroup":"SeriesGroup","SeriesLabel":"SeriesLabel","SeriesRadius":"SeriesRadius","SeriesShape":"SeriesShape","SeriesTitle":"SeriesTitle","SeriesValue":"SeriesValue","SeriesX":"SeriesX","SeriesY":"SeriesY","VolumeSeriesValue":"VolumeSeriesValue"}}],"DataSeriesMarker":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSeriesMarker","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Smart":"Smart","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"DataSeriesPropertyType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSeriesPropertyType","k":"enum","s":"enums","m":{"DateTime":"DateTime","Numeric":"Numeric","string1":"string1"}}],"DataSeriesType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","CalloutLayer":"CalloutLayer","CategoryHighlightLayer":"CategoryHighlightLayer","CategoryItemHighlightLayer":"CategoryItemHighlightLayer","CategoryToolTipLayer":"CategoryToolTipLayer","Column":"Column","CrosshairLayer":"CrosshairLayer","DataToolTipLayer":"DataToolTipLayer","FinalValueLayer":"FinalValueLayer","FinancialIndicator":"FinancialIndicator","FinancialOverlay":"FinancialOverlay","FinancialPrice":"FinancialPrice","GeographicBubble":"GeographicBubble","GeographicContour":"GeographicContour","GeographicHeat":"GeographicHeat","GeographicHighDensity":"GeographicHighDensity","GeographicPolygon":"GeographicPolygon","GeographicPolyline":"GeographicPolyline","GeographicScatter":"GeographicScatter","GeographicScatterArea":"GeographicScatterArea","ItemToolTipLayer":"ItemToolTipLayer","Line":"Line","LinearGauge":"LinearGauge","Pie":"Pie","Point":"Point","RadialGauge":"RadialGauge","RadialLine":"RadialLine","ScatterArea":"ScatterArea","ScatterBubble":"ScatterBubble","ScatterContour":"ScatterContour","ScatterHighDensity":"ScatterHighDensity","ScatterLine":"ScatterLine","ScatterPoint":"ScatterPoint","ScatterPolygon":"ScatterPolygon","ScatterPolyline":"ScatterPolyline","ScatterSpline":"ScatterSpline","Spline":"Spline","SplineArea":"SplineArea","Stacked":"Stacked","StepArea":"StepArea","StepLine":"StepLine","TrendLineLayer":"TrendLineLayer","Unknown":"Unknown","UserAnnotationToolTipLayer":"UserAnnotationToolTipLayer","ValueLayer":"ValueLayer","ValueOverlay":"ValueOverlay","Waterfall":"Waterfall"}}],"DataSourcePageRequestPriority":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSourcePageRequestPriority","k":"enum","s":"enums","m":{"High":"High","Low":"Low","Normal":"Normal"}}],"DataSourceRowType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSourceRowType","k":"enum","s":"enums","m":{"Custom":"Custom","Normal":"Normal","SectionFooter":"SectionFooter","SectionHeader":"SectionHeader","ShiftedRow":"ShiftedRow","SummaryRowRoot":"SummaryRowRoot","SummaryRowSection":"SummaryRowSection"}}],"DataSourceSchemaPropertyType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","ByteValue":"ByteValue","DateTimeOffsetValue":"DateTimeOffsetValue","DateTimeValue":"DateTimeValue","DecimalValue":"DecimalValue","DoubleValue":"DoubleValue","IntValue":"IntValue","LongValue":"LongValue","ObjectValue":"ObjectValue","ShortValue":"ShortValue","SingleValue":"SingleValue","StringValue":"StringValue"}}],"DataSourceSectionHeaderDisplayMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSourceSectionHeaderDisplayMode","k":"enum","s":"enums","m":{"Combined":"Combined","Split":"Split"}}],"DataSourceSummaryOperand":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSourceSummaryOperand","k":"enum","s":"enums","m":{"Average":"Average","Count":"Count","Custom":"Custom","Max":"Max","Min":"Min","Sum":"Sum"}}],"DataSourceSummaryScope":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataSourceSummaryScope","k":"enum","s":"enums","m":{"Both":"Both","Groups":"Groups","None":"None","Root":"Root"}}],"DataTooltipGroupedPositionX":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataTooltipGroupedPositionX","k":"enum","s":"enums","m":{"Auto":"Auto","LeftEdgeSnapLeft":"LeftEdgeSnapLeft","LeftEdgeSnapMiddle":"LeftEdgeSnapMiddle","LeftEdgeSnapRight":"LeftEdgeSnapRight","PinLeft":"PinLeft","PinMiddle":"PinMiddle","PinRight":"PinRight","RightEdgeSnapLeft":"RightEdgeSnapLeft","RightEdgeSnapMiddle":"RightEdgeSnapMiddle","RightEdgeSnapRight":"RightEdgeSnapRight","SnapLeft":"SnapLeft","SnapMiddle":"SnapMiddle","SnapRight":"SnapRight","TrackLeft":"TrackLeft","TrackMiddle":"TrackMiddle","TrackRight":"TrackRight"}}],"DataTooltipGroupedPositionY":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataTooltipGroupedPositionY","k":"enum","s":"enums","m":{"Auto":"Auto","BottomEdgeSnapBottom":"BottomEdgeSnapBottom","BottomEdgeSnapMiddle":"BottomEdgeSnapMiddle","BottomEdgeSnapTop":"BottomEdgeSnapTop","PinBottom":"PinBottom","PinMiddle":"PinMiddle","PinTop":"PinTop","SnapBottom":"SnapBottom","SnapMiddle":"SnapMiddle","SnapTop":"SnapTop","TopEdgeSnapBottom":"TopEdgeSnapBottom","TopEdgeSnapMiddle":"TopEdgeSnapMiddle","TopEdgeSnapTop":"TopEdgeSnapTop","TrackBottom":"TrackBottom","TrackMiddle":"TrackMiddle","TrackTop":"TrackTop"}}],"DataToolTipLayerGroupingMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DataToolTipLayerGroupingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Grouped":"Grouped","Individual":"Individual"}}],"DateTimeKind":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DateTimeKind","k":"enum","s":"enums","m":{"Local":"Local","Unspecified":"Unspecified","Utc":"Utc"}}],"DayOfWeek":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}},{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}}],"DescriptionPathOperatorType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/DescriptionPathOperatorType","k":"enum","s":"enums","m":{"Combine":"Combine","None":"None"}}],"ElevationMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ElevationMode","k":"enum","s":"enums","m":{"Auto":"Auto","HaloShadow":"HaloShadow","MaterialShadow":"MaterialShadow"}}],"EntityHandling":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/EntityHandling","k":"enum","s":"enums","m":{"ExpandCharEntities":"ExpandCharEntities","ExpandEntities":"ExpandEntities"}}],"ErrorBarCalculatorReference":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ErrorBarCalculatorReference","k":"enum","s":"enums","m":{"X":"X","Y":"Y"}}],"ErrorBarCalculatorType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ErrorBarCalculatorType","k":"enum","s":"enums","m":{"Data":"Data","Fixed":"Fixed","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"FastItemsSourceEventAction":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FastItemsSourceEventAction","k":"enum","s":"enums","m":{"Change":"Change","Insert":"Insert","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"FeatureState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FeatureState","k":"enum","s":"enums","m":{"Disabled":"Disabled","Enabled":"Enabled","Unset":"Unset"}}],"FillRule":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FillRule","k":"enum","s":"enums","m":{"EvenOdd":"EvenOdd","Nonzero":"Nonzero"}}],"FilterExpressionFunctionType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FilterExpressionFunctionType","k":"enum","s":"enums","m":{"Cast":"Cast","Ceiling":"Ceiling","Concat":"Concat","Contains":"Contains","Date":"Date","Day":"Day","EndsWith":"EndsWith","Env":"Env","Floor":"Floor","Hour":"Hour","IndexOf":"IndexOf","IsOf":"IsOf","Length":"Length","Minute":"Minute","Month":"Month","Now":"Now","Replace":"Replace","Round":"Round","Second":"Second","StartsWith":"StartsWith","Substring":"Substring","Time":"Time","ToLower":"ToLower","ToUpper":"ToUpper","Trim":"Trim","Year":"Year"}}],"FilterExpressionOperatorType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FilterExpressionOperatorType","k":"enum","s":"enums","m":{"Add":"Add","And":"And","Divide":"Divide","Equal":"Equal","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","Grouping":"Grouping","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","Modulo":"Modulo","Multiply":"Multiply","None":"None","Not":"Not","NotEqual":"NotEqual","Or":"Or","Subtract":"Subtract"}}],"FilterExpressionWrapperType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FilterExpressionWrapperType","k":"enum","s":"enums","m":{"Last30":"Last30","Last365":"Last365","Last7":"Last7","LastMonth":"LastMonth","LastQuarter":"LastQuarter","LastWeek":"LastWeek","LastYear":"LastYear","MonthToDate":"MonthToDate","NextMonth":"NextMonth","NextQuarter":"NextQuarter","NextWeek":"NextWeek","NextYear":"NextYear","Q1":"Q1","Q2":"Q2","Q3":"Q3","Q4":"Q4","QuarterToDate":"QuarterToDate","ThisMonth":"ThisMonth","ThisQuarter":"ThisQuarter","ThisWeek":"ThisWeek","ThisYear":"ThisYear","Today":"Today","Tomorrow":"Tomorrow","TrailingTwelveMonths":"TrailingTwelveMonths","YearToDate":"YearToDate","Yesterday":"Yesterday"}}],"FlatDataProviderJoinCollisionType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FlatDataProviderJoinCollisionType","k":"enum","s":"enums","m":{"Auto":"Auto","LeftOnly":"LeftOnly","PreferLeft":"PreferLeft","PreferRight":"PreferRight","RightOnly":"RightOnly"}}],"FlatDataProviderJoinType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/FlatDataProviderJoinType","k":"enum","s":"enums","m":{"Join":"Join","Left":"Left","Right":"Right"}}],"Formatting":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/Formatting","k":"enum","s":"enums","m":{"Indented":"Indented","None":"None"}}],"GenericDataSourceSchemaPropertyType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/GenericDataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","DateTimeValue":"DateTimeValue","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"GeometryType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/GeometryType","k":"enum","s":"enums","m":{"Ellipse":"Ellipse","Group":"Group","Line":"Line","Path":"Path","Rectangle":"Rectangle"}}],"GradientDirection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/GradientDirection","k":"enum","s":"enums","m":{"BottomTop":"BottomTop","LeftRight":"LeftRight","Radial":"Radial","RightLeft":"RightLeft","TopBottom":"TopBottom"}}],"HighlightedValueDisplayMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/HighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"HighlightedValueLabelMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/HighlightedValueLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","LabelBoth":"LabelBoth","PreferHighlighted":"PreferHighlighted","PreferOriginal":"PreferOriginal"}}],"HighlightingState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/HighlightingState","k":"enum","s":"enums","m":{"inward":"inward","outward":"outward","Static":"Static"}}],"HighlightState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/HighlightState","k":"enum","s":"enums","m":{"Hidden":"Hidden","Hiding":"Hiding","Showing":"Showing","Shown":"Shown","StartHiding":"StartHiding","StartShowing":"StartShowing"}}],"HorizontalAlignment":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/HorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right","Stretch":"Stretch"}}],"ImageLoadStatus":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ImageLoadStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Completed":"Completed","Failed":"Failed","Loading":"Loading","Unknown":"Unknown"}}],"InteractionState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/InteractionState","k":"enum","s":"enums","m":{"Auto":"Auto","DragPan":"DragPan","DragSelect":"DragSelect","DragZoom":"DragZoom","None":"None"}}],"InterpolationMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/InterpolationMode","k":"enum","s":"enums","m":{"HSV":"HSV","RGB":"RGB"}}],"JsonDictionaryValueType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/JsonDictionaryValueType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","NullValue":"NullValue","NumberValue":"NumberValue","StringValue":"StringValue"}}],"Key":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/Key","k":"enum","s":"enums","m":{"A":"A","Add":"Add","Alt":"Alt","B":"B","Back":"Back","C":"C","CapsLock":"CapsLock","Ctrl":"Ctrl","D":"D","D0":"D0","D1":"D1","D2":"D2","D3":"D3","D4":"D4","D5":"D5","D6":"D6","D7":"D7","D8":"D8","D9":"D9","Decimal":"Decimal","del":"del","Divide":"Divide","Down":"Down","E":"E","End":"End","Enter":"Enter","Escape":"Escape","F":"F","F1":"F1","F10":"F10","F11":"F11","F12":"F12","F2":"F2","F3":"F3","F4":"F4","F5":"F5","F6":"F6","F7":"F7","F8":"F8","F9":"F9","G":"G","H":"H","Home":"Home","I":"I","Insert":"Insert","J":"J","K":"K","L":"L","Left":"Left","M":"M","Multiply":"Multiply","N":"N","None":"None","NumPad0":"NumPad0","NumPad1":"NumPad1","NumPad2":"NumPad2","NumPad3":"NumPad3","NumPad4":"NumPad4","NumPad5":"NumPad5","NumPad6":"NumPad6","NumPad7":"NumPad7","NumPad8":"NumPad8","NumPad9":"NumPad9","O":"O","OemMinus":"OemMinus","OemPipe":"OemPipe","OemPlus":"OemPlus","OemQuestion":"OemQuestion","OemSemicolon":"OemSemicolon","OemTilde":"OemTilde","P":"P","PageDown":"PageDown","PageUp":"PageUp","Q":"Q","R":"R","Right":"Right","S":"S","Shift":"Shift","Space":"Space","Subtract":"Subtract","T":"T","Tab":"Tab","U":"U","Unknown":"Unknown","Up":"Up","V":"V","W":"W","X":"X","Y":"Y","Z":"Z"}}],"LegendEmptyValuesMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/LegendEmptyValuesMode","k":"enum","s":"enums","m":{"AlwaysHidden":"AlwaysHidden","AlwaysVisible":"AlwaysVisible","ShowWhenNoOthersCategory":"ShowWhenNoOthersCategory"}}],"LegendItemBadgeMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/LegendItemBadgeMode","k":"enum","s":"enums","m":{"MatchSeries":"MatchSeries","Simplified":"Simplified"}}],"LegendItemBadgeShape":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/LegendItemBadgeShape","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bar":"Bar","Circle":"Circle","Column":"Column","Hidden":"Hidden","Line":"Line","Marker":"Marker","Square":"Square"}}],"ListSortDirection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ListSortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"ModifierKeys":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ModifierKeys","k":"enum","s":"enums","m":{"Alt":"Alt","Apple":"Apple","Control":"Control","None":"None","Shift":"Shift","Windows":"Windows"}}],"MouseButton":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/MouseButton","k":"enum","s":"enums","m":{"Left":"Left","Middle":"Middle","Right":"Right","Unkown":"Unkown"}}],"NativeUIElementFactoryFlavor":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/NativeUIElementFactoryFlavor","k":"enum","s":"enums","m":{"NativePlatform":"NativePlatform","None":"None","XPlat":"XPlat"}}],"NeedleBeingDragged":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/NeedleBeingDragged","k":"enum","s":"enums","m":{"Highlight":"Highlight","Main":"Main","None":"None"}}],"NotifyCollectionChangedAction":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/NotifyCollectionChangedAction","k":"enum","s":"enums","m":{"Add":"Add","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"NumberStyles":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/NumberStyles","k":"enum","s":"enums","m":{"AllowCurrencySymbol":"AllowCurrencySymbol","AllowDecimalPoint":"AllowDecimalPoint","AllowExponent":"AllowExponent","AllowHexSpecifier":"AllowHexSpecifier","AllowLeadingSign":"AllowLeadingSign","AllowLeadingWhite":"AllowLeadingWhite","AllowParentheses":"AllowParentheses","AllowThousands":"AllowThousands","AllowTrailingSign":"AllowTrailingSign","AllowTrailingWhite":"AllowTrailingWhite","Any":"Any","Currency":"Currency","Float":"Float","HexNumber":"HexNumber","Integer":"Integer","None":"None","Number":"Number"}}],"OthersCategoryType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/OthersCategoryType","k":"enum","s":"enums","m":{"Number":"Number","Percent":"Percent"}}],"PathSegmentType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PathSegmentType","k":"enum","s":"enums","m":{"Arc":"Arc","Bezier":"Bezier","Line":"Line","PolyBezier":"PolyBezier","PolyLine":"PolyLine"}}],"PenLineCap":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PenLineCap","k":"enum","s":"enums","m":{"Flat":"Flat","Round":"Round","Square":"Square","Triangle":"Triangle"}}],"PenLineJoin":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PenLineJoin","k":"enum","s":"enums","m":{"Bevel":"Bevel","Miter":"Miter","Round":"Round"}}],"PermissionState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PermissionState","k":"enum","s":"enums","m":{"None":"None","Unrestricted":"Unrestricted"}}],"PopupAlignment":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PopupAlignment","k":"enum","s":"enums","m":{"Auto":"Auto","Far":"Far","Middle":"Middle","Near":"Near"}}],"PopupAnimationType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PopupAnimationType","k":"enum","s":"enums","m":{"FadeInOutSlide":"FadeInOutSlide","GrowShrink":"GrowShrink"}}],"PopupDirection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PopupDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"PopupPointerPosition":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/PopupPointerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"RadialLabelMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/RadialLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Label":"Label","LabelAndPercentage":"LabelAndPercentage","LabelAndValue":"LabelAndValue","LabelAndValueAndPercentage":"LabelAndValueAndPercentage","Normal":"Normal","Percentage":"Percentage","Value":"Value","ValueAndPercentage":"ValueAndPercentage"}}],"ReadState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ReadState","k":"enum","s":"enums","m":{"Closed":"Closed","EndOfFile":"EndOfFile","Error":"Error","Initial":"Initial","Interactive":"Interactive"}}],"RegexOptions":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/RegexOptions","k":"enum","s":"enums","m":{"Compiled":"Compiled","CultureInvariant":"CultureInvariant","ECMAScript":"ECMAScript","ExplicitCapture":"ExplicitCapture","IgnoreCase":"IgnoreCase","IgnorePatternWhitespace":"IgnorePatternWhitespace","Multiline":"Multiline","None":"None","RightToLeft":"RightToLeft","Singleline":"Singleline"}}],"ScrollbarStyle":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ScrollbarStyle","k":"enum","s":"enums","m":{"Default":"Default","Fading":"Fading","Hidden":"Hidden","Thin":"Thin"}}],"SecurityAction":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/SecurityAction","k":"enum","s":"enums","m":{"Assert":"Assert","Demand":"Demand","Deny":"Deny","InheritanceDemand":"InheritanceDemand","LinkDemand":"LinkDemand","PermitOnly":"PermitOnly","RequestMinimum":"RequestMinimum","RequestOptional":"RequestOptional","RequestRefuse":"RequestRefuse"}}],"SeekOrigin":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/SeekOrigin","k":"enum","s":"enums","m":{"Begin":"Begin","Current":"Current","End":"End"}}],"SeriesHighlightedValuesDisplayMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/SeriesHighlightedValuesDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"ShapeType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ShapeType","k":"enum","s":"enums","m":{"None":"None","Point":"Point","PointM":"PointM","PointZ":"PointZ","Polygon":"Polygon","PolygonM":"PolygonM","PolygonZ":"PolygonZ","PolyLine":"PolyLine","PolyLineM":"PolyLineM","PolyLineZ":"PolyLineZ","PolyPatch":"PolyPatch","PolyPoint":"PolyPoint","PolyPointM":"PolyPointM","PolyPointZ":"PolyPointZ"}}],"SmartPosition":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/SmartPosition","k":"enum","s":"enums","m":{"CenterBottom":"CenterBottom","CenterCenter":"CenterCenter","CenterTop":"CenterTop","LeftBottom":"LeftBottom","LeftCenter":"LeftCenter","LeftTop":"LeftTop","RightBottom":"RightBottom","RightCenter":"RightCenter","RightTop":"RightTop"}}],"Stretch":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/Stretch","k":"enum","s":"enums","m":{"Fill":"Fill","None":"None","Uniform":"Uniform","UniformToFill":"UniformToFill"}}],"StringComparison":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/StringComparison","k":"enum","s":"enums","m":{"CurrentCulture":"CurrentCulture","CurrentCultureIgnoreCase":"CurrentCultureIgnoreCase","InvariantCulture":"InvariantCulture","InvariantCultureIgnoreCase":"InvariantCultureIgnoreCase","Ordinal":"Ordinal","OrdinalIgnoreCase":"OrdinalIgnoreCase"}}],"StringSplitOptions":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/StringSplitOptions","k":"enum","s":"enums","m":{"None":"None","RemoveEmptyEntries":"RemoveEmptyEntries"}}],"SweepDirection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/SweepDirection","k":"enum","s":"enums","m":{"Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"TaskStatus":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TaskStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Created":"Created","Faulted":"Faulted","RanToCompletion":"RanToCompletion"}}],"ToolActionButtonInfoDisplayType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolActionButtonInfoDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionFieldSelectorInfoType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolActionFieldSelectorInfoType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolActionInfoDensity":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolActionInfoDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"ToolActionType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolActionType","k":"enum","s":"enums","m":{"Button":"Button","ButtonPair":"ButtonPair","Checkbox":"Checkbox","CheckboxList":"CheckboxList","ColorEditor":"ColorEditor","Combo":"Combo","FieldSelector":"FieldSelector","GroupHeader":"GroupHeader","IconButton":"IconButton","IconMenu":"IconMenu","Label":"Label","NumberInput":"NumberInput","Radio":"Radio","Separator":"Separator","SubPanel":"SubPanel","TextInput":"TextInput","Unknown":"Unknown"}}],"ToolCommandExecutionState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolCommandExecutionState","k":"enum","s":"enums","m":{"Completed":"Completed","Failed":"Failed","Pending":"Pending"}}],"ToolCommandStateType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolCommandStateType","k":"enum","s":"enums","m":{"IsDisabledChanged":"IsDisabledChanged","ValueChanged":"ValueChanged","VisibilityChanged":"VisibilityChanged"}}],"ToolContextBindingMode":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolContextBindingMode","k":"enum","s":"enums","m":{"OneWay":"OneWay","TwoWay":"TwoWay"}}],"ToolContextValueType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/ToolContextValueType","k":"enum","s":"enums","m":{"BoolValue":"BoolValue","Brush":"Brush","BrushCollection":"BrushCollection","Color":"Color","Data":"Data","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"TransactionEvent":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TransactionEvent","k":"enum","s":"enums","m":{"Add":"Add","Clear":"Clear","Commit":"Commit","End":"End","Redo":"Redo","Undo":"Undo"}}],"TransactionPendingState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TransactionPendingState","k":"enum","s":"enums","m":{"Accept":"Accept","Pending":"Pending","Reject":"Reject"}}],"TransactionType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TransactionType","k":"enum","s":"enums","m":{"Add":"Add","Delete":"Delete","Update":"Update"}}],"TrendLineType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TrendLineType","k":"enum","s":"enums","m":{"CubicFit":"CubicFit","CumulativeAverage":"CumulativeAverage","ExponentialAverage":"ExponentialAverage","ExponentialFit":"ExponentialFit","LinearFit":"LinearFit","LogarithmicFit":"LogarithmicFit","ModifiedAverage":"ModifiedAverage","None":"None","PowerLawFit":"PowerLawFit","QuadraticFit":"QuadraticFit","QuarticFit":"QuarticFit","QuinticFit":"QuinticFit","SimpleAverage":"SimpleAverage","WeightedAverage":"WeightedAverage"}}],"TypeDescriptionPlatform":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TypeDescriptionPlatform","k":"enum","s":"enums","m":{"Angular":"Angular","Blazor":"Blazor","JQuery":"JQuery","Kotlin":"Kotlin","React":"React","Swift":"Swift","Unknown":"Unknown","UWP":"UWP","WebComponents":"WebComponents","WindowsForms":"WindowsForms","WinUI":"WinUI","WPF":"WPF","XamarinAndroid":"XamarinAndroid","XamarinForms":"XamarinForms","XamariniOS":"XamariniOS"}}],"TypeDescriptionWellKnownType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/TypeDescriptionWellKnownType","k":"enum","s":"enums","m":{"Array":"Array","boolean1":"boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","DataTemplate":"DataTemplate","Date":"Date","DoubleCollection":"DoubleCollection","EventRef":"EventRef","ExportedType":"ExportedType","IList":"IList","MethodRef":"MethodRef","Number":"Number","Pixel":"Pixel","PixelPoint":"PixelPoint","PixelRect":"PixelRect","PixelSize":"PixelSize","Point":"Point","Rect":"Rect","Size":"Size","string1":"string1","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unknown":"Unknown","Void":"Void"}}],"UnknownValuePlotting":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/UnknownValuePlotting","k":"enum","s":"enums","m":{"DontPlot":"DontPlot","LinearInterpolate":"LinearInterpolate"}}],"UriKind":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/UriKind","k":"enum","s":"enums","m":{"Absolute":"Absolute","Relative":"Relative","RelativeOrAbsolute":"RelativeOrAbsolute"}}],"VerticalAlignment":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/VerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Stretch":"Stretch","Top":"Top"}}],"Visibility":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/Visibility","k":"enum","s":"enums","m":{"Collapsed":"Collapsed","Visible":"Visible"}}],"WhitespaceHandling":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/WhitespaceHandling","k":"enum","s":"enums","m":{"All":"All","None":"None","Significant":"Significant"}}],"WriteState":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/WriteState","k":"enum","s":"enums","m":{"Attribute":"Attribute","Closed":"Closed","Content":"Content","Element":"Element","Prolog":"Prolog","Start":"Start"}}],"XBaseDataType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/XBaseDataType","k":"enum","s":"enums","m":{"AutoIncrement":"AutoIncrement","Binary":"Binary","Character":"Character","Currency":"Currency","Date":"Date","DateTime":"DateTime","double1":"double1","FloatingPoint":"FloatingPoint","General":"General","Integer":"Integer","Logical":"Logical","Memo":"Memo","Number":"Number","Picture":"Picture","Timestamp":"Timestamp","Variant":"Variant","VariField":"VariField"}}],"XmlNodeType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/XmlNodeType","k":"enum","s":"enums","m":{"Attribute":"Attribute","CDATA":"CDATA","Comment":"Comment","Document":"Document","DocumentFragment":"DocumentFragment","DocumentType":"DocumentType","Element":"Element","EndElement":"EndElement","EndEntity":"EndEntity","Entity":"Entity","EntityReference":"EntityReference","None":"None","Notation":"Notation","ProcessingInstruction":"ProcessingInstruction","SignificantWhitespace":"SignificantWhitespace","Text":"Text","Whitespace":"Whitespace","XmlDeclaration":"XmlDeclaration"}}],"XmlSpace":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/enums/XmlSpace","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Preserve":"Preserve"}}],"InstanceConstructor":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/types/InstanceConstructor","k":"type","s":"types"}],"RenderFunction":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/types/RenderFunction","k":"type","s":"types"}],"a$":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/a-","k":"variable","s":"variables"}],"Array_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Array_-type","k":"variable","s":"variables"}],"b$":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/b-","k":"variable","s":"variables"}],"Boolean_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Boolean_-type","k":"variable","s":"variables"}],"boolToDecimal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToDecimal","k":"variable","s":"variables"}],"boolToDouble":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToDouble","k":"variable","s":"variables"}],"boolToInt32":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToInt32","k":"variable","s":"variables"}],"boolToInt64":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToInt64","k":"variable","s":"variables"}],"boolToSingle":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToSingle","k":"variable","s":"variables"}],"boolToUInt16":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToUInt16","k":"variable","s":"variables"}],"boolToUInt32":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToUInt32","k":"variable","s":"variables"}],"boolToUInt64":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/boolToUInt64","k":"variable","s":"variables"}],"CalendarWeekRule_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/CalendarWeekRule_-type","k":"variable","s":"variables"}],"d$":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/d-","k":"variable","s":"variables"}],"Date_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Date_-type","k":"variable","s":"variables"}],"DateTimeKind_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/DateTimeKind_-type","k":"variable","s":"variables"}],"DayOfWeek_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/DayOfWeek_-type","k":"variable","s":"variables"}],"Delegate_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Delegate_-type","k":"variable","s":"variables"}],"DomPortal_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/DomPortal_-type","k":"variable","s":"variables"}],"DomRenderer_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/DomRenderer_-type","k":"variable","s":"variables"}],"DomWrapper_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/DomWrapper_-type","k":"variable","s":"variables"}],"ICollection_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/ICollection_-type","k":"variable","s":"variables"}],"ICollection$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/ICollection-1_-type","k":"variable","s":"variables"}],"IComparable_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IComparable_-type","k":"variable","s":"variables"}],"IComparable$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IComparable-1_-type","k":"variable","s":"variables"}],"IConvertible_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IConvertible_-type","k":"variable","s":"variables"}],"IDictionary_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IDictionary_-type","k":"variable","s":"variables"}],"IDisposable_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IDisposable_-type","k":"variable","s":"variables"}],"IEnumerable_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEnumerable_-type","k":"variable","s":"variables"}],"IEnumerable$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEnumerable-1_-type","k":"variable","s":"variables"}],"IEnumerator_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEnumerator_-type","k":"variable","s":"variables"}],"IEnumerator$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEnumerator-1_-type","k":"variable","s":"variables"}],"IEqualityComparer_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEqualityComparer_-type","k":"variable","s":"variables"}],"IEqualityComparer$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEqualityComparer-1_-type","k":"variable","s":"variables"}],"IEquatable$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IEquatable-1_-type","k":"variable","s":"variables"}],"IFormatProvider_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IFormatProvider_-type","k":"variable","s":"variables"}],"IList_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IList_-type","k":"variable","s":"variables"}],"IList$1_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/IList-1_-type","k":"variable","s":"variables"}],"INotifyPropertyChanged_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/INotifyPropertyChanged_-type","k":"variable","s":"variables"}],"n$":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/n-","k":"variable","s":"variables"}],"Number_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Number_-type","k":"variable","s":"variables"}],"Point_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Point_-type","k":"variable","s":"variables"}],"s$":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/s-","k":"variable","s":"variables"}],"String_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/String_-type","k":"variable","s":"variables"}],"stringCompare":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/stringCompare","k":"variable","s":"variables"}],"toDecimal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/toDecimal","k":"variable","s":"variables"}],"v$":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/v-","k":"variable","s":"variables"}],"Void_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/Void_-type","k":"variable","s":"variables"}],"wellKnownColors":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/wellKnownColors","k":"variable","s":"variables"}],"XmlAttribute_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlAttribute_-type","k":"variable","s":"variables"}],"XmlDocument_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlDocument_-type","k":"variable","s":"variables"}],"XmlElement_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlElement_-type","k":"variable","s":"variables"}],"XmlLinkedNode_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlLinkedNode_-type","k":"variable","s":"variables"}],"XmlNamedNodeMap_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlNamedNodeMap_-type","k":"variable","s":"variables"}],"XmlNode_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlNode_-type","k":"variable","s":"variables"}],"XmlNodeList_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlNodeList_-type","k":"variable","s":"variables"}],"XmlNodeType_$type":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/variables/XmlNodeType_-type","k":"variable","s":"variables"}],"addBrushPaletteThemeEntry":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/addBrushPaletteThemeEntry","k":"function","s":"functions"}],"addPaletteThemeEntry":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/addPaletteThemeEntry","k":"function","s":"functions"}],"addTextThemeEntry":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/addTextThemeEntry","k":"function","s":"functions"}],"arrayClear":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayClear","k":"function","s":"functions"}],"arrayClear1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayClear1","k":"function","s":"functions"}],"arrayContains":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayContains","k":"function","s":"functions"}],"arrayCopy":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayCopy","k":"function","s":"functions"}],"arrayCopy1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayCopy1","k":"function","s":"functions"}],"arrayCopy2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayCopy2","k":"function","s":"functions"}],"arrayCopyTo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayCopyTo","k":"function","s":"functions"}],"arrayFindByName":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayFindByName","k":"function","s":"functions"}],"arrayGetLength":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayGetLength","k":"function","s":"functions"}],"arrayGetRank":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayGetRank","k":"function","s":"functions"}],"arrayGetValue":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayGetValue","k":"function","s":"functions"}],"arrayIndexOf1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayIndexOf1","k":"function","s":"functions"}],"arrayInsert":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayInsert","k":"function","s":"functions"}],"arrayInsertRange":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayInsertRange","k":"function","s":"functions"}],"arrayInsertRange1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayInsertRange1","k":"function","s":"functions"}],"arrayLast":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayLast","k":"function","s":"functions"}],"arrayListCreate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayListCreate","k":"function","s":"functions"}],"arrayRemoveAt":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayRemoveAt","k":"function","s":"functions"}],"arrayRemoveItem":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayRemoveItem","k":"function","s":"functions"}],"arrayResize":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayResize","k":"function","s":"functions"}],"arrayShallowClone":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/arrayShallowClone","k":"function","s":"functions"}],"b64toUint8Array":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/b64toUint8Array","k":"function","s":"functions"}],"boolCompare":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/boolCompare","k":"function","s":"functions"}],"boolToInt16":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/boolToInt16","k":"function","s":"functions"}],"boolToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/boolToString","k":"function","s":"functions"}],"boxArray$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/boxArray-1","k":"function","s":"functions"}],"brushCollectionToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/brushCollectionToString","k":"function","s":"functions"}],"brushToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/brushToString","k":"function","s":"functions"}],"callStaticConstructors":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/callStaticConstructors","k":"function","s":"functions"}],"ceil10":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/ceil10","k":"function","s":"functions"}],"charMaxValue":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/charMaxValue","k":"function","s":"functions"}],"charMinValue":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/charMinValue","k":"function","s":"functions"}],"colorCollectionToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/colorCollectionToString","k":"function","s":"functions"}],"colorToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/colorToString","k":"function","s":"functions"}],"compareTo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/compareTo","k":"function","s":"functions"}],"createGuid":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/createGuid","k":"function","s":"functions"}],"createMutationObserver":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/createMutationObserver","k":"function","s":"functions"}],"dateAdd":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAdd","k":"function","s":"functions"}],"dateAddDays":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAddDays","k":"function","s":"functions"}],"dateAddHours":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAddHours","k":"function","s":"functions"}],"dateAddMinutes":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAddMinutes","k":"function","s":"functions"}],"dateAddMonths":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAddMonths","k":"function","s":"functions"}],"dateAddSeconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAddSeconds","k":"function","s":"functions"}],"dateAddYears":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateAddYears","k":"function","s":"functions"}],"dateEquals":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateEquals","k":"function","s":"functions"}],"dateFromFileTime":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateFromFileTime","k":"function","s":"functions"}],"dateFromFileTimeUtc":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateFromFileTimeUtc","k":"function","s":"functions"}],"dateFromMilliseconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateFromMilliseconds","k":"function","s":"functions"}],"dateFromTicks":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateFromTicks","k":"function","s":"functions"}],"dateFromValues":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateFromValues","k":"function","s":"functions"}],"dateGetDate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateGetDate","k":"function","s":"functions"}],"dateGetMonth":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateGetMonth","k":"function","s":"functions"}],"dateGetTimeOfDay":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateGetTimeOfDay","k":"function","s":"functions"}],"dateIsDST":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateIsDST","k":"function","s":"functions"}],"dateIsLeapYear":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateIsLeapYear","k":"function","s":"functions"}],"dateKind":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateKind","k":"function","s":"functions"}],"dateMaxValue":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateMaxValue","k":"function","s":"functions"}],"dateMinValue":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateMinValue","k":"function","s":"functions"}],"dateNow":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateNow","k":"function","s":"functions"}],"dateParse":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateParse","k":"function","s":"functions"}],"dateParseExact":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateParseExact","k":"function","s":"functions"}],"dateStdTimezoneOffset":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateStdTimezoneOffset","k":"function","s":"functions"}],"dateSubtract":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateSubtract","k":"function","s":"functions"}],"dateToday":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateToday","k":"function","s":"functions"}],"dateToFileTime":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateToFileTime","k":"function","s":"functions"}],"dateToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateToString","k":"function","s":"functions"}],"dateToStringFormat":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateToStringFormat","k":"function","s":"functions"}],"dateTryParse":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/dateTryParse","k":"function","s":"functions"}],"daysInMonth":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/daysInMonth","k":"function","s":"functions"}],"decimalAdjust":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/decimalAdjust","k":"function","s":"functions"}],"defaultDVDateParse":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/defaultDVDateParse","k":"function","s":"functions"}],"delegateCombine":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/delegateCombine","k":"function","s":"functions"}],"delegateRemove":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/delegateRemove","k":"function","s":"functions"}],"doubleCollectionToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/doubleCollectionToString","k":"function","s":"functions"}],"endsWith1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/endsWith1","k":"function","s":"functions"}],"ensureBool":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/ensureBool","k":"function","s":"functions"}],"ensureEnum":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/ensureEnum","k":"function","s":"functions"}],"enumGetBox":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/enumGetBox","k":"function","s":"functions"}],"enumToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/enumToString","k":"function","s":"functions"}],"floor10":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/floor10","k":"function","s":"functions"}],"fromBrushCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromBrushCollection","k":"function","s":"functions"}],"fromColorCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromColorCollection","k":"function","s":"functions"}],"fromDict":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromDict","k":"function","s":"functions"}],"fromDoubleCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromDoubleCollection","k":"function","s":"functions"}],"fromEn":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromEn","k":"function","s":"functions"}],"fromEnum":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromEnum","k":"function","s":"functions"}],"fromOADate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromOADate","k":"function","s":"functions"}],"fromPoint":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromPoint","k":"function","s":"functions"}],"fromRect":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromRect","k":"function","s":"functions"}],"fromSize":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromSize","k":"function","s":"functions"}],"fromSpinal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/fromSpinal","k":"function","s":"functions"}],"getAllPropertyNames":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getAllPropertyNames","k":"function","s":"functions"}],"getBoxIfEnum":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getBoxIfEnum","k":"function","s":"functions"}],"getColorStringSafe":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getColorStringSafe","k":"function","s":"functions"}],"getEn":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getEn","k":"function","s":"functions"}],"getEnumerator":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getEnumerator","k":"function","s":"functions"}],"getEnumeratorObject":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getEnumeratorObject","k":"function","s":"functions"}],"getInstanceType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getInstanceType","k":"function","s":"functions"}],"getModifiedProps":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/getModifiedProps","k":"function","s":"functions"}],"ieeeRemainder":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/ieeeRemainder","k":"function","s":"functions"}],"indexOfAny":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/indexOfAny","k":"function","s":"functions"}],"initializePropertiesFromCss":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/initializePropertiesFromCss","k":"function","s":"functions"}],"intDivide":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/intDivide","k":"function","s":"functions"}],"interfaceToInternal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/interfaceToInternal","k":"function","s":"functions"}],"intSToU":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/intSToU","k":"function","s":"functions"}],"intToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/intToString","k":"function","s":"functions"}],"intToString1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/intToString1","k":"function","s":"functions"}],"isDigit":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isDigit","k":"function","s":"functions"}],"isDigit1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isDigit1","k":"function","s":"functions"}],"isInfinity":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isInfinity","k":"function","s":"functions"}],"isLetter":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isLetter","k":"function","s":"functions"}],"isLetterOrDigit":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isLetterOrDigit","k":"function","s":"functions"}],"isLower":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isLower","k":"function","s":"functions"}],"isNaN_":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isNaN_","k":"function","s":"functions"}],"isNegativeInfinity":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isNegativeInfinity","k":"function","s":"functions"}],"isNumber":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isNumber","k":"function","s":"functions"}],"isPoint":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isPoint","k":"function","s":"functions"}],"isPositiveInfinity":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isPositiveInfinity","k":"function","s":"functions"}],"isRect":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isRect","k":"function","s":"functions"}],"isSize":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isSize","k":"function","s":"functions"}],"isValidProp":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/isValidProp","k":"function","s":"functions"}],"lastIndexOfAny":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/lastIndexOfAny","k":"function","s":"functions"}],"log10":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/log10","k":"function","s":"functions"}],"logBase":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/logBase","k":"function","s":"functions"}],"markDep":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/markDep","k":"function","s":"functions"}],"markEnum":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/markEnum","k":"function","s":"functions"}],"markStruct":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/markStruct","k":"function","s":"functions"}],"markType":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/markType","k":"function","s":"functions"}],"netRegexToJS":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/netRegexToJS","k":"function","s":"functions"}],"nullableAdd":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableAdd","k":"function","s":"functions"}],"nullableConcat":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableConcat","k":"function","s":"functions"}],"nullableDivide":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableDivide","k":"function","s":"functions"}],"nullableEquals":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableEquals","k":"function","s":"functions"}],"nullableGreaterThan":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableGreaterThan","k":"function","s":"functions"}],"nullableGreaterThanOrEqual":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableGreaterThanOrEqual","k":"function","s":"functions"}],"nullableIsNull":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableIsNull","k":"function","s":"functions"}],"nullableLessThan":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableLessThan","k":"function","s":"functions"}],"nullableLessThanOrEqual":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableLessThanOrEqual","k":"function","s":"functions"}],"nullableModulus":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableModulus","k":"function","s":"functions"}],"nullableMultiply":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableMultiply","k":"function","s":"functions"}],"nullableNotEquals":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableNotEquals","k":"function","s":"functions"}],"nullableSubtract":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/nullableSubtract","k":"function","s":"functions"}],"numberToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/numberToString","k":"function","s":"functions"}],"numberToString1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/numberToString1","k":"function","s":"functions"}],"numberToString2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/numberToString2","k":"function","s":"functions"}],"padLeft":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/padLeft","k":"function","s":"functions"}],"padRight":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/padRight","k":"function","s":"functions"}],"parseBool":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseBool","k":"function","s":"functions"}],"parseInt16_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt16_1","k":"function","s":"functions"}],"parseInt16_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt16_2","k":"function","s":"functions"}],"parseInt32_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt32_1","k":"function","s":"functions"}],"parseInt32_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt32_2","k":"function","s":"functions"}],"parseInt64_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt64_1","k":"function","s":"functions"}],"parseInt64_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt64_2","k":"function","s":"functions"}],"parseInt8_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt8_1","k":"function","s":"functions"}],"parseInt8_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseInt8_2","k":"function","s":"functions"}],"parseIntCore":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseIntCore","k":"function","s":"functions"}],"parseNumber":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseNumber","k":"function","s":"functions"}],"parseNumber1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseNumber1","k":"function","s":"functions"}],"parseUInt16_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt16_1","k":"function","s":"functions"}],"parseUInt16_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt16_2","k":"function","s":"functions"}],"parseUInt32_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt32_1","k":"function","s":"functions"}],"parseUInt32_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt32_2","k":"function","s":"functions"}],"parseUInt64_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt64_1","k":"function","s":"functions"}],"parseUInt64_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt64_2","k":"function","s":"functions"}],"parseUInt8_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt8_1","k":"function","s":"functions"}],"parseUInt8_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/parseUInt8_2","k":"function","s":"functions"}],"pointFromLiteral":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/pointFromLiteral","k":"function","s":"functions"}],"pointToLiteral":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/pointToLiteral","k":"function","s":"functions"}],"pointToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/pointToString","k":"function","s":"functions"}],"rectFromLiteral":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/rectFromLiteral","k":"function","s":"functions"}],"rectToLiteral":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/rectToLiteral","k":"function","s":"functions"}],"rectToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/rectToString","k":"function","s":"functions"}],"reverse":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/reverse","k":"function","s":"functions"}],"rgbToHex":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/rgbToHex","k":"function","s":"functions"}],"round10":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/round10","k":"function","s":"functions"}],"round10N":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/round10N","k":"function","s":"functions"}],"runOn":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/runOn","k":"function","s":"functions"}],"sizeFromLiteral":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/sizeFromLiteral","k":"function","s":"functions"}],"sizeToLiteral":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/sizeToLiteral","k":"function","s":"functions"}],"sizeToString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/sizeToString","k":"function","s":"functions"}],"sleep":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/sleep","k":"function","s":"functions"}],"startsWith1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/startsWith1","k":"function","s":"functions"}],"stringCompare1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCompare1","k":"function","s":"functions"}],"stringCompare2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCompare2","k":"function","s":"functions"}],"stringCompare3":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCompare3","k":"function","s":"functions"}],"stringCompareOrdinal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCompareOrdinal","k":"function","s":"functions"}],"stringCompareTo":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCompareTo","k":"function","s":"functions"}],"stringConcat":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringConcat","k":"function","s":"functions"}],"stringContains":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringContains","k":"function","s":"functions"}],"stringCopyToCharArray":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCopyToCharArray","k":"function","s":"functions"}],"stringCreateFromChar":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCreateFromChar","k":"function","s":"functions"}],"stringCreateFromCharArray":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCreateFromCharArray","k":"function","s":"functions"}],"stringCreateFromCharArraySlice":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringCreateFromCharArraySlice","k":"function","s":"functions"}],"stringEmpty":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringEmpty","k":"function","s":"functions"}],"stringEndsWith":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringEndsWith","k":"function","s":"functions"}],"stringEquals":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringEquals","k":"function","s":"functions"}],"stringEquals1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringEquals1","k":"function","s":"functions"}],"stringEscapeRegExp":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringEscapeRegExp","k":"function","s":"functions"}],"stringFormat":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringFormat","k":"function","s":"functions"}],"stringFormat1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringFormat1","k":"function","s":"functions"}],"stringFormat2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringFormat2","k":"function","s":"functions"}],"stringInsert":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringInsert","k":"function","s":"functions"}],"stringIsDigit":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringIsDigit","k":"function","s":"functions"}],"stringIsNullOrEmpty":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringIsNullOrEmpty","k":"function","s":"functions"}],"stringIsNullOrWhiteSpace":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringIsNullOrWhiteSpace","k":"function","s":"functions"}],"stringJoin":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringJoin","k":"function","s":"functions"}],"stringJoin1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringJoin1","k":"function","s":"functions"}],"stringRemove":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringRemove","k":"function","s":"functions"}],"stringReplace":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringReplace","k":"function","s":"functions"}],"stringSplit":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringSplit","k":"function","s":"functions"}],"stringStartsWith":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringStartsWith","k":"function","s":"functions"}],"stringToBrush":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToBrush","k":"function","s":"functions"}],"stringToCharArray":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToCharArray","k":"function","s":"functions"}],"stringToColor":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToColor","k":"function","s":"functions"}],"stringToLocaleLower":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToLocaleLower","k":"function","s":"functions"}],"stringToLocaleUpper":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToLocaleUpper","k":"function","s":"functions"}],"stringToString$1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToString-1","k":"function","s":"functions"}],"stringToString1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/stringToString1","k":"function","s":"functions"}],"strToColor":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/strToColor","k":"function","s":"functions"}],"timeSpanDays":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanDays","k":"function","s":"functions"}],"timeSpanFromDays":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanFromDays","k":"function","s":"functions"}],"timeSpanFromHours":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanFromHours","k":"function","s":"functions"}],"timeSpanFromMilliseconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanFromMilliseconds","k":"function","s":"functions"}],"timeSpanFromMinutes":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanFromMinutes","k":"function","s":"functions"}],"timeSpanFromSeconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanFromSeconds","k":"function","s":"functions"}],"timeSpanFromTicks":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanFromTicks","k":"function","s":"functions"}],"timeSpanHours":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanHours","k":"function","s":"functions"}],"timeSpanInit1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanInit1","k":"function","s":"functions"}],"timeSpanInit2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanInit2","k":"function","s":"functions"}],"timeSpanInit3":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanInit3","k":"function","s":"functions"}],"timeSpanMilliseconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanMilliseconds","k":"function","s":"functions"}],"timeSpanMinutes":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanMinutes","k":"function","s":"functions"}],"timeSpanNegate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanNegate","k":"function","s":"functions"}],"timeSpanSeconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanSeconds","k":"function","s":"functions"}],"timeSpanTicks":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanTicks","k":"function","s":"functions"}],"timeSpanTotalDays":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanTotalDays","k":"function","s":"functions"}],"timeSpanTotalHours":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanTotalHours","k":"function","s":"functions"}],"timeSpanTotalMilliseconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanTotalMilliseconds","k":"function","s":"functions"}],"timeSpanTotalMinutes":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanTotalMinutes","k":"function","s":"functions"}],"timeSpanTotalSeconds":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/timeSpanTotalSeconds","k":"function","s":"functions"}],"toBoolean":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toBoolean","k":"function","s":"functions"}],"toBrushCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toBrushCollection","k":"function","s":"functions"}],"toColorCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toColorCollection","k":"function","s":"functions"}],"toDouble":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toDouble","k":"function","s":"functions"}],"toDoubleCollection":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toDoubleCollection","k":"function","s":"functions"}],"toEn":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toEn","k":"function","s":"functions"}],"toEnum":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toEnum","k":"function","s":"functions"}],"toLocalTime":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toLocalTime","k":"function","s":"functions"}],"toLongDateString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toLongDateString","k":"function","s":"functions"}],"toLongTimeString":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toLongTimeString","k":"function","s":"functions"}],"toNullable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toNullable","k":"function","s":"functions"}],"toOADate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toOADate","k":"function","s":"functions"}],"toPoint":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toPoint","k":"function","s":"functions"}],"toRect":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toRect","k":"function","s":"functions"}],"toSize":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toSize","k":"function","s":"functions"}],"toSpinal":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toSpinal","k":"function","s":"functions"}],"toString1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toString1","k":"function","s":"functions"}],"toUniversalTime":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/toUniversalTime","k":"function","s":"functions"}],"trim":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/trim","k":"function","s":"functions"}],"trimEnd":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/trimEnd","k":"function","s":"functions"}],"trimStart":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/trimStart","k":"function","s":"functions"}],"truncate":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/truncate","k":"function","s":"functions"}],"tryParseBool":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseBool","k":"function","s":"functions"}],"tryParseInt16_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt16_1","k":"function","s":"functions"}],"tryParseInt16_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt16_2","k":"function","s":"functions"}],"tryParseInt32_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt32_1","k":"function","s":"functions"}],"tryParseInt32_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt32_2","k":"function","s":"functions"}],"tryParseInt64_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt64_1","k":"function","s":"functions"}],"tryParseInt64_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt64_2","k":"function","s":"functions"}],"tryParseInt8_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt8_1","k":"function","s":"functions"}],"tryParseInt8_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseInt8_2","k":"function","s":"functions"}],"tryParseIntCore":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseIntCore","k":"function","s":"functions"}],"tryParseNumber":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseNumber","k":"function","s":"functions"}],"tryParseNumber1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseNumber1","k":"function","s":"functions"}],"tryParseUInt16_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt16_1","k":"function","s":"functions"}],"tryParseUInt16_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt16_2","k":"function","s":"functions"}],"tryParseUInt32_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt32_1","k":"function","s":"functions"}],"tryParseUInt32_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt32_2","k":"function","s":"functions"}],"tryParseUInt64_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt64_1","k":"function","s":"functions"}],"tryParseUInt64_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt64_2","k":"function","s":"functions"}],"tryParseUInt8_1":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt8_1","k":"function","s":"functions"}],"tryParseUInt8_2":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/tryParseUInt8_2","k":"function","s":"functions"}],"typeCast":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/typeCast","k":"function","s":"functions"}],"typeCastObjTo$t":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/typeCastObjTo-t","k":"function","s":"functions"}],"typeGetValue":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/typeGetValue","k":"function","s":"functions"}],"u32BitwiseAnd":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/u32BitwiseAnd","k":"function","s":"functions"}],"u32BitwiseOr":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/u32BitwiseOr","k":"function","s":"functions"}],"u32BitwiseXor":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/u32BitwiseXor","k":"function","s":"functions"}],"u32LS":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/u32LS","k":"function","s":"functions"}],"uint8ArraytoB64":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/uint8ArraytoB64","k":"function","s":"functions"}],"unboxArray":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/unboxArray","k":"function","s":"functions"}],"unicode_hack":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/unicode_hack","k":"function","s":"functions"}],"unwrapNullable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/unwrapNullable","k":"function","s":"functions"}],"wrapNullable":[{"p":"igniteui-angular-core","u":"/api/angular/igniteui-angular-core/21.0.0/functions/wrapNullable","k":"function","s":"functions"}],"IgxAbsoluteVolumeOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAbsoluteVolumeOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_longPeriod":"ngAcceptInputType_longPeriod","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shortPeriod":"ngAcceptInputType_shortPeriod","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAccumulationDistributionIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAccumulationDistributionIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAnchoredCategorySeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAnchoredCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAnchoredRadialSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAnchoredRadialSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers","ngAcceptInputType_autoCalloutPercentagePrecision":"ngAcceptInputType_autoCalloutPercentagePrecision","ngAcceptInputType_autoCalloutRadialLabelMode":"ngAcceptInputType_autoCalloutRadialLabelMode","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomRadialMarkerStyleAllowed":"ngAcceptInputType_isCustomRadialMarkerStyleAllowed","ngAcceptInputType_isCustomRadialStyleAllowed":"ngAcceptInputType_isCustomRadialStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_legendRadialLabelMode":"ngAcceptInputType_legendRadialLabelMode","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_proportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_proportionalRadialLabelFormatSpecifiers","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCategoryNormalizedValues":"ngAcceptInputType_useCategoryNormalizedValues","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAnnotationLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAnnotationLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAreaFragmentComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAreaFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAssigningCategoryMarkerStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningCategoryMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningCategoryStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningCategoryStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningCategoryStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningCategoryStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningPolarMarkerStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningPolarMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningPolarStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningPolarStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningPolarStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningPolarStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningRadialMarkerStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningRadialMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningRadialStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningRadialStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningRadialStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningRadialStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningScatterMarkerStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningScatterMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningScatterStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningScatterStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningScatterStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningScatterStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningSeriesShapeStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningSeriesShapeStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningSeriesStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningSeriesStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningShapeMarkerStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningShapeMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningShapeStyleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningShapeStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAssigningShapeStyleEventArgsBase":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAssigningShapeStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endIndex":"ngAcceptInputType_endIndex","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_hasDateRange":"ngAcceptInputType_hasDateRange","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isNegativeShape":"ngAcceptInputType_isNegativeShape","ngAcceptInputType_isThumbnail":"ngAcceptInputType_isThumbnail","ngAcceptInputType_maxAllSeriesFocusHighlightingProgress":"ngAcceptInputType_maxAllSeriesFocusHighlightingProgress","ngAcceptInputType_maxAllSeriesHighlightingProgress":"ngAcceptInputType_maxAllSeriesHighlightingProgress","ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_maxAllSeriesSelectionHighlightingProgress","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_startIndex":"ngAcceptInputType_startIndex","ngAcceptInputType_sumAllSeriesFocusHighlightingProgress":"ngAcceptInputType_sumAllSeriesFocusHighlightingProgress","ngAcceptInputType_sumAllSeriesHighlightingProgress":"ngAcceptInputType_sumAllSeriesHighlightingProgress","ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_sumAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighlightingProgress":"ngAcceptInputType_totalAllSeriesFocusHighlightingProgress","ngAcceptInputType_totalAllSeriesFocusHighWaterMark":"ngAcceptInputType_totalAllSeriesFocusHighWaterMark","ngAcceptInputType_totalAllSeriesHighlightingProgress":"ngAcceptInputType_totalAllSeriesHighlightingProgress","ngAcceptInputType_totalAllSeriesHighWaterMark":"ngAcceptInputType_totalAllSeriesHighWaterMark","ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress":"ngAcceptInputType_totalAllSeriesSelectionHighlightingProgress","ngAcceptInputType_totalAllSeriesSelectionHighWaterMark":"ngAcceptInputType_totalAllSeriesSelectionHighWaterMark","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAverageDirectionalIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAverageDirectionalIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAverageTrueRangeIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAverageTrueRangeIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxAxisAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_backgroundCornerRadius":"ngAcceptInputType_backgroundCornerRadius","ngAcceptInputType_backgroundPaddingBottom":"ngAcceptInputType_backgroundPaddingBottom","ngAcceptInputType_backgroundPaddingLeft":"ngAcceptInputType_backgroundPaddingLeft","ngAcceptInputType_backgroundPaddingRight":"ngAcceptInputType_backgroundPaddingRight","ngAcceptInputType_backgroundPaddingTop":"ngAcceptInputType_backgroundPaddingTop","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeOutlineThickness":"ngAcceptInputType_badgeOutlineThickness","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_isBadgeEnabled":"ngAcceptInputType_isBadgeEnabled","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","background":"background","backgroundCornerRadius":"backgroundCornerRadius","backgroundPaddingBottom":"backgroundPaddingBottom","backgroundPaddingLeft":"backgroundPaddingLeft","backgroundPaddingRight":"backgroundPaddingRight","backgroundPaddingTop":"backgroundPaddingTop","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeOutlineThickness":"badgeOutlineThickness","badgeSize":"badgeSize","formatLabel":"formatLabel","isBadgeEnabled":"isBadgeEnabled","isPillShaped":"isPillShaped","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","outline":"outline","strokeThickness":"strokeThickness","text":"text","textColor":"textColor","value":"value","findByName":"findByName","resetCachedExtent":"resetCachedExtent","resolveLabelValue":"resolveLabelValue"}}],"IgxAxisAnnotationCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxAxisCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","i":"i","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","_createFromInternal":"_createFromInternal"}}],"IgxAxisMatcher":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisMatcher","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_typedIndex":"ngAcceptInputType_typedIndex","axisType":"axisType","index":"index","memberPath":"memberPath","memberPathType":"memberPathType","name":"name","title":"title","typedIndex":"typedIndex","findByName":"findByName"}}],"IgxAxisMouseEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_axisValue":"ngAcceptInputType_axisValue","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","ngAcceptInputType_worldPosition":"ngAcceptInputType_worldPosition","axis":"axis","axisDateValue":"axisDateValue","axisValue":"axisValue","chartPosition":"chartPosition","label":"label","labelContext":"labelContext","plotAreaPosition":"plotAreaPosition","worldPosition":"worldPosition"}}],"IgxAxisRangeChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxAxisRangeChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_oldMaximumValue":"ngAcceptInputType_oldMaximumValue","ngAcceptInputType_oldMinimumValue":"ngAcceptInputType_oldMinimumValue","maximumValue":"maximumValue","minimumValue":"minimumValue","oldMaximumValue":"oldMaximumValue","oldMinimumValue":"oldMinimumValue"}}],"IgxBarFragmentComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxBarFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","barFragmentXAxis":"barFragmentXAxis","barFragmentYAxis":"barFragmentYAxis","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","fragmentXAxis":"fragmentXAxis","fragmentYAxis":"fragmentYAxis","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxBarSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxBarSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxBollingerBandsOverlayComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxBollingerBandsOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_multiplier":"ngAcceptInputType_multiplier","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxBollingerBandWidthIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxBollingerBandWidthIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_multiplier":"ngAcceptInputType_multiplier","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxBrushScaleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxBrushScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_isBrushScale":"ngAcceptInputType_isBrushScale","ngAcceptInputType_isReady":"ngAcceptInputType_isReady","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brushes":"brushes","isBrushScale":"isBrushScale","isReady":"isReady","propertyUpdated":"propertyUpdated","findByName":"findByName","getBrush":"getBrush","ngOnInit":"ngOnInit","notifySeries":"notifySeries","registerSeries":"registerSeries","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal"}}],"IgxBubbleSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxBubbleSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerBrushBrightness":"ngAcceptInputType_markerBrushBrightness","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineBrightness":"ngAcceptInputType_markerOutlineBrightness","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlineUsesFillScale":"ngAcceptInputType_markerOutlineUsesFillScale","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusScaleUseGlobalValues":"ngAcceptInputType_radiusScaleUseGlobalValues","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","fillMemberAsLegendLabel":"fillMemberAsLegendLabel","fillMemberAsLegendUnit":"fillMemberAsLegendUnit","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCalculatedColumn":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalculatedColumn","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","findByName":"findByName"}}],"IgxCalloutAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_backgroundCornerRadius":"ngAcceptInputType_backgroundCornerRadius","ngAcceptInputType_backgroundPaddingBottom":"ngAcceptInputType_backgroundPaddingBottom","ngAcceptInputType_backgroundPaddingLeft":"ngAcceptInputType_backgroundPaddingLeft","ngAcceptInputType_backgroundPaddingRight":"ngAcceptInputType_backgroundPaddingRight","ngAcceptInputType_backgroundPaddingTop":"ngAcceptInputType_backgroundPaddingTop","ngAcceptInputType_badgeCorner":"ngAcceptInputType_badgeCorner","ngAcceptInputType_badgeGap":"ngAcceptInputType_badgeGap","ngAcceptInputType_badgeHeight":"ngAcceptInputType_badgeHeight","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_badgeWidth":"ngAcceptInputType_badgeWidth","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","background":"background","backgroundCornerRadius":"backgroundCornerRadius","backgroundPaddingBottom":"backgroundPaddingBottom","backgroundPaddingLeft":"backgroundPaddingLeft","backgroundPaddingRight":"backgroundPaddingRight","backgroundPaddingTop":"backgroundPaddingTop","badgeBackground":"badgeBackground","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","content":"content","formatLabel":"formatLabel","itemColor":"itemColor","key":"key","leaderBrush":"leaderBrush","outline":"outline","series":"series","strokeThickness":"strokeThickness","text":"text","textColor":"textColor","xValue":"xValue","yValue":"yValue","findByName":"findByName"}}],"IgxCalloutAnnotationCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxCalloutBadgeInfo":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutBadgeInfo","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCorner":"ngAcceptInputType_badgeCorner","ngAcceptInputType_badgeGap":"ngAcceptInputType_badgeGap","ngAcceptInputType_badgeHeight":"ngAcceptInputType_badgeHeight","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_badgeWidth":"ngAcceptInputType_badgeWidth","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","findByName":"findByName"}}],"IgxCalloutContentUpdatingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutContentUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","content":"content","item":"item","xValue":"xValue","yValue":"yValue"}}],"IgxCalloutLabelUpdatingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutLabelUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","label":"label","series":"series","seriesName":"seriesName","xValue":"xValue","yValue":"yValue"}}],"IgxCalloutLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_allowedPositions":"ngAcceptInputType_allowedPositions","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoCalloutVisibilityMode":"ngAcceptInputType_autoCalloutVisibilityMode","ngAcceptInputType_calloutBadgeCorner":"ngAcceptInputType_calloutBadgeCorner","ngAcceptInputType_calloutBadgeGap":"ngAcceptInputType_calloutBadgeGap","ngAcceptInputType_calloutBadgeHeight":"ngAcceptInputType_calloutBadgeHeight","ngAcceptInputType_calloutBadgeMatchSeries":"ngAcceptInputType_calloutBadgeMatchSeries","ngAcceptInputType_calloutBadgeThickness":"ngAcceptInputType_calloutBadgeThickness","ngAcceptInputType_calloutBadgeVisible":"ngAcceptInputType_calloutBadgeVisible","ngAcceptInputType_calloutBadgeWidth":"ngAcceptInputType_calloutBadgeWidth","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutCornerRadius":"ngAcceptInputType_calloutCornerRadius","ngAcceptInputType_calloutExpandsAxisBufferEnabled":"ngAcceptInputType_calloutExpandsAxisBufferEnabled","ngAcceptInputType_calloutExpandsAxisBufferMaxHeight":"ngAcceptInputType_calloutExpandsAxisBufferMaxHeight","ngAcceptInputType_calloutExpandsAxisBufferMaxWidth":"ngAcceptInputType_calloutExpandsAxisBufferMaxWidth","ngAcceptInputType_calloutExpandsAxisBufferMinHeight":"ngAcceptInputType_calloutExpandsAxisBufferMinHeight","ngAcceptInputType_calloutExpandsAxisBufferMinWidth":"ngAcceptInputType_calloutExpandsAxisBufferMinWidth","ngAcceptInputType_calloutExpandsAxisBufferOnInitialVisibility":"ngAcceptInputType_calloutExpandsAxisBufferOnInitialVisibility","ngAcceptInputType_calloutExpandsAxisBufferOnlyWhenVisible":"ngAcceptInputType_calloutExpandsAxisBufferOnlyWhenVisible","ngAcceptInputType_calloutInterpolatedValuePrecision":"ngAcceptInputType_calloutInterpolatedValuePrecision","ngAcceptInputType_calloutPaddingBottom":"ngAcceptInputType_calloutPaddingBottom","ngAcceptInputType_calloutPaddingLeft":"ngAcceptInputType_calloutPaddingLeft","ngAcceptInputType_calloutPaddingRight":"ngAcceptInputType_calloutPaddingRight","ngAcceptInputType_calloutPaddingTop":"ngAcceptInputType_calloutPaddingTop","ngAcceptInputType_calloutPositionPadding":"ngAcceptInputType_calloutPositionPadding","ngAcceptInputType_calloutStrokeThickness":"ngAcceptInputType_calloutStrokeThickness","ngAcceptInputType_calloutSuspendedWhenShiftingToVisible":"ngAcceptInputType_calloutSuspendedWhenShiftingToVisible","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValueLabelMode":"ngAcceptInputType_highlightedValueLabelMode","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isAutoCalloutBehaviorEnabled":"ngAcceptInputType_isAutoCalloutBehaviorEnabled","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCalloutOffsettingEnabled":"ngAcceptInputType_isCalloutOffsettingEnabled","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCalloutRenderStyleEnabled":"ngAcceptInputType_isCustomCalloutRenderStyleEnabled","ngAcceptInputType_isCustomCalloutStyleEnabled":"ngAcceptInputType_isCustomCalloutStyleEnabled","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_shouldTruncateOnBoundaryCollisions":"ngAcceptInputType_shouldTruncateOnBoundaryCollisions","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useAutoContrastingLabelColors":"ngAcceptInputType_useAutoContrastingLabelColors","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolatedValueForAutoCalloutLabels":"ngAcceptInputType_useInterpolatedValueForAutoCalloutLabels","ngAcceptInputType_useItemColorForFill":"ngAcceptInputType_useItemColorForFill","ngAcceptInputType_useItemColorForOutline":"ngAcceptInputType_useItemColorForOutline","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSeriesColorForOutline":"ngAcceptInputType_useSeriesColorForOutline","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","allowedPositions":"allowedPositions","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoCalloutVisibilityMode":"autoCalloutVisibilityMode","brush":"brush","calloutBackground":"calloutBackground","calloutBadgeBackground":"calloutBadgeBackground","calloutBadgeCorner":"calloutBadgeCorner","calloutBadgeGap":"calloutBadgeGap","calloutBadgeHeight":"calloutBadgeHeight","calloutBadgeImageMemberPath":"calloutBadgeImageMemberPath","calloutBadgeMatchSeries":"calloutBadgeMatchSeries","calloutBadgeOutline":"calloutBadgeOutline","calloutBadgeThickness":"calloutBadgeThickness","calloutBadgeVisible":"calloutBadgeVisible","calloutBadgeWidth":"calloutBadgeWidth","calloutCollisionMode":"calloutCollisionMode","calloutContentUpdating":"calloutContentUpdating","calloutCornerRadius":"calloutCornerRadius","calloutDarkTextColor":"calloutDarkTextColor","calloutExpandsAxisBufferEnabled":"calloutExpandsAxisBufferEnabled","calloutExpandsAxisBufferMaxHeight":"calloutExpandsAxisBufferMaxHeight","calloutExpandsAxisBufferMaxWidth":"calloutExpandsAxisBufferMaxWidth","calloutExpandsAxisBufferMinHeight":"calloutExpandsAxisBufferMinHeight","calloutExpandsAxisBufferMinWidth":"calloutExpandsAxisBufferMinWidth","calloutExpandsAxisBufferOnInitialVisibility":"calloutExpandsAxisBufferOnInitialVisibility","calloutExpandsAxisBufferOnlyWhenVisible":"calloutExpandsAxisBufferOnlyWhenVisible","calloutInterpolatedValuePrecision":"calloutInterpolatedValuePrecision","calloutLabelUpdating":"calloutLabelUpdating","calloutLeaderBrush":"calloutLeaderBrush","calloutLightTextColor":"calloutLightTextColor","calloutOutline":"calloutOutline","calloutPaddingBottom":"calloutPaddingBottom","calloutPaddingLeft":"calloutPaddingLeft","calloutPaddingRight":"calloutPaddingRight","calloutPaddingTop":"calloutPaddingTop","calloutPositionPadding":"calloutPositionPadding","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutSeriesSelecting":"calloutSeriesSelecting","calloutStrokeThickness":"calloutStrokeThickness","calloutStyleUpdating":"calloutStyleUpdating","calloutSuspendedWhenShiftingToVisible":"calloutSuspendedWhenShiftingToVisible","calloutTextColor":"calloutTextColor","coercionMethods":"coercionMethods","collisionChannel":"collisionChannel","contentMemberPath":"contentMemberPath","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueLabelMode":"highlightedValueLabelMode","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAutoCalloutBehaviorEnabled":"isAutoCalloutBehaviorEnabled","isBar":"isBar","isCalloutOffsettingEnabled":"isCalloutOffsettingEnabled","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCalloutRenderStyleEnabled":"isCustomCalloutRenderStyleEnabled","isCustomCalloutStyleEnabled":"isCustomCalloutStyleEnabled","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","keyMemberPath":"keyMemberPath","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelMemberPath":"labelMemberPath","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldTruncateOnBoundaryCollisions":"shouldTruncateOnBoundaryCollisions","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","textStyle":"textStyle","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useAutoContrastingLabelColors":"useAutoContrastingLabelColors","useIndex":"useIndex","useInterpolatedValueForAutoCalloutLabels":"useInterpolatedValueForAutoCalloutLabels","useItemColorForFill":"useItemColorForFill","useItemColorForOutline":"useItemColorForOutline","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSeriesColorForOutline":"useSeriesColorForOutline","useSingleShadow":"useSingleShadow","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xMemberPath":"xMemberPath","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","invalidateCalloutContent":"invalidateCalloutContent","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","recalculateAxisRangeBuffer":"recalculateAxisRangeBuffer","refreshAxisBufferAndCalloutPositions":"refreshAxisBufferAndCalloutPositions","refreshLabelPositions":"refreshLabelPositions","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCalloutPlacementPositionsCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutPlacementPositionsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxCalloutRenderStyleUpdatingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutRenderStyleUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualPosition":"ngAcceptInputType_actualPosition","ngAcceptInputType_backgroundCorner":"ngAcceptInputType_backgroundCorner","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_labelPositionX":"ngAcceptInputType_labelPositionX","ngAcceptInputType_labelPositionY":"ngAcceptInputType_labelPositionY","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_targetPositionX":"ngAcceptInputType_targetPositionX","ngAcceptInputType_targetPositionY":"ngAcceptInputType_targetPositionY","ngAcceptInputType_width":"ngAcceptInputType_width","actualPosition":"actualPosition","background":"background","backgroundCorner":"backgroundCorner","badgeBackground":"badgeBackground","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","height":"height","item":"item","labelPositionX":"labelPositionX","labelPositionY":"labelPositionY","leaderBrush":"leaderBrush","outline":"outline","series":"series","strokeThickness":"strokeThickness","targetPositionX":"targetPositionX","targetPositionY":"targetPositionY","textColor":"textColor","width":"width","xValue":"xValue","yValue":"yValue"}}],"IgxCalloutSeriesSelectingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutSeriesSelectingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","series":"series","seriesName":"seriesName","xValue":"xValue","yValue":"yValue"}}],"IgxCalloutStyleUpdatingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCalloutStyleUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bacgkroundPaddingBottom":"ngAcceptInputType_bacgkroundPaddingBottom","ngAcceptInputType_bacgkroundPaddingLeft":"ngAcceptInputType_bacgkroundPaddingLeft","ngAcceptInputType_bacgkroundPaddingRight":"ngAcceptInputType_bacgkroundPaddingRight","ngAcceptInputType_bacgkroundPaddingTop":"ngAcceptInputType_bacgkroundPaddingTop","ngAcceptInputType_backgroundCorner":"ngAcceptInputType_backgroundCorner","ngAcceptInputType_badgeCorner":"ngAcceptInputType_badgeCorner","ngAcceptInputType_badgeGap":"ngAcceptInputType_badgeGap","ngAcceptInputType_badgeHeight":"ngAcceptInputType_badgeHeight","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_badgeWidth":"ngAcceptInputType_badgeWidth","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","bacgkroundPaddingBottom":"bacgkroundPaddingBottom","bacgkroundPaddingLeft":"bacgkroundPaddingLeft","bacgkroundPaddingRight":"bacgkroundPaddingRight","bacgkroundPaddingTop":"bacgkroundPaddingTop","background":"background","backgroundCorner":"backgroundCorner","badgeBackground":"badgeBackground","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","item":"item","leaderBrush":"leaderBrush","outline":"outline","series":"series","strokeThickness":"strokeThickness","textColor":"textColor","xValue":"xValue","yValue":"yValue"}}],"IgxCategoryAngleAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryAngleAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_areGroupSizesUneven":"ngAcceptInputType_areGroupSizesUneven","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelMode":"ngAcceptInputType_companionAxisLabelMode","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStartAngleOffset":"ngAcceptInputType_companionAxisStartAngleOffset","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelMode":"ngAcceptInputType_labelMode","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_startAngleOffset":"ngAcceptInputType_startAngleOffset","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","areGroupSizesUneven":"areGroupSizesUneven","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxCategoryAxisBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxCategoryChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_autoExpandMarginExtraPadding":"ngAcceptInputType_autoExpandMarginExtraPadding","ngAcceptInputType_autoExpandMarginMaximumValue":"ngAcceptInputType_autoExpandMarginMaximumValue","ngAcceptInputType_autoMarginAndAngleUpdateMode":"ngAcceptInputType_autoMarginAndAngleUpdateMode","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_chartType":"ngAcceptInputType_chartType","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_isCategoryHighlightingEnabled":"ngAcceptInputType_isCategoryHighlightingEnabled","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isItemHighlightingEnabled":"ngAcceptInputType_isItemHighlightingEnabled","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_negativeBrushes":"ngAcceptInputType_negativeBrushes","ngAcceptInputType_negativeOutlines":"ngAcceptInputType_negativeOutlines","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAutoExpandMarginForInitialLabels":"ngAcceptInputType_shouldAutoExpandMarginForInitialLabels","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldConsiderAutoRotationForInitialLabels":"ngAcceptInputType_shouldConsiderAutoRotationForInitialLabels","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ngAcceptInputType_xAxisActualMaximum":"ngAcceptInputType_xAxisActualMaximum","ngAcceptInputType_xAxisActualMinimum":"ngAcceptInputType_xAxisActualMinimum","ngAcceptInputType_xAxisEnhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_xAxisEnhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_xAxisExtent":"ngAcceptInputType_xAxisExtent","ngAcceptInputType_xAxisGap":"ngAcceptInputType_xAxisGap","ngAcceptInputType_xAxisInterval":"ngAcceptInputType_xAxisInterval","ngAcceptInputType_xAxisInverted":"ngAcceptInputType_xAxisInverted","ngAcceptInputType_xAxisLabelAngle":"ngAcceptInputType_xAxisLabelAngle","ngAcceptInputType_xAxisLabelBottomMargin":"ngAcceptInputType_xAxisLabelBottomMargin","ngAcceptInputType_xAxisLabelFormatSpecifiers":"ngAcceptInputType_xAxisLabelFormatSpecifiers","ngAcceptInputType_xAxisLabelHorizontalAlignment":"ngAcceptInputType_xAxisLabelHorizontalAlignment","ngAcceptInputType_xAxisLabelLeftMargin":"ngAcceptInputType_xAxisLabelLeftMargin","ngAcceptInputType_xAxisLabelLocation":"ngAcceptInputType_xAxisLabelLocation","ngAcceptInputType_xAxisLabelRightMargin":"ngAcceptInputType_xAxisLabelRightMargin","ngAcceptInputType_xAxisLabelTopMargin":"ngAcceptInputType_xAxisLabelTopMargin","ngAcceptInputType_xAxisLabelVerticalAlignment":"ngAcceptInputType_xAxisLabelVerticalAlignment","ngAcceptInputType_xAxisLabelVisibility":"ngAcceptInputType_xAxisLabelVisibility","ngAcceptInputType_xAxisMajorStrokeThickness":"ngAcceptInputType_xAxisMajorStrokeThickness","ngAcceptInputType_xAxisMaximumExtent":"ngAcceptInputType_xAxisMaximumExtent","ngAcceptInputType_xAxisMaximumExtentPercentage":"ngAcceptInputType_xAxisMaximumExtentPercentage","ngAcceptInputType_xAxisMaximumGap":"ngAcceptInputType_xAxisMaximumGap","ngAcceptInputType_xAxisMinimumGapSize":"ngAcceptInputType_xAxisMinimumGapSize","ngAcceptInputType_xAxisMinorInterval":"ngAcceptInputType_xAxisMinorInterval","ngAcceptInputType_xAxisMinorStrokeThickness":"ngAcceptInputType_xAxisMinorStrokeThickness","ngAcceptInputType_xAxisOverlap":"ngAcceptInputType_xAxisOverlap","ngAcceptInputType_xAxisStrokeThickness":"ngAcceptInputType_xAxisStrokeThickness","ngAcceptInputType_xAxisTickLength":"ngAcceptInputType_xAxisTickLength","ngAcceptInputType_xAxisTickStrokeThickness":"ngAcceptInputType_xAxisTickStrokeThickness","ngAcceptInputType_xAxisTitleAlignment":"ngAcceptInputType_xAxisTitleAlignment","ngAcceptInputType_xAxisTitleAngle":"ngAcceptInputType_xAxisTitleAngle","ngAcceptInputType_xAxisTitleBottomMargin":"ngAcceptInputType_xAxisTitleBottomMargin","ngAcceptInputType_xAxisTitleLeftMargin":"ngAcceptInputType_xAxisTitleLeftMargin","ngAcceptInputType_xAxisTitleMargin":"ngAcceptInputType_xAxisTitleMargin","ngAcceptInputType_xAxisTitleRightMargin":"ngAcceptInputType_xAxisTitleRightMargin","ngAcceptInputType_xAxisTitleTopMargin":"ngAcceptInputType_xAxisTitleTopMargin","ngAcceptInputType_xAxisZoomMaximumCategoryRange":"ngAcceptInputType_xAxisZoomMaximumCategoryRange","ngAcceptInputType_xAxisZoomMaximumItemSpan":"ngAcceptInputType_xAxisZoomMaximumItemSpan","ngAcceptInputType_xAxisZoomToCategoryRange":"ngAcceptInputType_xAxisZoomToCategoryRange","ngAcceptInputType_xAxisZoomToCategoryStart":"ngAcceptInputType_xAxisZoomToCategoryStart","ngAcceptInputType_xAxisZoomToItemSpan":"ngAcceptInputType_xAxisZoomToItemSpan","ngAcceptInputType_yAxisAbbreviateLargeNumbers":"ngAcceptInputType_yAxisAbbreviateLargeNumbers","ngAcceptInputType_yAxisActualMaximum":"ngAcceptInputType_yAxisActualMaximum","ngAcceptInputType_yAxisActualMinimum":"ngAcceptInputType_yAxisActualMinimum","ngAcceptInputType_yAxisAutoRangeBufferMode":"ngAcceptInputType_yAxisAutoRangeBufferMode","ngAcceptInputType_yAxisEnhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_yAxisEnhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_yAxisExtent":"ngAcceptInputType_yAxisExtent","ngAcceptInputType_yAxisFavorLabellingScaleEnd":"ngAcceptInputType_yAxisFavorLabellingScaleEnd","ngAcceptInputType_yAxisInterval":"ngAcceptInputType_yAxisInterval","ngAcceptInputType_yAxisInverted":"ngAcceptInputType_yAxisInverted","ngAcceptInputType_yAxisIsLogarithmic":"ngAcceptInputType_yAxisIsLogarithmic","ngAcceptInputType_yAxisLabelAngle":"ngAcceptInputType_yAxisLabelAngle","ngAcceptInputType_yAxisLabelBottomMargin":"ngAcceptInputType_yAxisLabelBottomMargin","ngAcceptInputType_yAxisLabelFormatSpecifiers":"ngAcceptInputType_yAxisLabelFormatSpecifiers","ngAcceptInputType_yAxisLabelHorizontalAlignment":"ngAcceptInputType_yAxisLabelHorizontalAlignment","ngAcceptInputType_yAxisLabelLeftMargin":"ngAcceptInputType_yAxisLabelLeftMargin","ngAcceptInputType_yAxisLabelLocation":"ngAcceptInputType_yAxisLabelLocation","ngAcceptInputType_yAxisLabelRightMargin":"ngAcceptInputType_yAxisLabelRightMargin","ngAcceptInputType_yAxisLabelTopMargin":"ngAcceptInputType_yAxisLabelTopMargin","ngAcceptInputType_yAxisLabelVerticalAlignment":"ngAcceptInputType_yAxisLabelVerticalAlignment","ngAcceptInputType_yAxisLabelVisibility":"ngAcceptInputType_yAxisLabelVisibility","ngAcceptInputType_yAxisLogarithmBase":"ngAcceptInputType_yAxisLogarithmBase","ngAcceptInputType_yAxisMajorStrokeThickness":"ngAcceptInputType_yAxisMajorStrokeThickness","ngAcceptInputType_yAxisMaximumExtent":"ngAcceptInputType_yAxisMaximumExtent","ngAcceptInputType_yAxisMaximumExtentPercentage":"ngAcceptInputType_yAxisMaximumExtentPercentage","ngAcceptInputType_yAxisMaximumValue":"ngAcceptInputType_yAxisMaximumValue","ngAcceptInputType_yAxisMinimumValue":"ngAcceptInputType_yAxisMinimumValue","ngAcceptInputType_yAxisMinorInterval":"ngAcceptInputType_yAxisMinorInterval","ngAcceptInputType_yAxisMinorStrokeThickness":"ngAcceptInputType_yAxisMinorStrokeThickness","ngAcceptInputType_yAxisStrokeThickness":"ngAcceptInputType_yAxisStrokeThickness","ngAcceptInputType_yAxisTickLength":"ngAcceptInputType_yAxisTickLength","ngAcceptInputType_yAxisTickStrokeThickness":"ngAcceptInputType_yAxisTickStrokeThickness","ngAcceptInputType_yAxisTitleAlignment":"ngAcceptInputType_yAxisTitleAlignment","ngAcceptInputType_yAxisTitleAngle":"ngAcceptInputType_yAxisTitleAngle","ngAcceptInputType_yAxisTitleBottomMargin":"ngAcceptInputType_yAxisTitleBottomMargin","ngAcceptInputType_yAxisTitleLeftMargin":"ngAcceptInputType_yAxisTitleLeftMargin","ngAcceptInputType_yAxisTitleMargin":"ngAcceptInputType_yAxisTitleMargin","ngAcceptInputType_yAxisTitleRightMargin":"ngAcceptInputType_yAxisTitleRightMargin","ngAcceptInputType_yAxisTitleTopMargin":"ngAcceptInputType_yAxisTitleTopMargin","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isCategoryHighlightingEnabled":"isCategoryHighlightingEnabled","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isItemHighlightingEnabled":"isItemHighlightingEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisActualMaximum":"xAxisActualMaximum","xAxisActualMinimum":"xAxisActualMinimum","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisGap":"xAxisGap","xAxisInterval":"xAxisInterval","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumGap":"xAxisMaximumGap","xAxisMinimumGapSize":"xAxisMinimumGapSize","xAxisMinorInterval":"xAxisMinorInterval","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisOverlap":"xAxisOverlap","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisActualMaximum":"yAxisActualMaximum","yAxisActualMinimum":"yAxisActualMinimum","yAxisAutoRangeBufferMode":"yAxisAutoRangeBufferMode","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFavorLabellingScaleEnd":"yAxisFavorLabellingScaleEnd","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getCurrentXAxisActualMaximum":"getCurrentXAxisActualMaximum","getCurrentXAxisActualMinimum":"getCurrentXAxisActualMinimum","getCurrentYAxisActualMaximum":"getCurrentYAxisActualMaximum","getCurrentYAxisActualMinimum":"getCurrentYAxisActualMinimum","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","recalculateMarginAutoExpansion":"recalculateMarginAutoExpansion","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","updateStyle":"updateStyle","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxCategoryDateTimeXAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryDateTimeXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDataPreSorted":"ngAcceptInputType_isDataPreSorted","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_unevenlySpacedLabels":"ngAcceptInputType_unevenlySpacedLabels","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","displayType":"displayType","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","unevenlySpacedLabels":"unevenlySpacedLabels","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxCategoryHighlightLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryHighlightLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_bandHighlightWidth":"ngAcceptInputType_bandHighlightWidth","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCategoryItemHighlightLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryItemHighlightLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_bandHighlightWidth":"ngAcceptInputType_bandHighlightWidth","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightType":"ngAcceptInputType_highlightType","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_skipUnknownValues":"ngAcceptInputType_skipUnknownValues","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highlightType":"highlightType","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerTemplate":"markerTemplate","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCategorySeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCategoryToolTipLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_toolTipBorderThickness":"ngAcceptInputType_toolTipBorderThickness","ngAcceptInputType_toolTipPosition":"ngAcceptInputType_toolTipPosition","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","toolTipPosition":"toolTipPosition","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCategoryXAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ngAcceptInputType_zoomMaximumCategoryRange":"ngAcceptInputType_zoomMaximumCategoryRange","ngAcceptInputType_zoomMaximumItemSpan":"ngAcceptInputType_zoomMaximumItemSpan","ngAcceptInputType_zoomToCategoryRange":"ngAcceptInputType_zoomToCategoryRange","ngAcceptInputType_zoomToCategoryStart":"ngAcceptInputType_zoomToCategoryStart","ngAcceptInputType_zoomToItemSpan":"ngAcceptInputType_zoomToItemSpan","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxCategoryYAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCategoryYAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ngAcceptInputType_zoomMaximumCategoryRange":"ngAcceptInputType_zoomMaximumCategoryRange","ngAcceptInputType_zoomMaximumItemSpan":"ngAcceptInputType_zoomMaximumItemSpan","ngAcceptInputType_zoomToCategoryRange":"ngAcceptInputType_zoomToCategoryRange","ngAcceptInputType_zoomToCategoryStart":"ngAcceptInputType_zoomToCategoryStart","ngAcceptInputType_zoomToItemSpan":"ngAcceptInputType_zoomToItemSpan","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxChaikinOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChaikinOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_longPeriod":"ngAcceptInputType_longPeriod","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shortPeriod":"ngAcceptInputType_shortPeriod","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxChaikinVolatilityIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChaikinVolatilityIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxChartCursorEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartCursorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","series":"series","seriesViewer":"seriesViewer","toString":"toString"}}],"IgxChartGroupDescription":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_sortDirection":"ngAcceptInputType_sortDirection","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgxChartGroupDescriptionCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxChartMouseEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","ngAcceptInputType_worldPosition":"ngAcceptInputType_worldPosition","chart":"chart","chartPosition":"chartPosition","item":"item","originalSource":"originalSource","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition","getPosition":"getPosition","toString":"toString"}}],"IgxChartResizeIdleEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartResizeIdleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxChartSelectedItemCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSelectedItemCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxChartSelection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSelection","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","matcher":"matcher","series":"series","equals":"equals","findByName":"findByName"}}],"IgxChartSeriesEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSeriesEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","series":"series"}}],"IgxChartSortDescription":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_sortDirection":"ngAcceptInputType_sortDirection","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgxChartSortDescriptionCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","count":"count","i":"i","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxChartSummaryDescription":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_operand":"ngAcceptInputType_operand","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgxChartSummaryDescriptionCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxChartSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","count":"count","i":"i","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgxColorScaleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxColorScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ɵcmp":"ɵcmp","ɵfac":"ɵfac","propertyUpdated":"propertyUpdated","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxColumnFragmentComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxColumnFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","fragmentXAxis":"fragmentXAxis","fragmentYAxis":"fragmentYAxis","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxColumnSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedColumnVerticalPosition":"ngAcceptInputType_consolidatedColumnVerticalPosition","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedColumnVerticalPosition":"consolidatedColumnVerticalPosition","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxColumnSupportingCalculation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxColumnSupportingCalculation","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgxCommodityChannelIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCommodityChannelIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxContourValueResolverComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxContourValueResolverComponent","k":"class","s":"classes","m":{"constructor":"constructor","ɵcmp":"ɵcmp","ɵfac":"ɵfac","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxCrosshairLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCrosshairLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalLineVisibility":"ngAcceptInputType_horizontalLineVisibility","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isAxisAnnotationEnabled":"ngAcceptInputType_isAxisAnnotationEnabled","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_skipAxisAnnotationOnInvalidData":"ngAcceptInputType_skipAxisAnnotationOnInvalidData","ngAcceptInputType_skipAxisAnnotationOnZeroValueFragments":"ngAcceptInputType_skipAxisAnnotationOnZeroValueFragments","ngAcceptInputType_skipUnknownValues":"ngAcceptInputType_skipUnknownValues","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalLineVisibility":"ngAcceptInputType_verticalLineVisibility","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ngAcceptInputType_xAxisAnnotationBackgroundCornerRadius":"ngAcceptInputType_xAxisAnnotationBackgroundCornerRadius","ngAcceptInputType_xAxisAnnotationInterpolatedValuePrecision":"ngAcceptInputType_xAxisAnnotationInterpolatedValuePrecision","ngAcceptInputType_xAxisAnnotationPaddingBottom":"ngAcceptInputType_xAxisAnnotationPaddingBottom","ngAcceptInputType_xAxisAnnotationPaddingLeft":"ngAcceptInputType_xAxisAnnotationPaddingLeft","ngAcceptInputType_xAxisAnnotationPaddingRight":"ngAcceptInputType_xAxisAnnotationPaddingRight","ngAcceptInputType_xAxisAnnotationPaddingTop":"ngAcceptInputType_xAxisAnnotationPaddingTop","ngAcceptInputType_xAxisAnnotationStrokeThickness":"ngAcceptInputType_xAxisAnnotationStrokeThickness","ngAcceptInputType_yAxisAnnotationBackgroundCornerRadius":"ngAcceptInputType_yAxisAnnotationBackgroundCornerRadius","ngAcceptInputType_yAxisAnnotationInterpolatedValuePrecision":"ngAcceptInputType_yAxisAnnotationInterpolatedValuePrecision","ngAcceptInputType_yAxisAnnotationPaddingBottom":"ngAcceptInputType_yAxisAnnotationPaddingBottom","ngAcceptInputType_yAxisAnnotationPaddingLeft":"ngAcceptInputType_yAxisAnnotationPaddingLeft","ngAcceptInputType_yAxisAnnotationPaddingRight":"ngAcceptInputType_yAxisAnnotationPaddingRight","ngAcceptInputType_yAxisAnnotationPaddingTop":"ngAcceptInputType_yAxisAnnotationPaddingTop","ngAcceptInputType_yAxisAnnotationStrokeThickness":"ngAcceptInputType_yAxisAnnotationStrokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalLineVisibility":"horizontalLineVisibility","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipAxisAnnotationOnInvalidData":"skipAxisAnnotationOnInvalidData","skipAxisAnnotationOnZeroValueFragments":"skipAxisAnnotationOnZeroValueFragments","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalLineVisibility":"verticalLineVisibility","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCustomContourValueResolverComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCustomContourValueResolverComponent","k":"class","s":"classes","m":{"constructor":"constructor","ɵcmp":"ɵcmp","ɵfac":"ɵfac","getCustomContourValues":"getCustomContourValues","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxCustomContourValueResolverEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCustomContourValueResolverEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_contourValues":"ngAcceptInputType_contourValues","ngAcceptInputType_values":"ngAcceptInputType_values","contourValues":"contourValues","values":"values"}}],"IgxCustomIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCustomIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","basedOnColumns":"basedOnColumns","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","indicator":"indicator","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxCustomIndicatorNameCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCustomIndicatorNameCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxCustomPaletteBrushScaleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCustomPaletteBrushScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_brushSelectionMode":"ngAcceptInputType_brushSelectionMode","ngAcceptInputType_isBrushScale":"ngAcceptInputType_isBrushScale","ngAcceptInputType_isReady":"ngAcceptInputType_isReady","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brushes":"brushes","brushSelectionMode":"brushSelectionMode","isBrushScale":"isBrushScale","isReady":"isReady","propertyUpdated":"propertyUpdated","findByName":"findByName","getBrush":"getBrush","getBrush1":"getBrush1","ngOnInit":"ngOnInit","notifySeries":"notifySeries","registerSeries":"registerSeries","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal"}}],"IgxCustomPaletteColorScaleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxCustomPaletteColorScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_interpolationMode":"ngAcceptInputType_interpolationMode","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_palette":"ngAcceptInputType_palette","ɵcmp":"ɵcmp","ɵfac":"ɵfac","interpolationMode":"interpolationMode","maximumValue":"maximumValue","minimumValue":"minimumValue","palette":"palette","propertyUpdated":"propertyUpdated","findByName":"findByName","ngOnInit":"ngOnInit","providePalette":"providePalette","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationAxisLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationAxisLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationBandLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationBandLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_centerLabelXDisplayMode":"ngAcceptInputType_centerLabelXDisplayMode","ngAcceptInputType_centerLabelYDisplayMode":"ngAcceptInputType_centerLabelYDisplayMode","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_endLabelXDisplayMode":"ngAcceptInputType_endLabelXDisplayMode","ngAcceptInputType_endLabelYDisplayMode":"ngAcceptInputType_endLabelYDisplayMode","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_startLabelXDisplayMode":"ngAcceptInputType_startLabelXDisplayMode","ngAcceptInputType_startLabelYDisplayMode":"ngAcceptInputType_startLabelYDisplayMode","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationBreadthMemberPath":"annotationBreadthMemberPath","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationInfo":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationInfo","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_borderRadius":"ngAcceptInputType_borderRadius","ngAcceptInputType_borderThickness":"ngAcceptInputType_borderThickness","ngAcceptInputType_dataIndex":"ngAcceptInputType_dataIndex","ngAcceptInputType_dataValueX":"ngAcceptInputType_dataValueX","ngAcceptInputType_dataValueY":"ngAcceptInputType_dataValueY","ngAcceptInputType_isCenterLabel":"ngAcceptInputType_isCenterLabel","ngAcceptInputType_isEndLabel":"ngAcceptInputType_isEndLabel","ngAcceptInputType_isStartLabel":"ngAcceptInputType_isStartLabel","ngAcceptInputType_isXAxisBadgeEnabled":"ngAcceptInputType_isXAxisBadgeEnabled","ngAcceptInputType_isYAxisBadgeEnabled":"ngAcceptInputType_isYAxisBadgeEnabled","ngAcceptInputType_xAxisBadgeMargin":"ngAcceptInputType_xAxisBadgeMargin","ngAcceptInputType_xAxisBadgeOutlineThickness":"ngAcceptInputType_xAxisBadgeOutlineThickness","ngAcceptInputType_xAxisBadgeRadius":"ngAcceptInputType_xAxisBadgeRadius","ngAcceptInputType_xAxisBadgeSize":"ngAcceptInputType_xAxisBadgeSize","ngAcceptInputType_xAxisPixel":"ngAcceptInputType_xAxisPixel","ngAcceptInputType_xAxisValue":"ngAcceptInputType_xAxisValue","ngAcceptInputType_xAxisWindow":"ngAcceptInputType_xAxisWindow","ngAcceptInputType_yAxisBadgeMargin":"ngAcceptInputType_yAxisBadgeMargin","ngAcceptInputType_yAxisBadgeOutlineThickness":"ngAcceptInputType_yAxisBadgeOutlineThickness","ngAcceptInputType_yAxisBadgeRadius":"ngAcceptInputType_yAxisBadgeRadius","ngAcceptInputType_yAxisBadgeSize":"ngAcceptInputType_yAxisBadgeSize","ngAcceptInputType_yAxisPixel":"ngAcceptInputType_yAxisPixel","ngAcceptInputType_yAxisValue":"ngAcceptInputType_yAxisValue","ngAcceptInputType_yAxisWindow":"ngAcceptInputType_yAxisWindow","background":"background","borderColor":"borderColor","borderRadius":"borderRadius","borderThickness":"borderThickness","dataIndex":"dataIndex","dataLabelX":"dataLabelX","dataLabelY":"dataLabelY","dataValueX":"dataValueX","dataValueY":"dataValueY","isCenterLabel":"isCenterLabel","isEndLabel":"isEndLabel","isStartLabel":"isStartLabel","isXAxisBadgeEnabled":"isXAxisBadgeEnabled","isYAxisBadgeEnabled":"isYAxisBadgeEnabled","textColor":"textColor","xAxisBadgeBackground":"xAxisBadgeBackground","xAxisBadgeImagePath":"xAxisBadgeImagePath","xAxisBadgeMargin":"xAxisBadgeMargin","xAxisBadgeOutline":"xAxisBadgeOutline","xAxisBadgeOutlineThickness":"xAxisBadgeOutlineThickness","xAxisBadgeRadius":"xAxisBadgeRadius","xAxisBadgeSize":"xAxisBadgeSize","xAxisLabel":"xAxisLabel","xAxisPixel":"xAxisPixel","xAxisUserAnnotation":"xAxisUserAnnotation","xAxisValue":"xAxisValue","xAxisWindow":"xAxisWindow","yAxisBadgeBackground":"yAxisBadgeBackground","yAxisBadgeImagePath":"yAxisBadgeImagePath","yAxisBadgeMargin":"yAxisBadgeMargin","yAxisBadgeOutline":"yAxisBadgeOutline","yAxisBadgeOutlineThickness":"yAxisBadgeOutlineThickness","yAxisBadgeRadius":"yAxisBadgeRadius","yAxisBadgeSize":"yAxisBadgeSize","yAxisLabel":"yAxisLabel","yAxisPixel":"yAxisPixel","yAxisUserAnnotation":"yAxisUserAnnotation","yAxisValue":"yAxisValue","yAxisWindow":"yAxisWindow","findByName":"findByName"}}],"IgxDataAnnotationItem":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationItem","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dataIndex":"ngAcceptInputType_dataIndex","ngAcceptInputType_shapeCenterX":"ngAcceptInputType_shapeCenterX","ngAcceptInputType_shapeCenterY":"ngAcceptInputType_shapeCenterY","ngAcceptInputType_shapeEndX":"ngAcceptInputType_shapeEndX","ngAcceptInputType_shapeEndY":"ngAcceptInputType_shapeEndY","ngAcceptInputType_shapeStartX":"ngAcceptInputType_shapeStartX","ngAcceptInputType_shapeStartY":"ngAcceptInputType_shapeStartY","ngAcceptInputType_shapeThickness":"ngAcceptInputType_shapeThickness","centerLabelX":"centerLabelX","centerLabelY":"centerLabelY","dataIndex":"dataIndex","endLabelX":"endLabelX","endLabelY":"endLabelY","shapeBrush":"shapeBrush","shapeCenterX":"shapeCenterX","shapeCenterY":"shapeCenterY","shapeEndX":"shapeEndX","shapeEndY":"shapeEndY","shapeOutline":"shapeOutline","shapeStartX":"shapeStartX","shapeStartY":"shapeStartY","shapeThickness":"shapeThickness","startLabelX":"startLabelX","startLabelY":"startLabelY","findByName":"findByName"}}],"IgxDataAnnotationLineLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationLineLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_centerLabelXDisplayMode":"ngAcceptInputType_centerLabelXDisplayMode","ngAcceptInputType_centerLabelYDisplayMode":"ngAcceptInputType_centerLabelYDisplayMode","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_endLabelXDisplayMode":"ngAcceptInputType_endLabelXDisplayMode","ngAcceptInputType_endLabelYDisplayMode":"ngAcceptInputType_endLabelYDisplayMode","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_startLabelXDisplayMode":"ngAcceptInputType_startLabelXDisplayMode","ngAcceptInputType_startLabelYDisplayMode":"ngAcceptInputType_startLabelYDisplayMode","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationPointLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationPointLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_centerLabelXDisplayMode":"ngAcceptInputType_centerLabelXDisplayMode","ngAcceptInputType_centerLabelYDisplayMode":"ngAcceptInputType_centerLabelYDisplayMode","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_endLabelXDisplayMode":"ngAcceptInputType_endLabelXDisplayMode","ngAcceptInputType_endLabelYDisplayMode":"ngAcceptInputType_endLabelYDisplayMode","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_startLabelXDisplayMode":"ngAcceptInputType_startLabelXDisplayMode","ngAcceptInputType_startLabelYDisplayMode":"ngAcceptInputType_startLabelYDisplayMode","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationRangeLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationRangeLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationRectLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationRectLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_centerLabelXDisplayMode":"ngAcceptInputType_centerLabelXDisplayMode","ngAcceptInputType_centerLabelYDisplayMode":"ngAcceptInputType_centerLabelYDisplayMode","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_endLabelXDisplayMode":"ngAcceptInputType_endLabelXDisplayMode","ngAcceptInputType_endLabelYDisplayMode":"ngAcceptInputType_endLabelYDisplayMode","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_startLabelXDisplayMode":"ngAcceptInputType_startLabelXDisplayMode","ngAcceptInputType_startLabelYDisplayMode":"ngAcceptInputType_startLabelYDisplayMode","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationShapeLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationShapeLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationSliceLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationSliceLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelMemberPath":"annotationLabelMemberPath","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMemberPath":"annotationValueMemberPath","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataAnnotationStripLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataAnnotationStripLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_annotationBackgroundMatchLayer":"ngAcceptInputType_annotationBackgroundMatchLayer","ngAcceptInputType_annotationBackgroundMode":"ngAcceptInputType_annotationBackgroundMode","ngAcceptInputType_annotationBackgroundShift":"ngAcceptInputType_annotationBackgroundShift","ngAcceptInputType_annotationBadgeCornerRadius":"ngAcceptInputType_annotationBadgeCornerRadius","ngAcceptInputType_annotationBadgeEnabled":"ngAcceptInputType_annotationBadgeEnabled","ngAcceptInputType_annotationBadgeMargin":"ngAcceptInputType_annotationBadgeMargin","ngAcceptInputType_annotationBadgeOutlineThickness":"ngAcceptInputType_annotationBadgeOutlineThickness","ngAcceptInputType_annotationBadgeSize":"ngAcceptInputType_annotationBadgeSize","ngAcceptInputType_annotationBorderMatchLayer":"ngAcceptInputType_annotationBorderMatchLayer","ngAcceptInputType_annotationBorderMode":"ngAcceptInputType_annotationBorderMode","ngAcceptInputType_annotationBorderRadius":"ngAcceptInputType_annotationBorderRadius","ngAcceptInputType_annotationBorderShift":"ngAcceptInputType_annotationBorderShift","ngAcceptInputType_annotationBorderThickness":"ngAcceptInputType_annotationBorderThickness","ngAcceptInputType_annotationLabelDisplayMode":"ngAcceptInputType_annotationLabelDisplayMode","ngAcceptInputType_annotationLabelVisible":"ngAcceptInputType_annotationLabelVisible","ngAcceptInputType_annotationPaddingBottom":"ngAcceptInputType_annotationPaddingBottom","ngAcceptInputType_annotationPaddingLeft":"ngAcceptInputType_annotationPaddingLeft","ngAcceptInputType_annotationPaddingRight":"ngAcceptInputType_annotationPaddingRight","ngAcceptInputType_annotationPaddingTop":"ngAcceptInputType_annotationPaddingTop","ngAcceptInputType_annotationShapeVisible":"ngAcceptInputType_annotationShapeVisible","ngAcceptInputType_annotationTextColorMatchLayer":"ngAcceptInputType_annotationTextColorMatchLayer","ngAcceptInputType_annotationTextColorMode":"ngAcceptInputType_annotationTextColorMode","ngAcceptInputType_annotationTextColorShift":"ngAcceptInputType_annotationTextColorShift","ngAcceptInputType_annotationValueMaxPrecision":"ngAcceptInputType_annotationValueMaxPrecision","ngAcceptInputType_annotationValueMinPrecision":"ngAcceptInputType_annotationValueMinPrecision","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_centerLabelDisplayMode":"ngAcceptInputType_centerLabelDisplayMode","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_endLabelDisplayMode":"ngAcceptInputType_endLabelDisplayMode","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTargetingHorizontalAxis":"ngAcceptInputType_isTargetingHorizontalAxis","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemsUseWorldCoordinates":"ngAcceptInputType_itemsUseWorldCoordinates","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_startLabelDisplayMode":"ngAcceptInputType_startLabelDisplayMode","ngAcceptInputType_targetMode":"ngAcceptInputType_targetMode","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelDisplayMode":"centerLabelDisplayMode","centerLabelMemberPath":"centerLabelMemberPath","centerLabelTextColor":"centerLabelTextColor","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelDisplayMode":"endLabelDisplayMode","endLabelMemberPath":"endLabelMemberPath","endLabelTextColor":"endLabelTextColor","endValueMemberPath":"endValueMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelDisplayMode":"startLabelDisplayMode","startLabelMemberPath":"startLabelMemberPath","startLabelTextColor":"startLabelTextColor","startValueMemberPath":"startValueMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgxDataChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualAxes":"actualAxes","actualSeries":"actualSeries","contentAxes":"contentAxes","contentSeries":"contentSeries","ngAcceptInputType_actualContentHitTestMode":"ngAcceptInputType_actualContentHitTestMode","ngAcceptInputType_actualInteractionPixelScalingRatio":"ngAcceptInputType_actualInteractionPixelScalingRatio","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_actualPlotAreaMarginBottom":"ngAcceptInputType_actualPlotAreaMarginBottom","ngAcceptInputType_actualPlotAreaMarginLeft":"ngAcceptInputType_actualPlotAreaMarginLeft","ngAcceptInputType_actualPlotAreaMarginRight":"ngAcceptInputType_actualPlotAreaMarginRight","ngAcceptInputType_actualPlotAreaMarginTop":"ngAcceptInputType_actualPlotAreaMarginTop","ngAcceptInputType_actualWindowPositionHorizontal":"ngAcceptInputType_actualWindowPositionHorizontal","ngAcceptInputType_actualWindowPositionVertical":"ngAcceptInputType_actualWindowPositionVertical","ngAcceptInputType_actualWindowRect":"ngAcceptInputType_actualWindowRect","ngAcceptInputType_actualWindowRectMinHeight":"ngAcceptInputType_actualWindowRectMinHeight","ngAcceptInputType_actualWindowRectMinWidth":"ngAcceptInputType_actualWindowRectMinWidth","ngAcceptInputType_actualWindowScaleHorizontal":"ngAcceptInputType_actualWindowScaleHorizontal","ngAcceptInputType_actualWindowScaleVertical":"ngAcceptInputType_actualWindowScaleVertical","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_autoExpandMarginExtraPadding":"ngAcceptInputType_autoExpandMarginExtraPadding","ngAcceptInputType_autoExpandMarginMaximumValue":"ngAcceptInputType_autoExpandMarginMaximumValue","ngAcceptInputType_autoMarginAndAngleUpdateMode":"ngAcceptInputType_autoMarginAndAngleUpdateMode","ngAcceptInputType_autoMarginHeight":"ngAcceptInputType_autoMarginHeight","ngAcceptInputType_autoMarginWidth":"ngAcceptInputType_autoMarginWidth","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_contentHitTestMode":"ngAcceptInputType_contentHitTestMode","ngAcceptInputType_contentViewport":"ngAcceptInputType_contentViewport","ngAcceptInputType_crosshairPoint":"ngAcceptInputType_crosshairPoint","ngAcceptInputType_crosshairVisibility":"ngAcceptInputType_crosshairVisibility","ngAcceptInputType_defaultInteraction":"ngAcceptInputType_defaultInteraction","ngAcceptInputType_dragModifier":"ngAcceptInputType_dragModifier","ngAcceptInputType_effectiveViewport":"ngAcceptInputType_effectiveViewport","ngAcceptInputType_fireMouseLeaveOnManipulationStart":"ngAcceptInputType_fireMouseLeaveOnManipulationStart","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_fullAxes":"ngAcceptInputType_fullAxes","ngAcceptInputType_fullSeries":"ngAcceptInputType_fullSeries","ngAcceptInputType_gridMode":"ngAcceptInputType_gridMode","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_interactionOverride":"ngAcceptInputType_interactionOverride","ngAcceptInputType_interactionPixelScalingRatio":"ngAcceptInputType_interactionPixelScalingRatio","ngAcceptInputType_isAntiAliasingEnabledDuringInteraction":"ngAcceptInputType_isAntiAliasingEnabledDuringInteraction","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isInCreateAnnotationMode":"ngAcceptInputType_isInCreateAnnotationMode","ngAcceptInputType_isInDeleteAnnotationMode":"ngAcceptInputType_isInDeleteAnnotationMode","ngAcceptInputType_isMap":"ngAcceptInputType_isMap","ngAcceptInputType_isPagePanningAllowed":"ngAcceptInputType_isPagePanningAllowed","ngAcceptInputType_isSquare":"ngAcceptInputType_isSquare","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_isWindowSyncedToVisibleRange":"ngAcceptInputType_isWindowSyncedToVisibleRange","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_panModifier":"ngAcceptInputType_panModifier","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_preferHigherResolutionTiles":"ngAcceptInputType_preferHigherResolutionTiles","ngAcceptInputType_previewPathOpacity":"ngAcceptInputType_previewPathOpacity","ngAcceptInputType_previewRect":"ngAcceptInputType_previewRect","ngAcceptInputType_resizeIdleMilliseconds":"ngAcceptInputType_resizeIdleMilliseconds","ngAcceptInputType_rightButtonDefaultInteraction":"ngAcceptInputType_rightButtonDefaultInteraction","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_scrollbarsAnimationDuration":"ngAcceptInputType_scrollbarsAnimationDuration","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionModifier":"ngAcceptInputType_selectionModifier","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAutoExpandMarginForInitialLabels":"ngAcceptInputType_shouldAutoExpandMarginForInitialLabels","ngAcceptInputType_shouldConsiderAutoRotationForInitialLabels":"ngAcceptInputType_shouldConsiderAutoRotationForInitialLabels","ngAcceptInputType_shouldMatchZOrderToSeriesOrder":"ngAcceptInputType_shouldMatchZOrderToSeriesOrder","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldSuppressAxisLabelTruncation":"ngAcceptInputType_shouldSuppressAxisLabelTruncation","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleHorizontalAlignment":"ngAcceptInputType_subtitleHorizontalAlignment","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_suppressAutoMarginAndAngleRecalculation":"ngAcceptInputType_suppressAutoMarginAndAngleRecalculation","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_useTiledZooming":"ngAcceptInputType_useTiledZooming","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewportRect":"ngAcceptInputType_viewportRect","ngAcceptInputType_windowPositionHorizontal":"ngAcceptInputType_windowPositionHorizontal","ngAcceptInputType_windowPositionVertical":"ngAcceptInputType_windowPositionVertical","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowResponse":"ngAcceptInputType_windowResponse","ngAcceptInputType_windowScaleHorizontal":"ngAcceptInputType_windowScaleHorizontal","ngAcceptInputType_windowScaleVertical":"ngAcceptInputType_windowScaleVertical","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ngAcceptInputType_zoomCoercionMode":"ngAcceptInputType_zoomCoercionMode","ngAcceptInputType_zoomTileCacheSize":"ngAcceptInputType_zoomTileCacheSize","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualPlotAreaMarginBottom":"actualPlotAreaMarginBottom","actualPlotAreaMarginLeft":"actualPlotAreaMarginLeft","actualPlotAreaMarginRight":"actualPlotAreaMarginRight","actualPlotAreaMarginTop":"actualPlotAreaMarginTop","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","actualWindowScaleHorizontal":"actualWindowScaleHorizontal","actualWindowScaleVertical":"actualWindowScaleVertical","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axes":"axes","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","contentHitTestMode":"contentHitTestMode","contentViewport":"contentViewport","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","dataSource":"dataSource","defaultAxisMajorStroke":"defaultAxisMajorStroke","defaultAxisMinorStroke":"defaultAxisMinorStroke","defaultAxisStroke":"defaultAxisStroke","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","fullAxes":"fullAxes","fullSeries":"fullSeries","gridAreaRectChanged":"gridAreaRectChanged","gridMode":"gridMode","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isInCreateAnnotationMode":"isInCreateAnnotationMode","isInDeleteAnnotationMode":"isInDeleteAnnotationMode","isMap":"isMap","isPagePanningAllowed":"isPagePanningAllowed","isSquare":"isSquare","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","series":"series","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldSuppressAxisLabelTruncation":"shouldSuppressAxisLabelTruncation","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","suppressAutoMarginAndAngleRecalculation":"suppressAutoMarginAndAngleRecalculation","syncChannel":"syncChannel","synchronizeHorizontally":"synchronizeHorizontally","synchronizeVertically":"synchronizeVertically","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","viewportRect":"viewportRect","width":"width","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowScaleHorizontal":"windowScaleHorizontal","windowScaleVertical":"windowScaleVertical","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attachSeries":"attachSeries","bindData":"bindData","bindHighlightedData":"bindHighlightedData","cancelAnnotationFlow":"cancelAnnotationFlow","cancelCreatingAnnotation":"cancelCreatingAnnotation","cancelDeletingAnnotation":"cancelDeletingAnnotation","cancelManipulation":"cancelManipulation","captureImage":"captureImage","clearTileZoomCache":"clearTileZoomCache","destroy":"destroy","endTiledZoomingIfRunning":"endTiledZoomingIfRunning","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","finishCreatingAnnotation":"finishCreatingAnnotation","finishDeletingAnnotation":"finishDeletingAnnotation","flush":"flush","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getAnimationIdleVersionNumber":"getAnimationIdleVersionNumber","getCurrentActualWindowRect":"getCurrentActualWindowRect","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","isAnimationActive":"isAnimationActive","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","queueForAnimationIdle":"queueForAnimationIdle","recalculateAutoLabelsAngle":"recalculateAutoLabelsAngle","recalculateMarginAutoExpansion":"recalculateMarginAutoExpansion","refreshComputedPlotAreaMargin":"refreshComputedPlotAreaMargin","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","renderToImage":"renderToImage","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","startTiledZoomingIfNecessary":"startTiledZoomingIfNecessary","styleUpdated":"styleUpdated","updateStyle":"updateStyle","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgxDataChartDefaultTooltipsComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataChartDefaultTooltipsComponent","k":"class","s":"classes","m":{"constructor":"constructor","anchoredCategoryTooltip":"anchoredCategoryTooltip","anchoredVerticalCategoryTooltip":"anchoredVerticalCategoryTooltip","financialTooltip":"financialTooltip","onContentReady":"onContentReady","polarTooltip":"polarTooltip","radialTooltip":"radialTooltip","rangeTooltip":"rangeTooltip","scatterTooltip":"scatterTooltip","shapeTooltip":"shapeTooltip","userAnnotationTooltip":"userAnnotationTooltip","ɵcmp":"ɵcmp","ɵfac":"ɵfac","asAny":"asAny","ensureDefaultTooltip":"ensureDefaultTooltip","format":"format","getAnchoredValue":"getAnchoredValue","getAngleValue":"getAngleValue","getBrush":"getBrush","getCloseValue":"getCloseValue","getColorValue":"getColorValue","getHighValue":"getHighValue","getItemValue":"getItemValue","getLowValue":"getLowValue","getOpenValue":"getOpenValue","getRadiusValue":"getRadiusValue","getValue":"getValue","getVolumeValue":"getVolumeValue","getXValue":"getXValue","getYValue":"getYValue","hasClose":"hasClose","hasColor":"hasColor","hasHigh":"hasHigh","hasLow":"hasLow","hasOpen":"hasOpen","hasRadius":"hasRadius","hasValue":"hasValue","hasVolume":"hasVolume","hasXY":"hasXY","ngAfterContentInit":"ngAfterContentInit","shortDate":"shortDate","register":"register"}}],"IgxDataChartMouseButtonEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataChartMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancelSelection":"ngAcceptInputType_cancelSelection","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_handled":"ngAcceptInputType_handled","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","ngAcceptInputType_worldPosition":"ngAcceptInputType_worldPosition","cancelSelection":"cancelSelection","chart":"chart","chartPosition":"chartPosition","handled":"handled","item":"item","originalSource":"originalSource","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition","getPosition":"getPosition","toString":"toString"}}],"IgxDataLegendComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualBadgesVisible":"ngAcceptInputType_actualBadgesVisible","ngAcceptInputType_actualBorderThicknessBottom":"ngAcceptInputType_actualBorderThicknessBottom","ngAcceptInputType_actualBorderThicknessLeft":"ngAcceptInputType_actualBorderThicknessLeft","ngAcceptInputType_actualBorderThicknessRight":"ngAcceptInputType_actualBorderThicknessRight","ngAcceptInputType_actualBorderThicknessTop":"ngAcceptInputType_actualBorderThicknessTop","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_badgeMarginBottom":"ngAcceptInputType_badgeMarginBottom","ngAcceptInputType_badgeMarginLeft":"ngAcceptInputType_badgeMarginLeft","ngAcceptInputType_badgeMarginRight":"ngAcceptInputType_badgeMarginRight","ngAcceptInputType_badgeMarginTop":"ngAcceptInputType_badgeMarginTop","ngAcceptInputType_badgeShape":"ngAcceptInputType_badgeShape","ngAcceptInputType_contentBorderThickness":"ngAcceptInputType_contentBorderThickness","ngAcceptInputType_excludedColumns":"ngAcceptInputType_excludedColumns","ngAcceptInputType_excludedSeries":"ngAcceptInputType_excludedSeries","ngAcceptInputType_groupRowMarginBottom":"ngAcceptInputType_groupRowMarginBottom","ngAcceptInputType_groupRowMarginLeft":"ngAcceptInputType_groupRowMarginLeft","ngAcceptInputType_groupRowMarginRight":"ngAcceptInputType_groupRowMarginRight","ngAcceptInputType_groupRowMarginTop":"ngAcceptInputType_groupRowMarginTop","ngAcceptInputType_groupRowVisible":"ngAcceptInputType_groupRowVisible","ngAcceptInputType_groupTextMarginBottom":"ngAcceptInputType_groupTextMarginBottom","ngAcceptInputType_groupTextMarginLeft":"ngAcceptInputType_groupTextMarginLeft","ngAcceptInputType_groupTextMarginRight":"ngAcceptInputType_groupTextMarginRight","ngAcceptInputType_groupTextMarginTop":"ngAcceptInputType_groupTextMarginTop","ngAcceptInputType_headerFormatDate":"ngAcceptInputType_headerFormatDate","ngAcceptInputType_headerFormatSpecifiers":"ngAcceptInputType_headerFormatSpecifiers","ngAcceptInputType_headerFormatTime":"ngAcceptInputType_headerFormatTime","ngAcceptInputType_headerRowMarginBottom":"ngAcceptInputType_headerRowMarginBottom","ngAcceptInputType_headerRowMarginLeft":"ngAcceptInputType_headerRowMarginLeft","ngAcceptInputType_headerRowMarginRight":"ngAcceptInputType_headerRowMarginRight","ngAcceptInputType_headerRowMarginTop":"ngAcceptInputType_headerRowMarginTop","ngAcceptInputType_headerRowVisible":"ngAcceptInputType_headerRowVisible","ngAcceptInputType_headerTextMarginBottom":"ngAcceptInputType_headerTextMarginBottom","ngAcceptInputType_headerTextMarginLeft":"ngAcceptInputType_headerTextMarginLeft","ngAcceptInputType_headerTextMarginRight":"ngAcceptInputType_headerTextMarginRight","ngAcceptInputType_headerTextMarginTop":"ngAcceptInputType_headerTextMarginTop","ngAcceptInputType_includedColumns":"ngAcceptInputType_includedColumns","ngAcceptInputType_includedSeries":"ngAcceptInputType_includedSeries","ngAcceptInputType_isEmbeddedInDataTooltip":"ngAcceptInputType_isEmbeddedInDataTooltip","ngAcceptInputType_labelDisplayMode":"ngAcceptInputType_labelDisplayMode","ngAcceptInputType_labelTextMarginBottom":"ngAcceptInputType_labelTextMarginBottom","ngAcceptInputType_labelTextMarginLeft":"ngAcceptInputType_labelTextMarginLeft","ngAcceptInputType_labelTextMarginRight":"ngAcceptInputType_labelTextMarginRight","ngAcceptInputType_labelTextMarginTop":"ngAcceptInputType_labelTextMarginTop","ngAcceptInputType_layoutMode":"ngAcceptInputType_layoutMode","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_shouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_shouldUpdateWhenSeriesDataChanges","ngAcceptInputType_summaryRowMarginBottom":"ngAcceptInputType_summaryRowMarginBottom","ngAcceptInputType_summaryRowMarginLeft":"ngAcceptInputType_summaryRowMarginLeft","ngAcceptInputType_summaryRowMarginRight":"ngAcceptInputType_summaryRowMarginRight","ngAcceptInputType_summaryRowMarginTop":"ngAcceptInputType_summaryRowMarginTop","ngAcceptInputType_summaryTitleTextMarginBottom":"ngAcceptInputType_summaryTitleTextMarginBottom","ngAcceptInputType_summaryTitleTextMarginLeft":"ngAcceptInputType_summaryTitleTextMarginLeft","ngAcceptInputType_summaryTitleTextMarginRight":"ngAcceptInputType_summaryTitleTextMarginRight","ngAcceptInputType_summaryTitleTextMarginTop":"ngAcceptInputType_summaryTitleTextMarginTop","ngAcceptInputType_summaryType":"ngAcceptInputType_summaryType","ngAcceptInputType_targetCursorPositionX":"ngAcceptInputType_targetCursorPositionX","ngAcceptInputType_targetCursorPositionY":"ngAcceptInputType_targetCursorPositionY","ngAcceptInputType_titleTextMarginBottom":"ngAcceptInputType_titleTextMarginBottom","ngAcceptInputType_titleTextMarginLeft":"ngAcceptInputType_titleTextMarginLeft","ngAcceptInputType_titleTextMarginRight":"ngAcceptInputType_titleTextMarginRight","ngAcceptInputType_titleTextMarginTop":"ngAcceptInputType_titleTextMarginTop","ngAcceptInputType_unitsDisplayMode":"ngAcceptInputType_unitsDisplayMode","ngAcceptInputType_unitsTextMarginBottom":"ngAcceptInputType_unitsTextMarginBottom","ngAcceptInputType_unitsTextMarginLeft":"ngAcceptInputType_unitsTextMarginLeft","ngAcceptInputType_unitsTextMarginRight":"ngAcceptInputType_unitsTextMarginRight","ngAcceptInputType_unitsTextMarginTop":"ngAcceptInputType_unitsTextMarginTop","ngAcceptInputType_valueFormatAbbreviation":"ngAcceptInputType_valueFormatAbbreviation","ngAcceptInputType_valueFormatMaxFractions":"ngAcceptInputType_valueFormatMaxFractions","ngAcceptInputType_valueFormatMinFractions":"ngAcceptInputType_valueFormatMinFractions","ngAcceptInputType_valueFormatMode":"ngAcceptInputType_valueFormatMode","ngAcceptInputType_valueFormatSpecifiers":"ngAcceptInputType_valueFormatSpecifiers","ngAcceptInputType_valueFormatUseGrouping":"ngAcceptInputType_valueFormatUseGrouping","ngAcceptInputType_valueRowMarginBottom":"ngAcceptInputType_valueRowMarginBottom","ngAcceptInputType_valueRowMarginLeft":"ngAcceptInputType_valueRowMarginLeft","ngAcceptInputType_valueRowMarginRight":"ngAcceptInputType_valueRowMarginRight","ngAcceptInputType_valueRowMarginTop":"ngAcceptInputType_valueRowMarginTop","ngAcceptInputType_valueRowVisible":"ngAcceptInputType_valueRowVisible","ngAcceptInputType_valueTextMarginBottom":"ngAcceptInputType_valueTextMarginBottom","ngAcceptInputType_valueTextMarginLeft":"ngAcceptInputType_valueTextMarginLeft","ngAcceptInputType_valueTextMarginRight":"ngAcceptInputType_valueTextMarginRight","ngAcceptInputType_valueTextMarginTop":"ngAcceptInputType_valueTextMarginTop","ngAcceptInputType_valueTextUseSeriesColors":"ngAcceptInputType_valueTextUseSeriesColors","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBackground":"actualBackground","actualBadgesVisible":"actualBadgesVisible","actualBorderBrush":"actualBorderBrush","actualBorderThicknessBottom":"actualBorderThicknessBottom","actualBorderThicknessLeft":"actualBorderThicknessLeft","actualBorderThicknessRight":"actualBorderThicknessRight","actualBorderThicknessTop":"actualBorderThicknessTop","actualPixelScalingRatio":"actualPixelScalingRatio","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","calculateColumnSummary":"calculateColumnSummary","contentBackground":"contentBackground","contentBorderBrush":"contentBorderBrush","contentBorderThickness":"contentBorderThickness","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","height":"height","i":"i","includedColumns":"includedColumns","includedSeries":"includedSeries","isEmbeddedInDataTooltip":"isEmbeddedInDataTooltip","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layoutMode":"layoutMode","pixelScalingRatio":"pixelScalingRatio","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","styleGroupRow":"styleGroupRow","styleHeaderRow":"styleHeaderRow","styleSeriesColumn":"styleSeriesColumn","styleSeriesRow":"styleSeriesRow","styleSummaryColumn":"styleSummaryColumn","styleSummaryRow":"styleSummaryRow","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","target":"target","targetCursorPositionX":"targetCursorPositionX","targetCursorPositionY":"targetCursorPositionY","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatCurrencyCode":"valueFormatCurrencyCode","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","width":"width","ensureActualBorderThickness":"ensureActualBorderThickness","ensureBadgeMargin":"ensureBadgeMargin","ensureGroupRowMargin":"ensureGroupRowMargin","ensureGroupTextMargin":"ensureGroupTextMargin","ensureHeaderRowMargin":"ensureHeaderRowMargin","ensureHeaderTextMargin":"ensureHeaderTextMargin","ensureLabelTextMargin":"ensureLabelTextMargin","ensureSummaryRowMargin":"ensureSummaryRowMargin","ensureSummaryTitleTextMargin":"ensureSummaryTitleTextMargin","ensureTitleTextMargin":"ensureTitleTextMargin","ensureUnitsTextMargin":"ensureUnitsTextMargin","ensureValueRowMargin":"ensureValueRowMargin","ensureValueTextMargin":"ensureValueTextMargin","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getAbbreviatedNumber":"getAbbreviatedNumber","getAbbreviatedString":"getAbbreviatedString","getAbbreviatedSymbol":"getAbbreviatedSymbol","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","notifySizeChanged":"notifySizeChanged","updateStyle":"updateStyle"}}],"IgxDataLegendSeriesGroupInfo":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataLegendSeriesGroupInfo","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgxDataLegendStylingColumnEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataLegendStylingColumnEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_columnIndex":"ngAcceptInputType_columnIndex","ngAcceptInputType_seriesIndex":"ngAcceptInputType_seriesIndex","ngAcceptInputType_valueAbbreviation":"ngAcceptInputType_valueAbbreviation","ngAcceptInputType_valueOriginal":"ngAcceptInputType_valueOriginal","columnIndex":"columnIndex","groupName":"groupName","labelText":"labelText","labelTextColor":"labelTextColor","seriesIndex":"seriesIndex","seriesTitle":"seriesTitle","unitsText":"unitsText","unitsTextColor":"unitsTextColor","valueAbbreviation":"valueAbbreviation","valueMemberLabel":"valueMemberLabel","valueMemberPath":"valueMemberPath","valueOriginal":"valueOriginal","valueText":"valueText","valueTextColor":"valueTextColor"}}],"IgxDataLegendStylingRowEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataLegendStylingRowEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeShape":"ngAcceptInputType_badgeShape","ngAcceptInputType_isBadgeVisible":"ngAcceptInputType_isBadgeVisible","ngAcceptInputType_isRowVisible":"ngAcceptInputType_isRowVisible","ngAcceptInputType_seriesIndex":"ngAcceptInputType_seriesIndex","badgeShape":"badgeShape","groupName":"groupName","isBadgeVisible":"isBadgeVisible","isRowVisible":"isRowVisible","seriesIndex":"seriesIndex","seriesTitle":"seriesTitle","titleText":"titleText","titleTextColor":"titleTextColor"}}],"IgxDataLegendSummaryEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataLegendSummaryEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_columnValues":"ngAcceptInputType_columnValues","ngAcceptInputType_summaryValue":"ngAcceptInputType_summaryValue","columnMemberPath":"columnMemberPath","columnValues":"columnValues","summaryLabel":"summaryLabel","summaryUnits":"summaryUnits","summaryValue":"summaryValue"}}],"IgxDataPieBaseChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataPieBaseChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_angleAxisExtent":"ngAcceptInputType_angleAxisExtent","ngAcceptInputType_angleAxisFavorLabellingScaleEnd":"ngAcceptInputType_angleAxisFavorLabellingScaleEnd","ngAcceptInputType_angleAxisInterval":"ngAcceptInputType_angleAxisInterval","ngAcceptInputType_angleAxisInverted":"ngAcceptInputType_angleAxisInverted","ngAcceptInputType_angleAxisLabelAngle":"ngAcceptInputType_angleAxisLabelAngle","ngAcceptInputType_angleAxisLabelBottomMargin":"ngAcceptInputType_angleAxisLabelBottomMargin","ngAcceptInputType_angleAxisLabelFormatSpecifiers":"ngAcceptInputType_angleAxisLabelFormatSpecifiers","ngAcceptInputType_angleAxisLabelHorizontalAlignment":"ngAcceptInputType_angleAxisLabelHorizontalAlignment","ngAcceptInputType_angleAxisLabelLeftMargin":"ngAcceptInputType_angleAxisLabelLeftMargin","ngAcceptInputType_angleAxisLabelLocation":"ngAcceptInputType_angleAxisLabelLocation","ngAcceptInputType_angleAxisLabelRightMargin":"ngAcceptInputType_angleAxisLabelRightMargin","ngAcceptInputType_angleAxisLabelTopMargin":"ngAcceptInputType_angleAxisLabelTopMargin","ngAcceptInputType_angleAxisLabelVerticalAlignment":"ngAcceptInputType_angleAxisLabelVerticalAlignment","ngAcceptInputType_angleAxisLabelVisibility":"ngAcceptInputType_angleAxisLabelVisibility","ngAcceptInputType_angleAxisMajorStrokeThickness":"ngAcceptInputType_angleAxisMajorStrokeThickness","ngAcceptInputType_angleAxisMaximumExtent":"ngAcceptInputType_angleAxisMaximumExtent","ngAcceptInputType_angleAxisMaximumExtentPercentage":"ngAcceptInputType_angleAxisMaximumExtentPercentage","ngAcceptInputType_angleAxisMinorInterval":"ngAcceptInputType_angleAxisMinorInterval","ngAcceptInputType_angleAxisMinorStrokeThickness":"ngAcceptInputType_angleAxisMinorStrokeThickness","ngAcceptInputType_angleAxisStrokeThickness":"ngAcceptInputType_angleAxisStrokeThickness","ngAcceptInputType_angleAxisTickLength":"ngAcceptInputType_angleAxisTickLength","ngAcceptInputType_angleAxisTickStrokeThickness":"ngAcceptInputType_angleAxisTickStrokeThickness","ngAcceptInputType_angleAxisTitleAlignment":"ngAcceptInputType_angleAxisTitleAlignment","ngAcceptInputType_angleAxisTitleAngle":"ngAcceptInputType_angleAxisTitleAngle","ngAcceptInputType_angleAxisTitleBottomMargin":"ngAcceptInputType_angleAxisTitleBottomMargin","ngAcceptInputType_angleAxisTitleLeftMargin":"ngAcceptInputType_angleAxisTitleLeftMargin","ngAcceptInputType_angleAxisTitleMargin":"ngAcceptInputType_angleAxisTitleMargin","ngAcceptInputType_angleAxisTitleRightMargin":"ngAcceptInputType_angleAxisTitleRightMargin","ngAcceptInputType_angleAxisTitleTopMargin":"ngAcceptInputType_angleAxisTitleTopMargin","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_fireMouseLeaveOnManipulationStart":"ngAcceptInputType_fireMouseLeaveOnManipulationStart","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_innerExtent":"ngAcceptInputType_innerExtent","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendEmptyValuesMode":"ngAcceptInputType_legendEmptyValuesMode","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendOthersSliceLabelFormatSpecifiers":"ngAcceptInputType_legendOthersSliceLabelFormatSpecifiers","ngAcceptInputType_legendSliceLabelContentMode":"ngAcceptInputType_legendSliceLabelContentMode","ngAcceptInputType_legendSliceLabelFormatSpecifiers":"ngAcceptInputType_legendSliceLabelFormatSpecifiers","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerCollision":"ngAcceptInputType_markerCollision","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersSliceLabelFormatSpecifiers":"ngAcceptInputType_othersSliceLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_radiusExtent":"ngAcceptInputType_radiusExtent","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_sliceLabelContentMode":"ngAcceptInputType_sliceLabelContentMode","ngAcceptInputType_sliceLabelFormatSpecifiers":"ngAcceptInputType_sliceLabelFormatSpecifiers","ngAcceptInputType_sliceLabelPositionMode":"ngAcceptInputType_sliceLabelPositionMode","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_sweepDirection":"ngAcceptInputType_sweepDirection","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useInsetOutlines":"ngAcceptInputType_useInsetOutlines","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueAxisAbbreviateLargeNumbers":"ngAcceptInputType_valueAxisAbbreviateLargeNumbers","ngAcceptInputType_valueAxisActualMaximum":"ngAcceptInputType_valueAxisActualMaximum","ngAcceptInputType_valueAxisActualMinimum":"ngAcceptInputType_valueAxisActualMinimum","ngAcceptInputType_valueAxisAutoRangeBufferMode":"ngAcceptInputType_valueAxisAutoRangeBufferMode","ngAcceptInputType_valueAxisExtent":"ngAcceptInputType_valueAxisExtent","ngAcceptInputType_valueAxisFavorLabellingScaleEnd":"ngAcceptInputType_valueAxisFavorLabellingScaleEnd","ngAcceptInputType_valueAxisInterval":"ngAcceptInputType_valueAxisInterval","ngAcceptInputType_valueAxisInverted":"ngAcceptInputType_valueAxisInverted","ngAcceptInputType_valueAxisIsLogarithmic":"ngAcceptInputType_valueAxisIsLogarithmic","ngAcceptInputType_valueAxisLabelAngle":"ngAcceptInputType_valueAxisLabelAngle","ngAcceptInputType_valueAxisLabelBottomMargin":"ngAcceptInputType_valueAxisLabelBottomMargin","ngAcceptInputType_valueAxisLabelFormatSpecifiers":"ngAcceptInputType_valueAxisLabelFormatSpecifiers","ngAcceptInputType_valueAxisLabelHorizontalAlignment":"ngAcceptInputType_valueAxisLabelHorizontalAlignment","ngAcceptInputType_valueAxisLabelLeftMargin":"ngAcceptInputType_valueAxisLabelLeftMargin","ngAcceptInputType_valueAxisLabelLocation":"ngAcceptInputType_valueAxisLabelLocation","ngAcceptInputType_valueAxisLabelRightMargin":"ngAcceptInputType_valueAxisLabelRightMargin","ngAcceptInputType_valueAxisLabelTopMargin":"ngAcceptInputType_valueAxisLabelTopMargin","ngAcceptInputType_valueAxisLabelVerticalAlignment":"ngAcceptInputType_valueAxisLabelVerticalAlignment","ngAcceptInputType_valueAxisLabelVisibility":"ngAcceptInputType_valueAxisLabelVisibility","ngAcceptInputType_valueAxisLogarithmBase":"ngAcceptInputType_valueAxisLogarithmBase","ngAcceptInputType_valueAxisMajorStrokeThickness":"ngAcceptInputType_valueAxisMajorStrokeThickness","ngAcceptInputType_valueAxisMaximumExtent":"ngAcceptInputType_valueAxisMaximumExtent","ngAcceptInputType_valueAxisMaximumExtentPercentage":"ngAcceptInputType_valueAxisMaximumExtentPercentage","ngAcceptInputType_valueAxisMaximumValue":"ngAcceptInputType_valueAxisMaximumValue","ngAcceptInputType_valueAxisMinimumValue":"ngAcceptInputType_valueAxisMinimumValue","ngAcceptInputType_valueAxisMinorInterval":"ngAcceptInputType_valueAxisMinorInterval","ngAcceptInputType_valueAxisMinorStrokeThickness":"ngAcceptInputType_valueAxisMinorStrokeThickness","ngAcceptInputType_valueAxisStrokeThickness":"ngAcceptInputType_valueAxisStrokeThickness","ngAcceptInputType_valueAxisTickLength":"ngAcceptInputType_valueAxisTickLength","ngAcceptInputType_valueAxisTickStrokeThickness":"ngAcceptInputType_valueAxisTickStrokeThickness","ngAcceptInputType_valueAxisTitleAlignment":"ngAcceptInputType_valueAxisTitleAlignment","ngAcceptInputType_valueAxisTitleAngle":"ngAcceptInputType_valueAxisTitleAngle","ngAcceptInputType_valueAxisTitleBottomMargin":"ngAcceptInputType_valueAxisTitleBottomMargin","ngAcceptInputType_valueAxisTitleLeftMargin":"ngAcceptInputType_valueAxisTitleLeftMargin","ngAcceptInputType_valueAxisTitleMargin":"ngAcceptInputType_valueAxisTitleMargin","ngAcceptInputType_valueAxisTitleRightMargin":"ngAcceptInputType_valueAxisTitleRightMargin","ngAcceptInputType_valueAxisTitleTopMargin":"ngAcceptInputType_valueAxisTitleTopMargin","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","innerExtent":"innerExtent","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","sortDescriptions":"sortDescriptions","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisActualMaximum":"valueAxisActualMaximum","valueAxisActualMinimum":"valueAxisActualMinimum","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getOthersContext":"getOthersContext","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxDataPieChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataPieChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_angleAxisExtent":"ngAcceptInputType_angleAxisExtent","ngAcceptInputType_angleAxisFavorLabellingScaleEnd":"ngAcceptInputType_angleAxisFavorLabellingScaleEnd","ngAcceptInputType_angleAxisInterval":"ngAcceptInputType_angleAxisInterval","ngAcceptInputType_angleAxisInverted":"ngAcceptInputType_angleAxisInverted","ngAcceptInputType_angleAxisLabelAngle":"ngAcceptInputType_angleAxisLabelAngle","ngAcceptInputType_angleAxisLabelBottomMargin":"ngAcceptInputType_angleAxisLabelBottomMargin","ngAcceptInputType_angleAxisLabelFormatSpecifiers":"ngAcceptInputType_angleAxisLabelFormatSpecifiers","ngAcceptInputType_angleAxisLabelHorizontalAlignment":"ngAcceptInputType_angleAxisLabelHorizontalAlignment","ngAcceptInputType_angleAxisLabelLeftMargin":"ngAcceptInputType_angleAxisLabelLeftMargin","ngAcceptInputType_angleAxisLabelLocation":"ngAcceptInputType_angleAxisLabelLocation","ngAcceptInputType_angleAxisLabelRightMargin":"ngAcceptInputType_angleAxisLabelRightMargin","ngAcceptInputType_angleAxisLabelTopMargin":"ngAcceptInputType_angleAxisLabelTopMargin","ngAcceptInputType_angleAxisLabelVerticalAlignment":"ngAcceptInputType_angleAxisLabelVerticalAlignment","ngAcceptInputType_angleAxisLabelVisibility":"ngAcceptInputType_angleAxisLabelVisibility","ngAcceptInputType_angleAxisMajorStrokeThickness":"ngAcceptInputType_angleAxisMajorStrokeThickness","ngAcceptInputType_angleAxisMaximumExtent":"ngAcceptInputType_angleAxisMaximumExtent","ngAcceptInputType_angleAxisMaximumExtentPercentage":"ngAcceptInputType_angleAxisMaximumExtentPercentage","ngAcceptInputType_angleAxisMinorInterval":"ngAcceptInputType_angleAxisMinorInterval","ngAcceptInputType_angleAxisMinorStrokeThickness":"ngAcceptInputType_angleAxisMinorStrokeThickness","ngAcceptInputType_angleAxisStrokeThickness":"ngAcceptInputType_angleAxisStrokeThickness","ngAcceptInputType_angleAxisTickLength":"ngAcceptInputType_angleAxisTickLength","ngAcceptInputType_angleAxisTickStrokeThickness":"ngAcceptInputType_angleAxisTickStrokeThickness","ngAcceptInputType_angleAxisTitleAlignment":"ngAcceptInputType_angleAxisTitleAlignment","ngAcceptInputType_angleAxisTitleAngle":"ngAcceptInputType_angleAxisTitleAngle","ngAcceptInputType_angleAxisTitleBottomMargin":"ngAcceptInputType_angleAxisTitleBottomMargin","ngAcceptInputType_angleAxisTitleLeftMargin":"ngAcceptInputType_angleAxisTitleLeftMargin","ngAcceptInputType_angleAxisTitleMargin":"ngAcceptInputType_angleAxisTitleMargin","ngAcceptInputType_angleAxisTitleRightMargin":"ngAcceptInputType_angleAxisTitleRightMargin","ngAcceptInputType_angleAxisTitleTopMargin":"ngAcceptInputType_angleAxisTitleTopMargin","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_chartType":"ngAcceptInputType_chartType","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_fireMouseLeaveOnManipulationStart":"ngAcceptInputType_fireMouseLeaveOnManipulationStart","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_innerExtent":"ngAcceptInputType_innerExtent","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendEmptyValuesMode":"ngAcceptInputType_legendEmptyValuesMode","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendOthersSliceLabelFormatSpecifiers":"ngAcceptInputType_legendOthersSliceLabelFormatSpecifiers","ngAcceptInputType_legendSliceLabelContentMode":"ngAcceptInputType_legendSliceLabelContentMode","ngAcceptInputType_legendSliceLabelFormatSpecifiers":"ngAcceptInputType_legendSliceLabelFormatSpecifiers","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerCollision":"ngAcceptInputType_markerCollision","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersSliceLabelFormatSpecifiers":"ngAcceptInputType_othersSliceLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_radiusExtent":"ngAcceptInputType_radiusExtent","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_sliceLabelContentMode":"ngAcceptInputType_sliceLabelContentMode","ngAcceptInputType_sliceLabelFormatSpecifiers":"ngAcceptInputType_sliceLabelFormatSpecifiers","ngAcceptInputType_sliceLabelPositionMode":"ngAcceptInputType_sliceLabelPositionMode","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_sweepDirection":"ngAcceptInputType_sweepDirection","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useInsetOutlines":"ngAcceptInputType_useInsetOutlines","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueAxisAbbreviateLargeNumbers":"ngAcceptInputType_valueAxisAbbreviateLargeNumbers","ngAcceptInputType_valueAxisActualMaximum":"ngAcceptInputType_valueAxisActualMaximum","ngAcceptInputType_valueAxisActualMinimum":"ngAcceptInputType_valueAxisActualMinimum","ngAcceptInputType_valueAxisAutoRangeBufferMode":"ngAcceptInputType_valueAxisAutoRangeBufferMode","ngAcceptInputType_valueAxisExtent":"ngAcceptInputType_valueAxisExtent","ngAcceptInputType_valueAxisFavorLabellingScaleEnd":"ngAcceptInputType_valueAxisFavorLabellingScaleEnd","ngAcceptInputType_valueAxisInterval":"ngAcceptInputType_valueAxisInterval","ngAcceptInputType_valueAxisInverted":"ngAcceptInputType_valueAxisInverted","ngAcceptInputType_valueAxisIsLogarithmic":"ngAcceptInputType_valueAxisIsLogarithmic","ngAcceptInputType_valueAxisLabelAngle":"ngAcceptInputType_valueAxisLabelAngle","ngAcceptInputType_valueAxisLabelBottomMargin":"ngAcceptInputType_valueAxisLabelBottomMargin","ngAcceptInputType_valueAxisLabelFormatSpecifiers":"ngAcceptInputType_valueAxisLabelFormatSpecifiers","ngAcceptInputType_valueAxisLabelHorizontalAlignment":"ngAcceptInputType_valueAxisLabelHorizontalAlignment","ngAcceptInputType_valueAxisLabelLeftMargin":"ngAcceptInputType_valueAxisLabelLeftMargin","ngAcceptInputType_valueAxisLabelLocation":"ngAcceptInputType_valueAxisLabelLocation","ngAcceptInputType_valueAxisLabelRightMargin":"ngAcceptInputType_valueAxisLabelRightMargin","ngAcceptInputType_valueAxisLabelTopMargin":"ngAcceptInputType_valueAxisLabelTopMargin","ngAcceptInputType_valueAxisLabelVerticalAlignment":"ngAcceptInputType_valueAxisLabelVerticalAlignment","ngAcceptInputType_valueAxisLabelVisibility":"ngAcceptInputType_valueAxisLabelVisibility","ngAcceptInputType_valueAxisLogarithmBase":"ngAcceptInputType_valueAxisLogarithmBase","ngAcceptInputType_valueAxisMajorStrokeThickness":"ngAcceptInputType_valueAxisMajorStrokeThickness","ngAcceptInputType_valueAxisMaximumExtent":"ngAcceptInputType_valueAxisMaximumExtent","ngAcceptInputType_valueAxisMaximumExtentPercentage":"ngAcceptInputType_valueAxisMaximumExtentPercentage","ngAcceptInputType_valueAxisMaximumValue":"ngAcceptInputType_valueAxisMaximumValue","ngAcceptInputType_valueAxisMinimumValue":"ngAcceptInputType_valueAxisMinimumValue","ngAcceptInputType_valueAxisMinorInterval":"ngAcceptInputType_valueAxisMinorInterval","ngAcceptInputType_valueAxisMinorStrokeThickness":"ngAcceptInputType_valueAxisMinorStrokeThickness","ngAcceptInputType_valueAxisStrokeThickness":"ngAcceptInputType_valueAxisStrokeThickness","ngAcceptInputType_valueAxisTickLength":"ngAcceptInputType_valueAxisTickLength","ngAcceptInputType_valueAxisTickStrokeThickness":"ngAcceptInputType_valueAxisTickStrokeThickness","ngAcceptInputType_valueAxisTitleAlignment":"ngAcceptInputType_valueAxisTitleAlignment","ngAcceptInputType_valueAxisTitleAngle":"ngAcceptInputType_valueAxisTitleAngle","ngAcceptInputType_valueAxisTitleBottomMargin":"ngAcceptInputType_valueAxisTitleBottomMargin","ngAcceptInputType_valueAxisTitleLeftMargin":"ngAcceptInputType_valueAxisTitleLeftMargin","ngAcceptInputType_valueAxisTitleMargin":"ngAcceptInputType_valueAxisTitleMargin","ngAcceptInputType_valueAxisTitleRightMargin":"ngAcceptInputType_valueAxisTitleRightMargin","ngAcceptInputType_valueAxisTitleTopMargin":"ngAcceptInputType_valueAxisTitleTopMargin","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","innerExtent":"innerExtent","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","sortDescriptions":"sortDescriptions","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisActualMaximum":"valueAxisActualMaximum","valueAxisActualMinimum":"valueAxisActualMinimum","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getOthersContext":"getOthersContext","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxDataSourceSupportingCalculation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataSourceSupportingCalculation","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgxDataToolTipLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDataToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualGroupedPositionModeX":"ngAcceptInputType_actualGroupedPositionModeX","ngAcceptInputType_actualGroupedPositionModeY":"ngAcceptInputType_actualGroupedPositionModeY","ngAcceptInputType_actualGroupingMode":"ngAcceptInputType_actualGroupingMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_badgeMarginBottom":"ngAcceptInputType_badgeMarginBottom","ngAcceptInputType_badgeMarginLeft":"ngAcceptInputType_badgeMarginLeft","ngAcceptInputType_badgeMarginRight":"ngAcceptInputType_badgeMarginRight","ngAcceptInputType_badgeMarginTop":"ngAcceptInputType_badgeMarginTop","ngAcceptInputType_badgeShape":"ngAcceptInputType_badgeShape","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultPositionOffsetX":"ngAcceptInputType_defaultPositionOffsetX","ngAcceptInputType_defaultPositionOffsetY":"ngAcceptInputType_defaultPositionOffsetY","ngAcceptInputType_excludedColumns":"ngAcceptInputType_excludedColumns","ngAcceptInputType_excludedSeries":"ngAcceptInputType_excludedSeries","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_groupedPositionModeX":"ngAcceptInputType_groupedPositionModeX","ngAcceptInputType_groupedPositionModeY":"ngAcceptInputType_groupedPositionModeY","ngAcceptInputType_groupingMode":"ngAcceptInputType_groupingMode","ngAcceptInputType_groupRowMarginBottom":"ngAcceptInputType_groupRowMarginBottom","ngAcceptInputType_groupRowMarginLeft":"ngAcceptInputType_groupRowMarginLeft","ngAcceptInputType_groupRowMarginRight":"ngAcceptInputType_groupRowMarginRight","ngAcceptInputType_groupRowMarginTop":"ngAcceptInputType_groupRowMarginTop","ngAcceptInputType_groupRowVisible":"ngAcceptInputType_groupRowVisible","ngAcceptInputType_groupTextMarginBottom":"ngAcceptInputType_groupTextMarginBottom","ngAcceptInputType_groupTextMarginLeft":"ngAcceptInputType_groupTextMarginLeft","ngAcceptInputType_groupTextMarginRight":"ngAcceptInputType_groupTextMarginRight","ngAcceptInputType_groupTextMarginTop":"ngAcceptInputType_groupTextMarginTop","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_headerFormatDate":"ngAcceptInputType_headerFormatDate","ngAcceptInputType_headerFormatSpecifiers":"ngAcceptInputType_headerFormatSpecifiers","ngAcceptInputType_headerFormatTime":"ngAcceptInputType_headerFormatTime","ngAcceptInputType_headerRowMarginBottom":"ngAcceptInputType_headerRowMarginBottom","ngAcceptInputType_headerRowMarginLeft":"ngAcceptInputType_headerRowMarginLeft","ngAcceptInputType_headerRowMarginRight":"ngAcceptInputType_headerRowMarginRight","ngAcceptInputType_headerRowMarginTop":"ngAcceptInputType_headerRowMarginTop","ngAcceptInputType_headerRowVisible":"ngAcceptInputType_headerRowVisible","ngAcceptInputType_headerTextMarginBottom":"ngAcceptInputType_headerTextMarginBottom","ngAcceptInputType_headerTextMarginLeft":"ngAcceptInputType_headerTextMarginLeft","ngAcceptInputType_headerTextMarginRight":"ngAcceptInputType_headerTextMarginRight","ngAcceptInputType_headerTextMarginTop":"ngAcceptInputType_headerTextMarginTop","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_includedColumns":"ngAcceptInputType_includedColumns","ngAcceptInputType_includedSeries":"ngAcceptInputType_includedSeries","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_labelDisplayMode":"ngAcceptInputType_labelDisplayMode","ngAcceptInputType_labelTextMarginBottom":"ngAcceptInputType_labelTextMarginBottom","ngAcceptInputType_labelTextMarginLeft":"ngAcceptInputType_labelTextMarginLeft","ngAcceptInputType_labelTextMarginRight":"ngAcceptInputType_labelTextMarginRight","ngAcceptInputType_labelTextMarginTop":"ngAcceptInputType_labelTextMarginTop","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_layoutMode":"ngAcceptInputType_layoutMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_positionOffsetX":"ngAcceptInputType_positionOffsetX","ngAcceptInputType_positionOffsetY":"ngAcceptInputType_positionOffsetY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_shouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_shouldUpdateWhenSeriesDataChanges","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_summaryRowMarginBottom":"ngAcceptInputType_summaryRowMarginBottom","ngAcceptInputType_summaryRowMarginLeft":"ngAcceptInputType_summaryRowMarginLeft","ngAcceptInputType_summaryRowMarginRight":"ngAcceptInputType_summaryRowMarginRight","ngAcceptInputType_summaryRowMarginTop":"ngAcceptInputType_summaryRowMarginTop","ngAcceptInputType_summaryTitleTextMarginBottom":"ngAcceptInputType_summaryTitleTextMarginBottom","ngAcceptInputType_summaryTitleTextMarginLeft":"ngAcceptInputType_summaryTitleTextMarginLeft","ngAcceptInputType_summaryTitleTextMarginRight":"ngAcceptInputType_summaryTitleTextMarginRight","ngAcceptInputType_summaryTitleTextMarginTop":"ngAcceptInputType_summaryTitleTextMarginTop","ngAcceptInputType_summaryType":"ngAcceptInputType_summaryType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleTextMarginBottom":"ngAcceptInputType_titleTextMarginBottom","ngAcceptInputType_titleTextMarginLeft":"ngAcceptInputType_titleTextMarginLeft","ngAcceptInputType_titleTextMarginRight":"ngAcceptInputType_titleTextMarginRight","ngAcceptInputType_titleTextMarginTop":"ngAcceptInputType_titleTextMarginTop","ngAcceptInputType_toolTipBorderThickness":"ngAcceptInputType_toolTipBorderThickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_unitsDisplayMode":"ngAcceptInputType_unitsDisplayMode","ngAcceptInputType_unitsTextMarginBottom":"ngAcceptInputType_unitsTextMarginBottom","ngAcceptInputType_unitsTextMarginLeft":"ngAcceptInputType_unitsTextMarginLeft","ngAcceptInputType_unitsTextMarginRight":"ngAcceptInputType_unitsTextMarginRight","ngAcceptInputType_unitsTextMarginTop":"ngAcceptInputType_unitsTextMarginTop","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_valueFormatAbbreviation":"ngAcceptInputType_valueFormatAbbreviation","ngAcceptInputType_valueFormatMaxFractions":"ngAcceptInputType_valueFormatMaxFractions","ngAcceptInputType_valueFormatMinFractions":"ngAcceptInputType_valueFormatMinFractions","ngAcceptInputType_valueFormatMode":"ngAcceptInputType_valueFormatMode","ngAcceptInputType_valueFormatSpecifiers":"ngAcceptInputType_valueFormatSpecifiers","ngAcceptInputType_valueFormatUseGrouping":"ngAcceptInputType_valueFormatUseGrouping","ngAcceptInputType_valueRowMarginBottom":"ngAcceptInputType_valueRowMarginBottom","ngAcceptInputType_valueRowMarginLeft":"ngAcceptInputType_valueRowMarginLeft","ngAcceptInputType_valueRowMarginRight":"ngAcceptInputType_valueRowMarginRight","ngAcceptInputType_valueRowMarginTop":"ngAcceptInputType_valueRowMarginTop","ngAcceptInputType_valueRowVisible":"ngAcceptInputType_valueRowVisible","ngAcceptInputType_valueTextMarginBottom":"ngAcceptInputType_valueTextMarginBottom","ngAcceptInputType_valueTextMarginLeft":"ngAcceptInputType_valueTextMarginLeft","ngAcceptInputType_valueTextMarginRight":"ngAcceptInputType_valueTextMarginRight","ngAcceptInputType_valueTextMarginTop":"ngAcceptInputType_valueTextMarginTop","ngAcceptInputType_valueTextUseSeriesColors":"ngAcceptInputType_valueTextUseSeriesColors","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualGroupedPositionModeX":"actualGroupedPositionModeX","actualGroupedPositionModeY":"actualGroupedPositionModeY","actualGroupingMode":"actualGroupingMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultPositionOffsetX":"defaultPositionOffsetX","defaultPositionOffsetY":"defaultPositionOffsetY","discreteLegendItemTemplate":"discreteLegendItemTemplate","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","groupedPositionModeX":"groupedPositionModeX","groupedPositionModeY":"groupedPositionModeY","groupingMode":"groupingMode","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","includedColumns":"includedColumns","includedSeries":"includedSeries","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layers":"layers","layoutMode":"layoutMode","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","positionOffsetX":"positionOffsetX","positionOffsetY":"positionOffsetY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","showDefaultTooltip":"showDefaultTooltip","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","targetAxis":"targetAxis","thickness":"thickness","title":"title","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","ensureBadgeMargin":"ensureBadgeMargin","ensureGroupRowMargin":"ensureGroupRowMargin","ensureGroupTextMargin":"ensureGroupTextMargin","ensureHeaderRowMargin":"ensureHeaderRowMargin","ensureHeaderTextMargin":"ensureHeaderTextMargin","ensureLabelTextMargin":"ensureLabelTextMargin","ensureSummaryRowMargin":"ensureSummaryRowMargin","ensureSummaryTitleTextMargin":"ensureSummaryTitleTextMargin","ensureTitleTextMargin":"ensureTitleTextMargin","ensureUnitsTextMargin":"ensureUnitsTextMargin","ensureValueRowMargin":"ensureValueRowMargin","ensureValueTextMargin":"ensureValueTextMargin","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxDetrendedPriceOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDetrendedPriceOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxDomainChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDomainChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","i":"i","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxDomainChartPlotAreaPointerEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDomainChartPlotAreaPointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","chartPosition":"chartPosition","plotAreaPosition":"plotAreaPosition"}}],"IgxDomainChartSeriesPointerEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDomainChartSeriesPointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancelSelection":"ngAcceptInputType_cancelSelection","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","ngAcceptInputType_worldPosition":"ngAcceptInputType_worldPosition","cancelSelection":"cancelSelection","chartPosition":"chartPosition","item":"item","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition"}}],"IgxDomainChartTestingInfo":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDomainChartTestingInfo","k":"class","s":"classes","m":{"constructor":"constructor","mainDataChart":"mainDataChart","findByName":"findByName"}}],"IgxDoughnutChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDoughnutChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualSeries":"actualSeries","container":"container","contentSeries":"contentSeries","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_allowSliceExplosion":"ngAcceptInputType_allowSliceExplosion","ngAcceptInputType_allowSliceSelection":"ngAcceptInputType_allowSliceSelection","ngAcceptInputType_innerExtent":"ngAcceptInputType_innerExtent","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","height":"height","holeDimensionsChanged":"holeDimensionsChanged","i":"i","innerExtent":"innerExtent","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","pixelScalingRatio":"pixelScalingRatio","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","series":"series","sliceClick":"sliceClick","width":"width","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getCenterCoordinates":"getCenterCoordinates","getContainerID":"getContainerID","getHoleRadius":"getHoleRadius","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","updateStyle":"updateStyle"}}],"IgxDoughnutChartDefaultTooltipsComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxDoughnutChartDefaultTooltipsComponent","k":"class","s":"classes","m":{"constructor":"constructor","doughnutSliceTooltip":"doughnutSliceTooltip","onContentReady":"onContentReady","ɵcmp":"ɵcmp","ɵfac":"ɵfac","ensureDefaultTooltip":"ensureDefaultTooltip","getBrush":"getBrush","getSliceLabel":"getSliceLabel","getValue":"getValue","getValueMemberPath":"getValueMemberPath","ngAfterContentInit":"ngAfterContentInit","register":"register"}}],"IgxEaseOfMovementIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxEaseOfMovementIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFastStochasticOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFastStochasticOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFilterStringErrorsParsingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","errors":"errors","propertyName":"propertyName"}}],"IgxFinalValueLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinalValueLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_axisAnnotationBackgroundCornerRadius":"ngAcceptInputType_axisAnnotationBackgroundCornerRadius","ngAcceptInputType_axisAnnotationInterpolatedValuePrecision":"ngAcceptInputType_axisAnnotationInterpolatedValuePrecision","ngAcceptInputType_axisAnnotationPaddingBottom":"ngAcceptInputType_axisAnnotationPaddingBottom","ngAcceptInputType_axisAnnotationPaddingLeft":"ngAcceptInputType_axisAnnotationPaddingLeft","ngAcceptInputType_axisAnnotationPaddingRight":"ngAcceptInputType_axisAnnotationPaddingRight","ngAcceptInputType_axisAnnotationPaddingTop":"ngAcceptInputType_axisAnnotationPaddingTop","ngAcceptInputType_axisAnnotationStrokeThickness":"ngAcceptInputType_axisAnnotationStrokeThickness","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_finalValueSelectionMode":"ngAcceptInputType_finalValueSelectionMode","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","finalValueSelectionMode":"finalValueSelectionMode","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFinancialCalculationDataSource":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialCalculationDataSource","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_calculateCount":"ngAcceptInputType_calculateCount","ngAcceptInputType_calculateFrom":"ngAcceptInputType_calculateFrom","ngAcceptInputType_count":"ngAcceptInputType_count","ngAcceptInputType_longPeriod":"ngAcceptInputType_longPeriod","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_multiplier":"ngAcceptInputType_multiplier","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_shortPeriod":"ngAcceptInputType_shortPeriod","ngAcceptInputType_specifiesRange":"ngAcceptInputType_specifiesRange","calculateCount":"calculateCount","calculateFrom":"calculateFrom","closeColumn":"closeColumn","count":"count","highColumn":"highColumn","i":"i","indicatorColumn":"indicatorColumn","longPeriod":"longPeriod","lowColumn":"lowColumn","maximumValue":"maximumValue","minimumValue":"minimumValue","multiplier":"multiplier","openColumn":"openColumn","period":"period","shortPeriod":"shortPeriod","specifiesRange":"specifiesRange","trueLow":"trueLow","trueRange":"trueRange","typicalColumn":"typicalColumn","volumeColumn":"volumeColumn","findByName":"findByName"}}],"IgxFinancialCalculationSupportingCalculations":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialCalculationSupportingCalculations","k":"class","s":"classes","m":{"constructor":"constructor","eMA":"eMA","longPriceOscillatorAverage":"longPriceOscillatorAverage","longVolumeOscillatorAverage":"longVolumeOscillatorAverage","makeSafe":"makeSafe","movingSum":"movingSum","shortPriceOscillatorAverage":"shortPriceOscillatorAverage","shortVolumeOscillatorAverage":"shortVolumeOscillatorAverage","sMA":"sMA","sTDEV":"sTDEV","findByName":"findByName"}}],"IgxFinancialChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_defaultTemplates":"_defaultTemplates","_dynamicContent":"_dynamicContent","_mainElement":"_mainElement","_templates":"_templates","_toolbarElement":"_toolbarElement","chartTemplate":"chartTemplate","chartTypePickerTemplate":"chartTypePickerTemplate","container":"container","indicatorMenuTemplate":"indicatorMenuTemplate","rangeSelectorTemplate":"rangeSelectorTemplate","toolbarTemplate":"toolbarTemplate","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_chartType":"ngAcceptInputType_chartType","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_customIndicatorNames":"ngAcceptInputType_customIndicatorNames","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_indicatorBrushes":"ngAcceptInputType_indicatorBrushes","ngAcceptInputType_indicatorDisplayTypes":"ngAcceptInputType_indicatorDisplayTypes","ngAcceptInputType_indicatorLongPeriod":"ngAcceptInputType_indicatorLongPeriod","ngAcceptInputType_indicatorMultiplier":"ngAcceptInputType_indicatorMultiplier","ngAcceptInputType_indicatorNegativeBrushes":"ngAcceptInputType_indicatorNegativeBrushes","ngAcceptInputType_indicatorPeriod":"ngAcceptInputType_indicatorPeriod","ngAcceptInputType_indicatorShortPeriod":"ngAcceptInputType_indicatorShortPeriod","ngAcceptInputType_indicatorSignalPeriod":"ngAcceptInputType_indicatorSignalPeriod","ngAcceptInputType_indicatorSmoothingPeriod":"ngAcceptInputType_indicatorSmoothingPeriod","ngAcceptInputType_indicatorThickness":"ngAcceptInputType_indicatorThickness","ngAcceptInputType_indicatorTypes":"ngAcceptInputType_indicatorTypes","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isLegendVisible":"ngAcceptInputType_isLegendVisible","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isToolbarVisible":"ngAcceptInputType_isToolbarVisible","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_isWindowSyncedToVisibleRange":"ngAcceptInputType_isWindowSyncedToVisibleRange","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_negativeBrushes":"ngAcceptInputType_negativeBrushes","ngAcceptInputType_negativeOutlines":"ngAcceptInputType_negativeOutlines","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_overlayBrushes":"ngAcceptInputType_overlayBrushes","ngAcceptInputType_overlayMultiplier":"ngAcceptInputType_overlayMultiplier","ngAcceptInputType_overlayOutlines":"ngAcceptInputType_overlayOutlines","ngAcceptInputType_overlayThickness":"ngAcceptInputType_overlayThickness","ngAcceptInputType_overlayTypes":"ngAcceptInputType_overlayTypes","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_rangeSelectorOptions":"ngAcceptInputType_rangeSelectorOptions","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolbarHeight":"ngAcceptInputType_toolbarHeight","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_volumeBrushes":"ngAcceptInputType_volumeBrushes","ngAcceptInputType_volumeOutlines":"ngAcceptInputType_volumeOutlines","ngAcceptInputType_volumeThickness":"ngAcceptInputType_volumeThickness","ngAcceptInputType_volumeType":"ngAcceptInputType_volumeType","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ngAcceptInputType_xAxisEnhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_xAxisEnhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_xAxisExtent":"ngAcceptInputType_xAxisExtent","ngAcceptInputType_xAxisInverted":"ngAcceptInputType_xAxisInverted","ngAcceptInputType_xAxisLabelAngle":"ngAcceptInputType_xAxisLabelAngle","ngAcceptInputType_xAxisLabelBottomMargin":"ngAcceptInputType_xAxisLabelBottomMargin","ngAcceptInputType_xAxisLabelFormatSpecifiers":"ngAcceptInputType_xAxisLabelFormatSpecifiers","ngAcceptInputType_xAxisLabelHorizontalAlignment":"ngAcceptInputType_xAxisLabelHorizontalAlignment","ngAcceptInputType_xAxisLabelLeftMargin":"ngAcceptInputType_xAxisLabelLeftMargin","ngAcceptInputType_xAxisLabelLocation":"ngAcceptInputType_xAxisLabelLocation","ngAcceptInputType_xAxisLabelRightMargin":"ngAcceptInputType_xAxisLabelRightMargin","ngAcceptInputType_xAxisLabelTopMargin":"ngAcceptInputType_xAxisLabelTopMargin","ngAcceptInputType_xAxisLabelVerticalAlignment":"ngAcceptInputType_xAxisLabelVerticalAlignment","ngAcceptInputType_xAxisLabelVisibility":"ngAcceptInputType_xAxisLabelVisibility","ngAcceptInputType_xAxisMajorStrokeThickness":"ngAcceptInputType_xAxisMajorStrokeThickness","ngAcceptInputType_xAxisMaximumExtent":"ngAcceptInputType_xAxisMaximumExtent","ngAcceptInputType_xAxisMaximumExtentPercentage":"ngAcceptInputType_xAxisMaximumExtentPercentage","ngAcceptInputType_xAxisMinorStrokeThickness":"ngAcceptInputType_xAxisMinorStrokeThickness","ngAcceptInputType_xAxisMode":"ngAcceptInputType_xAxisMode","ngAcceptInputType_xAxisStrokeThickness":"ngAcceptInputType_xAxisStrokeThickness","ngAcceptInputType_xAxisTickLength":"ngAcceptInputType_xAxisTickLength","ngAcceptInputType_xAxisTickStrokeThickness":"ngAcceptInputType_xAxisTickStrokeThickness","ngAcceptInputType_xAxisTitleAlignment":"ngAcceptInputType_xAxisTitleAlignment","ngAcceptInputType_xAxisTitleAngle":"ngAcceptInputType_xAxisTitleAngle","ngAcceptInputType_xAxisTitleBottomMargin":"ngAcceptInputType_xAxisTitleBottomMargin","ngAcceptInputType_xAxisTitleLeftMargin":"ngAcceptInputType_xAxisTitleLeftMargin","ngAcceptInputType_xAxisTitleMargin":"ngAcceptInputType_xAxisTitleMargin","ngAcceptInputType_xAxisTitleRightMargin":"ngAcceptInputType_xAxisTitleRightMargin","ngAcceptInputType_xAxisTitleTopMargin":"ngAcceptInputType_xAxisTitleTopMargin","ngAcceptInputType_xAxisZoomMaximumCategoryRange":"ngAcceptInputType_xAxisZoomMaximumCategoryRange","ngAcceptInputType_xAxisZoomMaximumItemSpan":"ngAcceptInputType_xAxisZoomMaximumItemSpan","ngAcceptInputType_xAxisZoomToCategoryRange":"ngAcceptInputType_xAxisZoomToCategoryRange","ngAcceptInputType_xAxisZoomToCategoryStart":"ngAcceptInputType_xAxisZoomToCategoryStart","ngAcceptInputType_xAxisZoomToItemSpan":"ngAcceptInputType_xAxisZoomToItemSpan","ngAcceptInputType_yAxisAbbreviateLargeNumbers":"ngAcceptInputType_yAxisAbbreviateLargeNumbers","ngAcceptInputType_yAxisActualMaximum":"ngAcceptInputType_yAxisActualMaximum","ngAcceptInputType_yAxisActualMinimum":"ngAcceptInputType_yAxisActualMinimum","ngAcceptInputType_yAxisEnhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_yAxisEnhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_yAxisExtent":"ngAcceptInputType_yAxisExtent","ngAcceptInputType_yAxisInterval":"ngAcceptInputType_yAxisInterval","ngAcceptInputType_yAxisInverted":"ngAcceptInputType_yAxisInverted","ngAcceptInputType_yAxisIsLogarithmic":"ngAcceptInputType_yAxisIsLogarithmic","ngAcceptInputType_yAxisLabelAngle":"ngAcceptInputType_yAxisLabelAngle","ngAcceptInputType_yAxisLabelBottomMargin":"ngAcceptInputType_yAxisLabelBottomMargin","ngAcceptInputType_yAxisLabelFormatSpecifiers":"ngAcceptInputType_yAxisLabelFormatSpecifiers","ngAcceptInputType_yAxisLabelHorizontalAlignment":"ngAcceptInputType_yAxisLabelHorizontalAlignment","ngAcceptInputType_yAxisLabelLeftMargin":"ngAcceptInputType_yAxisLabelLeftMargin","ngAcceptInputType_yAxisLabelLocation":"ngAcceptInputType_yAxisLabelLocation","ngAcceptInputType_yAxisLabelRightMargin":"ngAcceptInputType_yAxisLabelRightMargin","ngAcceptInputType_yAxisLabelTopMargin":"ngAcceptInputType_yAxisLabelTopMargin","ngAcceptInputType_yAxisLabelVerticalAlignment":"ngAcceptInputType_yAxisLabelVerticalAlignment","ngAcceptInputType_yAxisLabelVisibility":"ngAcceptInputType_yAxisLabelVisibility","ngAcceptInputType_yAxisLogarithmBase":"ngAcceptInputType_yAxisLogarithmBase","ngAcceptInputType_yAxisMajorStrokeThickness":"ngAcceptInputType_yAxisMajorStrokeThickness","ngAcceptInputType_yAxisMaximumExtent":"ngAcceptInputType_yAxisMaximumExtent","ngAcceptInputType_yAxisMaximumExtentPercentage":"ngAcceptInputType_yAxisMaximumExtentPercentage","ngAcceptInputType_yAxisMaximumValue":"ngAcceptInputType_yAxisMaximumValue","ngAcceptInputType_yAxisMinimumValue":"ngAcceptInputType_yAxisMinimumValue","ngAcceptInputType_yAxisMinorInterval":"ngAcceptInputType_yAxisMinorInterval","ngAcceptInputType_yAxisMinorStrokeThickness":"ngAcceptInputType_yAxisMinorStrokeThickness","ngAcceptInputType_yAxisMode":"ngAcceptInputType_yAxisMode","ngAcceptInputType_yAxisStrokeThickness":"ngAcceptInputType_yAxisStrokeThickness","ngAcceptInputType_yAxisTickLength":"ngAcceptInputType_yAxisTickLength","ngAcceptInputType_yAxisTickStrokeThickness":"ngAcceptInputType_yAxisTickStrokeThickness","ngAcceptInputType_yAxisTitleAlignment":"ngAcceptInputType_yAxisTitleAlignment","ngAcceptInputType_yAxisTitleAngle":"ngAcceptInputType_yAxisTitleAngle","ngAcceptInputType_yAxisTitleBottomMargin":"ngAcceptInputType_yAxisTitleBottomMargin","ngAcceptInputType_yAxisTitleLeftMargin":"ngAcceptInputType_yAxisTitleLeftMargin","ngAcceptInputType_yAxisTitleMargin":"ngAcceptInputType_yAxisTitleMargin","ngAcceptInputType_yAxisTitleRightMargin":"ngAcceptInputType_yAxisTitleRightMargin","ngAcceptInputType_yAxisTitleTopMargin":"ngAcceptInputType_yAxisTitleTopMargin","ngAcceptInputType_zoomSliderType":"ngAcceptInputType_zoomSliderType","ngAcceptInputType_zoomSliderXAxisMajorStrokeThickness":"ngAcceptInputType_zoomSliderXAxisMajorStrokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","applyCustomIndicators":"applyCustomIndicators","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","customIndicatorNames":"customIndicatorNames","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","indicatorBrushes":"indicatorBrushes","indicatorDisplayTypes":"indicatorDisplayTypes","indicatorLongPeriod":"indicatorLongPeriod","indicatorMultiplier":"indicatorMultiplier","indicatorNegativeBrushes":"indicatorNegativeBrushes","indicatorPeriod":"indicatorPeriod","indicatorShortPeriod":"indicatorShortPeriod","indicatorSignalPeriod":"indicatorSignalPeriod","indicatorSmoothingPeriod":"indicatorSmoothingPeriod","indicatorThickness":"indicatorThickness","indicatorTypes":"indicatorTypes","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isLegendVisible":"isLegendVisible","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isToolbarVisible":"isToolbarVisible","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","overlayBrushes":"overlayBrushes","overlayMultiplier":"overlayMultiplier","overlayOutlines":"overlayOutlines","overlayThickness":"overlayThickness","overlayTypes":"overlayTypes","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","rangeSelectorOptions":"rangeSelectorOptions","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","toolbarHeight":"toolbarHeight","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","volumeBrushes":"volumeBrushes","volumeOutlines":"volumeOutlines","volumeThickness":"volumeThickness","volumeType":"volumeType","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisBreaks":"xAxisBreaks","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumValue":"xAxisMaximumValue","xAxisMinimumValue":"xAxisMinimumValue","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisMode":"xAxisMode","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisActualMaximum":"yAxisActualMaximum","yAxisActualMinimum":"yAxisActualMinimum","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisMode":"yAxisMode","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","zoomSliderType":"zoomSliderType","zoomSliderXAxisMajorStroke":"zoomSliderXAxisMajorStroke","zoomSliderXAxisMajorStrokeThickness":"zoomSliderXAxisMajorStrokeThickness","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","onDocumentClick":"onDocumentClick","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxFinancialChartCustomIndicatorArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialChartCustomIndicatorArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_index":"ngAcceptInputType_index","i":"i","index":"index","indicatorInfo":"indicatorInfo","series":"series"}}],"IgxFinancialChartDefaultTemplatesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialChartDefaultTemplatesComponent","k":"class","s":"classes","m":{"constructor":"constructor","financialChartIndicatorMenuTemplate":"financialChartIndicatorMenuTemplate","financialChartRangeSelectorTemplate":"financialChartRangeSelectorTemplate","financialChartToolbarTemplate":"financialChartToolbarTemplate","financialChartTypePickerTemplate":"financialChartTypePickerTemplate","onContentReady":"onContentReady","ɵcmp":"ɵcmp","ɵfac":"ɵfac","asAny":"asAny","getSelection":"getSelection","ngAfterContentInit":"ngAfterContentInit","register":"register"}}],"IgxFinancialChartRangeSelectorOptionCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialChartRangeSelectorOptionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxFinancialEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_count":"ngAcceptInputType_count","ngAcceptInputType_position":"ngAcceptInputType_position","basedOn":"basedOn","count":"count","dataSource":"dataSource","i":"i","position":"position","supportingCalculations":"supportingCalculations"}}],"IgxFinancialIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFinancialIndicatorTypeCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialIndicatorTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxFinancialLegendComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","container":"container","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isItemwise":"ngAcceptInputType_isItemwise","ɵcmp":"ɵcmp","ɵfac":"ɵfac","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","ngOnDestroy":"ngOnDestroy","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgxFinancialOverlayComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFinancialOverlayTypeCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialOverlayTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxFinancialPriceSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialPriceSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","closeMemberAsLegendLabel":"closeMemberAsLegendLabel","closeMemberAsLegendUnit":"closeMemberAsLegendUnit","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","openMemberAsLegendLabel":"openMemberAsLegendLabel","openMemberAsLegendUnit":"openMemberAsLegendUnit","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFinancialSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFinancialSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxForceIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxForceIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFragmentBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFragmentBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFullStochasticOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFullStochasticOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_smoothingPeriod":"ngAcceptInputType_smoothingPeriod","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_triggerPeriod":"ngAcceptInputType_triggerPeriod","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","smoothingPeriod":"smoothingPeriod","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","triggerPeriod":"triggerPeriod","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxFunnelChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualHighlightValueDisplayMode":"ngAcceptInputType_actualHighlightValueDisplayMode","ngAcceptInputType_actualHighlightValueOpacity":"ngAcceptInputType_actualHighlightValueOpacity","ngAcceptInputType_allowSliceSelection":"ngAcceptInputType_allowSliceSelection","ngAcceptInputType_bottomEdgeWidth":"ngAcceptInputType_bottomEdgeWidth","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_funnelSliceDisplay":"ngAcceptInputType_funnelSliceDisplay","ngAcceptInputType_highlightValueDisplayMode":"ngAcceptInputType_highlightValueDisplayMode","ngAcceptInputType_highlightValueOpacity":"ngAcceptInputType_highlightValueOpacity","ngAcceptInputType_innerLabelVisibility":"ngAcceptInputType_innerLabelVisibility","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_outerLabelAlignment":"ngAcceptInputType_outerLabelAlignment","ngAcceptInputType_outerLabelVisibility":"ngAcceptInputType_outerLabelVisibility","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_outlineThickness":"ngAcceptInputType_outlineThickness","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_selectedItems":"ngAcceptInputType_selectedItems","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_unselectedSliceOpacity":"ngAcceptInputType_unselectedSliceOpacity","ngAcceptInputType_unselectedSliceStrokeThickness":"ngAcceptInputType_unselectedSliceStrokeThickness","ngAcceptInputType_useBezierCurve":"ngAcceptInputType_useBezierCurve","ngAcceptInputType_useOuterLabelsForLegend":"ngAcceptInputType_useOuterLabelsForLegend","ngAcceptInputType_useUnselectedStyle":"ngAcceptInputType_useUnselectedStyle","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","allowSliceSelection":"allowSliceSelection","bottomEdgeWidth":"bottomEdgeWidth","brushes":"brushes","dataSource":"dataSource","formatInnerLabel":"formatInnerLabel","formatOuterLabel":"formatOuterLabel","funnelSliceDisplay":"funnelSliceDisplay","height":"height","highlightedValueMemberPath":"highlightedValueMemberPath","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","innerLabelMemberPath":"innerLabelMemberPath","innerLabelVisibility":"innerLabelVisibility","isInverted":"isInverted","legend":"legend","legendItemBadgeTemplate":"legendItemBadgeTemplate","outerLabelAlignment":"outerLabelAlignment","outerLabelMemberPath":"outerLabelMemberPath","outerLabelTextColor":"outerLabelTextColor","outerLabelTextStyle":"outerLabelTextStyle","outerLabelVisibility":"outerLabelVisibility","outlines":"outlines","outlineThickness":"outlineThickness","pixelScalingRatio":"pixelScalingRatio","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","sliceClicked":"sliceClicked","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","unselectedSliceFill":"unselectedSliceFill","unselectedSliceOpacity":"unselectedSliceOpacity","unselectedSliceStroke":"unselectedSliceStroke","unselectedSliceStrokeThickness":"unselectedSliceStrokeThickness","useBezierCurve":"useBezierCurve","useOuterLabelsForLegend":"useOuterLabelsForLegend","useUnselectedStyle":"useUnselectedStyle","valueMemberPath":"valueMemberPath","width":"width","bindData":"bindData","ensureSelectedSliceStyle":"ensureSelectedSliceStyle","ensureUnselectedSliceStyle":"ensureUnselectedSliceStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","toggleSelection":"toggleSelection","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxFunnelChartSelectedItemsChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelChartSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_currentItems":"ngAcceptInputType_currentItems","ngAcceptInputType_newItems":"ngAcceptInputType_newItems","ngAcceptInputType_oldItems":"ngAcceptInputType_oldItems","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgxFunnelChartSelectedItemsCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelChartSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxFunnelDataContext":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelDataContext","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_index":"ngAcceptInputType_index","index":"index","item":"item","findByName":"findByName"}}],"IgxFunnelSliceClickedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelSliceClickedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bounds":"ngAcceptInputType_bounds","ngAcceptInputType_index":"ngAcceptInputType_index","bounds":"bounds","index":"index","item":"item"}}],"IgxFunnelSliceDataContext":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelSliceDataContext","k":"class","s":"classes","m":{"constructor":"constructor","itemOutline":"itemOutline"}}],"IgxFunnelSliceEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxFunnelSliceEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bounds":"ngAcceptInputType_bounds","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_position":"ngAcceptInputType_position","bounds":"bounds","index":"index","item":"item","position":"position"}}],"IgxHierarchicalRingSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxHierarchicalRingSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelsPosition":"ngAcceptInputType_labelsPosition","ngAcceptInputType_leaderLineMargin":"ngAcceptInputType_leaderLineMargin","ngAcceptInputType_leaderLineOpacity":"ngAcceptInputType_leaderLineOpacity","ngAcceptInputType_leaderLineStrokeThickness":"ngAcceptInputType_leaderLineStrokeThickness","ngAcceptInputType_leaderLineType":"ngAcceptInputType_leaderLineType","ngAcceptInputType_leaderLineVisibility":"ngAcceptInputType_leaderLineVisibility","ngAcceptInputType_legendLabelFormatSpecifiers":"ngAcceptInputType_legendLabelFormatSpecifiers","ngAcceptInputType_legendOthersLabelFormatSpecifiers":"ngAcceptInputType_legendOthersLabelFormatSpecifiers","ngAcceptInputType_othersCategoryOpacity":"ngAcceptInputType_othersCategoryOpacity","ngAcceptInputType_othersCategoryStrokeThickness":"ngAcceptInputType_othersCategoryStrokeThickness","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersLabelFormatSpecifiers":"ngAcceptInputType_othersLabelFormatSpecifiers","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_radiusFactor":"ngAcceptInputType_radiusFactor","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brushes":"brushes","childrenMemberPath":"childrenMemberPath","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","bindData":"bindData","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","ngOnInit":"ngOnInit","provideContainer":"provideContainer","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal"}}],"IgxHighDensityScatterSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxHighDensityScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_heatMaximum":"ngAcceptInputType_heatMaximum","ngAcceptInputType_heatMinimum":"ngAcceptInputType_heatMinimum","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_pointExtent":"ngAcceptInputType_pointExtent","ngAcceptInputType_progressiveLoad":"ngAcceptInputType_progressiveLoad","ngAcceptInputType_progressiveStatus":"ngAcceptInputType_progressiveStatus","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useBruteForce":"ngAcceptInputType_useBruteForce","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useBruteForce":"useBruteForce","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxHoleDimensionsChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxHoleDimensionsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_center":"ngAcceptInputType_center","ngAcceptInputType_radius":"ngAcceptInputType_radius","center":"center","radius":"radius"}}],"IgxHorizontalAnchoredCategorySeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxHorizontalAnchoredCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxHorizontalRangeCategorySeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxHorizontalRangeCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxHorizontalStackedSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxHorizontalStackedSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxIndexCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxIndexCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxIndicatorDisplayTypeCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxIndicatorDisplayTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxItemLegendComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxItemLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","container":"container","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isItemwise":"ngAcceptInputType_isItemwise","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ɵcmp":"ɵcmp","ɵfac":"ɵfac","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","orientation":"orientation","textColor":"textColor","textStyle":"textStyle","createItemwiseLegendItems":"createItemwiseLegendItems","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","ngOnDestroy":"ngOnDestroy","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgxItemToolTipLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxItemToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_skipUnknownValues":"ngAcceptInputType_skipUnknownValues","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_toolTipBorderThickness":"ngAcceptInputType_toolTipBorderThickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxItemwiseStrategyBasedIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxItemwiseStrategyBasedIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxLabelClickEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLabelClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_allowSliceClick":"ngAcceptInputType_allowSliceClick","allowSliceClick":"allowSliceClick","item":"item"}}],"IgxLabelFormatOverrideEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLabelFormatOverrideEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dateTime":"dateTime","format":"format","label":"label"}}],"IgxLegendBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLegendBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isItemwise":"ngAcceptInputType_isItemwise","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgxLegendComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","container":"container","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isItemwise":"ngAcceptInputType_isItemwise","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ɵcmp":"ɵcmp","ɵfac":"ɵfac","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","orientation":"orientation","textColor":"textColor","textStyle":"textStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","ngOnDestroy":"ngOnDestroy","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgxLegendMouseButtonEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLegendMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_handled":"ngAcceptInputType_handled","chart":"chart","handled":"handled","item":"item","legendItem":"legendItem","originalSource":"originalSource","series":"series","toString":"toString"}}],"IgxLegendMouseEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLegendMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","item":"item","legendItem":"legendItem","originalSource":"originalSource","series":"series","toString":"toString"}}],"IgxLegendTextContentChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLegendTextContentChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxLinearContourValueResolverComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLinearContourValueResolverComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_valueCount":"ngAcceptInputType_valueCount","ɵcmp":"ɵcmp","ɵfac":"ɵfac","valueCount":"valueCount","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxLineFragmentComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLineFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxLineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxMarkerSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMarkerSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxMarkerTypeCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMarkerTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxMarketFacilitationIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMarketFacilitationIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxMassIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMassIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxMedianPriceIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMedianPriceIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxMoneyFlowIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMoneyFlowIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxMovingAverageConvergenceDivergenceIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxMovingAverageConvergenceDivergenceIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_longPeriod":"ngAcceptInputType_longPeriod","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shortPeriod":"ngAcceptInputType_shortPeriod","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_signalPeriod":"ngAcceptInputType_signalPeriod","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","signalPeriod":"signalPeriod","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxNegativeVolumeIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxNegativeVolumeIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxNumericAngleAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxNumericAngleAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelMode":"ngAcceptInputType_companionAxisLabelMode","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStartAngleOffset":"ngAcceptInputType_companionAxisStartAngleOffset","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelMode":"ngAcceptInputType_labelMode","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_startAngleOffset":"ngAcceptInputType_startAngleOffset","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxNumericAxisBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxNumericAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxNumericRadiusAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxNumericRadiusAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_innerRadiusExtentScale":"ngAcceptInputType_innerRadiusExtentScale","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_radiusExtentScale":"ngAcceptInputType_radiusExtentScale","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","innerRadiusExtentScale":"innerRadiusExtentScale","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","radiusExtentScale":"radiusExtentScale","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledValue":"getScaledValue","getUnscaledValue":"getUnscaledValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxNumericXAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxNumericXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_scaleMode":"ngAcceptInputType_scaleMode","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxNumericYAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxNumericYAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_scaleMode":"ngAcceptInputType_scaleMode","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxOnBalanceVolumeIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxOnBalanceVolumeIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxOrdinalTimeXAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxOrdinalTimeXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormats":"ngAcceptInputType_labelFormats","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labellingMode":"ngAcceptInputType_labellingMode","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ngAcceptInputType_zoomMaximumCategoryRange":"ngAcceptInputType_zoomMaximumCategoryRange","ngAcceptInputType_zoomMaximumItemSpan":"ngAcceptInputType_zoomMaximumItemSpan","ngAcceptInputType_zoomToCategoryRange":"ngAcceptInputType_zoomToCategoryRange","ngAcceptInputType_zoomToCategoryStart":"ngAcceptInputType_zoomToCategoryStart","ngAcceptInputType_zoomToItemSpan":"ngAcceptInputType_zoomToItemSpan","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormats":"labelFormats","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxOthersCategoryContextComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxOthersCategoryContextComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_items":"ngAcceptInputType_items","ɵcmp":"ɵcmp","ɵfac":"ɵfac","items":"items","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxOverlayTextInfo":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxOverlayTextInfo","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_backgroundMode":"ngAcceptInputType_backgroundMode","ngAcceptInputType_backgroundShift":"ngAcceptInputType_backgroundShift","ngAcceptInputType_borderMode":"ngAcceptInputType_borderMode","ngAcceptInputType_borderRadius":"ngAcceptInputType_borderRadius","ngAcceptInputType_borderShift":"ngAcceptInputType_borderShift","ngAcceptInputType_borderThickness":"ngAcceptInputType_borderThickness","ngAcceptInputType_horizontalMargin":"ngAcceptInputType_horizontalMargin","ngAcceptInputType_horizontalPadding":"ngAcceptInputType_horizontalPadding","ngAcceptInputType_textAngle":"ngAcceptInputType_textAngle","ngAcceptInputType_textColorMode":"ngAcceptInputType_textColorMode","ngAcceptInputType_textColorShift":"ngAcceptInputType_textColorShift","ngAcceptInputType_textLocation":"ngAcceptInputType_textLocation","ngAcceptInputType_textVisible":"ngAcceptInputType_textVisible","ngAcceptInputType_verticalMargin":"ngAcceptInputType_verticalMargin","ngAcceptInputType_verticalPadding":"ngAcceptInputType_verticalPadding","background":"background","backgroundMode":"backgroundMode","backgroundShift":"backgroundShift","borderMode":"borderMode","borderRadius":"borderRadius","borderShift":"borderShift","borderStroke":"borderStroke","borderThickness":"borderThickness","horizontalMargin":"horizontalMargin","horizontalPadding":"horizontalPadding","shapeBrush":"shapeBrush","shapeOutline":"shapeOutline","textAngle":"textAngle","textColor":"textColor","textColorMode":"textColorMode","textColorShift":"textColorShift","textContent":"textContent","textLocation":"textLocation","textVisible":"textVisible","verticalMargin":"verticalMargin","verticalPadding":"verticalPadding","findByName":"findByName"}}],"IgxOverlayTextUpdatingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxOverlayTextUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_backgroundMode":"ngAcceptInputType_backgroundMode","ngAcceptInputType_backgroundShift":"ngAcceptInputType_backgroundShift","ngAcceptInputType_borderMode":"ngAcceptInputType_borderMode","ngAcceptInputType_borderRadius":"ngAcceptInputType_borderRadius","ngAcceptInputType_borderShift":"ngAcceptInputType_borderShift","ngAcceptInputType_borderThickness":"ngAcceptInputType_borderThickness","ngAcceptInputType_dataIndex":"ngAcceptInputType_dataIndex","ngAcceptInputType_horizontalMargin":"ngAcceptInputType_horizontalMargin","ngAcceptInputType_horizontalPadding":"ngAcceptInputType_horizontalPadding","ngAcceptInputType_textAngle":"ngAcceptInputType_textAngle","ngAcceptInputType_textColorMode":"ngAcceptInputType_textColorMode","ngAcceptInputType_textColorShift":"ngAcceptInputType_textColorShift","ngAcceptInputType_textEmpty":"ngAcceptInputType_textEmpty","ngAcceptInputType_textLocation":"ngAcceptInputType_textLocation","ngAcceptInputType_textVisible":"ngAcceptInputType_textVisible","ngAcceptInputType_verticalMargin":"ngAcceptInputType_verticalMargin","ngAcceptInputType_verticalPadding":"ngAcceptInputType_verticalPadding","background":"background","backgroundMode":"backgroundMode","backgroundShift":"backgroundShift","borderMode":"borderMode","borderRadius":"borderRadius","borderShift":"borderShift","borderStroke":"borderStroke","borderThickness":"borderThickness","dataIndex":"dataIndex","horizontalMargin":"horizontalMargin","horizontalPadding":"horizontalPadding","shapeBrush":"shapeBrush","shapeOutline":"shapeOutline","textAngle":"textAngle","textColor":"textColor","textColorMode":"textColorMode","textColorShift":"textColorShift","textContent":"textContent","textEmpty":"textEmpty","textLocation":"textLocation","textVisible":"textVisible","verticalMargin":"verticalMargin","verticalPadding":"verticalPadding"}}],"IgxPercentagePriceOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPercentagePriceOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_longPeriod":"ngAcceptInputType_longPeriod","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shortPeriod":"ngAcceptInputType_shortPeriod","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPercentageVolumeOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPercentageVolumeOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_longPeriod":"ngAcceptInputType_longPeriod","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shortPeriod":"ngAcceptInputType_shortPeriod","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPercentChangeYAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPercentChangeYAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_scaleMode":"ngAcceptInputType_scaleMode","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxPieChartBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPieChartBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_allowSliceExplosion":"ngAcceptInputType_allowSliceExplosion","ngAcceptInputType_allowSliceSelection":"ngAcceptInputType_allowSliceSelection","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_explodedRadius":"ngAcceptInputType_explodedRadius","ngAcceptInputType_explodedSlices":"ngAcceptInputType_explodedSlices","ngAcceptInputType_innerExtent":"ngAcceptInputType_innerExtent","ngAcceptInputType_isDragInteractionEnabled":"ngAcceptInputType_isDragInteractionEnabled","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelsPosition":"ngAcceptInputType_labelsPosition","ngAcceptInputType_leaderLineMargin":"ngAcceptInputType_leaderLineMargin","ngAcceptInputType_leaderLineType":"ngAcceptInputType_leaderLineType","ngAcceptInputType_leaderLineVisibility":"ngAcceptInputType_leaderLineVisibility","ngAcceptInputType_legendEmptyValuesMode":"ngAcceptInputType_legendEmptyValuesMode","ngAcceptInputType_legendLabelFormatSpecifiers":"ngAcceptInputType_legendLabelFormatSpecifiers","ngAcceptInputType_legendOthersLabelFormatSpecifiers":"ngAcceptInputType_legendOthersLabelFormatSpecifiers","ngAcceptInputType_othersCategoryOpacity":"ngAcceptInputType_othersCategoryOpacity","ngAcceptInputType_othersCategoryStrokeThickness":"ngAcceptInputType_othersCategoryStrokeThickness","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersLabelFormatSpecifiers":"ngAcceptInputType_othersLabelFormatSpecifiers","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_radiusFactor":"ngAcceptInputType_radiusFactor","ngAcceptInputType_selectedItems":"ngAcceptInputType_selectedItems","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ngAcceptInputType_sweepDirection":"ngAcceptInputType_sweepDirection","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","destroy":"destroy","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideContainer":"provideContainer","removeWidgetLevelDataSource":"removeWidgetLevelDataSource","setWidgetLevelDataSource":"setWidgetLevelDataSource","simulateLeftClick":"simulateLeftClick","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgxPieChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPieChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_allowSliceExplosion":"ngAcceptInputType_allowSliceExplosion","ngAcceptInputType_allowSliceSelection":"ngAcceptInputType_allowSliceSelection","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_explodedRadius":"ngAcceptInputType_explodedRadius","ngAcceptInputType_explodedSlices":"ngAcceptInputType_explodedSlices","ngAcceptInputType_innerExtent":"ngAcceptInputType_innerExtent","ngAcceptInputType_isDragInteractionEnabled":"ngAcceptInputType_isDragInteractionEnabled","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelsPosition":"ngAcceptInputType_labelsPosition","ngAcceptInputType_leaderLineMargin":"ngAcceptInputType_leaderLineMargin","ngAcceptInputType_leaderLineType":"ngAcceptInputType_leaderLineType","ngAcceptInputType_leaderLineVisibility":"ngAcceptInputType_leaderLineVisibility","ngAcceptInputType_legendEmptyValuesMode":"ngAcceptInputType_legendEmptyValuesMode","ngAcceptInputType_legendLabelFormatSpecifiers":"ngAcceptInputType_legendLabelFormatSpecifiers","ngAcceptInputType_legendOthersLabelFormatSpecifiers":"ngAcceptInputType_legendOthersLabelFormatSpecifiers","ngAcceptInputType_othersCategoryOpacity":"ngAcceptInputType_othersCategoryOpacity","ngAcceptInputType_othersCategoryStrokeThickness":"ngAcceptInputType_othersCategoryStrokeThickness","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersLabelFormatSpecifiers":"ngAcceptInputType_othersLabelFormatSpecifiers","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_radiusFactor":"ngAcceptInputType_radiusFactor","ngAcceptInputType_selectedItems":"ngAcceptInputType_selectedItems","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ngAcceptInputType_sweepDirection":"ngAcceptInputType_sweepDirection","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","dataSource":"dataSource","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","height":"height","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","width":"width","bindData":"bindData","destroy":"destroy","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideContainer":"provideContainer","removeWidgetLevelDataSource":"removeWidgetLevelDataSource","setWidgetLevelDataSource":"setWidgetLevelDataSource","simulateLeftClick":"simulateLeftClick","styleUpdated":"styleUpdated","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxPieSliceDataContext":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPieSliceDataContext","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isOthersSlice":"ngAcceptInputType_isOthersSlice","ngAcceptInputType_percentValue":"ngAcceptInputType_percentValue","isOthersSlice":"isOthersSlice","percentValue":"percentValue"}}],"IgxPieSliceOthersContext":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPieSliceOthersContext","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgxPlotAreaMouseButtonEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPlotAreaMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_manipulationOccurred":"ngAcceptInputType_manipulationOccurred","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","chartPosition":"chartPosition","manipulationOccurred":"manipulationOccurred","plotAreaPosition":"plotAreaPosition","viewer":"viewer"}}],"IgxPlotAreaMouseEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPlotAreaMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_chartPosition":"ngAcceptInputType_chartPosition","ngAcceptInputType_isDuringManipulation":"ngAcceptInputType_isDuringManipulation","ngAcceptInputType_plotAreaPosition":"ngAcceptInputType_plotAreaPosition","chartPosition":"chartPosition","isDuringManipulation":"isDuringManipulation","plotAreaPosition":"plotAreaPosition","viewer":"viewer"}}],"IgxPointSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPointSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarLineSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarLineSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarLineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarScatterSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarSplineAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarSplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_stiffness":"ngAcceptInputType_stiffness","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPolarSplineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPolarSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomPolarMarkerStyleAllowed":"ngAcceptInputType_isCustomPolarMarkerStyleAllowed","ngAcceptInputType_isCustomPolarStyleAllowed":"ngAcceptInputType_isCustomPolarStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_stiffness":"ngAcceptInputType_stiffness","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCartesianInterpolation":"ngAcceptInputType_useCartesianInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPositiveVolumeIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPositiveVolumeIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPriceChannelOverlayComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPriceChannelOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxPriceVolumeTrendIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxPriceVolumeTrendIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxProgressiveLoadStatusEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxProgressiveLoadStatusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_currentStatus":"ngAcceptInputType_currentStatus","currentStatus":"currentStatus"}}],"IgxProportionalCategoryAngleAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxProportionalCategoryAngleAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_areGroupSizesUneven":"ngAcceptInputType_areGroupSizesUneven","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelMode":"ngAcceptInputType_companionAxisLabelMode","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStartAngleOffset":"ngAcceptInputType_companionAxisStartAngleOffset","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_hasOthersCategory":"ngAcceptInputType_hasOthersCategory","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelMode":"ngAcceptInputType_labelMode","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_normalizationMayContainUnknowns":"ngAcceptInputType_normalizationMayContainUnknowns","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersIndex":"ngAcceptInputType_othersIndex","ngAcceptInputType_othersValue":"ngAcceptInputType_othersValue","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_startAngleOffset":"ngAcceptInputType_startAngleOffset","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","areGroupSizesUneven":"areGroupSizesUneven","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","hasOthersCategory":"hasOthersCategory","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","normalizationMayContainUnknowns":"normalizationMayContainUnknowns","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersIndex":"othersIndex","othersValue":"othersValue","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","valueMemberPath":"valueMemberPath","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNormalizingValueAtIndex":"getNormalizingValueAtIndex","getPercentageValue":"getPercentageValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","isOthersValue":"isOthersValue","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxRadialAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRadialAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers","ngAcceptInputType_autoCalloutPercentagePrecision":"ngAcceptInputType_autoCalloutPercentagePrecision","ngAcceptInputType_autoCalloutRadialLabelMode":"ngAcceptInputType_autoCalloutRadialLabelMode","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomRadialMarkerStyleAllowed":"ngAcceptInputType_isCustomRadialMarkerStyleAllowed","ngAcceptInputType_isCustomRadialStyleAllowed":"ngAcceptInputType_isCustomRadialStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_legendRadialLabelMode":"ngAcceptInputType_legendRadialLabelMode","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_proportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_proportionalRadialLabelFormatSpecifiers","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useCategoryNormalizedValues":"ngAcceptInputType_useCategoryNormalizedValues","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRadialBaseChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRadialBaseChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_angleAxisExtent":"ngAcceptInputType_angleAxisExtent","ngAcceptInputType_angleAxisInverted":"ngAcceptInputType_angleAxisInverted","ngAcceptInputType_angleAxisLabelAngle":"ngAcceptInputType_angleAxisLabelAngle","ngAcceptInputType_angleAxisLabelBottomMargin":"ngAcceptInputType_angleAxisLabelBottomMargin","ngAcceptInputType_angleAxisLabelFormatSpecifiers":"ngAcceptInputType_angleAxisLabelFormatSpecifiers","ngAcceptInputType_angleAxisLabelHorizontalAlignment":"ngAcceptInputType_angleAxisLabelHorizontalAlignment","ngAcceptInputType_angleAxisLabelLeftMargin":"ngAcceptInputType_angleAxisLabelLeftMargin","ngAcceptInputType_angleAxisLabelLocation":"ngAcceptInputType_angleAxisLabelLocation","ngAcceptInputType_angleAxisLabelRightMargin":"ngAcceptInputType_angleAxisLabelRightMargin","ngAcceptInputType_angleAxisLabelTopMargin":"ngAcceptInputType_angleAxisLabelTopMargin","ngAcceptInputType_angleAxisLabelVerticalAlignment":"ngAcceptInputType_angleAxisLabelVerticalAlignment","ngAcceptInputType_angleAxisLabelVisibility":"ngAcceptInputType_angleAxisLabelVisibility","ngAcceptInputType_angleAxisMajorStrokeThickness":"ngAcceptInputType_angleAxisMajorStrokeThickness","ngAcceptInputType_angleAxisMaximumExtent":"ngAcceptInputType_angleAxisMaximumExtent","ngAcceptInputType_angleAxisMaximumExtentPercentage":"ngAcceptInputType_angleAxisMaximumExtentPercentage","ngAcceptInputType_angleAxisMinorStrokeThickness":"ngAcceptInputType_angleAxisMinorStrokeThickness","ngAcceptInputType_angleAxisStrokeThickness":"ngAcceptInputType_angleAxisStrokeThickness","ngAcceptInputType_angleAxisTickLength":"ngAcceptInputType_angleAxisTickLength","ngAcceptInputType_angleAxisTickStrokeThickness":"ngAcceptInputType_angleAxisTickStrokeThickness","ngAcceptInputType_angleAxisTitleAlignment":"ngAcceptInputType_angleAxisTitleAlignment","ngAcceptInputType_angleAxisTitleAngle":"ngAcceptInputType_angleAxisTitleAngle","ngAcceptInputType_angleAxisTitleBottomMargin":"ngAcceptInputType_angleAxisTitleBottomMargin","ngAcceptInputType_angleAxisTitleLeftMargin":"ngAcceptInputType_angleAxisTitleLeftMargin","ngAcceptInputType_angleAxisTitleMargin":"ngAcceptInputType_angleAxisTitleMargin","ngAcceptInputType_angleAxisTitleRightMargin":"ngAcceptInputType_angleAxisTitleRightMargin","ngAcceptInputType_angleAxisTitleTopMargin":"ngAcceptInputType_angleAxisTitleTopMargin","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueAxisExtent":"ngAcceptInputType_valueAxisExtent","ngAcceptInputType_valueAxisInverted":"ngAcceptInputType_valueAxisInverted","ngAcceptInputType_valueAxisLabelAngle":"ngAcceptInputType_valueAxisLabelAngle","ngAcceptInputType_valueAxisLabelBottomMargin":"ngAcceptInputType_valueAxisLabelBottomMargin","ngAcceptInputType_valueAxisLabelFormatSpecifiers":"ngAcceptInputType_valueAxisLabelFormatSpecifiers","ngAcceptInputType_valueAxisLabelHorizontalAlignment":"ngAcceptInputType_valueAxisLabelHorizontalAlignment","ngAcceptInputType_valueAxisLabelLeftMargin":"ngAcceptInputType_valueAxisLabelLeftMargin","ngAcceptInputType_valueAxisLabelLocation":"ngAcceptInputType_valueAxisLabelLocation","ngAcceptInputType_valueAxisLabelRightMargin":"ngAcceptInputType_valueAxisLabelRightMargin","ngAcceptInputType_valueAxisLabelTopMargin":"ngAcceptInputType_valueAxisLabelTopMargin","ngAcceptInputType_valueAxisLabelVerticalAlignment":"ngAcceptInputType_valueAxisLabelVerticalAlignment","ngAcceptInputType_valueAxisLabelVisibility":"ngAcceptInputType_valueAxisLabelVisibility","ngAcceptInputType_valueAxisMajorStrokeThickness":"ngAcceptInputType_valueAxisMajorStrokeThickness","ngAcceptInputType_valueAxisMaximumExtent":"ngAcceptInputType_valueAxisMaximumExtent","ngAcceptInputType_valueAxisMaximumExtentPercentage":"ngAcceptInputType_valueAxisMaximumExtentPercentage","ngAcceptInputType_valueAxisMinorStrokeThickness":"ngAcceptInputType_valueAxisMinorStrokeThickness","ngAcceptInputType_valueAxisStrokeThickness":"ngAcceptInputType_valueAxisStrokeThickness","ngAcceptInputType_valueAxisTickLength":"ngAcceptInputType_valueAxisTickLength","ngAcceptInputType_valueAxisTickStrokeThickness":"ngAcceptInputType_valueAxisTickStrokeThickness","ngAcceptInputType_valueAxisTitleAlignment":"ngAcceptInputType_valueAxisTitleAlignment","ngAcceptInputType_valueAxisTitleAngle":"ngAcceptInputType_valueAxisTitleAngle","ngAcceptInputType_valueAxisTitleBottomMargin":"ngAcceptInputType_valueAxisTitleBottomMargin","ngAcceptInputType_valueAxisTitleLeftMargin":"ngAcceptInputType_valueAxisTitleLeftMargin","ngAcceptInputType_valueAxisTitleMargin":"ngAcceptInputType_valueAxisTitleMargin","ngAcceptInputType_valueAxisTitleRightMargin":"ngAcceptInputType_valueAxisTitleRightMargin","ngAcceptInputType_valueAxisTitleTopMargin":"ngAcceptInputType_valueAxisTitleTopMargin","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisExtent":"valueAxisExtent","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInverted":"valueAxisInverted","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxRadialBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRadialBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers","ngAcceptInputType_autoCalloutPercentagePrecision":"ngAcceptInputType_autoCalloutPercentagePrecision","ngAcceptInputType_autoCalloutRadialLabelMode":"ngAcceptInputType_autoCalloutRadialLabelMode","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomRadialMarkerStyleAllowed":"ngAcceptInputType_isCustomRadialMarkerStyleAllowed","ngAcceptInputType_isCustomRadialStyleAllowed":"ngAcceptInputType_isCustomRadialStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_legendRadialLabelMode":"ngAcceptInputType_legendRadialLabelMode","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_proportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_proportionalRadialLabelFormatSpecifiers","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRadialColumnSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRadialColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers","ngAcceptInputType_autoCalloutPercentagePrecision":"ngAcceptInputType_autoCalloutPercentagePrecision","ngAcceptInputType_autoCalloutRadialLabelMode":"ngAcceptInputType_autoCalloutRadialLabelMode","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomRadialMarkerStyleAllowed":"ngAcceptInputType_isCustomRadialMarkerStyleAllowed","ngAcceptInputType_isCustomRadialStyleAllowed":"ngAcceptInputType_isCustomRadialStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_legendRadialLabelMode":"ngAcceptInputType_legendRadialLabelMode","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_proportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_proportionalRadialLabelFormatSpecifiers","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCategoryNormalizedValues":"ngAcceptInputType_useCategoryNormalizedValues","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRadialLineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRadialLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers","ngAcceptInputType_autoCalloutPercentagePrecision":"ngAcceptInputType_autoCalloutPercentagePrecision","ngAcceptInputType_autoCalloutRadialLabelMode":"ngAcceptInputType_autoCalloutRadialLabelMode","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomRadialMarkerStyleAllowed":"ngAcceptInputType_isCustomRadialMarkerStyleAllowed","ngAcceptInputType_isCustomRadialStyleAllowed":"ngAcceptInputType_isCustomRadialStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_legendRadialLabelMode":"ngAcceptInputType_legendRadialLabelMode","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_proportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_proportionalRadialLabelFormatSpecifiers","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useCategoryNormalizedValues":"ngAcceptInputType_useCategoryNormalizedValues","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRadialPieSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRadialPieSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutLabelPrecision":"ngAcceptInputType_autoCalloutLabelPrecision","ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutOthersLabelFormatSpecifiers","ngAcceptInputType_autoCalloutPercentagePrecision":"ngAcceptInputType_autoCalloutPercentagePrecision","ngAcceptInputType_autoCalloutRadialLabelMode":"ngAcceptInputType_autoCalloutRadialLabelMode","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_clipSeriesToBounds":"ngAcceptInputType_clipSeriesToBounds","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomRadialMarkerStyleAllowed":"ngAcceptInputType_isCustomRadialMarkerStyleAllowed","ngAcceptInputType_isCustomRadialStyleAllowed":"ngAcceptInputType_isCustomRadialStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendEmptyValuesMode":"ngAcceptInputType_legendEmptyValuesMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_legendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_legendRadialLabelMode":"ngAcceptInputType_legendRadialLabelMode","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersLegendProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_othersProportionalRadialLabelFormatSpecifiers","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_proportionalRadialLabelFormatSpecifiers":"ngAcceptInputType_proportionalRadialLabelFormatSpecifiers","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useCategoryNormalizedValues":"ngAcceptInputType_useCategoryNormalizedValues","ngAcceptInputType_useInsetOutlines":"ngAcceptInputType_useInsetOutlines","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useInsetOutlines":"useInsetOutlines","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRangeAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRangeAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRangeCategorySeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRangeCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRangeColumnSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRangeColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRateOfChangeAndMomentumIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRateOfChangeAndMomentumIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRefreshCompletedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRefreshCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxRelativeStrengthIndexIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRelativeStrengthIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxRenderRequestedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRenderRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_animate":"ngAcceptInputType_animate","animate":"animate"}}],"IgxRing":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRing","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_center":"ngAcceptInputType_center","ngAcceptInputType_controlSize":"ngAcceptInputType_controlSize","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_innerExtend":"ngAcceptInputType_innerExtend","ngAcceptInputType_ringBreadth":"ngAcceptInputType_ringBreadth","center":"center","controlSize":"controlSize","index":"index","innerExtend":"innerExtend","ringBreadth":"ringBreadth","ringSeries":"ringSeries","findByName":"findByName","prepareArcs":"prepareArcs","renderArcs":"renderArcs"}}],"IgxRingSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRingSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelsPosition":"ngAcceptInputType_labelsPosition","ngAcceptInputType_leaderLineMargin":"ngAcceptInputType_leaderLineMargin","ngAcceptInputType_leaderLineOpacity":"ngAcceptInputType_leaderLineOpacity","ngAcceptInputType_leaderLineStrokeThickness":"ngAcceptInputType_leaderLineStrokeThickness","ngAcceptInputType_leaderLineType":"ngAcceptInputType_leaderLineType","ngAcceptInputType_leaderLineVisibility":"ngAcceptInputType_leaderLineVisibility","ngAcceptInputType_legendLabelFormatSpecifiers":"ngAcceptInputType_legendLabelFormatSpecifiers","ngAcceptInputType_legendOthersLabelFormatSpecifiers":"ngAcceptInputType_legendOthersLabelFormatSpecifiers","ngAcceptInputType_othersCategoryOpacity":"ngAcceptInputType_othersCategoryOpacity","ngAcceptInputType_othersCategoryStrokeThickness":"ngAcceptInputType_othersCategoryStrokeThickness","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersLabelFormatSpecifiers":"ngAcceptInputType_othersLabelFormatSpecifiers","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_radiusFactor":"ngAcceptInputType_radiusFactor","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brushes":"brushes","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","i":"i","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","bindData":"bindData","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","ngOnInit":"ngOnInit","provideContainer":"provideContainer","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal"}}],"IgxRingSeriesCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRingSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxRingSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxRingSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelsPosition":"ngAcceptInputType_labelsPosition","ngAcceptInputType_leaderLineMargin":"ngAcceptInputType_leaderLineMargin","ngAcceptInputType_leaderLineOpacity":"ngAcceptInputType_leaderLineOpacity","ngAcceptInputType_leaderLineStrokeThickness":"ngAcceptInputType_leaderLineStrokeThickness","ngAcceptInputType_leaderLineType":"ngAcceptInputType_leaderLineType","ngAcceptInputType_leaderLineVisibility":"ngAcceptInputType_leaderLineVisibility","ngAcceptInputType_legendLabelFormatSpecifiers":"ngAcceptInputType_legendLabelFormatSpecifiers","ngAcceptInputType_legendOthersLabelFormatSpecifiers":"ngAcceptInputType_legendOthersLabelFormatSpecifiers","ngAcceptInputType_othersCategoryOpacity":"ngAcceptInputType_othersCategoryOpacity","ngAcceptInputType_othersCategoryStrokeThickness":"ngAcceptInputType_othersCategoryStrokeThickness","ngAcceptInputType_othersCategoryThreshold":"ngAcceptInputType_othersCategoryThreshold","ngAcceptInputType_othersCategoryType":"ngAcceptInputType_othersCategoryType","ngAcceptInputType_othersLabelFormatSpecifiers":"ngAcceptInputType_othersLabelFormatSpecifiers","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_radiusFactor":"ngAcceptInputType_radiusFactor","ngAcceptInputType_selectedSliceOpacity":"ngAcceptInputType_selectedSliceOpacity","ngAcceptInputType_selectedSliceStrokeThickness":"ngAcceptInputType_selectedSliceStrokeThickness","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brushes":"brushes","dataSource":"dataSource","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","i":"i","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","ring":"ring","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSlices":"selectedSlices","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","bindData":"bindData","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","ngOnInit":"ngOnInit","provideContainer":"provideContainer","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal"}}],"IgxScaleLegendComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScaleLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isItemwise":"ngAcceptInputType_isItemwise","ɵcmp":"ɵcmp","ɵfac":"ɵfac","isFinancial":"isFinancial","isItemwise":"isItemwise","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgxScalerParams":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScalerParams","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","referenceValue":"referenceValue","findByName":"findByName"}}],"IgxScatterAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualColorScale":"actualColorScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","colorMemberAsLegendLabel":"colorMemberAsLegendLabel","colorMemberAsLegendUnit":"colorMemberAsLegendUnit","colorMemberPath":"colorMemberPath","colorScale":"colorScale","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","attachImage":"attachImage","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","updateActualColorScale":"updateActualColorScale","_createFromInternal":"_createFromInternal"}}],"IgxScatterBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterContourSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterContourSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFillScale":"actualFillScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillScale":"fillScale","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterLineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterPolygonSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterPolygonSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterPolylineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterPolylineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterSplineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_stiffness":"ngAcceptInputType_stiffness","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineZIndex":"ngAcceptInputType_trendLineZIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxScatterTriangulationSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxScatterTriangulationSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSelectedItemChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSelectedItemChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newItem":"newItem","oldItem":"oldItem"}}],"IgxSelectedItemChangingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSelectedItemChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancel":"ngAcceptInputType_cancel","cancel":"cancel","newItem":"newItem","oldItem":"oldItem"}}],"IgxSelectedItemsChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_currentItems":"ngAcceptInputType_currentItems","ngAcceptInputType_newItems":"ngAcceptInputType_newItems","ngAcceptInputType_oldItems":"ngAcceptInputType_oldItems","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgxSelectedItemsChangingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSelectedItemsChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancel":"ngAcceptInputType_cancel","ngAcceptInputType_currentItems":"ngAcceptInputType_currentItems","ngAcceptInputType_newItems":"ngAcceptInputType_newItems","ngAcceptInputType_oldItems":"ngAcceptInputType_oldItems","cancel":"cancel","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgxSeriesCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","i":"i","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSeriesLayer":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesLayer","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_propertyOverlays":"ngAcceptInputType_propertyOverlays","ngAcceptInputType_transitionOutIsInProgress":"ngAcceptInputType_transitionOutIsInProgress","ngAcceptInputType_zIndex":"ngAcceptInputType_zIndex","propertyOverlays":"propertyOverlays","transitionOutIsInProgress":"transitionOutIsInProgress","zIndex":"zIndex","findByName":"findByName","playTransitionIn":"playTransitionIn","playTransitionOutAndRemove":"playTransitionOutAndRemove"}}],"IgxSeriesLayerCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesLayerCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxSeriesLayerPropertyOverlay":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesLayerPropertyOverlay","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isAlwaysApplied":"ngAcceptInputType_isAlwaysApplied","ngAcceptInputType_isSourceOverlay":"ngAcceptInputType_isSourceOverlay","currentValuePropertyName":"currentValuePropertyName","internalPropertyName":"internalPropertyName","isAlwaysApplied":"isAlwaysApplied","isSourceOverlay":"isSourceOverlay","propertyName":"propertyName","propertyUpdated":"propertyUpdated","value":"value","valueResolving":"valueResolving","findByName":"findByName"}}],"IgxSeriesLayerPropertyOverlayCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesLayerPropertyOverlayCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxSeriesLayerPropertyOverlayValueResolvingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesLayerPropertyOverlayValueResolvingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","value":"value"}}],"IgxSeriesMatcher":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesMatcher","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_index":"ngAcceptInputType_index","index":"index","memberPath":"memberPath","memberPathType":"memberPathType","name":"name","title":"title","findByName":"findByName"}}],"IgxSeriesViewerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesViewerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualContentHitTestMode":"ngAcceptInputType_actualContentHitTestMode","ngAcceptInputType_actualInteractionPixelScalingRatio":"ngAcceptInputType_actualInteractionPixelScalingRatio","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_actualWindowPositionHorizontal":"ngAcceptInputType_actualWindowPositionHorizontal","ngAcceptInputType_actualWindowPositionVertical":"ngAcceptInputType_actualWindowPositionVertical","ngAcceptInputType_actualWindowRect":"ngAcceptInputType_actualWindowRect","ngAcceptInputType_actualWindowRectMinHeight":"ngAcceptInputType_actualWindowRectMinHeight","ngAcceptInputType_actualWindowRectMinWidth":"ngAcceptInputType_actualWindowRectMinWidth","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_autoMarginHeight":"ngAcceptInputType_autoMarginHeight","ngAcceptInputType_autoMarginWidth":"ngAcceptInputType_autoMarginWidth","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_contentHitTestMode":"ngAcceptInputType_contentHitTestMode","ngAcceptInputType_contentViewport":"ngAcceptInputType_contentViewport","ngAcceptInputType_crosshairPoint":"ngAcceptInputType_crosshairPoint","ngAcceptInputType_crosshairVisibility":"ngAcceptInputType_crosshairVisibility","ngAcceptInputType_defaultInteraction":"ngAcceptInputType_defaultInteraction","ngAcceptInputType_dragModifier":"ngAcceptInputType_dragModifier","ngAcceptInputType_effectiveViewport":"ngAcceptInputType_effectiveViewport","ngAcceptInputType_fireMouseLeaveOnManipulationStart":"ngAcceptInputType_fireMouseLeaveOnManipulationStart","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_fullSeries":"ngAcceptInputType_fullSeries","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_interactionOverride":"ngAcceptInputType_interactionOverride","ngAcceptInputType_interactionPixelScalingRatio":"ngAcceptInputType_interactionPixelScalingRatio","ngAcceptInputType_isAntiAliasingEnabledDuringInteraction":"ngAcceptInputType_isAntiAliasingEnabledDuringInteraction","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isInCreateAnnotationMode":"ngAcceptInputType_isInCreateAnnotationMode","ngAcceptInputType_isInDeleteAnnotationMode":"ngAcceptInputType_isInDeleteAnnotationMode","ngAcceptInputType_isMap":"ngAcceptInputType_isMap","ngAcceptInputType_isPagePanningAllowed":"ngAcceptInputType_isPagePanningAllowed","ngAcceptInputType_isSurfaceInteractionDisabled":"ngAcceptInputType_isSurfaceInteractionDisabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isWindowSyncedToVisibleRange":"ngAcceptInputType_isWindowSyncedToVisibleRange","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_panModifier":"ngAcceptInputType_panModifier","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_preferHigherResolutionTiles":"ngAcceptInputType_preferHigherResolutionTiles","ngAcceptInputType_previewPathOpacity":"ngAcceptInputType_previewPathOpacity","ngAcceptInputType_previewRect":"ngAcceptInputType_previewRect","ngAcceptInputType_resizeIdleMilliseconds":"ngAcceptInputType_resizeIdleMilliseconds","ngAcceptInputType_rightButtonDefaultInteraction":"ngAcceptInputType_rightButtonDefaultInteraction","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_scrollbarsAnimationDuration":"ngAcceptInputType_scrollbarsAnimationDuration","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionModifier":"ngAcceptInputType_selectionModifier","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldMatchZOrderToSeriesOrder":"ngAcceptInputType_shouldMatchZOrderToSeriesOrder","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleHorizontalAlignment":"ngAcceptInputType_subtitleHorizontalAlignment","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_useTiledZooming":"ngAcceptInputType_useTiledZooming","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewportRect":"ngAcceptInputType_viewportRect","ngAcceptInputType_windowPositionHorizontal":"ngAcceptInputType_windowPositionHorizontal","ngAcceptInputType_windowPositionVertical":"ngAcceptInputType_windowPositionVertical","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowResponse":"ngAcceptInputType_windowResponse","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ngAcceptInputType_zoomCoercionMode":"ngAcceptInputType_zoomCoercionMode","ngAcceptInputType_zoomTileCacheSize":"ngAcceptInputType_zoomTileCacheSize","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","contentHitTestMode":"contentHitTestMode","contentViewport":"contentViewport","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","fullSeries":"fullSeries","gridAreaRectChanged":"gridAreaRectChanged","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isDetached":"isDetached","isInCreateAnnotationMode":"isInCreateAnnotationMode","isInDeleteAnnotationMode":"isInDeleteAnnotationMode","isMap":"isMap","isPagePanningAllowed":"isPagePanningAllowed","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","viewportRect":"viewportRect","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attachSeries":"attachSeries","cancelAnnotationFlow":"cancelAnnotationFlow","cancelCreatingAnnotation":"cancelCreatingAnnotation","cancelDeletingAnnotation":"cancelDeletingAnnotation","cancelManipulation":"cancelManipulation","captureImage":"captureImage","clearTileZoomCache":"clearTileZoomCache","destroy":"destroy","endTiledZoomingIfRunning":"endTiledZoomingIfRunning","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","finishCreatingAnnotation":"finishCreatingAnnotation","finishDeletingAnnotation":"finishDeletingAnnotation","flush":"flush","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getAnimationIdleVersionNumber":"getAnimationIdleVersionNumber","getCurrentActualWindowRect":"getCurrentActualWindowRect","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","isAnimationActive":"isAnimationActive","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","queueForAnimationIdle":"queueForAnimationIdle","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","renderToImage":"renderToImage","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","startTiledZoomingIfNecessary":"startTiledZoomingIfNecessary","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgxSeriesViewerManipulationEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesViewerManipulationEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dragSelectRectangle":"ngAcceptInputType_dragSelectRectangle","ngAcceptInputType_isDragSelect":"ngAcceptInputType_isDragSelect","ngAcceptInputType_isDragSelectCancelled":"ngAcceptInputType_isDragSelectCancelled","ngAcceptInputType_isDragZoom":"ngAcceptInputType_isDragZoom","ngAcceptInputType_isZoomPan":"ngAcceptInputType_isZoomPan","dragSelectRectangle":"dragSelectRectangle","isDragSelect":"isDragSelect","isDragSelectCancelled":"isDragSelectCancelled","isDragZoom":"isDragZoom","isZoomPan":"isZoomPan"}}],"IgxSeriesViewerSelectedSeriesItemsChangedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesViewerSelectedSeriesItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_currentItems":"ngAcceptInputType_currentItems","ngAcceptInputType_newItems":"ngAcceptInputType_newItems","ngAcceptInputType_oldItems":"ngAcceptInputType_oldItems","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgxSeriesViewerSelectedSeriesItemsChangingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSeriesViewerSelectedSeriesItemsChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancel":"ngAcceptInputType_cancel","ngAcceptInputType_currentItems":"ngAcceptInputType_currentItems","ngAcceptInputType_newItems":"ngAcceptInputType_newItems","ngAcceptInputType_oldItems":"ngAcceptInputType_oldItems","cancel":"cancel","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgxShapeSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxShapeSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualItemSearchMode":"ngAcceptInputType_actualItemSearchMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSizeScaleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSizeScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_globalMaximum":"ngAcceptInputType_globalMaximum","ngAcceptInputType_globalMinimum":"ngAcceptInputType_globalMinimum","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ɵcmp":"ɵcmp","ɵfac":"ɵfac","globalMaximum":"globalMaximum","globalMinimum":"globalMinimum","isLogarithmic":"isLogarithmic","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated","findByName":"findByName","getCurrentGlobalMaximum":"getCurrentGlobalMaximum","getCurrentGlobalMinimum":"getCurrentGlobalMinimum","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxSliceClickEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSliceClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bounds":"ngAcceptInputType_bounds","ngAcceptInputType_endAngle":"ngAcceptInputType_endAngle","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isExploded":"ngAcceptInputType_isExploded","ngAcceptInputType_isOthersSlice":"ngAcceptInputType_isOthersSlice","ngAcceptInputType_isSelected":"ngAcceptInputType_isSelected","ngAcceptInputType_origin":"ngAcceptInputType_origin","ngAcceptInputType_radius":"ngAcceptInputType_radius","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","bounds":"bounds","dataContext":"dataContext","endAngle":"endAngle","fill":"fill","index":"index","isExploded":"isExploded","isOthersSlice":"isOthersSlice","isSelected":"isSelected","origin":"origin","originalEvent":"originalEvent","outline":"outline","radius":"radius","startAngle":"startAngle"}}],"IgxSliceEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSliceEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bounds":"ngAcceptInputType_bounds","ngAcceptInputType_endAngle":"ngAcceptInputType_endAngle","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isExploded":"ngAcceptInputType_isExploded","ngAcceptInputType_isOthersSlice":"ngAcceptInputType_isOthersSlice","ngAcceptInputType_isSelected":"ngAcceptInputType_isSelected","ngAcceptInputType_origin":"ngAcceptInputType_origin","ngAcceptInputType_position":"ngAcceptInputType_position","ngAcceptInputType_radius":"ngAcceptInputType_radius","ngAcceptInputType_startAngle":"ngAcceptInputType_startAngle","bounds":"bounds","dataContext":"dataContext","endAngle":"endAngle","fill":"fill","index":"index","isExploded":"isExploded","isOthersSlice":"isOthersSlice","isSelected":"isSelected","origin":"origin","originalEvent":"originalEvent","outline":"outline","position":"position","radius":"radius","startAngle":"startAngle"}}],"IgxSlowStochasticOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSlowStochasticOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSparklineComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSparklineComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_displayNormalRangeInFront":"ngAcceptInputType_displayNormalRangeInFront","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_firstMarkerSize":"ngAcceptInputType_firstMarkerSize","ngAcceptInputType_firstMarkerVisibility":"ngAcceptInputType_firstMarkerVisibility","ngAcceptInputType_highMarkerSize":"ngAcceptInputType_highMarkerSize","ngAcceptInputType_highMarkerVisibility":"ngAcceptInputType_highMarkerVisibility","ngAcceptInputType_horizontalAxisVisibility":"ngAcceptInputType_horizontalAxisVisibility","ngAcceptInputType_horizontalLabelFormatSpecifiers":"ngAcceptInputType_horizontalLabelFormatSpecifiers","ngAcceptInputType_lastMarkerSize":"ngAcceptInputType_lastMarkerSize","ngAcceptInputType_lastMarkerVisibility":"ngAcceptInputType_lastMarkerVisibility","ngAcceptInputType_lineThickness":"ngAcceptInputType_lineThickness","ngAcceptInputType_lowMarkerSize":"ngAcceptInputType_lowMarkerSize","ngAcceptInputType_lowMarkerVisibility":"ngAcceptInputType_lowMarkerVisibility","ngAcceptInputType_markerSize":"ngAcceptInputType_markerSize","ngAcceptInputType_markerVisibility":"ngAcceptInputType_markerVisibility","ngAcceptInputType_maximum":"ngAcceptInputType_maximum","ngAcceptInputType_minimum":"ngAcceptInputType_minimum","ngAcceptInputType_negativeMarkerSize":"ngAcceptInputType_negativeMarkerSize","ngAcceptInputType_negativeMarkerVisibility":"ngAcceptInputType_negativeMarkerVisibility","ngAcceptInputType_normalRangeMaximum":"ngAcceptInputType_normalRangeMaximum","ngAcceptInputType_normalRangeMinimum":"ngAcceptInputType_normalRangeMinimum","ngAcceptInputType_normalRangeVisibility":"ngAcceptInputType_normalRangeVisibility","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_verticalAxisVisibility":"ngAcceptInputType_verticalAxisVisibility","ngAcceptInputType_verticalLabelFormatSpecifiers":"ngAcceptInputType_verticalLabelFormatSpecifiers","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualPixelScalingRatio":"actualPixelScalingRatio","brush":"brush","dataSource":"dataSource","displayNormalRangeInFront":"displayNormalRangeInFront","displayType":"displayType","firstMarkerBrush":"firstMarkerBrush","firstMarkerSize":"firstMarkerSize","firstMarkerVisibility":"firstMarkerVisibility","formatLabel":"formatLabel","height":"height","highMarkerBrush":"highMarkerBrush","highMarkerSize":"highMarkerSize","highMarkerVisibility":"highMarkerVisibility","horizontalAxisBrush":"horizontalAxisBrush","horizontalAxisLabel":"horizontalAxisLabel","horizontalAxisVisibility":"horizontalAxisVisibility","horizontalLabelFormat":"horizontalLabelFormat","horizontalLabelFormatSpecifiers":"horizontalLabelFormatSpecifiers","labelMemberPath":"labelMemberPath","lastMarkerBrush":"lastMarkerBrush","lastMarkerSize":"lastMarkerSize","lastMarkerVisibility":"lastMarkerVisibility","lineThickness":"lineThickness","lowMarkerBrush":"lowMarkerBrush","lowMarkerSize":"lowMarkerSize","lowMarkerVisibility":"lowMarkerVisibility","markerBrush":"markerBrush","markerSize":"markerSize","markerVisibility":"markerVisibility","maximum":"maximum","minimum":"minimum","negativeBrush":"negativeBrush","negativeMarkerBrush":"negativeMarkerBrush","negativeMarkerSize":"negativeMarkerSize","negativeMarkerVisibility":"negativeMarkerVisibility","normalRangeFill":"normalRangeFill","normalRangeMaximum":"normalRangeMaximum","normalRangeMinimum":"normalRangeMinimum","normalRangeVisibility":"normalRangeVisibility","pixelScalingRatio":"pixelScalingRatio","tooltipTemplate":"tooltipTemplate","trendLineBrush":"trendLineBrush","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","valueMemberPath":"valueMemberPath","verticalAxisBrush":"verticalAxisBrush","verticalAxisLabel":"verticalAxisLabel","verticalAxisVisibility":"verticalAxisVisibility","verticalLabelFormat":"verticalLabelFormat","verticalLabelFormatSpecifiers":"verticalLabelFormatSpecifiers","width":"width","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","_createFromInternal":"_createFromInternal"}}],"IgxSplineAreaFragmentComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSplineAreaFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_splineType":"ngAcceptInputType_splineType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSplineAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_splineType":"ngAcceptInputType_splineType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSplineFragmentBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSplineFragmentBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_splineType":"ngAcceptInputType_splineType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSplineFragmentComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSplineFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_splineType":"ngAcceptInputType_splineType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSplineSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSplineSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_splineType":"ngAcceptInputType_splineType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxSplineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_splineType":"ngAcceptInputType_splineType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStacked100AreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStacked100AreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStacked100BarSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStacked100BarSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStacked100ColumnSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStacked100ColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStacked100LineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStacked100LineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStacked100SplineAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStacked100SplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStacked100SplineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStacked100SplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedBarSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedBarSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedColumnSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedFragmentSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedFragmentSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualHighlightedValuesDisplayMode":"ngAcceptInputType_actualHighlightedValuesDisplayMode","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualIsDropShadowEnabled":"ngAcceptInputType_actualIsDropShadowEnabled","ngAcceptInputType_actualIsSplineShapePartOfRange":"ngAcceptInputType_actualIsSplineShapePartOfRange","ngAcceptInputType_actualIsTransitionInEnabled":"ngAcceptInputType_actualIsTransitionInEnabled","ngAcceptInputType_actualLegendItemBadgeMode":"ngAcceptInputType_actualLegendItemBadgeMode","ngAcceptInputType_actualLegendItemBadgeShape":"ngAcceptInputType_actualLegendItemBadgeShape","ngAcceptInputType_actualLegendItemVisibility":"ngAcceptInputType_actualLegendItemVisibility","ngAcceptInputType_actualLineCap":"ngAcceptInputType_actualLineCap","ngAcceptInputType_actualMarkerFillMode":"ngAcceptInputType_actualMarkerFillMode","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerOutlineMode":"ngAcceptInputType_actualMarkerOutlineMode","ngAcceptInputType_actualMarkerThickness":"ngAcceptInputType_actualMarkerThickness","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualOpacity":"ngAcceptInputType_actualOpacity","ngAcceptInputType_actualOutlineMode":"ngAcceptInputType_actualOutlineMode","ngAcceptInputType_actualRadiusX":"ngAcceptInputType_actualRadiusX","ngAcceptInputType_actualRadiusY":"ngAcceptInputType_actualRadiusY","ngAcceptInputType_actualShadowBlur":"ngAcceptInputType_actualShadowBlur","ngAcceptInputType_actualShadowOffsetX":"ngAcceptInputType_actualShadowOffsetX","ngAcceptInputType_actualShadowOffsetY":"ngAcceptInputType_actualShadowOffsetY","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualTransitionDuration":"ngAcceptInputType_actualTransitionDuration","ngAcceptInputType_actualTransitionInDuration":"ngAcceptInputType_actualTransitionInDuration","ngAcceptInputType_actualTransitionInMode":"ngAcceptInputType_actualTransitionInMode","ngAcceptInputType_actualTransitionInSpeedType":"ngAcceptInputType_actualTransitionInSpeedType","ngAcceptInputType_actualUseSingleShadow":"ngAcceptInputType_actualUseSingleShadow","ngAcceptInputType_actualVisibility":"ngAcceptInputType_actualVisibility","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDataLegendGroup":"actualDataLegendGroup","actualHighlightedValuesDataLegendGroup":"actualHighlightedValuesDataLegendGroup","actualHighlightedValuesDisplayMode":"actualHighlightedValuesDisplayMode","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualIsDropShadowEnabled":"actualIsDropShadowEnabled","actualIsSplineShapePartOfRange":"actualIsSplineShapePartOfRange","actualIsTransitionInEnabled":"actualIsTransitionInEnabled","actualLegendItemBadgeMode":"actualLegendItemBadgeMode","actualLegendItemBadgeShape":"actualLegendItemBadgeShape","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLegendItemTemplate":"actualLegendItemTemplate","actualLegendItemVisibility":"actualLegendItemVisibility","actualLineCap":"actualLineCap","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillMode":"actualMarkerFillMode","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerOutlineMode":"actualMarkerOutlineMode","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerThickness":"actualMarkerThickness","actualMarkerType":"actualMarkerType","actualOpacity":"actualOpacity","actualOutline":"actualOutline","actualOutlineMode":"actualOutlineMode","actualRadiusX":"actualRadiusX","actualRadiusY":"actualRadiusY","actualShadowBlur":"actualShadowBlur","actualShadowColor":"actualShadowColor","actualShadowOffsetX":"actualShadowOffsetX","actualShadowOffsetY":"actualShadowOffsetY","actualThickness":"actualThickness","actualTransitionDuration":"actualTransitionDuration","actualTransitionEasingFunction":"actualTransitionEasingFunction","actualTransitionInDuration":"actualTransitionInDuration","actualTransitionInEasingFunction":"actualTransitionInEasingFunction","actualTransitionInMode":"actualTransitionInMode","actualTransitionInSpeedType":"actualTransitionInSpeedType","actualUseSingleShadow":"actualUseSingleShadow","actualValueMemberAsLegendLabel":"actualValueMemberAsLegendLabel","actualValueMemberAsLegendUnit":"actualValueMemberAsLegendUnit","actualVisibility":"actualVisibility","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","brush":"brush","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","highlightedDataSource":"highlightedDataSource","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightingFadeOpacity":"highlightingFadeOpacity","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDropShadowEnabled":"isDropShadowEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","parentOrLocalBrush":"parentOrLocalBrush","propertyUpdated":"propertyUpdated","radiusX":"radiusX","radiusY":"radiusY","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","replayTransitionIn":"replayTransitionIn","scrollIntoView":"scrollIntoView","simulateHover":"simulateHover","toWorldPosition":"toWorldPosition","_createFromInternal":"_createFromInternal"}}],"IgxStackedLineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedSeriesCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxStackedSeriesCreatedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedSeriesCreatedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","brush":"brush","dashArray":"dashArray","index":"index","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerOutline":"markerOutline","markerStyle":"markerStyle","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","outline":"outline","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction"}}],"IgxStackedSplineAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedSplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStackedSplineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStackedSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isSplineShapePartOfRange":"ngAcceptInputType_isSplineShapePartOfRange","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStandardDeviationIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStandardDeviationIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStepAreaSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStepAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStepLineSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStepLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStochRSIIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStochRSIIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStraightNumericAxisBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStraightNumericAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_abbreviatedLabelFormatSpecifiers":"ngAcceptInputType_abbreviatedLabelFormatSpecifiers","ngAcceptInputType_abbreviateLargeNumbers":"ngAcceptInputType_abbreviateLargeNumbers","ngAcceptInputType_actualInterval":"ngAcceptInputType_actualInterval","ngAcceptInputType_actualIsLogarithmic":"ngAcceptInputType_actualIsLogarithmic","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMaxPrecision":"ngAcceptInputType_actualMaxPrecision","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualMinorInterval":"ngAcceptInputType_actualMinorInterval","ngAcceptInputType_actualVisibleMaximumValue":"ngAcceptInputType_actualVisibleMaximumValue","ngAcceptInputType_actualVisibleMinimumValue":"ngAcceptInputType_actualVisibleMinimumValue","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_autoRangeBufferMode":"ngAcceptInputType_autoRangeBufferMode","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisInterval":"ngAcceptInputType_companionAxisInterval","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisIsLogarithmic":"ngAcceptInputType_companionAxisIsLogarithmic","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisLogarithmBase":"ngAcceptInputType_companionAxisLogarithmBase","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMaximumValue":"ngAcceptInputType_companionAxisMaximumValue","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinimumValue":"ngAcceptInputType_companionAxisMinimumValue","ngAcceptInputType_companionAxisMinorInterval":"ngAcceptInputType_companionAxisMinorInterval","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_favorLabellingScaleEnd":"ngAcceptInputType_favorLabellingScaleEnd","ngAcceptInputType_hasUserMaximum":"ngAcceptInputType_hasUserMaximum","ngAcceptInputType_hasUserMinimum":"ngAcceptInputType_hasUserMinimum","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFormattingAbbreviatedLargeNumber":"ngAcceptInputType_isFormattingAbbreviatedLargeNumber","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_maxPrecision":"ngAcceptInputType_maxPrecision","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorInterval":"ngAcceptInputType_minorInterval","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_referenceValue":"ngAcceptInputType_referenceValue","ngAcceptInputType_scaleMode":"ngAcceptInputType_scaleMode","ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed":"ngAcceptInputType_shouldApplyMaxPrecisionWhenZoomed","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxStrategyBasedIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStrategyBasedIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxStyleShapeEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxStyleShapeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shapeOpacity":"ngAcceptInputType_shapeOpacity","ngAcceptInputType_shapeStrokeThickness":"ngAcceptInputType_shapeStrokeThickness","i":"i","item":"item","shapeFill":"shapeFill","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","ensureShapeStyle":"ensureShapeStyle"}}],"IgxTimeAxisBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDataPreSorted":"ngAcceptInputType_isDataPreSorted","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxTimeAxisBreakCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTimeAxisBreakComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisBreakComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_interval":"ngAcceptInputType_interval","ɵcmp":"ɵcmp","ɵfac":"ɵfac","end":"end","i":"i","interval":"interval","start":"start","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxTimeAxisIntervalCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisIntervalCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTimeAxisIntervalComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisIntervalComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_intervalType":"ngAcceptInputType_intervalType","ngAcceptInputType_range":"ngAcceptInputType_range","ɵcmp":"ɵcmp","ɵfac":"ɵfac","i":"i","interval":"interval","intervalType":"intervalType","range":"range","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxTimeAxisLabelFormatCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisLabelFormatCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTimeAxisLabelFormatComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeAxisLabelFormatComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_range":"ngAcceptInputType_range","ɵcmp":"ɵcmp","ɵfac":"ɵfac","format":"format","i":"i","labelFormatOverride":"labelFormatOverride","range":"range","repeatedDayFormat":"repeatedDayFormat","repeatedMonthFormat":"repeatedMonthFormat","repeatedYearFormat":"repeatedYearFormat","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxTimeXAxisComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTimeXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_breaks":"ngAcceptInputType_breaks","ngAcceptInputType_companionAxisCrossingValue":"ngAcceptInputType_companionAxisCrossingValue","ngAcceptInputType_companionAxisEnabled":"ngAcceptInputType_companionAxisEnabled","ngAcceptInputType_companionAxisIsInverted":"ngAcceptInputType_companionAxisIsInverted","ngAcceptInputType_companionAxisLabelAngle":"ngAcceptInputType_companionAxisLabelAngle","ngAcceptInputType_companionAxisLabelExtent":"ngAcceptInputType_companionAxisLabelExtent","ngAcceptInputType_companionAxisLabelHorizontalAlignment":"ngAcceptInputType_companionAxisLabelHorizontalAlignment","ngAcceptInputType_companionAxisLabelLocation":"ngAcceptInputType_companionAxisLabelLocation","ngAcceptInputType_companionAxisLabelOpposite":"ngAcceptInputType_companionAxisLabelOpposite","ngAcceptInputType_companionAxisLabelVerticalAlignment":"ngAcceptInputType_companionAxisLabelVerticalAlignment","ngAcceptInputType_companionAxisLabelVisible":"ngAcceptInputType_companionAxisLabelVisible","ngAcceptInputType_companionAxisMajorStrokeThickness":"ngAcceptInputType_companionAxisMajorStrokeThickness","ngAcceptInputType_companionAxisMinExtent":"ngAcceptInputType_companionAxisMinExtent","ngAcceptInputType_companionAxisMinorStrokeThickness":"ngAcceptInputType_companionAxisMinorStrokeThickness","ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations":"ngAcceptInputType_companionAxisShouldAutoTruncateAnnotations","ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions":"ngAcceptInputType_companionAxisShouldAvoidAnnotationCollisions","ngAcceptInputType_companionAxisShouldKeepAnnotationsInView":"ngAcceptInputType_companionAxisShouldKeepAnnotationsInView","ngAcceptInputType_companionAxisStrokeThickness":"ngAcceptInputType_companionAxisStrokeThickness","ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis":"ngAcceptInputType_companionAxisSyncronizedWithPrimaryAxis","ngAcceptInputType_companionAxisTickLength":"ngAcceptInputType_companionAxisTickLength","ngAcceptInputType_companionAxisTickStrokeThickness":"ngAcceptInputType_companionAxisTickStrokeThickness","ngAcceptInputType_enhancedIntervalMinimumCharacters":"ngAcceptInputType_enhancedIntervalMinimumCharacters","ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels":"ngAcceptInputType_enhancedIntervalPreferMoreCategoryLabels","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_gap":"ngAcceptInputType_gap","ngAcceptInputType_intervals":"ngAcceptInputType_intervals","ngAcceptInputType_isAngular":"ngAcceptInputType_isAngular","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isCategoryDateTime":"ngAcceptInputType_isCategoryDateTime","ngAcceptInputType_isCompanionAxis":"ngAcceptInputType_isCompanionAxis","ngAcceptInputType_isContinuous":"ngAcceptInputType_isContinuous","ngAcceptInputType_isDataPreSorted":"ngAcceptInputType_isDataPreSorted","ngAcceptInputType_isDateTime":"ngAcceptInputType_isDateTime","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isInverted":"ngAcceptInputType_isInverted","ngAcceptInputType_isNumeric":"ngAcceptInputType_isNumeric","ngAcceptInputType_isOrdinal":"ngAcceptInputType_isOrdinal","ngAcceptInputType_isPiecewise":"ngAcceptInputType_isPiecewise","ngAcceptInputType_isPrimaryAxis":"ngAcceptInputType_isPrimaryAxis","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isSorting":"ngAcceptInputType_isSorting","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_itemsCount":"ngAcceptInputType_itemsCount","ngAcceptInputType_labelAngle":"ngAcceptInputType_labelAngle","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormats":"ngAcceptInputType_labelFormats","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labellingMode":"ngAcceptInputType_labellingMode","ngAcceptInputType_labelLocation":"ngAcceptInputType_labelLocation","ngAcceptInputType_labelMaximumExtent":"ngAcceptInputType_labelMaximumExtent","ngAcceptInputType_labelMaximumExtentPercentage":"ngAcceptInputType_labelMaximumExtentPercentage","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelShowFirstLabel":"ngAcceptInputType_labelShowFirstLabel","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVisibility":"ngAcceptInputType_labelVisibility","ngAcceptInputType_majorStrokeDashArray":"ngAcceptInputType_majorStrokeDashArray","ngAcceptInputType_majorStrokeThickness":"ngAcceptInputType_majorStrokeThickness","ngAcceptInputType_maximumGap":"ngAcceptInputType_maximumGap","ngAcceptInputType_minimumGapSize":"ngAcceptInputType_minimumGapSize","ngAcceptInputType_minorStrokeDashArray":"ngAcceptInputType_minorStrokeDashArray","ngAcceptInputType_minorStrokeThickness":"ngAcceptInputType_minorStrokeThickness","ngAcceptInputType_overlap":"ngAcceptInputType_overlap","ngAcceptInputType_shouldAutoTruncateAnnotations":"ngAcceptInputType_shouldAutoTruncateAnnotations","ngAcceptInputType_shouldAvoidAnnotationCollisions":"ngAcceptInputType_shouldAvoidAnnotationCollisions","ngAcceptInputType_shouldKeepAnnotationsInView":"ngAcceptInputType_shouldKeepAnnotationsInView","ngAcceptInputType_strokeDashArray":"ngAcceptInputType_strokeDashArray","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_tickLength":"ngAcceptInputType_tickLength","ngAcceptInputType_tickStrokeDashArray":"ngAcceptInputType_tickStrokeDashArray","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleLocation":"ngAcceptInputType_titleLocation","ngAcceptInputType_titleMaximumExtent":"ngAcceptInputType_titleMaximumExtent","ngAcceptInputType_titleMaximumExtentPercentage":"ngAcceptInputType_titleMaximumExtentPercentage","ngAcceptInputType_titlePosition":"ngAcceptInputType_titlePosition","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleShowFirstLabel":"ngAcceptInputType_titleShowFirstLabel","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_titleVerticalAlignment":"ngAcceptInputType_titleVerticalAlignment","ngAcceptInputType_titleVisibility":"ngAcceptInputType_titleVisibility","ngAcceptInputType_useClusteringMode":"ngAcceptInputType_useClusteringMode","ngAcceptInputType_useEnhancedIntervalManagement":"ngAcceptInputType_useEnhancedIntervalManagement","ngAcceptInputType_usePerLabelHeightMeasurement":"ngAcceptInputType_usePerLabelHeightMeasurement","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","breaks":"breaks","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","intervals":"intervals","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormats":"labelFormats","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgxTransitionOutCompletedEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTransitionOutCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTreemapComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTreemapComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualStyleMappings":"actualStyleMappings","container":"container","contentStyleMappings":"contentStyleMappings","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualInteractionPixelScalingRatio":"ngAcceptInputType_actualInteractionPixelScalingRatio","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_animating":"ngAcceptInputType_animating","ngAcceptInputType_fillBrushes":"ngAcceptInputType_fillBrushes","ngAcceptInputType_fillScaleLogarithmBase":"ngAcceptInputType_fillScaleLogarithmBase","ngAcceptInputType_fillScaleMaximumValue":"ngAcceptInputType_fillScaleMaximumValue","ngAcceptInputType_fillScaleMinimumValue":"ngAcceptInputType_fillScaleMinimumValue","ngAcceptInputType_fillScaleMode":"ngAcceptInputType_fillScaleMode","ngAcceptInputType_headerDisplayMode":"ngAcceptInputType_headerDisplayMode","ngAcceptInputType_headerHeight":"ngAcceptInputType_headerHeight","ngAcceptInputType_headerLabelBottomMargin":"ngAcceptInputType_headerLabelBottomMargin","ngAcceptInputType_headerLabelLeftMargin":"ngAcceptInputType_headerLabelLeftMargin","ngAcceptInputType_headerLabelRightMargin":"ngAcceptInputType_headerLabelRightMargin","ngAcceptInputType_headerLabelTopMargin":"ngAcceptInputType_headerLabelTopMargin","ngAcceptInputType_highlightedValueOpacity":"ngAcceptInputType_highlightedValueOpacity","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_interactionPixelScalingRatio":"ngAcceptInputType_interactionPixelScalingRatio","ngAcceptInputType_isFillScaleLogarithmic":"ngAcceptInputType_isFillScaleLogarithmic","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelHorizontalFitMode":"ngAcceptInputType_labelHorizontalFitMode","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_labelVerticalFitMode":"ngAcceptInputType_labelVerticalFitMode","ngAcceptInputType_layoutOrientation":"ngAcceptInputType_layoutOrientation","ngAcceptInputType_layoutType":"ngAcceptInputType_layoutType","ngAcceptInputType_minimumDisplaySize":"ngAcceptInputType_minimumDisplaySize","ngAcceptInputType_nodeOpacity":"ngAcceptInputType_nodeOpacity","ngAcceptInputType_overlayHeaderLabelBottomMargin":"ngAcceptInputType_overlayHeaderLabelBottomMargin","ngAcceptInputType_overlayHeaderLabelLeftMargin":"ngAcceptInputType_overlayHeaderLabelLeftMargin","ngAcceptInputType_overlayHeaderLabelRightMargin":"ngAcceptInputType_overlayHeaderLabelRightMargin","ngAcceptInputType_overlayHeaderLabelTopMargin":"ngAcceptInputType_overlayHeaderLabelTopMargin","ngAcceptInputType_parentNodeBottomMargin":"ngAcceptInputType_parentNodeBottomMargin","ngAcceptInputType_parentNodeBottomPadding":"ngAcceptInputType_parentNodeBottomPadding","ngAcceptInputType_parentNodeLeftMargin":"ngAcceptInputType_parentNodeLeftMargin","ngAcceptInputType_parentNodeLeftPadding":"ngAcceptInputType_parentNodeLeftPadding","ngAcceptInputType_parentNodeRightMargin":"ngAcceptInputType_parentNodeRightMargin","ngAcceptInputType_parentNodeRightPadding":"ngAcceptInputType_parentNodeRightPadding","ngAcceptInputType_parentNodeTopMargin":"ngAcceptInputType_parentNodeTopMargin","ngAcceptInputType_parentNodeTopPadding":"ngAcceptInputType_parentNodeTopPadding","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualHighlightingMode":"actualHighlightingMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","animating":"animating","breadcrumbSequence":"breadcrumbSequence","customValueMemberPath":"customValueMemberPath","darkTextColor":"darkTextColor","dataSource":"dataSource","fillBrushes":"fillBrushes","fillScaleLogarithmBase":"fillScaleLogarithmBase","fillScaleMaximumValue":"fillScaleMaximumValue","fillScaleMinimumValue":"fillScaleMinimumValue","fillScaleMode":"fillScaleMode","focusItem":"focusItem","headerBackground":"headerBackground","headerDarkTextColor":"headerDarkTextColor","headerDisplayMode":"headerDisplayMode","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverDarkTextColor":"headerHoverDarkTextColor","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","headerTextStyle":"headerTextStyle","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValueOpacity":"highlightedValueOpacity","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","i":"i","idMemberPath":"idMemberPath","interactionPixelScalingRatio":"interactionPixelScalingRatio","isFillScaleLogarithmic":"isFillScaleLogarithmic","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelHorizontalFitMode":"labelHorizontalFitMode","labelLeftMargin":"labelLeftMargin","labelMemberPath":"labelMemberPath","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVerticalFitMode":"labelVerticalFitMode","layoutOrientation":"layoutOrientation","layoutType":"layoutType","minimumDisplaySize":"minimumDisplaySize","nodeOpacity":"nodeOpacity","nodePointerEnter":"nodePointerEnter","nodePointerLeave":"nodePointerLeave","nodePointerOver":"nodePointerOver","nodePointerPressed":"nodePointerPressed","nodePointerReleased":"nodePointerReleased","nodeRenderStyling":"nodeRenderStyling","nodeStyling":"nodeStyling","outline":"outline","overlayHeaderBackground":"overlayHeaderBackground","overlayHeaderHoverBackground":"overlayHeaderHoverBackground","overlayHeaderLabelBottomMargin":"overlayHeaderLabelBottomMargin","overlayHeaderLabelLeftMargin":"overlayHeaderLabelLeftMargin","overlayHeaderLabelRightMargin":"overlayHeaderLabelRightMargin","overlayHeaderLabelTopMargin":"overlayHeaderLabelTopMargin","parentIdMemberPath":"parentIdMemberPath","parentNodeBottomMargin":"parentNodeBottomMargin","parentNodeBottomPadding":"parentNodeBottomPadding","parentNodeLeftMargin":"parentNodeLeftMargin","parentNodeLeftPadding":"parentNodeLeftPadding","parentNodeRightMargin":"parentNodeRightMargin","parentNodeRightPadding":"parentNodeRightPadding","parentNodeTopMargin":"parentNodeTopMargin","parentNodeTopPadding":"parentNodeTopPadding","pixelScalingRatio":"pixelScalingRatio","rootTitle":"rootTitle","strokeThickness":"strokeThickness","styleMappings":"styleMappings","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","valueMemberPath":"valueMemberPath","width":"width","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","markDirty":"markDirty","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","notifySizeChanged":"notifySizeChanged","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","simulateHover":"simulateHover","updateStyle":"updateStyle"}}],"IgxTreemapNodePointerEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTreemapNodePointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isHandled":"ngAcceptInputType_isHandled","ngAcceptInputType_isOverHeader":"ngAcceptInputType_isOverHeader","ngAcceptInputType_isRightButton":"ngAcceptInputType_isRightButton","ngAcceptInputType_parentSum":"ngAcceptInputType_parentSum","ngAcceptInputType_parentValue":"ngAcceptInputType_parentValue","ngAcceptInputType_position":"ngAcceptInputType_position","ngAcceptInputType_sum":"ngAcceptInputType_sum","ngAcceptInputType_value":"ngAcceptInputType_value","customValue":"customValue","isHandled":"isHandled","isOverHeader":"isOverHeader","isRightButton":"isRightButton","item":"item","label":"label","parentItem":"parentItem","parentLabel":"parentLabel","parentSum":"parentSum","parentValue":"parentValue","position":"position","sum":"sum","value":"value"}}],"IgxTreemapNodeStyleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTreemapNodeStyleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_headerHeight":"ngAcceptInputType_headerHeight","ngAcceptInputType_headerLabelBottomMargin":"ngAcceptInputType_headerLabelBottomMargin","ngAcceptInputType_headerLabelLeftMargin":"ngAcceptInputType_headerLabelLeftMargin","ngAcceptInputType_headerLabelRightMargin":"ngAcceptInputType_headerLabelRightMargin","ngAcceptInputType_headerLabelTopMargin":"ngAcceptInputType_headerLabelTopMargin","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","textColor":"textColor","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxTreemapNodeStyleMappingCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTreemapNodeStyleMappingCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTreemapNodeStyleMappingComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTreemapNodeStyleMappingComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fadeOpacity":"ngAcceptInputType_fadeOpacity","ngAcceptInputType_headerHeight":"ngAcceptInputType_headerHeight","ngAcceptInputType_headerLabelBottomMargin":"ngAcceptInputType_headerLabelBottomMargin","ngAcceptInputType_headerLabelLeftMargin":"ngAcceptInputType_headerLabelLeftMargin","ngAcceptInputType_headerLabelRightMargin":"ngAcceptInputType_headerLabelRightMargin","ngAcceptInputType_headerLabelTopMargin":"ngAcceptInputType_headerLabelTopMargin","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_labelBottomMargin":"ngAcceptInputType_labelBottomMargin","ngAcceptInputType_labelHorizontalAlignment":"ngAcceptInputType_labelHorizontalAlignment","ngAcceptInputType_labelLeftMargin":"ngAcceptInputType_labelLeftMargin","ngAcceptInputType_labelRightMargin":"ngAcceptInputType_labelRightMargin","ngAcceptInputType_labelTopMargin":"ngAcceptInputType_labelTopMargin","ngAcceptInputType_labelVerticalAlignment":"ngAcceptInputType_labelVerticalAlignment","ngAcceptInputType_mappingMode":"ngAcceptInputType_mappingMode","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ngAcceptInputType_targetType":"ngAcceptInputType_targetType","ɵcmp":"ɵcmp","ɵfac":"ɵfac","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","mappingMode":"mappingMode","maximumValue":"maximumValue","minimumValue":"minimumValue","name":"name","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","targetType":"targetType","textColor":"textColor","value":"value","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxTreemapNodeStylingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTreemapNodeStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_highlightingHandled":"ngAcceptInputType_highlightingHandled","ngAcceptInputType_isHighlightInProgress":"ngAcceptInputType_isHighlightInProgress","ngAcceptInputType_isParent":"ngAcceptInputType_isParent","ngAcceptInputType_parentSum":"ngAcceptInputType_parentSum","ngAcceptInputType_parentValue":"ngAcceptInputType_parentValue","ngAcceptInputType_sum":"ngAcceptInputType_sum","ngAcceptInputType_totalHighlightProgress":"ngAcceptInputType_totalHighlightProgress","ngAcceptInputType_value":"ngAcceptInputType_value","customValue":"customValue","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isHighlightInProgress":"isHighlightInProgress","isParent":"isParent","item":"item","label":"label","parentItem":"parentItem","parentLabel":"parentLabel","parentSum":"parentSum","parentValue":"parentValue","style":"style","sum":"sum","totalHighlightProgress":"totalHighlightProgress","value":"value"}}],"IgxTrendLineLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTrendLineLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualTargetSeries":"actualTargetSeries","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLinePeriod":"trendLinePeriod","trendLineType":"trendLineType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getManagerIdentifier":"getManagerIdentifier","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxTrendLineTypeCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTrendLineTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTRIXIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTRIXIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxTypicalPriceIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxTypicalPriceIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxUltimateOscillatorIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUltimateOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxUserAnnotationCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxUserAnnotationInformation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAnnotationInformation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dialogSuggestedXLocation":"ngAcceptInputType_dialogSuggestedXLocation","ngAcceptInputType_dialogSuggestedYLocation":"ngAcceptInputType_dialogSuggestedYLocation","annotationData":"annotationData","annotationId":"annotationId","badgeColor":"badgeColor","badgeImageUri":"badgeImageUri","dialogSuggestedXLocation":"dialogSuggestedXLocation","dialogSuggestedYLocation":"dialogSuggestedYLocation","label":"label","mainColor":"mainColor","findByName":"findByName"}}],"IgxUserAnnotationInformationEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAnnotationInformationEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotationInfo":"annotationInfo"}}],"IgxUserAnnotationLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAnnotationLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_annotations":"ngAcceptInputType_annotations","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","annotations":"annotations","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingPointAnnotation":"stylingPointAnnotation","stylingSliceAnnotation":"stylingSliceAnnotation","stylingStripAnnotation":"stylingStripAnnotation","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","userAnnotationInformationRequested":"userAnnotationInformationRequested","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","cancelAnnotationFlow":"cancelAnnotationFlow","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","loadAnnotationsFromJson":"loadAnnotationsFromJson","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","saveAnnotationsToJson":"saveAnnotationsToJson","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxUserAnnotationToolTipContentUpdatingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAnnotationToolTipContentUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotationInfo":"annotationInfo","content":"content"}}],"IgxUserAnnotationToolTipLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAnnotationToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_skipUnknownValues":"ngAcceptInputType_skipUnknownValues","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","contentUpdating":"contentUpdating","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxUserAxisAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAxisAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_isVisible":"ngAcceptInputType_isVisible","ngAcceptInputType_labelBorderRadius":"ngAcceptInputType_labelBorderRadius","ngAcceptInputType_labelBorderThickness":"ngAcceptInputType_labelBorderThickness","ngAcceptInputType_labelPadding":"ngAcceptInputType_labelPadding","ngAcceptInputType_value":"ngAcceptInputType_value","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","value":"value","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxUserAxisAnnotationStylingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserAxisAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgxUserBaseAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserBaseAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_isVisible":"ngAcceptInputType_isVisible","ngAcceptInputType_labelBorderRadius":"ngAcceptInputType_labelBorderRadius","ngAcceptInputType_labelBorderThickness":"ngAcceptInputType_labelBorderThickness","ngAcceptInputType_labelPadding":"ngAcceptInputType_labelPadding","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxUserPointAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserPointAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_isVisible":"ngAcceptInputType_isVisible","ngAcceptInputType_labelBorderRadius":"ngAcceptInputType_labelBorderRadius","ngAcceptInputType_labelBorderThickness":"ngAcceptInputType_labelBorderThickness","ngAcceptInputType_labelPadding":"ngAcceptInputType_labelPadding","ngAcceptInputType_xValue":"ngAcceptInputType_xValue","ngAcceptInputType_yValue":"ngAcceptInputType_yValue","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","targetSeries":"targetSeries","targetSeriesMatcher":"targetSeriesMatcher","xValue":"xValue","yValue":"yValue","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxUserPointAnnotationStylingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserPointAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgxUserShapeAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserShapeAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_isVisible":"ngAcceptInputType_isVisible","ngAcceptInputType_labelBorderRadius":"ngAcceptInputType_labelBorderRadius","ngAcceptInputType_labelBorderThickness":"ngAcceptInputType_labelBorderThickness","ngAcceptInputType_labelPadding":"ngAcceptInputType_labelPadding","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_shapeThickness":"ngAcceptInputType_shapeThickness","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_valueDisplayMode":"ngAcceptInputType_valueDisplayMode","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxUserSliceAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserSliceAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_isVisible":"ngAcceptInputType_isVisible","ngAcceptInputType_labelBorderRadius":"ngAcceptInputType_labelBorderRadius","ngAcceptInputType_labelBorderThickness":"ngAcceptInputType_labelBorderThickness","ngAcceptInputType_labelPadding":"ngAcceptInputType_labelPadding","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_shapeThickness":"ngAcceptInputType_shapeThickness","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_valueDisplayMode":"ngAcceptInputType_valueDisplayMode","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxUserSliceAnnotationStylingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserSliceAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgxUserStripAnnotation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserStripAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_badgeCornerRadius":"ngAcceptInputType_badgeCornerRadius","ngAcceptInputType_badgeMargin":"ngAcceptInputType_badgeMargin","ngAcceptInputType_badgeSize":"ngAcceptInputType_badgeSize","ngAcceptInputType_badgeThickness":"ngAcceptInputType_badgeThickness","ngAcceptInputType_badgeVisible":"ngAcceptInputType_badgeVisible","ngAcceptInputType_endValue":"ngAcceptInputType_endValue","ngAcceptInputType_endValueDisplayMode":"ngAcceptInputType_endValueDisplayMode","ngAcceptInputType_isPillShaped":"ngAcceptInputType_isPillShaped","ngAcceptInputType_isVisible":"ngAcceptInputType_isVisible","ngAcceptInputType_labelBorderRadius":"ngAcceptInputType_labelBorderRadius","ngAcceptInputType_labelBorderThickness":"ngAcceptInputType_labelBorderThickness","ngAcceptInputType_labelPadding":"ngAcceptInputType_labelPadding","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_shapeThickness":"ngAcceptInputType_shapeThickness","ngAcceptInputType_startValue":"ngAcceptInputType_startValue","ngAcceptInputType_startValueDisplayMode":"ngAcceptInputType_startValueDisplayMode","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_valueDisplayMode":"ngAcceptInputType_valueDisplayMode","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","endLabel":"endLabel","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelColor":"endLabelColor","endValue":"endValue","endValueDisplayMode":"endValueDisplayMode","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","startLabel":"startLabel","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelColor":"startLabelColor","startValue":"startValue","startValueDisplayMode":"startValueDisplayMode","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxUserStripAnnotationStylingEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxUserStripAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgxValueBrushScaleComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxValueBrushScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_isBrushScale":"ngAcceptInputType_isBrushScale","ngAcceptInputType_isLogarithmic":"ngAcceptInputType_isLogarithmic","ngAcceptInputType_isReady":"ngAcceptInputType_isReady","ngAcceptInputType_logarithmBase":"ngAcceptInputType_logarithmBase","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brushes":"brushes","isBrushScale":"isBrushScale","isLogarithmic":"isLogarithmic","isReady":"isReady","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated","findByName":"findByName","getBrush":"getBrush","ngOnInit":"ngOnInit","notifySeries":"notifySeries","registerSeries":"registerSeries","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal"}}],"IgxValueLayerComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxValueLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAppearanceMode":"ngAcceptInputType_actualAppearanceMode","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualDashArray":"ngAcceptInputType_actualDashArray","ngAcceptInputType_actualDashCap":"ngAcceptInputType_actualDashCap","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualHorizontalAppearanceMode":"ngAcceptInputType_actualHorizontalAppearanceMode","ngAcceptInputType_actualHorizontalDashArray":"ngAcceptInputType_actualHorizontalDashArray","ngAcceptInputType_actualHorizontalShiftAmount":"ngAcceptInputType_actualHorizontalShiftAmount","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualShiftAmount":"ngAcceptInputType_actualShiftAmount","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_actualVerticalAppearanceMode":"ngAcceptInputType_actualVerticalAppearanceMode","ngAcceptInputType_actualVerticalDashArray":"ngAcceptInputType_actualVerticalDashArray","ngAcceptInputType_actualVerticalShiftAmount":"ngAcceptInputType_actualVerticalShiftAmount","ngAcceptInputType_appearanceMode":"ngAcceptInputType_appearanceMode","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_cursorPosition":"ngAcceptInputType_cursorPosition","ngAcceptInputType_cursorPositionUpdatesOnMove":"ngAcceptInputType_cursorPositionUpdatesOnMove","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_horizontalAppearanceMode":"ngAcceptInputType_horizontalAppearanceMode","ngAcceptInputType_horizontalDashArray":"ngAcceptInputType_horizontalDashArray","ngAcceptInputType_horizontalShiftAmount":"ngAcceptInputType_horizontalShiftAmount","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isAxisAnnotationEnabled":"ngAcceptInputType_isAxisAnnotationEnabled","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultCrosshairDisabled":"ngAcceptInputType_isDefaultCrosshairDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shiftAmount":"ngAcceptInputType_shiftAmount","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldRenderAsOverlay":"ngAcceptInputType_shouldRenderAsOverlay","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_skipUnknownValues":"ngAcceptInputType_skipUnknownValues","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useIndex":"ngAcceptInputType_useIndex","ngAcceptInputType_useInterpolation":"ngAcceptInputType_useInterpolation","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useLegend":"ngAcceptInputType_useLegend","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_valueMode":"ngAcceptInputType_valueMode","ngAcceptInputType_verticalAppearanceMode":"ngAcceptInputType_verticalAppearanceMode","ngAcceptInputType_verticalDashArray":"ngAcceptInputType_verticalDashArray","ngAcceptInputType_verticalShiftAmount":"ngAcceptInputType_verticalShiftAmount","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ngAcceptInputType_xAxisAnnotationBackgroundCornerRadius":"ngAcceptInputType_xAxisAnnotationBackgroundCornerRadius","ngAcceptInputType_xAxisAnnotationInterpolatedValuePrecision":"ngAcceptInputType_xAxisAnnotationInterpolatedValuePrecision","ngAcceptInputType_xAxisAnnotationPaddingBottom":"ngAcceptInputType_xAxisAnnotationPaddingBottom","ngAcceptInputType_xAxisAnnotationPaddingLeft":"ngAcceptInputType_xAxisAnnotationPaddingLeft","ngAcceptInputType_xAxisAnnotationPaddingRight":"ngAcceptInputType_xAxisAnnotationPaddingRight","ngAcceptInputType_xAxisAnnotationPaddingTop":"ngAcceptInputType_xAxisAnnotationPaddingTop","ngAcceptInputType_xAxisAnnotationStrokeThickness":"ngAcceptInputType_xAxisAnnotationStrokeThickness","ngAcceptInputType_yAxisAnnotationBackgroundCornerRadius":"ngAcceptInputType_yAxisAnnotationBackgroundCornerRadius","ngAcceptInputType_yAxisAnnotationInterpolatedValuePrecision":"ngAcceptInputType_yAxisAnnotationInterpolatedValuePrecision","ngAcceptInputType_yAxisAnnotationPaddingBottom":"ngAcceptInputType_yAxisAnnotationPaddingBottom","ngAcceptInputType_yAxisAnnotationPaddingLeft":"ngAcceptInputType_yAxisAnnotationPaddingLeft","ngAcceptInputType_yAxisAnnotationPaddingRight":"ngAcceptInputType_yAxisAnnotationPaddingRight","ngAcceptInputType_yAxisAnnotationPaddingTop":"ngAcceptInputType_yAxisAnnotationPaddingTop","ngAcceptInputType_yAxisAnnotationStrokeThickness":"ngAcceptInputType_yAxisAnnotationStrokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualValueLayerBrush":"actualValueLayerBrush","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","stylingOverlayText":"stylingOverlayText","targetAxis":"targetAxis","targetSeries":"targetSeries","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueMode":"valueMode","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationFormatLabel":"xAxisAnnotationFormatLabel","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationFormatLabel":"yAxisAnnotationFormatLabel","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxValueModeCollection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxValueModeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxValueOverlayComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxValueOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_axisAnnotationBackgroundCornerRadius":"ngAcceptInputType_axisAnnotationBackgroundCornerRadius","ngAcceptInputType_axisAnnotationInterpolatedValuePrecision":"ngAcceptInputType_axisAnnotationInterpolatedValuePrecision","ngAcceptInputType_axisAnnotationPaddingBottom":"ngAcceptInputType_axisAnnotationPaddingBottom","ngAcceptInputType_axisAnnotationPaddingLeft":"ngAcceptInputType_axisAnnotationPaddingLeft","ngAcceptInputType_axisAnnotationPaddingRight":"ngAcceptInputType_axisAnnotationPaddingRight","ngAcceptInputType_axisAnnotationPaddingTop":"ngAcceptInputType_axisAnnotationPaddingTop","ngAcceptInputType_axisAnnotationStrokeThickness":"ngAcceptInputType_axisAnnotationStrokeThickness","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isAxisAnnotationEnabled":"ngAcceptInputType_isAxisAnnotationEnabled","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_overlayTextAngle":"ngAcceptInputType_overlayTextAngle","ngAcceptInputType_overlayTextBackgroundMatchLayer":"ngAcceptInputType_overlayTextBackgroundMatchLayer","ngAcceptInputType_overlayTextBackgroundMode":"ngAcceptInputType_overlayTextBackgroundMode","ngAcceptInputType_overlayTextBackgroundShift":"ngAcceptInputType_overlayTextBackgroundShift","ngAcceptInputType_overlayTextBorderMatchLayer":"ngAcceptInputType_overlayTextBorderMatchLayer","ngAcceptInputType_overlayTextBorderMode":"ngAcceptInputType_overlayTextBorderMode","ngAcceptInputType_overlayTextBorderRadius":"ngAcceptInputType_overlayTextBorderRadius","ngAcceptInputType_overlayTextBorderShift":"ngAcceptInputType_overlayTextBorderShift","ngAcceptInputType_overlayTextBorderThickness":"ngAcceptInputType_overlayTextBorderThickness","ngAcceptInputType_overlayTextColorMatchLayer":"ngAcceptInputType_overlayTextColorMatchLayer","ngAcceptInputType_overlayTextColorMode":"ngAcceptInputType_overlayTextColorMode","ngAcceptInputType_overlayTextColorShift":"ngAcceptInputType_overlayTextColorShift","ngAcceptInputType_overlayTextHorizontalMargin":"ngAcceptInputType_overlayTextHorizontalMargin","ngAcceptInputType_overlayTextHorizontalPadding":"ngAcceptInputType_overlayTextHorizontalPadding","ngAcceptInputType_overlayTextLocation":"ngAcceptInputType_overlayTextLocation","ngAcceptInputType_overlayTextVerticalMargin":"ngAcceptInputType_overlayTextVerticalMargin","ngAcceptInputType_overlayTextVerticalPadding":"ngAcceptInputType_overlayTextVerticalPadding","ngAcceptInputType_overlayTextVisible":"ngAcceptInputType_overlayTextVisible","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axis":"axis","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationFormatLabel":"axisAnnotationFormatLabel","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","dateValue":"dateValue","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","labelResolved":"labelResolved","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingOverlayText":"stylingOverlayText","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","value":"value","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getLabel":"getLabel","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxVerticalAnchoredCategorySeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxVerticalAnchoredCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxVerticalStackedSeriesBaseComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxVerticalStackedSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","fragments":"fragments","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_autoGenerateSeries":"ngAcceptInputType_autoGenerateSeries","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPercentBased":"ngAcceptInputType_isPercentBased","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_reverseLegendOrder":"ngAcceptInputType_reverseLegendOrder","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxWaterfallSeriesComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxWaterfallSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualMarkerType":"ngAcceptInputType_actualMarkerType","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_categoryCollisionMode":"ngAcceptInputType_categoryCollisionMode","ngAcceptInputType_consolidatedItemHitTestBehavior":"ngAcceptInputType_consolidatedItemHitTestBehavior","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_effectiveIsMarkerCircular":"ngAcceptInputType_effectiveIsMarkerCircular","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryMarkerStyleAllowed":"ngAcceptInputType_isCustomCategoryMarkerStyleAllowed","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isCustomMarkerCircular":"ngAcceptInputType_isCustomMarkerCircular","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_radiusX":"ngAcceptInputType_radiusX","ngAcceptInputType_radiusY":"ngAcceptInputType_radiusY","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useHighMarkerFidelity":"ngAcceptInputType_useHighMarkerFidelity","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxWeightedCloseIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxWeightedCloseIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxWilliamsPercentRIndicatorComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxWilliamsPercentRIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualAreaFillOpacity":"ngAcceptInputType_actualAreaFillOpacity","ngAcceptInputType_actualFocusMode":"ngAcceptInputType_actualFocusMode","ngAcceptInputType_actualHighlightedValuesFadeOpacity":"ngAcceptInputType_actualHighlightedValuesFadeOpacity","ngAcceptInputType_actualHighlightingFadeOpacity":"ngAcceptInputType_actualHighlightingFadeOpacity","ngAcceptInputType_actualHighlightingMode":"ngAcceptInputType_actualHighlightingMode","ngAcceptInputType_actualHitTestMode":"ngAcceptInputType_actualHitTestMode","ngAcceptInputType_actualLayers":"ngAcceptInputType_actualLayers","ngAcceptInputType_actualMarkerFillOpacity":"ngAcceptInputType_actualMarkerFillOpacity","ngAcceptInputType_actualResolution":"ngAcceptInputType_actualResolution","ngAcceptInputType_actualSelectionMode":"ngAcceptInputType_actualSelectionMode","ngAcceptInputType_actualThickness":"ngAcceptInputType_actualThickness","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_attachTooltipToRoot":"ngAcceptInputType_attachTooltipToRoot","ngAcceptInputType_autoCalloutLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutLabelFormatSpecifiers","ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers":"ngAcceptInputType_autoCalloutValueLabelFormatSpecifiers","ngAcceptInputType_dashArray":"ngAcceptInputType_dashArray","ngAcceptInputType_defaultDisplayType":"ngAcceptInputType_defaultDisplayType","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_expectFunctions":"ngAcceptInputType_expectFunctions","ngAcceptInputType_finalValue":"ngAcceptInputType_finalValue","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_hasValueAxis":"ngAcceptInputType_hasValueAxis","ngAcceptInputType_hasVisibleMarkers":"ngAcceptInputType_hasVisibleMarkers","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightedValuesExtraPropertyOverlays":"ngAcceptInputType_highlightedValuesExtraPropertyOverlays","ngAcceptInputType_highlightedValuesFadeOpacity":"ngAcceptInputType_highlightedValuesFadeOpacity","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_hitTestMode":"ngAcceptInputType_hitTestMode","ngAcceptInputType_ignoreFirst":"ngAcceptInputType_ignoreFirst","ngAcceptInputType_index":"ngAcceptInputType_index","ngAcceptInputType_isActualLegendFinancial":"ngAcceptInputType_isActualLegendFinancial","ngAcceptInputType_isAnnotationCalloutLayer":"ngAcceptInputType_isAnnotationCalloutLayer","ngAcceptInputType_isAnnotationCrosshairLayer":"ngAcceptInputType_isAnnotationCrosshairLayer","ngAcceptInputType_isAnnotationDataLayer":"ngAcceptInputType_isAnnotationDataLayer","ngAcceptInputType_isAnnotationFinalValue":"ngAcceptInputType_isAnnotationFinalValue","ngAcceptInputType_isAnnotationHoverLayer":"ngAcceptInputType_isAnnotationHoverLayer","ngAcceptInputType_isAnnotationLayer":"ngAcceptInputType_isAnnotationLayer","ngAcceptInputType_isAnnotationValueLayer":"ngAcceptInputType_isAnnotationValueLayer","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isAreaOrLine":"ngAcceptInputType_isAreaOrLine","ngAcceptInputType_isBar":"ngAcceptInputType_isBar","ngAcceptInputType_isCategory":"ngAcceptInputType_isCategory","ngAcceptInputType_isColoredItemwise":"ngAcceptInputType_isColoredItemwise","ngAcceptInputType_isColumn":"ngAcceptInputType_isColumn","ngAcceptInputType_isComponentHighlightingModeIgnored":"ngAcceptInputType_isComponentHighlightingModeIgnored","ngAcceptInputType_isCustomCategoryStyleAllowed":"ngAcceptInputType_isCustomCategoryStyleAllowed","ngAcceptInputType_isDefaultCrosshairBehaviorDisabled":"ngAcceptInputType_isDefaultCrosshairBehaviorDisabled","ngAcceptInputType_isDefaultTooltipBehaviorDisabled":"ngAcceptInputType_isDefaultTooltipBehaviorDisabled","ngAcceptInputType_isDefaultToolTipSelected":"ngAcceptInputType_isDefaultToolTipSelected","ngAcceptInputType_isDropShadowEnabled":"ngAcceptInputType_isDropShadowEnabled","ngAcceptInputType_isFinancial":"ngAcceptInputType_isFinancial","ngAcceptInputType_isFinancialIndicator":"ngAcceptInputType_isFinancialIndicator","ngAcceptInputType_isFinancialOverlay":"ngAcceptInputType_isFinancialOverlay","ngAcceptInputType_isFinancialSeries":"ngAcceptInputType_isFinancialSeries","ngAcceptInputType_isFinancialWaterfall":"ngAcceptInputType_isFinancialWaterfall","ngAcceptInputType_isFragment":"ngAcceptInputType_isFragment","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isHighlightingEnabled":"ngAcceptInputType_isHighlightingEnabled","ngAcceptInputType_isHighlightOverlay":"ngAcceptInputType_isHighlightOverlay","ngAcceptInputType_isIndexed":"ngAcceptInputType_isIndexed","ngAcceptInputType_isLayer":"ngAcceptInputType_isLayer","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_isLineOnly":"ngAcceptInputType_isLineOnly","ngAcceptInputType_isMarkerlessDisplayPreferred":"ngAcceptInputType_isMarkerlessDisplayPreferred","ngAcceptInputType_isNegativeColorSupported":"ngAcceptInputType_isNegativeColorSupported","ngAcceptInputType_isPie":"ngAcceptInputType_isPie","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_isPolar":"ngAcceptInputType_isPolar","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_isRadial":"ngAcceptInputType_isRadial","ngAcceptInputType_isRange":"ngAcceptInputType_isRange","ngAcceptInputType_isScatter":"ngAcceptInputType_isScatter","ngAcceptInputType_isShape":"ngAcceptInputType_isShape","ngAcceptInputType_isShapeControl":"ngAcceptInputType_isShapeControl","ngAcceptInputType_isSpline":"ngAcceptInputType_isSpline","ngAcceptInputType_isStacked":"ngAcceptInputType_isStacked","ngAcceptInputType_isStep":"ngAcceptInputType_isStep","ngAcceptInputType_isSummarizationSupported":"ngAcceptInputType_isSummarizationSupported","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_isToolTipLayer":"ngAcceptInputType_isToolTipLayer","ngAcceptInputType_isTransitionInEnabled":"ngAcceptInputType_isTransitionInEnabled","ngAcceptInputType_isUsableInLegend":"ngAcceptInputType_isUsableInLegend","ngAcceptInputType_isUserAnnotationLayer":"ngAcceptInputType_isUserAnnotationLayer","ngAcceptInputType_isUserAnnotationToolTipLayer":"ngAcceptInputType_isUserAnnotationToolTipLayer","ngAcceptInputType_isValueAxisInverted":"ngAcceptInputType_isValueAxisInverted","ngAcceptInputType_isValueOverlay":"ngAcceptInputType_isValueOverlay","ngAcceptInputType_isVertical":"ngAcceptInputType_isVertical","ngAcceptInputType_isWaterfall":"ngAcceptInputType_isWaterfall","ngAcceptInputType_layers":"ngAcceptInputType_layers","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_lineCap":"ngAcceptInputType_lineCap","ngAcceptInputType_lineJoin":"ngAcceptInputType_lineJoin","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_percentChange":"ngAcceptInputType_percentChange","ngAcceptInputType_period":"ngAcceptInputType_period","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_selectionThickness":"ngAcceptInputType_selectionThickness","ngAcceptInputType_shadowBlur":"ngAcceptInputType_shadowBlur","ngAcceptInputType_shadowOffsetX":"ngAcceptInputType_shadowOffsetX","ngAcceptInputType_shadowOffsetY":"ngAcceptInputType_shadowOffsetY","ngAcceptInputType_shouldAnimateOnDataSourceSwap":"ngAcceptInputType_shouldAnimateOnDataSourceSwap","ngAcceptInputType_shouldHideAutoCallouts":"ngAcceptInputType_shouldHideAutoCallouts","ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden":"ngAcceptInputType_shouldRemoveHighlightedDataOnLayerHidden","ngAcceptInputType_shouldShiftOpacityForSafeActualBrush":"ngAcceptInputType_shouldShiftOpacityForSafeActualBrush","ngAcceptInputType_showDefaultTooltip":"ngAcceptInputType_showDefaultTooltip","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionInDuration":"ngAcceptInputType_transitionInDuration","ngAcceptInputType_transitionInMode":"ngAcceptInputType_transitionInMode","ngAcceptInputType_transitionInSpeedType":"ngAcceptInputType_transitionInSpeedType","ngAcceptInputType_transitionOutDuration":"ngAcceptInputType_transitionOutDuration","ngAcceptInputType_transitionOutSpeedType":"ngAcceptInputType_transitionOutSpeedType","ngAcceptInputType_trendLineDashArray":"ngAcceptInputType_trendLineDashArray","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_useItemWiseColors":"ngAcceptInputType_useItemWiseColors","ngAcceptInputType_useSingleShadow":"ngAcceptInputType_useSingleShadow","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_visibleRangeMarginBottom":"ngAcceptInputType_visibleRangeMarginBottom","ngAcceptInputType_visibleRangeMarginLeft":"ngAcceptInputType_visibleRangeMarginLeft","ngAcceptInputType_visibleRangeMarginRight":"ngAcceptInputType_visibleRangeMarginRight","ngAcceptInputType_visibleRangeMarginTop":"ngAcceptInputType_visibleRangeMarginTop","ngAcceptInputType_visibleRangeMode":"ngAcceptInputType_visibleRangeMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","yAxis":"yAxis","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","ngOnInit":"ngOnInit","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgxXYChartComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxXYChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_alignsGridLinesToPixels":"ngAcceptInputType_alignsGridLinesToPixels","ngAcceptInputType_animateSeriesWhenAxisRangeChanges":"ngAcceptInputType_animateSeriesWhenAxisRangeChanges","ngAcceptInputType_areaFillOpacity":"ngAcceptInputType_areaFillOpacity","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_bottomMargin":"ngAcceptInputType_bottomMargin","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_calloutCollisionMode":"ngAcceptInputType_calloutCollisionMode","ngAcceptInputType_calloutsAllowedPositions":"ngAcceptInputType_calloutsAllowedPositions","ngAcceptInputType_calloutsAutoLabelPrecision":"ngAcceptInputType_calloutsAutoLabelPrecision","ngAcceptInputType_calloutsStrokeThickness":"ngAcceptInputType_calloutsStrokeThickness","ngAcceptInputType_calloutStyleUpdatingEventEnabled":"ngAcceptInputType_calloutStyleUpdatingEventEnabled","ngAcceptInputType_calloutsUseAutoContrastingLabelColors":"ngAcceptInputType_calloutsUseAutoContrastingLabelColors","ngAcceptInputType_calloutsUseItemColorForFill":"ngAcceptInputType_calloutsUseItemColorForFill","ngAcceptInputType_calloutsUseItemColorForOutline":"ngAcceptInputType_calloutsUseItemColorForOutline","ngAcceptInputType_calloutsVisible":"ngAcceptInputType_calloutsVisible","ngAcceptInputType_computedPlotAreaMarginMode":"ngAcceptInputType_computedPlotAreaMarginMode","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsAnnotationXAxisPrecision":"ngAcceptInputType_crosshairsAnnotationXAxisPrecision","ngAcceptInputType_crosshairsAnnotationYAxisPrecision":"ngAcceptInputType_crosshairsAnnotationYAxisPrecision","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_crosshairsLineThickness":"ngAcceptInputType_crosshairsLineThickness","ngAcceptInputType_crosshairsSkipInvalidData":"ngAcceptInputType_crosshairsSkipInvalidData","ngAcceptInputType_crosshairsSkipZeroValueFragments":"ngAcceptInputType_crosshairsSkipZeroValueFragments","ngAcceptInputType_crosshairsSnapToData":"ngAcceptInputType_crosshairsSnapToData","ngAcceptInputType_dataToolTipBadgeMarginBottom":"ngAcceptInputType_dataToolTipBadgeMarginBottom","ngAcceptInputType_dataToolTipBadgeMarginLeft":"ngAcceptInputType_dataToolTipBadgeMarginLeft","ngAcceptInputType_dataToolTipBadgeMarginRight":"ngAcceptInputType_dataToolTipBadgeMarginRight","ngAcceptInputType_dataToolTipBadgeMarginTop":"ngAcceptInputType_dataToolTipBadgeMarginTop","ngAcceptInputType_dataToolTipBadgeShape":"ngAcceptInputType_dataToolTipBadgeShape","ngAcceptInputType_dataToolTipDefaultPositionOffsetX":"ngAcceptInputType_dataToolTipDefaultPositionOffsetX","ngAcceptInputType_dataToolTipDefaultPositionOffsetY":"ngAcceptInputType_dataToolTipDefaultPositionOffsetY","ngAcceptInputType_dataToolTipExcludedColumns":"ngAcceptInputType_dataToolTipExcludedColumns","ngAcceptInputType_dataToolTipExcludedSeries":"ngAcceptInputType_dataToolTipExcludedSeries","ngAcceptInputType_dataToolTipGroupedPositionModeX":"ngAcceptInputType_dataToolTipGroupedPositionModeX","ngAcceptInputType_dataToolTipGroupedPositionModeY":"ngAcceptInputType_dataToolTipGroupedPositionModeY","ngAcceptInputType_dataToolTipGroupingMode":"ngAcceptInputType_dataToolTipGroupingMode","ngAcceptInputType_dataToolTipGroupRowMarginBottom":"ngAcceptInputType_dataToolTipGroupRowMarginBottom","ngAcceptInputType_dataToolTipGroupRowMarginLeft":"ngAcceptInputType_dataToolTipGroupRowMarginLeft","ngAcceptInputType_dataToolTipGroupRowMarginRight":"ngAcceptInputType_dataToolTipGroupRowMarginRight","ngAcceptInputType_dataToolTipGroupRowMarginTop":"ngAcceptInputType_dataToolTipGroupRowMarginTop","ngAcceptInputType_dataToolTipGroupRowVisible":"ngAcceptInputType_dataToolTipGroupRowVisible","ngAcceptInputType_dataToolTipGroupTextMarginBottom":"ngAcceptInputType_dataToolTipGroupTextMarginBottom","ngAcceptInputType_dataToolTipGroupTextMarginLeft":"ngAcceptInputType_dataToolTipGroupTextMarginLeft","ngAcceptInputType_dataToolTipGroupTextMarginRight":"ngAcceptInputType_dataToolTipGroupTextMarginRight","ngAcceptInputType_dataToolTipGroupTextMarginTop":"ngAcceptInputType_dataToolTipGroupTextMarginTop","ngAcceptInputType_dataToolTipHeaderFormatDate":"ngAcceptInputType_dataToolTipHeaderFormatDate","ngAcceptInputType_dataToolTipHeaderFormatSpecifiers":"ngAcceptInputType_dataToolTipHeaderFormatSpecifiers","ngAcceptInputType_dataToolTipHeaderFormatTime":"ngAcceptInputType_dataToolTipHeaderFormatTime","ngAcceptInputType_dataToolTipHeaderRowMarginBottom":"ngAcceptInputType_dataToolTipHeaderRowMarginBottom","ngAcceptInputType_dataToolTipHeaderRowMarginLeft":"ngAcceptInputType_dataToolTipHeaderRowMarginLeft","ngAcceptInputType_dataToolTipHeaderRowMarginRight":"ngAcceptInputType_dataToolTipHeaderRowMarginRight","ngAcceptInputType_dataToolTipHeaderRowMarginTop":"ngAcceptInputType_dataToolTipHeaderRowMarginTop","ngAcceptInputType_dataToolTipHeaderRowVisible":"ngAcceptInputType_dataToolTipHeaderRowVisible","ngAcceptInputType_dataToolTipHeaderTextMarginBottom":"ngAcceptInputType_dataToolTipHeaderTextMarginBottom","ngAcceptInputType_dataToolTipHeaderTextMarginLeft":"ngAcceptInputType_dataToolTipHeaderTextMarginLeft","ngAcceptInputType_dataToolTipHeaderTextMarginRight":"ngAcceptInputType_dataToolTipHeaderTextMarginRight","ngAcceptInputType_dataToolTipHeaderTextMarginTop":"ngAcceptInputType_dataToolTipHeaderTextMarginTop","ngAcceptInputType_dataToolTipIncludedColumns":"ngAcceptInputType_dataToolTipIncludedColumns","ngAcceptInputType_dataToolTipIncludedSeries":"ngAcceptInputType_dataToolTipIncludedSeries","ngAcceptInputType_dataToolTipLabelDisplayMode":"ngAcceptInputType_dataToolTipLabelDisplayMode","ngAcceptInputType_dataToolTipLabelTextMarginBottom":"ngAcceptInputType_dataToolTipLabelTextMarginBottom","ngAcceptInputType_dataToolTipLabelTextMarginLeft":"ngAcceptInputType_dataToolTipLabelTextMarginLeft","ngAcceptInputType_dataToolTipLabelTextMarginRight":"ngAcceptInputType_dataToolTipLabelTextMarginRight","ngAcceptInputType_dataToolTipLabelTextMarginTop":"ngAcceptInputType_dataToolTipLabelTextMarginTop","ngAcceptInputType_dataToolTipPositionOffsetX":"ngAcceptInputType_dataToolTipPositionOffsetX","ngAcceptInputType_dataToolTipPositionOffsetY":"ngAcceptInputType_dataToolTipPositionOffsetY","ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges":"ngAcceptInputType_dataToolTipShouldUpdateWhenSeriesDataChanges","ngAcceptInputType_dataToolTipSummaryRowMarginBottom":"ngAcceptInputType_dataToolTipSummaryRowMarginBottom","ngAcceptInputType_dataToolTipSummaryRowMarginLeft":"ngAcceptInputType_dataToolTipSummaryRowMarginLeft","ngAcceptInputType_dataToolTipSummaryRowMarginRight":"ngAcceptInputType_dataToolTipSummaryRowMarginRight","ngAcceptInputType_dataToolTipSummaryRowMarginTop":"ngAcceptInputType_dataToolTipSummaryRowMarginTop","ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginBottom","ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginLeft","ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginRight","ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop":"ngAcceptInputType_dataToolTipSummaryTitleTextMarginTop","ngAcceptInputType_dataToolTipSummaryType":"ngAcceptInputType_dataToolTipSummaryType","ngAcceptInputType_dataToolTipTitleTextMarginBottom":"ngAcceptInputType_dataToolTipTitleTextMarginBottom","ngAcceptInputType_dataToolTipTitleTextMarginLeft":"ngAcceptInputType_dataToolTipTitleTextMarginLeft","ngAcceptInputType_dataToolTipTitleTextMarginRight":"ngAcceptInputType_dataToolTipTitleTextMarginRight","ngAcceptInputType_dataToolTipTitleTextMarginTop":"ngAcceptInputType_dataToolTipTitleTextMarginTop","ngAcceptInputType_dataToolTipUnitsDisplayMode":"ngAcceptInputType_dataToolTipUnitsDisplayMode","ngAcceptInputType_dataToolTipUnitsTextMarginBottom":"ngAcceptInputType_dataToolTipUnitsTextMarginBottom","ngAcceptInputType_dataToolTipUnitsTextMarginLeft":"ngAcceptInputType_dataToolTipUnitsTextMarginLeft","ngAcceptInputType_dataToolTipUnitsTextMarginRight":"ngAcceptInputType_dataToolTipUnitsTextMarginRight","ngAcceptInputType_dataToolTipUnitsTextMarginTop":"ngAcceptInputType_dataToolTipUnitsTextMarginTop","ngAcceptInputType_dataToolTipValueFormatAbbreviation":"ngAcceptInputType_dataToolTipValueFormatAbbreviation","ngAcceptInputType_dataToolTipValueFormatMaxFractions":"ngAcceptInputType_dataToolTipValueFormatMaxFractions","ngAcceptInputType_dataToolTipValueFormatMinFractions":"ngAcceptInputType_dataToolTipValueFormatMinFractions","ngAcceptInputType_dataToolTipValueFormatMode":"ngAcceptInputType_dataToolTipValueFormatMode","ngAcceptInputType_dataToolTipValueFormatSpecifiers":"ngAcceptInputType_dataToolTipValueFormatSpecifiers","ngAcceptInputType_dataToolTipValueFormatUseGrouping":"ngAcceptInputType_dataToolTipValueFormatUseGrouping","ngAcceptInputType_dataToolTipValueRowMarginBottom":"ngAcceptInputType_dataToolTipValueRowMarginBottom","ngAcceptInputType_dataToolTipValueRowMarginLeft":"ngAcceptInputType_dataToolTipValueRowMarginLeft","ngAcceptInputType_dataToolTipValueRowMarginRight":"ngAcceptInputType_dataToolTipValueRowMarginRight","ngAcceptInputType_dataToolTipValueRowMarginTop":"ngAcceptInputType_dataToolTipValueRowMarginTop","ngAcceptInputType_dataToolTipValueRowVisible":"ngAcceptInputType_dataToolTipValueRowVisible","ngAcceptInputType_dataToolTipValueTextMarginBottom":"ngAcceptInputType_dataToolTipValueTextMarginBottom","ngAcceptInputType_dataToolTipValueTextMarginLeft":"ngAcceptInputType_dataToolTipValueTextMarginLeft","ngAcceptInputType_dataToolTipValueTextMarginRight":"ngAcceptInputType_dataToolTipValueTextMarginRight","ngAcceptInputType_dataToolTipValueTextMarginTop":"ngAcceptInputType_dataToolTipValueTextMarginTop","ngAcceptInputType_dataToolTipValueTextUseSeriesColors":"ngAcceptInputType_dataToolTipValueTextUseSeriesColors","ngAcceptInputType_domainType":"ngAcceptInputType_domainType","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsPrecision":"ngAcceptInputType_finalValueAnnotationsPrecision","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_focusDismissDelayMilliseconds":"ngAcceptInputType_focusDismissDelayMilliseconds","ngAcceptInputType_focusedSeriesItems":"ngAcceptInputType_focusedSeriesItems","ngAcceptInputType_focusMode":"ngAcceptInputType_focusMode","ngAcceptInputType_focusTransitionDuration":"ngAcceptInputType_focusTransitionDuration","ngAcceptInputType_highlightedLegendItemVisibility":"ngAcceptInputType_highlightedLegendItemVisibility","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_highlightingBehavior":"ngAcceptInputType_highlightingBehavior","ngAcceptInputType_highlightingDismissDelayMilliseconds":"ngAcceptInputType_highlightingDismissDelayMilliseconds","ngAcceptInputType_highlightingFadeOpacity":"ngAcceptInputType_highlightingFadeOpacity","ngAcceptInputType_highlightingMode":"ngAcceptInputType_highlightingMode","ngAcceptInputType_highlightingTransitionDuration":"ngAcceptInputType_highlightingTransitionDuration","ngAcceptInputType_horizontalViewScrollbarCornerRadius":"ngAcceptInputType_horizontalViewScrollbarCornerRadius","ngAcceptInputType_horizontalViewScrollbarHeight":"ngAcceptInputType_horizontalViewScrollbarHeight","ngAcceptInputType_horizontalViewScrollbarInset":"ngAcceptInputType_horizontalViewScrollbarInset","ngAcceptInputType_horizontalViewScrollbarMaxOpacity":"ngAcceptInputType_horizontalViewScrollbarMaxOpacity","ngAcceptInputType_horizontalViewScrollbarMode":"ngAcceptInputType_horizontalViewScrollbarMode","ngAcceptInputType_horizontalViewScrollbarPosition":"ngAcceptInputType_horizontalViewScrollbarPosition","ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_horizontalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_horizontalViewScrollbarStrokeThickness":"ngAcceptInputType_horizontalViewScrollbarStrokeThickness","ngAcceptInputType_horizontalViewScrollbarTrackEndInset":"ngAcceptInputType_horizontalViewScrollbarTrackEndInset","ngAcceptInputType_horizontalViewScrollbarTrackStartInset":"ngAcceptInputType_horizontalViewScrollbarTrackStartInset","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_isDetached":"ngAcceptInputType_isDetached","ngAcceptInputType_isHorizontalZoomEnabled":"ngAcceptInputType_isHorizontalZoomEnabled","ngAcceptInputType_isSeriesHighlightingEnabled":"ngAcceptInputType_isSeriesHighlightingEnabled","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVerticalZoomEnabled":"ngAcceptInputType_isVerticalZoomEnabled","ngAcceptInputType_leftMargin":"ngAcceptInputType_leftMargin","ngAcceptInputType_legendHighlightingMode":"ngAcceptInputType_legendHighlightingMode","ngAcceptInputType_legendItemBadgeMode":"ngAcceptInputType_legendItemBadgeMode","ngAcceptInputType_legendItemBadgeShape":"ngAcceptInputType_legendItemBadgeShape","ngAcceptInputType_legendItemVisibility":"ngAcceptInputType_legendItemVisibility","ngAcceptInputType_markerAutomaticBehavior":"ngAcceptInputType_markerAutomaticBehavior","ngAcceptInputType_markerBrushes":"ngAcceptInputType_markerBrushes","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerFillOpacity":"ngAcceptInputType_markerFillOpacity","ngAcceptInputType_markerMaxCount":"ngAcceptInputType_markerMaxCount","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlines":"ngAcceptInputType_markerOutlines","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerTypes":"ngAcceptInputType_markerTypes","ngAcceptInputType_outlineMode":"ngAcceptInputType_outlineMode","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_plotAreaMarginBottom":"ngAcceptInputType_plotAreaMarginBottom","ngAcceptInputType_plotAreaMarginLeft":"ngAcceptInputType_plotAreaMarginLeft","ngAcceptInputType_plotAreaMarginRight":"ngAcceptInputType_plotAreaMarginRight","ngAcceptInputType_plotAreaMarginTop":"ngAcceptInputType_plotAreaMarginTop","ngAcceptInputType_resolution":"ngAcceptInputType_resolution","ngAcceptInputType_rightMargin":"ngAcceptInputType_rightMargin","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionDismissDelayMilliseconds":"ngAcceptInputType_selectionDismissDelayMilliseconds","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ngAcceptInputType_selectionTransitionDuration":"ngAcceptInputType_selectionTransitionDuration","ngAcceptInputType_seriesPlotAreaMarginHorizontalMode":"ngAcceptInputType_seriesPlotAreaMarginHorizontalMode","ngAcceptInputType_seriesPlotAreaMarginVerticalMode":"ngAcceptInputType_seriesPlotAreaMarginVerticalMode","ngAcceptInputType_seriesValueLayerUseLegend":"ngAcceptInputType_seriesValueLayerUseLegend","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldPanOnMaximumZoom":"ngAcceptInputType_shouldPanOnMaximumZoom","ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint":"ngAcceptInputType_shouldSimulateHoverMoveCrosshairPoint","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_subtitleAlignment":"ngAcceptInputType_subtitleAlignment","ngAcceptInputType_subtitleBottomMargin":"ngAcceptInputType_subtitleBottomMargin","ngAcceptInputType_subtitleLeftMargin":"ngAcceptInputType_subtitleLeftMargin","ngAcceptInputType_subtitleRightMargin":"ngAcceptInputType_subtitleRightMargin","ngAcceptInputType_subtitleTopMargin":"ngAcceptInputType_subtitleTopMargin","ngAcceptInputType_thickness":"ngAcceptInputType_thickness","ngAcceptInputType_titleAlignment":"ngAcceptInputType_titleAlignment","ngAcceptInputType_titleBottomMargin":"ngAcceptInputType_titleBottomMargin","ngAcceptInputType_titleLeftMargin":"ngAcceptInputType_titleLeftMargin","ngAcceptInputType_titleRightMargin":"ngAcceptInputType_titleRightMargin","ngAcceptInputType_titleTopMargin":"ngAcceptInputType_titleTopMargin","ngAcceptInputType_toolTipType":"ngAcceptInputType_toolTipType","ngAcceptInputType_topMargin":"ngAcceptInputType_topMargin","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineLayerUseLegend":"ngAcceptInputType_trendLineLayerUseLegend","ngAcceptInputType_trendLinePeriod":"ngAcceptInputType_trendLinePeriod","ngAcceptInputType_trendLineThickness":"ngAcceptInputType_trendLineThickness","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_unknownValuePlotting":"ngAcceptInputType_unknownValuePlotting","ngAcceptInputType_useValueForAutoCalloutLabels":"ngAcceptInputType_useValueForAutoCalloutLabels","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_valueLinesThickness":"ngAcceptInputType_valueLinesThickness","ngAcceptInputType_verticalViewScrollbarCornerRadius":"ngAcceptInputType_verticalViewScrollbarCornerRadius","ngAcceptInputType_verticalViewScrollbarInset":"ngAcceptInputType_verticalViewScrollbarInset","ngAcceptInputType_verticalViewScrollbarMaxOpacity":"ngAcceptInputType_verticalViewScrollbarMaxOpacity","ngAcceptInputType_verticalViewScrollbarMode":"ngAcceptInputType_verticalViewScrollbarMode","ngAcceptInputType_verticalViewScrollbarPosition":"ngAcceptInputType_verticalViewScrollbarPosition","ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets":"ngAcceptInputType_verticalViewScrollbarShouldAddAutoTrackInsets","ngAcceptInputType_verticalViewScrollbarStrokeThickness":"ngAcceptInputType_verticalViewScrollbarStrokeThickness","ngAcceptInputType_verticalViewScrollbarTrackEndInset":"ngAcceptInputType_verticalViewScrollbarTrackEndInset","ngAcceptInputType_verticalViewScrollbarTrackStartInset":"ngAcceptInputType_verticalViewScrollbarTrackStartInset","ngAcceptInputType_verticalViewScrollbarWidth":"ngAcceptInputType_verticalViewScrollbarWidth","ngAcceptInputType_viewport":"ngAcceptInputType_viewport","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_windowRectMinHeight":"ngAcceptInputType_windowRectMinHeight","ngAcceptInputType_windowRectMinWidth":"ngAcceptInputType_windowRectMinWidth","ngAcceptInputType_windowSizeMinHeight":"ngAcceptInputType_windowSizeMinHeight","ngAcceptInputType_windowSizeMinWidth":"ngAcceptInputType_windowSizeMinWidth","ngAcceptInputType_xAxisExtent":"ngAcceptInputType_xAxisExtent","ngAcceptInputType_xAxisInverted":"ngAcceptInputType_xAxisInverted","ngAcceptInputType_xAxisLabelAngle":"ngAcceptInputType_xAxisLabelAngle","ngAcceptInputType_xAxisLabelBottomMargin":"ngAcceptInputType_xAxisLabelBottomMargin","ngAcceptInputType_xAxisLabelFormatSpecifiers":"ngAcceptInputType_xAxisLabelFormatSpecifiers","ngAcceptInputType_xAxisLabelHorizontalAlignment":"ngAcceptInputType_xAxisLabelHorizontalAlignment","ngAcceptInputType_xAxisLabelLeftMargin":"ngAcceptInputType_xAxisLabelLeftMargin","ngAcceptInputType_xAxisLabelLocation":"ngAcceptInputType_xAxisLabelLocation","ngAcceptInputType_xAxisLabelRightMargin":"ngAcceptInputType_xAxisLabelRightMargin","ngAcceptInputType_xAxisLabelTopMargin":"ngAcceptInputType_xAxisLabelTopMargin","ngAcceptInputType_xAxisLabelVerticalAlignment":"ngAcceptInputType_xAxisLabelVerticalAlignment","ngAcceptInputType_xAxisLabelVisibility":"ngAcceptInputType_xAxisLabelVisibility","ngAcceptInputType_xAxisMajorStrokeThickness":"ngAcceptInputType_xAxisMajorStrokeThickness","ngAcceptInputType_xAxisMaximumExtent":"ngAcceptInputType_xAxisMaximumExtent","ngAcceptInputType_xAxisMaximumExtentPercentage":"ngAcceptInputType_xAxisMaximumExtentPercentage","ngAcceptInputType_xAxisMinorStrokeThickness":"ngAcceptInputType_xAxisMinorStrokeThickness","ngAcceptInputType_xAxisStrokeThickness":"ngAcceptInputType_xAxisStrokeThickness","ngAcceptInputType_xAxisTickLength":"ngAcceptInputType_xAxisTickLength","ngAcceptInputType_xAxisTickStrokeThickness":"ngAcceptInputType_xAxisTickStrokeThickness","ngAcceptInputType_xAxisTitleAlignment":"ngAcceptInputType_xAxisTitleAlignment","ngAcceptInputType_xAxisTitleAngle":"ngAcceptInputType_xAxisTitleAngle","ngAcceptInputType_xAxisTitleBottomMargin":"ngAcceptInputType_xAxisTitleBottomMargin","ngAcceptInputType_xAxisTitleLeftMargin":"ngAcceptInputType_xAxisTitleLeftMargin","ngAcceptInputType_xAxisTitleMargin":"ngAcceptInputType_xAxisTitleMargin","ngAcceptInputType_xAxisTitleRightMargin":"ngAcceptInputType_xAxisTitleRightMargin","ngAcceptInputType_xAxisTitleTopMargin":"ngAcceptInputType_xAxisTitleTopMargin","ngAcceptInputType_yAxisExtent":"ngAcceptInputType_yAxisExtent","ngAcceptInputType_yAxisInverted":"ngAcceptInputType_yAxisInverted","ngAcceptInputType_yAxisLabelAngle":"ngAcceptInputType_yAxisLabelAngle","ngAcceptInputType_yAxisLabelBottomMargin":"ngAcceptInputType_yAxisLabelBottomMargin","ngAcceptInputType_yAxisLabelFormatSpecifiers":"ngAcceptInputType_yAxisLabelFormatSpecifiers","ngAcceptInputType_yAxisLabelHorizontalAlignment":"ngAcceptInputType_yAxisLabelHorizontalAlignment","ngAcceptInputType_yAxisLabelLeftMargin":"ngAcceptInputType_yAxisLabelLeftMargin","ngAcceptInputType_yAxisLabelLocation":"ngAcceptInputType_yAxisLabelLocation","ngAcceptInputType_yAxisLabelRightMargin":"ngAcceptInputType_yAxisLabelRightMargin","ngAcceptInputType_yAxisLabelTopMargin":"ngAcceptInputType_yAxisLabelTopMargin","ngAcceptInputType_yAxisLabelVerticalAlignment":"ngAcceptInputType_yAxisLabelVerticalAlignment","ngAcceptInputType_yAxisLabelVisibility":"ngAcceptInputType_yAxisLabelVisibility","ngAcceptInputType_yAxisMajorStrokeThickness":"ngAcceptInputType_yAxisMajorStrokeThickness","ngAcceptInputType_yAxisMaximumExtent":"ngAcceptInputType_yAxisMaximumExtent","ngAcceptInputType_yAxisMaximumExtentPercentage":"ngAcceptInputType_yAxisMaximumExtentPercentage","ngAcceptInputType_yAxisMinorStrokeThickness":"ngAcceptInputType_yAxisMinorStrokeThickness","ngAcceptInputType_yAxisStrokeThickness":"ngAcceptInputType_yAxisStrokeThickness","ngAcceptInputType_yAxisTickLength":"ngAcceptInputType_yAxisTickLength","ngAcceptInputType_yAxisTickStrokeThickness":"ngAcceptInputType_yAxisTickStrokeThickness","ngAcceptInputType_yAxisTitleAlignment":"ngAcceptInputType_yAxisTitleAlignment","ngAcceptInputType_yAxisTitleAngle":"ngAcceptInputType_yAxisTitleAngle","ngAcceptInputType_yAxisTitleBottomMargin":"ngAcceptInputType_yAxisTitleBottomMargin","ngAcceptInputType_yAxisTitleLeftMargin":"ngAcceptInputType_yAxisTitleLeftMargin","ngAcceptInputType_yAxisTitleMargin":"ngAcceptInputType_yAxisTitleMargin","ngAcceptInputType_yAxisTitleRightMargin":"ngAcceptInputType_yAxisTitleRightMargin","ngAcceptInputType_yAxisTitleTopMargin":"ngAcceptInputType_yAxisTitleTopMargin","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInverted":"yAxisInverted","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngOnInit":"ngOnInit","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgxZoomSliderComponent":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxZoomSliderComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_areThumbCalloutsEnabled":"ngAcceptInputType_areThumbCalloutsEnabled","ngAcceptInputType_barExtent":"ngAcceptInputType_barExtent","ngAcceptInputType_barStrokeThickness":"ngAcceptInputType_barStrokeThickness","ngAcceptInputType_endInset":"ngAcceptInputType_endInset","ngAcceptInputType_higherCalloutStrokeThickness":"ngAcceptInputType_higherCalloutStrokeThickness","ngAcceptInputType_higherShadeStrokeThickness":"ngAcceptInputType_higherShadeStrokeThickness","ngAcceptInputType_higherThumbHeight":"ngAcceptInputType_higherThumbHeight","ngAcceptInputType_higherThumbStrokeThickness":"ngAcceptInputType_higherThumbStrokeThickness","ngAcceptInputType_higherThumbWidth":"ngAcceptInputType_higherThumbWidth","ngAcceptInputType_isCustomBarProvided":"ngAcceptInputType_isCustomBarProvided","ngAcceptInputType_isCustomRangeThumbProvided":"ngAcceptInputType_isCustomRangeThumbProvided","ngAcceptInputType_isCustomShadeProvided":"ngAcceptInputType_isCustomShadeProvided","ngAcceptInputType_isCustomThumbProvided":"ngAcceptInputType_isCustomThumbProvided","ngAcceptInputType_lowerCalloutStrokeThickness":"ngAcceptInputType_lowerCalloutStrokeThickness","ngAcceptInputType_lowerShadeStrokeThickness":"ngAcceptInputType_lowerShadeStrokeThickness","ngAcceptInputType_lowerThumbHeight":"ngAcceptInputType_lowerThumbHeight","ngAcceptInputType_lowerThumbStrokeThickness":"ngAcceptInputType_lowerThumbStrokeThickness","ngAcceptInputType_lowerThumbWidth":"ngAcceptInputType_lowerThumbWidth","ngAcceptInputType_maxZoomWidth":"ngAcceptInputType_maxZoomWidth","ngAcceptInputType_minZoomWidth":"ngAcceptInputType_minZoomWidth","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_panTransitionDuration":"ngAcceptInputType_panTransitionDuration","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_rangeThumbStrokeThickness":"ngAcceptInputType_rangeThumbStrokeThickness","ngAcceptInputType_startInset":"ngAcceptInputType_startInset","ngAcceptInputType_trackEndInset":"ngAcceptInputType_trackEndInset","ngAcceptInputType_trackStartInset":"ngAcceptInputType_trackStartInset","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","endInset":"endInset","height":"height","higherCalloutBrush":"higherCalloutBrush","higherCalloutOutline":"higherCalloutOutline","higherCalloutStrokeThickness":"higherCalloutStrokeThickness","higherCalloutTextColor":"higherCalloutTextColor","higherShadeBrush":"higherShadeBrush","higherShadeOutline":"higherShadeOutline","higherShadeStrokeThickness":"higherShadeStrokeThickness","higherThumbBrush":"higherThumbBrush","higherThumbHeight":"higherThumbHeight","higherThumbOutline":"higherThumbOutline","higherThumbRidgesBrush":"higherThumbRidgesBrush","higherThumbStrokeThickness":"higherThumbStrokeThickness","higherThumbWidth":"higherThumbWidth","i":"i","isCustomBarProvided":"isCustomBarProvided","isCustomRangeThumbProvided":"isCustomRangeThumbProvided","isCustomShadeProvided":"isCustomShadeProvided","isCustomThumbProvided":"isCustomThumbProvided","lowerCalloutBrush":"lowerCalloutBrush","lowerCalloutOutline":"lowerCalloutOutline","lowerCalloutStrokeThickness":"lowerCalloutStrokeThickness","lowerCalloutTextColor":"lowerCalloutTextColor","lowerShadeBrush":"lowerShadeBrush","lowerShadeOutline":"lowerShadeOutline","lowerShadeStrokeThickness":"lowerShadeStrokeThickness","lowerThumbBrush":"lowerThumbBrush","lowerThumbHeight":"lowerThumbHeight","lowerThumbOutline":"lowerThumbOutline","lowerThumbRidgesBrush":"lowerThumbRidgesBrush","lowerThumbStrokeThickness":"lowerThumbStrokeThickness","lowerThumbWidth":"lowerThumbWidth","maxZoomWidth":"maxZoomWidth","minZoomWidth":"minZoomWidth","orientation":"orientation","panTransitionDuration":"panTransitionDuration","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingAxisValue":"resolvingAxisValue","startInset":"startInset","thumbCalloutTextStyle":"thumbCalloutTextStyle","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","width":"width","windowRect":"windowRect","windowRectChanged":"windowRectChanged","findByName":"findByName","flush":"flush","hide":"hide","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","provideContainer":"provideContainer","show":"show","trackDirty":"trackDirty","updateStyle":"updateStyle"}}],"IgxZoomSliderResolvingAxisValueEventArgs":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/classes/IgxZoomSliderResolvingAxisValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_position":"ngAcceptInputType_position","position":"position","value":"value"}}],"AngleAxisLabelLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AngleAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"AnnotationAppearanceMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AnnotationAppearanceMode","k":"enum","s":"enums","m":{"Auto":"Auto","BrightnessShift":"BrightnessShift","DashPattern":"DashPattern","OpacityShift":"OpacityShift","SaturationShift":"SaturationShift"}}],"AutoCalloutVisibilityMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AutoCalloutVisibilityMode","k":"enum","s":"enums","m":{"Auto":"Auto","DedicatedLanes":"DedicatedLanes","Normal":"Normal"}}],"AutoMarginsAndAngleUpdateMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AutoMarginsAndAngleUpdateMode","k":"enum","s":"enums","m":{"None":"None","SizeChanging":"SizeChanging","SizeChangingAndZoom":"SizeChangingAndZoom"}}],"AxisAngleLabelMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AxisAngleLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Center":"Center","ClosestPoint":"ClosestPoint"}}],"AxisExtentType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AxisExtentType","k":"enum","s":"enums","m":{"Percent":"Percent","Pixel":"Pixel"}}],"AxisLabelsLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AxisLabelsLocation","k":"enum","s":"enums","m":{"InsideBottom":"InsideBottom","InsideLeft":"InsideLeft","InsideRight":"InsideRight","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight","OutsideTop":"OutsideTop"}}],"AxisOrientation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AxisOrientation","k":"enum","s":"enums","m":{"Angular":"Angular","Horizontal":"Horizontal","Radial":"Radial","Vertical":"Vertical"}}],"AxisRangeBufferMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AxisRangeBufferMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series","SeriesMaximum":"SeriesMaximum","SeriesMinimum":"SeriesMinimum"}}],"AxisTitlePosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/AxisTitlePosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"BrushSelectionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/BrushSelectionMode","k":"enum","s":"enums","m":{"Interpolate":"Interpolate","Select":"Select"}}],"CalloutPlacementPositions":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CalloutPlacementPositions","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"CategoryChartType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CategoryChartType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Column":"Column","Line":"Line","Point":"Point","Spline":"Spline","SplineArea":"SplineArea","StepArea":"StepArea","StepLine":"StepLine","Waterfall":"Waterfall"}}],"CategoryCollisionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CategoryCollisionMode","k":"enum","s":"enums","m":{"MatchHeight":"MatchHeight","WholeColumn":"WholeColumn"}}],"CategoryItemHighlightType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CategoryItemHighlightType","k":"enum","s":"enums","m":{"Auto":"Auto","Marker":"Marker","Shape":"Shape"}}],"CategorySeriesMarkerCollisionAvoidance":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CategorySeriesMarkerCollisionAvoidance","k":"enum","s":"enums","m":{"None":"None","Omit":"Omit"}}],"CategoryTooltipLayerPosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CategoryTooltipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"CategoryTransitionInMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CategoryTransitionInMode","k":"enum","s":"enums","m":{"AccordionFromBottom":"AccordionFromBottom","AccordionFromCategoryAxisMaximum":"AccordionFromCategoryAxisMaximum","AccordionFromCategoryAxisMinimum":"AccordionFromCategoryAxisMinimum","AccordionFromLeft":"AccordionFromLeft","AccordionFromRight":"AccordionFromRight","AccordionFromTop":"AccordionFromTop","AccordionFromValueAxisMaximum":"AccordionFromValueAxisMaximum","AccordionFromValueAxisMinimum":"AccordionFromValueAxisMinimum","Auto":"Auto","Expand":"Expand","FromParent":"FromParent","FromZero":"FromZero","SweepFromBottom":"SweepFromBottom","SweepFromCategoryAxisMaximum":"SweepFromCategoryAxisMaximum","SweepFromCategoryAxisMinimum":"SweepFromCategoryAxisMinimum","SweepFromCenter":"SweepFromCenter","SweepFromLeft":"SweepFromLeft","SweepFromRight":"SweepFromRight","SweepFromTop":"SweepFromTop","SweepFromValueAxisMaximum":"SweepFromValueAxisMaximum","SweepFromValueAxisMinimum":"SweepFromValueAxisMinimum"}}],"ChartHitTestMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ChartHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational","Mixed":"Mixed","MixedFavoringComputational":"MixedFavoringComputational"}}],"CollisionAvoidanceType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CollisionAvoidanceType","k":"enum","s":"enums","m":{"Fade":"Fade","FadeAndShift":"FadeAndShift","None":"None","Omit":"Omit","OmitAndShift":"OmitAndShift"}}],"ColorScaleInterpolationMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ColorScaleInterpolationMode","k":"enum","s":"enums","m":{"InterpolateHSV":"InterpolateHSV","InterpolateRGB":"InterpolateRGB","Select":"Select"}}],"ComputedPlotAreaMarginMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ComputedPlotAreaMarginMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series"}}],"ConsolidatedItemHitTestBehavior":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ConsolidatedItemHitTestBehavior","k":"enum","s":"enums","m":{"Basic":"Basic","NearestY":"NearestY"}}],"ConsolidatedItemsPosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ConsolidatedItemsPosition","k":"enum","s":"enums","m":{"Maximum":"Maximum","Median":"Median","Minimum":"Minimum","RelativeMaximum":"RelativeMaximum","RelativeMinimum":"RelativeMinimum"}}],"CrosshairsDisplayMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/CrosshairsDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"DataAnnotationDisplayMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/DataAnnotationDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisValue":"AxisValue","DataLabel":"DataLabel","DataValue":"DataValue","Hidden":"Hidden","PixelValue":"PixelValue","WindowValue":"WindowValue"}}],"DataAnnotationTargetMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/DataAnnotationTargetMode","k":"enum","s":"enums","m":{"Auto":"Auto","CategoryXAxes":"CategoryXAxes","CategoryYAxes":"CategoryYAxes","CompanionXAxes":"CompanionXAxes","CompanionYAxes":"CompanionYAxes","DataSourceAxes":"DataSourceAxes","HorizontalAxes":"HorizontalAxes","None":"None","NumericXAxes":"NumericXAxes","NumericYAxes":"NumericYAxes","PrimaryXAxes":"PrimaryXAxes","PrimaryYAxes":"PrimaryYAxes","TimeAxes":"TimeAxes","VerticalAxes":"VerticalAxes"}}],"DataPieChartType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/DataPieChartType","k":"enum","s":"enums","m":{"Auto":"Auto","PieSingleRing":"PieSingleRing"}}],"DataTooltipConstraintMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/DataTooltipConstraintMode","k":"enum","s":"enums","m":{"Application":"Application","Auto":"Auto","Chart":"Chart","None":"None","PlotArea":"PlotArea"}}],"DataToolTipLayerPosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/DataToolTipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"DomainType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/DomainType","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Pie":"Pie","Scatter":"Scatter","Shape":"Shape"}}],"EnableErrorBars":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/EnableErrorBars","k":"enum","s":"enums","m":{"Both":"Both","Negative":"Negative","None":"None","Positive":"Positive"}}],"FinalValueSelectionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinalValueSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Final":"Final","FinalVisible":"FinalVisible","FinalVisibleInterpolated":"FinalVisibleInterpolated"}}],"FinancialChartRangeSelectorOption":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialChartRangeSelectorOption","k":"enum","s":"enums","m":{"All":"All","OneMonth":"OneMonth","OneYear":"OneYear","SixMonths":"SixMonths","ThreeMonths":"ThreeMonths","YearToDate":"YearToDate"}}],"FinancialChartType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialChartType","k":"enum","s":"enums","m":{"Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line"}}],"FinancialChartVolumeType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialChartVolumeType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","None":"None"}}],"FinancialChartXAxisMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialChartXAxisMode","k":"enum","s":"enums","m":{"Ordinal":"Ordinal","Time":"Time"}}],"FinancialChartYAxisMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialChartYAxisMode","k":"enum","s":"enums","m":{"Numeric":"Numeric","PercentChange":"PercentChange"}}],"FinancialChartZoomSliderType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialChartZoomSliderType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line","None":"None"}}],"FinancialIndicatorType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialIndicatorType","k":"enum","s":"enums","m":{"AbsoluteVolumeOscillator":"AbsoluteVolumeOscillator","AccumulationDistribution":"AccumulationDistribution","AverageDirectionalIndex":"AverageDirectionalIndex","AverageTrueRange":"AverageTrueRange","BollingerBandWidth":"BollingerBandWidth","ChaikinOscillator":"ChaikinOscillator","ChaikinVolatility":"ChaikinVolatility","CommodityChannelIndex":"CommodityChannelIndex","DetrendedPriceOscillator":"DetrendedPriceOscillator","EaseOfMovement":"EaseOfMovement","FastStochasticOscillator":"FastStochasticOscillator","ForceIndex":"ForceIndex","FullStochasticOscillator":"FullStochasticOscillator","MarketFacilitationIndex":"MarketFacilitationIndex","MassIndex":"MassIndex","MedianPrice":"MedianPrice","MoneyFlowIndex":"MoneyFlowIndex","MovingAverageConvergenceDivergence":"MovingAverageConvergenceDivergence","NegativeVolumeIndex":"NegativeVolumeIndex","OnBalanceVolume":"OnBalanceVolume","PercentagePriceOscillator":"PercentagePriceOscillator","PercentageVolumeOscillator":"PercentageVolumeOscillator","PositiveVolumeIndex":"PositiveVolumeIndex","PriceVolumeTrend":"PriceVolumeTrend","RateOfChangeAndMomentum":"RateOfChangeAndMomentum","RelativeStrengthIndex":"RelativeStrengthIndex","SlowStochasticOscillator":"SlowStochasticOscillator","StandardDeviation":"StandardDeviation","StochRSI":"StochRSI","TRIX":"TRIX","TypicalPrice":"TypicalPrice","UltimateOscillator":"UltimateOscillator","WeightedClose":"WeightedClose","WilliamsPercentR":"WilliamsPercentR"}}],"FinancialOverlayType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FinancialOverlayType","k":"enum","s":"enums","m":{"BollingerBands":"BollingerBands","PriceChannel":"PriceChannel"}}],"FunnelSliceDisplay":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/FunnelSliceDisplay","k":"enum","s":"enums","m":{"Uniform":"Uniform","Weighted":"Weighted"}}],"GridMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/GridMode","k":"enum","s":"enums","m":{"BeforeSeries":"BeforeSeries","BehindSeries":"BehindSeries","None":"None"}}],"HighlightingMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/HighlightingMode","k":"enum","s":"enums","m":{"Closest":"Closest","DirectlyOver":"DirectlyOver"}}],"IndicatorDisplayType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/IndicatorDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line"}}],"ItemsSourceAction":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ItemsSourceAction","k":"enum","s":"enums","m":{"Change":"Change","Insert":"Insert","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"LabelsPosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/LabelsPosition","k":"enum","s":"enums","m":{"BestFit":"BestFit","Center":"Center","InsideEnd":"InsideEnd","None":"None","OutsideEnd":"OutsideEnd"}}],"LeaderLineType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/LeaderLineType","k":"enum","s":"enums","m":{"Arc":"Arc","Spline":"Spline","Straight":"Straight"}}],"LegendHighlightingMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/LegendHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchSeries":"MatchSeries","None":"None"}}],"LegendOrientation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/LegendOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"MarkerAutomaticBehavior":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/MarkerAutomaticBehavior","k":"enum","s":"enums","m":{"Circle":"Circle","CircleSmart":"CircleSmart","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Indexed":"Indexed","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","SmartIndexed":"SmartIndexed","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"MarkerFillMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/MarkerFillMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerOutline":"MatchMarkerOutline","Normal":"Normal"}}],"MarkerOutlineMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/MarkerOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerBrush":"MatchMarkerBrush","Normal":"Normal"}}],"MarkerType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/MarkerType","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle","Unset":"Unset"}}],"NumericScaleMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/NumericScaleMode","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"OuterLabelAlignment":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/OuterLabelAlignment","k":"enum","s":"enums","m":{"Left":"Left","Right":"Right"}}],"OverlayTextLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/OverlayTextLocation","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","InsideBottomCenter":"InsideBottomCenter","InsideBottomLeft":"InsideBottomLeft","InsideBottomRight":"InsideBottomRight","InsideMiddleCenter":"InsideMiddleCenter","InsideMiddleLeft":"InsideMiddleLeft","InsideMiddleRight":"InsideMiddleRight","InsideTopCenter":"InsideTopCenter","InsideTopLeft":"InsideTopLeft","InsideTopRight":"InsideTopRight","OutsideBottomCenter":"OutsideBottomCenter","OutsideBottomLeft":"OutsideBottomLeft","OutsideBottomRight":"OutsideBottomRight","OutsideMiddleLeft":"OutsideMiddleLeft","OutsideMiddleRight":"OutsideMiddleRight","OutsideTopCenter":"OutsideTopCenter","OutsideTopLeft":"OutsideTopLeft","OutsideTopRight":"OutsideTopRight"}}],"PieChartSweepDirection":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/PieChartSweepDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"PointerTooltipPointerLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/PointerTooltipPointerLocation","k":"enum","s":"enums","m":{"Auto":"Auto","BottomLeft":"BottomLeft","BottomMiddle":"BottomMiddle","BottomRight":"BottomRight","LeftBottom":"LeftBottom","LeftMiddle":"LeftMiddle","LeftTop":"LeftTop","RightBottom":"RightBottom","RightMiddle":"RightMiddle","RightTop":"RightTop","TopLeft":"TopLeft","TopMiddle":"TopMiddle","TopRight":"TopRight"}}],"PriceDisplayType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/PriceDisplayType","k":"enum","s":"enums","m":{"Candlestick":"Candlestick","OHLC":"OHLC"}}],"ScatterItemSearchMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ScatterItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestPoint":"ClosestPoint","ClosestPointOnClosestLine":"ClosestPointOnClosestLine","ClosestVisiblePoint":"ClosestVisiblePoint","ClosestVisiblePointOnClosestLine":"ClosestVisiblePointOnClosestLine","None":"None","TopVisiblePoint":"TopVisiblePoint"}}],"SeriesHighlightingBehavior":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesHighlightingBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","DirectlyOver":"DirectlyOver","NearestItems":"NearestItems","NearestItemsAndSeries":"NearestItemsAndSeries","NearestItemsRetainMainShapes":"NearestItemsRetainMainShapes"}}],"SeriesHighlightingMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","BrightenSpecific":"BrightenSpecific","FadeOthers":"FadeOthers","FadeOthersSpecific":"FadeOthersSpecific","None":"None"}}],"SeriesHitTestMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational"}}],"SeriesOutlineMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","Collapsed":"Collapsed","Visible":"Visible"}}],"SeriesPlotAreaMarginHorizontalMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesPlotAreaMarginHorizontalMode","k":"enum","s":"enums","m":{"Auto":"Auto","LeftBufferRightBuffer":"LeftBufferRightBuffer","LeftBufferRightMargin":"LeftBufferRightMargin","LeftMarginRightBuffer":"LeftMarginRightBuffer","LeftMarginRightMargin":"LeftMarginRightMargin","None":"None"}}],"SeriesPlotAreaMarginVerticalMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesPlotAreaMarginVerticalMode","k":"enum","s":"enums","m":{"Auto":"Auto","BottomBufferTopBuffer":"BottomBufferTopBuffer","BottomBufferTopMargin":"BottomBufferTopMargin","BottomMarginTopBuffer":"BottomMarginTopBuffer","BottomMarginTopMargin":"BottomMarginTopMargin","None":"None"}}],"SeriesSelectionBehavior":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesSelectionBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","PerDataItemMultiSelect":"PerDataItemMultiSelect","PerDataItemSingleSelect":"PerDataItemSingleSelect","PerSeriesAndDataItemGlobalSingleSelect":"PerSeriesAndDataItemGlobalSingleSelect","PerSeriesAndDataItemMultiSelect":"PerSeriesAndDataItemMultiSelect","PerSeriesAndDataItemSingleSelect":"PerSeriesAndDataItemSingleSelect","PerSeriesMultiSelect":"PerSeriesMultiSelect","PerSeriesSingleSelect":"PerSeriesSingleSelect"}}],"SeriesSelectionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","FocusColorFill":"FocusColorFill","FocusColorOutline":"FocusColorOutline","FocusColorThickOutline":"FocusColorThickOutline","GrayscaleOthers":"GrayscaleOthers","None":"None","SelectionColorFill":"SelectionColorFill","SelectionColorOutline":"SelectionColorOutline","SelectionColorThickOutline":"SelectionColorThickOutline","ThickOutline":"ThickOutline"}}],"SeriesViewerHorizontalScrollbarPosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesViewerHorizontalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop"}}],"SeriesViewerScrollbarMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesViewerScrollbarMode","k":"enum","s":"enums","m":{"FadeToLine":"FadeToLine","Fading":"Fading","None":"None","Persistent":"Persistent"}}],"SeriesViewerVerticalScrollbarPosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesViewerVerticalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight"}}],"SeriesVisibleRangeMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SeriesVisibleRangeMode","k":"enum","s":"enums","m":{"Auto":"Auto","IncludeReferenceValue":"IncludeReferenceValue","ValuesOnly":"ValuesOnly"}}],"ShapeItemSearchMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ShapeItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestBoundingBox":"ClosestBoundingBox","ClosestPointOnClosestShape":"ClosestPointOnClosestShape","ClosestShape":"ClosestShape","None":"None"}}],"SliceSelectionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SliceSelectionMode","k":"enum","s":"enums","m":{"Manual":"Manual","Multiple":"Multiple","Single":"Single"}}],"SparklineDisplayType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SparklineDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","WinLoss":"WinLoss"}}],"SplineType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/SplineType","k":"enum","s":"enums","m":{"Clamped":"Clamped","Natural":"Natural"}}],"ThumbRangePosition":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"TimeAxisDisplayType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TimeAxisDisplayType","k":"enum","s":"enums","m":{"Continuous":"Continuous","Discrete":"Discrete"}}],"TimeAxisIntervalType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TimeAxisIntervalType","k":"enum","s":"enums","m":{"Days":"Days","Hours":"Hours","Milliseconds":"Milliseconds","Minutes":"Minutes","Months":"Months","Seconds":"Seconds","Ticks":"Ticks","Weeks":"Weeks","Years":"Years"}}],"TimeAxisLabellingMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TimeAxisLabellingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Compressed":"Compressed","Normal":"Normal"}}],"ToolTipType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ToolTipType","k":"enum","s":"enums","m":{"Category":"Category","Data":"Data","Default":"Default","Item":"Item","None":"None"}}],"TransitionInSpeedType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TransitionInSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TransitionOutSpeedType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TransitionOutSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TreemapFillScaleMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapFillScaleMode","k":"enum","s":"enums","m":{"GlobalSum":"GlobalSum","GlobalValue":"GlobalValue","Sum":"Sum","Value":"Value"}}],"TreemapHeaderDisplayMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapHeaderDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Header":"Header","Overlay":"Overlay"}}],"TreemapHighlightedValueDisplayMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapHighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"TreemapHighlightingMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","None":"None"}}],"TreemapLabelHorizontalFitMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapLabelHorizontalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Ellipsis":"Ellipsis","Hide":"Hide"}}],"TreemapLabelVerticalFitMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapLabelVerticalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hide":"Hide","Show":"Show"}}],"TreemapLayoutType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapLayoutType","k":"enum","s":"enums","m":{"SliceAndDice":"SliceAndDice","Squarified":"Squarified","Stripped":"Stripped"}}],"TreemapNodeStyleMappingTargetType":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapNodeStyleMappingTargetType","k":"enum","s":"enums","m":{"All":"All","Child":"Child","Parent":"Parent"}}],"TreemapOrientation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"TreemapValueMappingMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/TreemapValueMappingMode","k":"enum","s":"enums","m":{"CustomValue":"CustomValue","Sum":"Sum","Value":"Value"}}],"UserAnnotationTarget":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/UserAnnotationTarget","k":"enum","s":"enums","m":{"Axis":"Axis","Point":"Point","Slice":"Slice","Strip":"Strip"}}],"ValueAxisLabelLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ValueAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ValueCollisionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ValueCollisionMode","k":"enum","s":"enums","m":{"Range":"Range","Value":"Value"}}],"ValueLayerValueMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ValueLayerValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","GlobalAverage":"GlobalAverage","GlobalMaximum":"GlobalMaximum","GlobalMinimum":"GlobalMinimum","Maximum":"Maximum","Minimum":"Minimum"}}],"ViewerSurfaceUsage":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ViewerSurfaceUsage","k":"enum","s":"enums","m":{"Minimal":"Minimal","Normal":"Normal"}}],"WindowResponse":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/WindowResponse","k":"enum","s":"enums","m":{"Deferred":"Deferred","Immediate":"Immediate"}}],"XAxisLabelLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/XAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"YAxisLabelLocation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/YAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ZoomCoercionMode":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ZoomCoercionMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisConstrained":"AxisConstrained","Unconstrained":"Unconstrained"}}],"ZoomSliderOrientation":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/enums/ZoomSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"DataChartStylingDefaults":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/variables/DataChartStylingDefaults","k":"variable","s":"variables"}],"IgxSeriesComponent_PROVIDERS":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/variables/IgxSeriesComponent_PROVIDERS","k":"variable","s":"variables"}],"SparklineStylingDefaults":[{"p":"igniteui-angular-charts","u":"/api/angular/igniteui-angular-charts/21.0.0/variables/SparklineStylingDefaults","k":"variable","s":"variables"}],"IgxAlignLinearGraphLabelEventArgs":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxAlignLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","height":"height","i":"i","label":"label","offsetX":"offsetX","offsetY":"offsetY","value":"value","width":"width"}}],"IgxAlignRadialGaugeLabelEventArgs":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxAlignRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","angle":"angle","endAngle":"endAngle","height":"height","i":"i","label":"label","offsetX":"offsetX","offsetY":"offsetY","startAngle":"startAngle","value":"value","width":"width"}}],"IgxBulletGraphComponent":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxBulletGraphComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualRanges":"actualRanges","contentRanges":"contentRanges","ngAcceptInputType_actualHighlightValueDisplayMode":"ngAcceptInputType_actualHighlightValueDisplayMode","ngAcceptInputType_actualHighlightValueOpacity":"ngAcceptInputType_actualHighlightValueOpacity","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_animating":"ngAcceptInputType_animating","ngAcceptInputType_backingInnerExtent":"ngAcceptInputType_backingInnerExtent","ngAcceptInputType_backingOuterExtent":"ngAcceptInputType_backingOuterExtent","ngAcceptInputType_backingStrokeThickness":"ngAcceptInputType_backingStrokeThickness","ngAcceptInputType_highlightValue":"ngAcceptInputType_highlightValue","ngAcceptInputType_highlightValueDisplayMode":"ngAcceptInputType_highlightValueDisplayMode","ngAcceptInputType_highlightValueOpacity":"ngAcceptInputType_highlightValueOpacity","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isScaleInverted":"ngAcceptInputType_isScaleInverted","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelInterval":"ngAcceptInputType_labelInterval","ngAcceptInputType_labelsPostInitial":"ngAcceptInputType_labelsPostInitial","ngAcceptInputType_labelsPreTerminal":"ngAcceptInputType_labelsPreTerminal","ngAcceptInputType_labelsVisible":"ngAcceptInputType_labelsVisible","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_mergeViewports":"ngAcceptInputType_mergeViewports","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorTickCount":"ngAcceptInputType_minorTickCount","ngAcceptInputType_minorTickEndExtent":"ngAcceptInputType_minorTickEndExtent","ngAcceptInputType_minorTickStartExtent":"ngAcceptInputType_minorTickStartExtent","ngAcceptInputType_minorTickStrokeThickness":"ngAcceptInputType_minorTickStrokeThickness","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_rangeBrushes":"ngAcceptInputType_rangeBrushes","ngAcceptInputType_rangeInnerExtent":"ngAcceptInputType_rangeInnerExtent","ngAcceptInputType_rangeOuterExtent":"ngAcceptInputType_rangeOuterExtent","ngAcceptInputType_rangeOutlines":"ngAcceptInputType_rangeOutlines","ngAcceptInputType_scaleBackgroundThickness":"ngAcceptInputType_scaleBackgroundThickness","ngAcceptInputType_scaleEndExtent":"ngAcceptInputType_scaleEndExtent","ngAcceptInputType_scaleStartExtent":"ngAcceptInputType_scaleStartExtent","ngAcceptInputType_showToolTip":"ngAcceptInputType_showToolTip","ngAcceptInputType_showToolTipTimeout":"ngAcceptInputType_showToolTipTimeout","ngAcceptInputType_targetValue":"ngAcceptInputType_targetValue","ngAcceptInputType_targetValueBreadth":"ngAcceptInputType_targetValueBreadth","ngAcceptInputType_targetValueInnerExtent":"ngAcceptInputType_targetValueInnerExtent","ngAcceptInputType_targetValueOuterExtent":"ngAcceptInputType_targetValueOuterExtent","ngAcceptInputType_targetValueStrokeThickness":"ngAcceptInputType_targetValueStrokeThickness","ngAcceptInputType_tickEndExtent":"ngAcceptInputType_tickEndExtent","ngAcceptInputType_ticksPostInitial":"ngAcceptInputType_ticksPostInitial","ngAcceptInputType_ticksPreTerminal":"ngAcceptInputType_ticksPreTerminal","ngAcceptInputType_tickStartExtent":"ngAcceptInputType_tickStartExtent","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionProgress":"ngAcceptInputType_transitionProgress","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_valueInnerExtent":"ngAcceptInputType_valueInnerExtent","ngAcceptInputType_valueOuterExtent":"ngAcceptInputType_valueOuterExtent","ngAcceptInputType_valueStrokeThickness":"ngAcceptInputType_valueStrokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","animating":"animating","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBackgroundBrush":"scaleBackgroundBrush","scaleBackgroundOutline":"scaleBackgroundOutline","scaleBackgroundThickness":"scaleBackgroundThickness","scaleEndExtent":"scaleEndExtent","scaleStartExtent":"scaleStartExtent","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","targetValue":"targetValue","targetValueBreadth":"targetValueBreadth","targetValueBrush":"targetValueBrush","targetValueInnerExtent":"targetValueInnerExtent","targetValueName":"targetValueName","targetValueOuterExtent":"targetValueOuterExtent","targetValueOutline":"targetValueOutline","targetValueStrokeThickness":"targetValueStrokeThickness","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueBrush":"valueBrush","valueInnerExtent":"valueInnerExtent","valueName":"valueName","valueOuterExtent":"valueOuterExtent","valueOutline":"valueOutline","valueStrokeThickness":"valueStrokeThickness","width":"width","containerResized":"containerResized","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getValueForPoint":"getValueForPoint","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","provideContainer":"provideContainer","styleUpdated":"styleUpdated","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxFormatLinearGraphLabelEventArgs":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxFormatLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","i":"i","label":"label","value":"value"}}],"IgxFormatRadialGaugeLabelEventArgs":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxFormatRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","angle":"angle","endAngle":"endAngle","i":"i","label":"label","startAngle":"startAngle","value":"value"}}],"IgxLinearGaugeComponent":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxLinearGaugeComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualRanges":"actualRanges","contentRanges":"contentRanges","ngAcceptInputType_actualHighlightValueDisplayMode":"ngAcceptInputType_actualHighlightValueDisplayMode","ngAcceptInputType_actualHighlightValueOpacity":"ngAcceptInputType_actualHighlightValueOpacity","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_animating":"ngAcceptInputType_animating","ngAcceptInputType_backingInnerExtent":"ngAcceptInputType_backingInnerExtent","ngAcceptInputType_backingOuterExtent":"ngAcceptInputType_backingOuterExtent","ngAcceptInputType_backingStrokeThickness":"ngAcceptInputType_backingStrokeThickness","ngAcceptInputType_highlightValue":"ngAcceptInputType_highlightValue","ngAcceptInputType_highlightValueDisplayMode":"ngAcceptInputType_highlightValueDisplayMode","ngAcceptInputType_highlightValueOpacity":"ngAcceptInputType_highlightValueOpacity","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isHighlightNeedleDraggingEnabled":"ngAcceptInputType_isHighlightNeedleDraggingEnabled","ngAcceptInputType_isNeedleDraggingEnabled":"ngAcceptInputType_isNeedleDraggingEnabled","ngAcceptInputType_isScaleInverted":"ngAcceptInputType_isScaleInverted","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelInterval":"ngAcceptInputType_labelInterval","ngAcceptInputType_labelsPostInitial":"ngAcceptInputType_labelsPostInitial","ngAcceptInputType_labelsPreTerminal":"ngAcceptInputType_labelsPreTerminal","ngAcceptInputType_labelsVisible":"ngAcceptInputType_labelsVisible","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_mergeViewports":"ngAcceptInputType_mergeViewports","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorTickCount":"ngAcceptInputType_minorTickCount","ngAcceptInputType_minorTickEndExtent":"ngAcceptInputType_minorTickEndExtent","ngAcceptInputType_minorTickStartExtent":"ngAcceptInputType_minorTickStartExtent","ngAcceptInputType_minorTickStrokeThickness":"ngAcceptInputType_minorTickStrokeThickness","ngAcceptInputType_needleBreadth":"ngAcceptInputType_needleBreadth","ngAcceptInputType_needleInnerBaseWidth":"ngAcceptInputType_needleInnerBaseWidth","ngAcceptInputType_needleInnerExtent":"ngAcceptInputType_needleInnerExtent","ngAcceptInputType_needleInnerPointExtent":"ngAcceptInputType_needleInnerPointExtent","ngAcceptInputType_needleInnerPointWidth":"ngAcceptInputType_needleInnerPointWidth","ngAcceptInputType_needleOuterBaseWidth":"ngAcceptInputType_needleOuterBaseWidth","ngAcceptInputType_needleOuterExtent":"ngAcceptInputType_needleOuterExtent","ngAcceptInputType_needleOuterPointExtent":"ngAcceptInputType_needleOuterPointExtent","ngAcceptInputType_needleOuterPointWidth":"ngAcceptInputType_needleOuterPointWidth","ngAcceptInputType_needleShape":"ngAcceptInputType_needleShape","ngAcceptInputType_needleStrokeThickness":"ngAcceptInputType_needleStrokeThickness","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_rangeBrushes":"ngAcceptInputType_rangeBrushes","ngAcceptInputType_rangeInnerExtent":"ngAcceptInputType_rangeInnerExtent","ngAcceptInputType_rangeOuterExtent":"ngAcceptInputType_rangeOuterExtent","ngAcceptInputType_rangeOutlines":"ngAcceptInputType_rangeOutlines","ngAcceptInputType_scaleEndExtent":"ngAcceptInputType_scaleEndExtent","ngAcceptInputType_scaleInnerExtent":"ngAcceptInputType_scaleInnerExtent","ngAcceptInputType_scaleOuterExtent":"ngAcceptInputType_scaleOuterExtent","ngAcceptInputType_scaleStartExtent":"ngAcceptInputType_scaleStartExtent","ngAcceptInputType_scaleStrokeThickness":"ngAcceptInputType_scaleStrokeThickness","ngAcceptInputType_showToolTip":"ngAcceptInputType_showToolTip","ngAcceptInputType_showToolTipTimeout":"ngAcceptInputType_showToolTipTimeout","ngAcceptInputType_tickEndExtent":"ngAcceptInputType_tickEndExtent","ngAcceptInputType_ticksPostInitial":"ngAcceptInputType_ticksPostInitial","ngAcceptInputType_ticksPreTerminal":"ngAcceptInputType_ticksPreTerminal","ngAcceptInputType_tickStartExtent":"ngAcceptInputType_tickStartExtent","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionProgress":"ngAcceptInputType_transitionProgress","ngAcceptInputType_value":"ngAcceptInputType_value","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","animating":"animating","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","needleBreadth":"needleBreadth","needleBrush":"needleBrush","needleInnerBaseWidth":"needleInnerBaseWidth","needleInnerExtent":"needleInnerExtent","needleInnerPointExtent":"needleInnerPointExtent","needleInnerPointWidth":"needleInnerPointWidth","needleName":"needleName","needleOuterBaseWidth":"needleOuterBaseWidth","needleOuterExtent":"needleOuterExtent","needleOuterPointExtent":"needleOuterPointExtent","needleOuterPointWidth":"needleOuterPointWidth","needleOutline":"needleOutline","needleShape":"needleShape","needleStrokeThickness":"needleStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBrush":"scaleBrush","scaleEndExtent":"scaleEndExtent","scaleInnerExtent":"scaleInnerExtent","scaleOuterExtent":"scaleOuterExtent","scaleOutline":"scaleOutline","scaleStartExtent":"scaleStartExtent","scaleStrokeThickness":"scaleStrokeThickness","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width","containerResized":"containerResized","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getValueForPoint":"getValueForPoint","highlightNeedleContainsPoint":"highlightNeedleContainsPoint","needleContainsPoint":"needleContainsPoint","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","provideContainer":"provideContainer","styleUpdated":"styleUpdated","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxLinearGraphRangeCollection":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxLinearGraphRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxLinearGraphRangeComponent":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxLinearGraphRangeComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endValue":"ngAcceptInputType_endValue","ngAcceptInputType_innerEndExtent":"ngAcceptInputType_innerEndExtent","ngAcceptInputType_innerStartExtent":"ngAcceptInputType_innerStartExtent","ngAcceptInputType_outerEndExtent":"ngAcceptInputType_outerEndExtent","ngAcceptInputType_outerStartExtent":"ngAcceptInputType_outerStartExtent","ngAcceptInputType_startValue":"ngAcceptInputType_startValue","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brush":"brush","endValue":"endValue","i":"i","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","rangeInternal":"rangeInternal","startValue":"startValue","strokeThickness":"strokeThickness","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxRadialGaugeComponent":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxRadialGaugeComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualRanges":"actualRanges","contentRanges":"contentRanges","ngAcceptInputType_actualHighlightValueDisplayMode":"ngAcceptInputType_actualHighlightValueDisplayMode","ngAcceptInputType_actualHighlightValueOpacity":"ngAcceptInputType_actualHighlightValueOpacity","ngAcceptInputType_actualMaximumValue":"ngAcceptInputType_actualMaximumValue","ngAcceptInputType_actualMinimumValue":"ngAcceptInputType_actualMinimumValue","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_animating":"ngAcceptInputType_animating","ngAcceptInputType_backingCornerRadius":"ngAcceptInputType_backingCornerRadius","ngAcceptInputType_backingInnerExtent":"ngAcceptInputType_backingInnerExtent","ngAcceptInputType_backingOuterExtent":"ngAcceptInputType_backingOuterExtent","ngAcceptInputType_backingOversweep":"ngAcceptInputType_backingOversweep","ngAcceptInputType_backingShape":"ngAcceptInputType_backingShape","ngAcceptInputType_backingStrokeThickness":"ngAcceptInputType_backingStrokeThickness","ngAcceptInputType_centerX":"ngAcceptInputType_centerX","ngAcceptInputType_centerY":"ngAcceptInputType_centerY","ngAcceptInputType_duplicateLabelOmissionStrategy":"ngAcceptInputType_duplicateLabelOmissionStrategy","ngAcceptInputType_highlightLabelAngle":"ngAcceptInputType_highlightLabelAngle","ngAcceptInputType_highlightLabelDisplaysValue":"ngAcceptInputType_highlightLabelDisplaysValue","ngAcceptInputType_highlightLabelExtent":"ngAcceptInputType_highlightLabelExtent","ngAcceptInputType_highlightLabelFormatSpecifiers":"ngAcceptInputType_highlightLabelFormatSpecifiers","ngAcceptInputType_highlightLabelSnapsToNeedlePivot":"ngAcceptInputType_highlightLabelSnapsToNeedlePivot","ngAcceptInputType_highlightValue":"ngAcceptInputType_highlightValue","ngAcceptInputType_highlightValueDisplayMode":"ngAcceptInputType_highlightValueDisplayMode","ngAcceptInputType_highlightValueOpacity":"ngAcceptInputType_highlightValueOpacity","ngAcceptInputType_interval":"ngAcceptInputType_interval","ngAcceptInputType_isHighlightNeedleDraggingConstrained":"ngAcceptInputType_isHighlightNeedleDraggingConstrained","ngAcceptInputType_isHighlightNeedleDraggingEnabled":"ngAcceptInputType_isHighlightNeedleDraggingEnabled","ngAcceptInputType_isNeedleDraggingConstrained":"ngAcceptInputType_isNeedleDraggingConstrained","ngAcceptInputType_isNeedleDraggingEnabled":"ngAcceptInputType_isNeedleDraggingEnabled","ngAcceptInputType_labelExtent":"ngAcceptInputType_labelExtent","ngAcceptInputType_labelFormatSpecifiers":"ngAcceptInputType_labelFormatSpecifiers","ngAcceptInputType_labelInterval":"ngAcceptInputType_labelInterval","ngAcceptInputType_maximumValue":"ngAcceptInputType_maximumValue","ngAcceptInputType_minimumValue":"ngAcceptInputType_minimumValue","ngAcceptInputType_minorTickCount":"ngAcceptInputType_minorTickCount","ngAcceptInputType_minorTickEndExtent":"ngAcceptInputType_minorTickEndExtent","ngAcceptInputType_minorTickStartExtent":"ngAcceptInputType_minorTickStartExtent","ngAcceptInputType_minorTickStrokeThickness":"ngAcceptInputType_minorTickStrokeThickness","ngAcceptInputType_needleBaseFeatureExtent":"ngAcceptInputType_needleBaseFeatureExtent","ngAcceptInputType_needleBaseFeatureWidthRatio":"ngAcceptInputType_needleBaseFeatureWidthRatio","ngAcceptInputType_needleEndExtent":"ngAcceptInputType_needleEndExtent","ngAcceptInputType_needleEndWidthRatio":"ngAcceptInputType_needleEndWidthRatio","ngAcceptInputType_needlePivotInnerWidthRatio":"ngAcceptInputType_needlePivotInnerWidthRatio","ngAcceptInputType_needlePivotShape":"ngAcceptInputType_needlePivotShape","ngAcceptInputType_needlePivotStrokeThickness":"ngAcceptInputType_needlePivotStrokeThickness","ngAcceptInputType_needlePivotWidthRatio":"ngAcceptInputType_needlePivotWidthRatio","ngAcceptInputType_needlePointFeatureExtent":"ngAcceptInputType_needlePointFeatureExtent","ngAcceptInputType_needlePointFeatureWidthRatio":"ngAcceptInputType_needlePointFeatureWidthRatio","ngAcceptInputType_needleShape":"ngAcceptInputType_needleShape","ngAcceptInputType_needleStartExtent":"ngAcceptInputType_needleStartExtent","ngAcceptInputType_needleStartWidthRatio":"ngAcceptInputType_needleStartWidthRatio","ngAcceptInputType_needleStrokeThickness":"ngAcceptInputType_needleStrokeThickness","ngAcceptInputType_opticalScalingEnabled":"ngAcceptInputType_opticalScalingEnabled","ngAcceptInputType_opticalScalingRatio":"ngAcceptInputType_opticalScalingRatio","ngAcceptInputType_opticalScalingSize":"ngAcceptInputType_opticalScalingSize","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_radiusMultiplier":"ngAcceptInputType_radiusMultiplier","ngAcceptInputType_rangeBrushes":"ngAcceptInputType_rangeBrushes","ngAcceptInputType_rangeOutlines":"ngAcceptInputType_rangeOutlines","ngAcceptInputType_scaleEndAngle":"ngAcceptInputType_scaleEndAngle","ngAcceptInputType_scaleEndExtent":"ngAcceptInputType_scaleEndExtent","ngAcceptInputType_scaleOversweep":"ngAcceptInputType_scaleOversweep","ngAcceptInputType_scaleOversweepShape":"ngAcceptInputType_scaleOversweepShape","ngAcceptInputType_scaleStartAngle":"ngAcceptInputType_scaleStartAngle","ngAcceptInputType_scaleStartExtent":"ngAcceptInputType_scaleStartExtent","ngAcceptInputType_scaleSweepDirection":"ngAcceptInputType_scaleSweepDirection","ngAcceptInputType_subtitleAngle":"ngAcceptInputType_subtitleAngle","ngAcceptInputType_subtitleDisplaysValue":"ngAcceptInputType_subtitleDisplaysValue","ngAcceptInputType_subtitleExtent":"ngAcceptInputType_subtitleExtent","ngAcceptInputType_subtitleFormatSpecifiers":"ngAcceptInputType_subtitleFormatSpecifiers","ngAcceptInputType_subtitleSnapsToNeedlePivot":"ngAcceptInputType_subtitleSnapsToNeedlePivot","ngAcceptInputType_tickEndExtent":"ngAcceptInputType_tickEndExtent","ngAcceptInputType_tickStartExtent":"ngAcceptInputType_tickStartExtent","ngAcceptInputType_tickStrokeThickness":"ngAcceptInputType_tickStrokeThickness","ngAcceptInputType_titleAngle":"ngAcceptInputType_titleAngle","ngAcceptInputType_titleDisplaysValue":"ngAcceptInputType_titleDisplaysValue","ngAcceptInputType_titleExtent":"ngAcceptInputType_titleExtent","ngAcceptInputType_titleFormatSpecifiers":"ngAcceptInputType_titleFormatSpecifiers","ngAcceptInputType_titleSnapsToNeedlePivot":"ngAcceptInputType_titleSnapsToNeedlePivot","ngAcceptInputType_transitionDuration":"ngAcceptInputType_transitionDuration","ngAcceptInputType_transitionProgress":"ngAcceptInputType_transitionProgress","ngAcceptInputType_value":"ngAcceptInputType_value","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignHighlightLabel":"alignHighlightLabel","alignLabel":"alignLabel","alignSubtitle":"alignSubtitle","alignTitle":"alignTitle","animating":"animating","backingBrush":"backingBrush","backingCornerRadius":"backingCornerRadius","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingOversweep":"backingOversweep","backingShape":"backingShape","backingStrokeThickness":"backingStrokeThickness","centerX":"centerX","centerY":"centerY","duplicateLabelOmissionStrategy":"duplicateLabelOmissionStrategy","font":"font","fontBrush":"fontBrush","formatHighlightLabel":"formatHighlightLabel","formatLabel":"formatLabel","formatSubtitle":"formatSubtitle","formatTitle":"formatTitle","height":"height","highlightLabelAngle":"highlightLabelAngle","highlightLabelBrush":"highlightLabelBrush","highlightLabelDisplaysValue":"highlightLabelDisplaysValue","highlightLabelExtent":"highlightLabelExtent","highlightLabelFormat":"highlightLabelFormat","highlightLabelFormatSpecifiers":"highlightLabelFormatSpecifiers","highlightLabelSnapsToNeedlePivot":"highlightLabelSnapsToNeedlePivot","highlightLabelText":"highlightLabelText","highlightLabelTextStyle":"highlightLabelTextStyle","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingConstrained":"isHighlightNeedleDraggingConstrained","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingConstrained":"isNeedleDraggingConstrained","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","maximumValue":"maximumValue","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","needleBaseFeatureExtent":"needleBaseFeatureExtent","needleBaseFeatureWidthRatio":"needleBaseFeatureWidthRatio","needleBrush":"needleBrush","needleEndExtent":"needleEndExtent","needleEndWidthRatio":"needleEndWidthRatio","needleOutline":"needleOutline","needlePivotBrush":"needlePivotBrush","needlePivotInnerWidthRatio":"needlePivotInnerWidthRatio","needlePivotOutline":"needlePivotOutline","needlePivotShape":"needlePivotShape","needlePivotStrokeThickness":"needlePivotStrokeThickness","needlePivotWidthRatio":"needlePivotWidthRatio","needlePointFeatureExtent":"needlePointFeatureExtent","needlePointFeatureWidthRatio":"needlePointFeatureWidthRatio","needleShape":"needleShape","needleStartExtent":"needleStartExtent","needleStartWidthRatio":"needleStartWidthRatio","needleStrokeThickness":"needleStrokeThickness","opticalScalingEnabled":"opticalScalingEnabled","opticalScalingRatio":"opticalScalingRatio","opticalScalingSize":"opticalScalingSize","pixelScalingRatio":"pixelScalingRatio","radiusMultiplier":"radiusMultiplier","rangeBrushes":"rangeBrushes","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBrush":"scaleBrush","scaleEndAngle":"scaleEndAngle","scaleEndExtent":"scaleEndExtent","scaleOversweep":"scaleOversweep","scaleOversweepShape":"scaleOversweepShape","scaleStartAngle":"scaleStartAngle","scaleStartExtent":"scaleStartExtent","scaleSweepDirection":"scaleSweepDirection","subtitleAngle":"subtitleAngle","subtitleBrush":"subtitleBrush","subtitleDisplaysValue":"subtitleDisplaysValue","subtitleExtent":"subtitleExtent","subtitleFormat":"subtitleFormat","subtitleFormatSpecifiers":"subtitleFormatSpecifiers","subtitleSnapsToNeedlePivot":"subtitleSnapsToNeedlePivot","subtitleText":"subtitleText","subtitleTextStyle":"subtitleTextStyle","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","titleAngle":"titleAngle","titleBrush":"titleBrush","titleDisplaysValue":"titleDisplaysValue","titleExtent":"titleExtent","titleFormat":"titleFormat","titleFormatSpecifiers":"titleFormatSpecifiers","titleSnapsToNeedlePivot":"titleSnapsToNeedlePivot","titleText":"titleText","titleTextStyle":"titleTextStyle","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width","containerResized":"containerResized","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getPointForValue":"getPointForValue","getValueForPoint":"getValueForPoint","highlightNeedleContainsPoint":"highlightNeedleContainsPoint","needleContainsPoint":"needleContainsPoint","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","provideContainer":"provideContainer","scaleValue":"scaleValue","styleUpdated":"styleUpdated","unscaleValue":"unscaleValue","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxRadialGaugeRangeCollection":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxRadialGaugeRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxRadialGaugeRangeComponent":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/classes/IgxRadialGaugeRangeComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_endValue":"ngAcceptInputType_endValue","ngAcceptInputType_innerEndExtent":"ngAcceptInputType_innerEndExtent","ngAcceptInputType_innerStartExtent":"ngAcceptInputType_innerStartExtent","ngAcceptInputType_outerEndExtent":"ngAcceptInputType_outerEndExtent","ngAcceptInputType_outerStartExtent":"ngAcceptInputType_outerStartExtent","ngAcceptInputType_startValue":"ngAcceptInputType_startValue","ngAcceptInputType_strokeThickness":"ngAcceptInputType_strokeThickness","ɵcmp":"ɵcmp","ɵfac":"ɵfac","brush":"brush","endValue":"endValue","i":"i","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","rangeInternal":"rangeInternal","startValue":"startValue","strokeThickness":"strokeThickness","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"LinearGraphNeedleShape":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/LinearGraphNeedleShape","k":"enum","s":"enums","m":{"Custom":"Custom","Needle":"Needle","Rectangle":"Rectangle","Trapezoid":"Trapezoid","Triangle":"Triangle"}}],"LinearScaleOrientation":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/LinearScaleOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"RadialGaugeBackingShape":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/RadialGaugeBackingShape","k":"enum","s":"enums","m":{"Circular":"Circular","Fitted":"Fitted"}}],"RadialGaugeDuplicateLabelOmissionStrategy":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/RadialGaugeDuplicateLabelOmissionStrategy","k":"enum","s":"enums","m":{"OmitBoth":"OmitBoth","OmitFirst":"OmitFirst","OmitLast":"OmitLast","OmitNeither":"OmitNeither"}}],"RadialGaugeNeedleShape":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/RadialGaugeNeedleShape","k":"enum","s":"enums","m":{"Needle":"Needle","NeedleWithBulb":"NeedleWithBulb","None":"None","Rectangle":"Rectangle","RectangleWithBulb":"RectangleWithBulb","Trapezoid":"Trapezoid","TrapezoidWithBulb":"TrapezoidWithBulb","Triangle":"Triangle","TriangleWithBulb":"TriangleWithBulb"}}],"RadialGaugePivotShape":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/RadialGaugePivotShape","k":"enum","s":"enums","m":{"Circle":"Circle","CircleOverlay":"CircleOverlay","CircleOverlayWithHole":"CircleOverlayWithHole","CircleUnderlay":"CircleUnderlay","CircleUnderlayWithHole":"CircleUnderlayWithHole","CircleWithHole":"CircleWithHole","None":"None"}}],"RadialGaugeScaleOversweepShape":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/RadialGaugeScaleOversweepShape","k":"enum","s":"enums","m":{"Auto":"Auto","Circular":"Circular","Fitted":"Fitted"}}],"TitlesPosition":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/enums/TitlesPosition","k":"enum","s":"enums","m":{"ScaleEnd":"ScaleEnd","ScaleStart":"ScaleStart"}}],"BulletGraphStylingDefaults":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/variables/BulletGraphStylingDefaults","k":"variable","s":"variables"}],"LinearGaugeStylingDefaults":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/variables/LinearGaugeStylingDefaults","k":"variable","s":"variables"}],"RadialGaugeStylingDefaults":[{"p":"igniteui-angular-gauges","u":"/api/angular/igniteui-angular-gauges/21.0.0/variables/RadialGaugeStylingDefaults","k":"variable","s":"variables"}],"IgxButtonClickEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxButtonClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxButtonGroupSelectionChangedEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxButtonGroupSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxCheckboxChangeEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxCheckboxChangeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isChecked":"ngAcceptInputType_isChecked","ngAcceptInputType_isIndeterminate":"ngAcceptInputType_isIndeterminate","isChecked":"isChecked","isIndeterminate":"isIndeterminate"}}],"IgxColorEditorComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxColorEditorComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_allowTextInput":"ngAcceptInputType_allowTextInput","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFixed":"ngAcceptInputType_isFixed","ngAcceptInputType_openAsChild":"ngAcceptInputType_openAsChild","ngAcceptInputType_openOnFocus":"ngAcceptInputType_openOnFocus","ngAcceptInputType_showClearButton":"ngAcceptInputType_showClearButton","ngAcceptInputType_useTopLayer":"ngAcceptInputType_useTopLayer","ɵcmp":"ɵcmp","ɵfac":"ɵfac","allowTextInput":"allowTextInput","baseTheme":"baseTheme","density":"density","gotFocus":"gotFocus","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","openAsChild":"openAsChild","openOnFocus":"openOnFocus","showClearButton":"showClearButton","textColor":"textColor","textStyle":"textStyle","useTopLayer":"useTopLayer","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","select":"select","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxColorEditorGotFocusEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxColorEditorGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxColorEditorLostFocusEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxColorEditorLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxColorEditorPanelClosedEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxColorEditorPanelClosedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxColorEditorPanelComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxColorEditorPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualPixelScalingRatio":"actualPixelScalingRatio","backgroundColor":"backgroundColor","baseTheme":"baseTheme","density":"density","focusColorBorderColor":"focusColorBorderColor","hoverBackgroundColor":"hoverBackgroundColor","pixelScalingRatio":"pixelScalingRatio","selectedColorBorderColor":"selectedColorBorderColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","textColor":"textColor","textStyle":"textStyle","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxColorEditorPanelSelectedValueChangedEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxColorEditorPanelSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxGotFocusEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxInputChangeEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxInputChangeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isCompositionInProgress":"ngAcceptInputType_isCompositionInProgress","isCompositionInProgress":"isCompositionInProgress","value":"value"}}],"IgxLostFocusEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxMultiSliderComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualPixelScalingRatio":"ngAcceptInputType_actualPixelScalingRatio","ngAcceptInputType_areThumbCalloutsEnabled":"ngAcceptInputType_areThumbCalloutsEnabled","ngAcceptInputType_barExtent":"ngAcceptInputType_barExtent","ngAcceptInputType_barStrokeThickness":"ngAcceptInputType_barStrokeThickness","ngAcceptInputType_calloutStrokeThickness":"ngAcceptInputType_calloutStrokeThickness","ngAcceptInputType_endInset":"ngAcceptInputType_endInset","ngAcceptInputType_isCustomBarProvided":"ngAcceptInputType_isCustomBarProvided","ngAcceptInputType_isCustomRangeThumbProvided":"ngAcceptInputType_isCustomRangeThumbProvided","ngAcceptInputType_isCustomShadeProvided":"ngAcceptInputType_isCustomShadeProvided","ngAcceptInputType_isCustomThumbProvided":"ngAcceptInputType_isCustomThumbProvided","ngAcceptInputType_max":"ngAcceptInputType_max","ngAcceptInputType_min":"ngAcceptInputType_min","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_pixelScalingRatio":"ngAcceptInputType_pixelScalingRatio","ngAcceptInputType_rangeThumbStrokeThickness":"ngAcceptInputType_rangeThumbStrokeThickness","ngAcceptInputType_startInset":"ngAcceptInputType_startInset","ngAcceptInputType_step":"ngAcceptInputType_step","ngAcceptInputType_thumbHeight":"ngAcceptInputType_thumbHeight","ngAcceptInputType_thumbs":"ngAcceptInputType_thumbs","ngAcceptInputType_thumbStrokeThickness":"ngAcceptInputType_thumbStrokeThickness","ngAcceptInputType_thumbWidth":"ngAcceptInputType_thumbWidth","ngAcceptInputType_trackEndInset":"ngAcceptInputType_trackEndInset","ngAcceptInputType_trackStartInset":"ngAcceptInputType_trackStartInset","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","ngAcceptInputType_yMax":"ngAcceptInputType_yMax","ngAcceptInputType_yMin":"ngAcceptInputType_yMin","ngAcceptInputType_yStep":"ngAcceptInputType_yStep","ngAcceptInputType_yTrackEndInset":"ngAcceptInputType_yTrackEndInset","ngAcceptInputType_yTrackStartInset":"ngAcceptInputType_yTrackStartInset","ngAcceptInputType_yValue":"ngAcceptInputType_yValue","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","calloutBrush":"calloutBrush","calloutOutline":"calloutOutline","calloutStrokeThickness":"calloutStrokeThickness","calloutTextColor":"calloutTextColor","endInset":"endInset","isCustomBarProvided":"isCustomBarProvided","isCustomRangeThumbProvided":"isCustomRangeThumbProvided","isCustomShadeProvided":"isCustomShadeProvided","isCustomThumbProvided":"isCustomThumbProvided","max":"max","min":"min","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingToolTipValue":"resolvingToolTipValue","startInset":"startInset","step":"step","thumbBrush":"thumbBrush","thumbCalloutTextStyle":"thumbCalloutTextStyle","thumbHeight":"thumbHeight","thumbOutline":"thumbOutline","thumbRidgesBrush":"thumbRidgesBrush","thumbs":"thumbs","thumbStrokeThickness":"thumbStrokeThickness","thumbValueChanged":"thumbValueChanged","thumbValueChanging":"thumbValueChanging","thumbWidth":"thumbWidth","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","windowRect":"windowRect","yMax":"yMax","yMin":"yMin","yStep":"yStep","yTrackEndInset":"yTrackEndInset","yTrackStartInset":"yTrackStartInset","yValue":"yValue","yValueChanged":"yValueChanged","yValueChanging":"yValueChanging","findByName":"findByName","flush":"flush","hide":"hide","ngOnInit":"ngOnInit","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","provideContainer":"provideContainer","show":"show","trackDirty":"trackDirty","_createFromInternal":"_createFromInternal"}}],"IgxMultiSliderResolvingToolTipValueEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderResolvingToolTipValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_position":"ngAcceptInputType_position","position":"position","value":"value"}}],"IgxMultiSliderThumb":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderThumb","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_rangePosition":"ngAcceptInputType_rangePosition","ngAcceptInputType_value":"ngAcceptInputType_value","propertyUpdated":"propertyUpdated","range":"range","rangePosition":"rangePosition","value":"value","findByName":"findByName","push":"push"}}],"IgxMultiSliderThumbCollection":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderThumbCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxMultiSliderThumbValueChangingEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderThumbValueChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_value":"ngAcceptInputType_value","thumb":"thumb","value":"value"}}],"IgxMultiSliderTrackThumbRange":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderTrackThumbRange","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_maxWidth":"ngAcceptInputType_maxWidth","ngAcceptInputType_minWidth":"ngAcceptInputType_minWidth","ngAcceptInputType_position":"ngAcceptInputType_position","ngAcceptInputType_width":"ngAcceptInputType_width","higherThumb":"higherThumb","lowerThumb":"lowerThumb","maxWidth":"maxWidth","minWidth":"minWidth","position":"position","width":"width","findByName":"findByName"}}],"IgxMultiSliderYValueChangingEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxMultiSliderYValueChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_value":"ngAcceptInputType_value","value":"value"}}],"IgxSelectedValueChangedEventArgs":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxXButtonComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXButtonComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualBorderWidth":"ngAcceptInputType_actualBorderWidth","ngAcceptInputType_actualCornerRadiusBottomLeft":"ngAcceptInputType_actualCornerRadiusBottomLeft","ngAcceptInputType_actualCornerRadiusBottomRight":"ngAcceptInputType_actualCornerRadiusBottomRight","ngAcceptInputType_actualCornerRadiusTopLeft":"ngAcceptInputType_actualCornerRadiusTopLeft","ngAcceptInputType_actualCornerRadiusTopRight":"ngAcceptInputType_actualCornerRadiusTopRight","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualDisabledElevation":"ngAcceptInputType_actualDisabledElevation","ngAcceptInputType_actualDisableRipple":"ngAcceptInputType_actualDisableRipple","ngAcceptInputType_actualElevationMode":"ngAcceptInputType_actualElevationMode","ngAcceptInputType_actualFocusElevation":"ngAcceptInputType_actualFocusElevation","ngAcceptInputType_actualHoverElevation":"ngAcceptInputType_actualHoverElevation","ngAcceptInputType_actualRestingElevation":"ngAcceptInputType_actualRestingElevation","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_borderWidth":"ngAcceptInputType_borderWidth","ngAcceptInputType_clickTunneling":"ngAcceptInputType_clickTunneling","ngAcceptInputType_contentPaddingBottom":"ngAcceptInputType_contentPaddingBottom","ngAcceptInputType_contentPaddingLeft":"ngAcceptInputType_contentPaddingLeft","ngAcceptInputType_contentPaddingRight":"ngAcceptInputType_contentPaddingRight","ngAcceptInputType_contentPaddingTop":"ngAcceptInputType_contentPaddingTop","ngAcceptInputType_cornerRadiusBottomLeft":"ngAcceptInputType_cornerRadiusBottomLeft","ngAcceptInputType_cornerRadiusBottomRight":"ngAcceptInputType_cornerRadiusBottomRight","ngAcceptInputType_cornerRadiusTopLeft":"ngAcceptInputType_cornerRadiusTopLeft","ngAcceptInputType_cornerRadiusTopRight":"ngAcceptInputType_cornerRadiusTopRight","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_disabledElevation":"ngAcceptInputType_disabledElevation","ngAcceptInputType_disableHover":"ngAcceptInputType_disableHover","ngAcceptInputType_disablePointer":"ngAcceptInputType_disablePointer","ngAcceptInputType_disableRipple":"ngAcceptInputType_disableRipple","ngAcceptInputType_disableTransitions":"ngAcceptInputType_disableTransitions","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_elevationMode":"ngAcceptInputType_elevationMode","ngAcceptInputType_fabBorderWidth":"ngAcceptInputType_fabBorderWidth","ngAcceptInputType_fabCornerRadiusBottomLeft":"ngAcceptInputType_fabCornerRadiusBottomLeft","ngAcceptInputType_fabCornerRadiusBottomRight":"ngAcceptInputType_fabCornerRadiusBottomRight","ngAcceptInputType_fabCornerRadiusTopLeft":"ngAcceptInputType_fabCornerRadiusTopLeft","ngAcceptInputType_fabCornerRadiusTopRight":"ngAcceptInputType_fabCornerRadiusTopRight","ngAcceptInputType_fabDisabledElevation":"ngAcceptInputType_fabDisabledElevation","ngAcceptInputType_fabFocusElevation":"ngAcceptInputType_fabFocusElevation","ngAcceptInputType_fabHoverElevation":"ngAcceptInputType_fabHoverElevation","ngAcceptInputType_fabRestingElevation":"ngAcceptInputType_fabRestingElevation","ngAcceptInputType_fillAvailableSpace":"ngAcceptInputType_fillAvailableSpace","ngAcceptInputType_flatBorderWidth":"ngAcceptInputType_flatBorderWidth","ngAcceptInputType_flatCornerRadiusBottomLeft":"ngAcceptInputType_flatCornerRadiusBottomLeft","ngAcceptInputType_flatCornerRadiusBottomRight":"ngAcceptInputType_flatCornerRadiusBottomRight","ngAcceptInputType_flatCornerRadiusTopLeft":"ngAcceptInputType_flatCornerRadiusTopLeft","ngAcceptInputType_flatCornerRadiusTopRight":"ngAcceptInputType_flatCornerRadiusTopRight","ngAcceptInputType_flatDisabledElevation":"ngAcceptInputType_flatDisabledElevation","ngAcceptInputType_flatFocusElevation":"ngAcceptInputType_flatFocusElevation","ngAcceptInputType_flatHoverElevation":"ngAcceptInputType_flatHoverElevation","ngAcceptInputType_flatRestingElevation":"ngAcceptInputType_flatRestingElevation","ngAcceptInputType_focused":"ngAcceptInputType_focused","ngAcceptInputType_focusElevation":"ngAcceptInputType_focusElevation","ngAcceptInputType_horizontalContentAlignment":"ngAcceptInputType_horizontalContentAlignment","ngAcceptInputType_hoverElevation":"ngAcceptInputType_hoverElevation","ngAcceptInputType_iconBorderWidth":"ngAcceptInputType_iconBorderWidth","ngAcceptInputType_iconCornerRadiusBottomLeft":"ngAcceptInputType_iconCornerRadiusBottomLeft","ngAcceptInputType_iconCornerRadiusBottomRight":"ngAcceptInputType_iconCornerRadiusBottomRight","ngAcceptInputType_iconCornerRadiusTopLeft":"ngAcceptInputType_iconCornerRadiusTopLeft","ngAcceptInputType_iconCornerRadiusTopRight":"ngAcceptInputType_iconCornerRadiusTopRight","ngAcceptInputType_iconDisabledElevation":"ngAcceptInputType_iconDisabledElevation","ngAcceptInputType_iconFocusElevation":"ngAcceptInputType_iconFocusElevation","ngAcceptInputType_iconHoverElevation":"ngAcceptInputType_iconHoverElevation","ngAcceptInputType_iconRestingElevation":"ngAcceptInputType_iconRestingElevation","ngAcceptInputType_isFocusStyleEnabled":"ngAcceptInputType_isFocusStyleEnabled","ngAcceptInputType_isHover":"ngAcceptInputType_isHover","ngAcceptInputType_minHeight":"ngAcceptInputType_minHeight","ngAcceptInputType_minWidth":"ngAcceptInputType_minWidth","ngAcceptInputType_outlinedBorderWidth":"ngAcceptInputType_outlinedBorderWidth","ngAcceptInputType_outlinedCornerRadiusBottomLeft":"ngAcceptInputType_outlinedCornerRadiusBottomLeft","ngAcceptInputType_outlinedCornerRadiusBottomRight":"ngAcceptInputType_outlinedCornerRadiusBottomRight","ngAcceptInputType_outlinedCornerRadiusTopLeft":"ngAcceptInputType_outlinedCornerRadiusTopLeft","ngAcceptInputType_outlinedCornerRadiusTopRight":"ngAcceptInputType_outlinedCornerRadiusTopRight","ngAcceptInputType_outlinedDisabledElevation":"ngAcceptInputType_outlinedDisabledElevation","ngAcceptInputType_outlinedFocusElevation":"ngAcceptInputType_outlinedFocusElevation","ngAcceptInputType_outlinedHoverElevation":"ngAcceptInputType_outlinedHoverElevation","ngAcceptInputType_outlinedRestingElevation":"ngAcceptInputType_outlinedRestingElevation","ngAcceptInputType_raisedBorderWidth":"ngAcceptInputType_raisedBorderWidth","ngAcceptInputType_raisedCornerRadiusBottomLeft":"ngAcceptInputType_raisedCornerRadiusBottomLeft","ngAcceptInputType_raisedCornerRadiusBottomRight":"ngAcceptInputType_raisedCornerRadiusBottomRight","ngAcceptInputType_raisedCornerRadiusTopLeft":"ngAcceptInputType_raisedCornerRadiusTopLeft","ngAcceptInputType_raisedCornerRadiusTopRight":"ngAcceptInputType_raisedCornerRadiusTopRight","ngAcceptInputType_raisedDisabledElevation":"ngAcceptInputType_raisedDisabledElevation","ngAcceptInputType_raisedFocusElevation":"ngAcceptInputType_raisedFocusElevation","ngAcceptInputType_raisedHoverElevation":"ngAcceptInputType_raisedHoverElevation","ngAcceptInputType_raisedRestingElevation":"ngAcceptInputType_raisedRestingElevation","ngAcceptInputType_restingElevation":"ngAcceptInputType_restingElevation","ngAcceptInputType_stopPropagation":"ngAcceptInputType_stopPropagation","ngAcceptInputType_tabIndex":"ngAcceptInputType_tabIndex","ngAcceptInputType_verticalContentAlignment":"ngAcceptInputType_verticalContentAlignment","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAmbientShadowColor":"actualAmbientShadowColor","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualDisabledBackgroundColor":"actualDisabledBackgroundColor","actualDisabledBorderColor":"actualDisabledBorderColor","actualDisabledElevation":"actualDisabledElevation","actualDisabledTextColor":"actualDisabledTextColor","actualDisableRipple":"actualDisableRipple","actualElevationMode":"actualElevationMode","actualFocusBackgroundColor":"actualFocusBackgroundColor","actualFocusElevation":"actualFocusElevation","actualFocusTextColor":"actualFocusTextColor","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualHoverElevation":"actualHoverElevation","actualHoverTextColor":"actualHoverTextColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualRestingElevation":"actualRestingElevation","actualRippleColor":"actualRippleColor","actualTextColor":"actualTextColor","actualUmbraShadowColor":"actualUmbraShadowColor","alignItems":"alignItems","ariaLabel":"ariaLabel","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","clicked":"clicked","clickTunneling":"clickTunneling","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","disabledBackgroundColor":"disabledBackgroundColor","disabledBorderColor":"disabledBorderColor","disabledElevation":"disabledElevation","disabledTextColor":"disabledTextColor","disableHover":"disableHover","disablePointer":"disablePointer","disableRipple":"disableRipple","disableTransitions":"disableTransitions","display":"display","displayType":"displayType","elevationMode":"elevationMode","fabBackgroundColor":"fabBackgroundColor","fabBorderColor":"fabBorderColor","fabBorderWidth":"fabBorderWidth","fabCornerRadiusBottomLeft":"fabCornerRadiusBottomLeft","fabCornerRadiusBottomRight":"fabCornerRadiusBottomRight","fabCornerRadiusTopLeft":"fabCornerRadiusTopLeft","fabCornerRadiusTopRight":"fabCornerRadiusTopRight","fabDisabledBackgroundColor":"fabDisabledBackgroundColor","fabDisabledBorderColor":"fabDisabledBorderColor","fabDisabledElevation":"fabDisabledElevation","fabDisabledTextColor":"fabDisabledTextColor","fabFocusBackgroundColor":"fabFocusBackgroundColor","fabFocusElevation":"fabFocusElevation","fabFocusTextColor":"fabFocusTextColor","fabHoverBackgroundColor":"fabHoverBackgroundColor","fabHoverElevation":"fabHoverElevation","fabHoverTextColor":"fabHoverTextColor","fabRestingElevation":"fabRestingElevation","fabRippleColor":"fabRippleColor","fabTextColor":"fabTextColor","fillAvailableSpace":"fillAvailableSpace","flatBackgroundColor":"flatBackgroundColor","flatBorderColor":"flatBorderColor","flatBorderWidth":"flatBorderWidth","flatCornerRadiusBottomLeft":"flatCornerRadiusBottomLeft","flatCornerRadiusBottomRight":"flatCornerRadiusBottomRight","flatCornerRadiusTopLeft":"flatCornerRadiusTopLeft","flatCornerRadiusTopRight":"flatCornerRadiusTopRight","flatDisabledBackgroundColor":"flatDisabledBackgroundColor","flatDisabledBorderColor":"flatDisabledBorderColor","flatDisabledElevation":"flatDisabledElevation","flatDisabledTextColor":"flatDisabledTextColor","flatFocusBackgroundColor":"flatFocusBackgroundColor","flatFocusElevation":"flatFocusElevation","flatFocusTextColor":"flatFocusTextColor","flatHoverBackgroundColor":"flatHoverBackgroundColor","flatHoverElevation":"flatHoverElevation","flatHoverTextColor":"flatHoverTextColor","flatRestingElevation":"flatRestingElevation","flatRippleColor":"flatRippleColor","flatTextColor":"flatTextColor","flexDirection":"flexDirection","flexGrow":"flexGrow","focusBackgroundColor":"focusBackgroundColor","focused":"focused","focusElevation":"focusElevation","focusTextColor":"focusTextColor","gotFocus":"gotFocus","horizontalContentAlignment":"horizontalContentAlignment","hoverBackgroundColor":"hoverBackgroundColor","hoverElevation":"hoverElevation","hoverTextColor":"hoverTextColor","iconBackgroundColor":"iconBackgroundColor","iconBorderColor":"iconBorderColor","iconBorderWidth":"iconBorderWidth","iconCornerRadiusBottomLeft":"iconCornerRadiusBottomLeft","iconCornerRadiusBottomRight":"iconCornerRadiusBottomRight","iconCornerRadiusTopLeft":"iconCornerRadiusTopLeft","iconCornerRadiusTopRight":"iconCornerRadiusTopRight","iconDisabledBackgroundColor":"iconDisabledBackgroundColor","iconDisabledBorderColor":"iconDisabledBorderColor","iconDisabledElevation":"iconDisabledElevation","iconDisabledTextColor":"iconDisabledTextColor","iconFocusBackgroundColor":"iconFocusBackgroundColor","iconFocusElevation":"iconFocusElevation","iconFocusTextColor":"iconFocusTextColor","iconHoverBackgroundColor":"iconHoverBackgroundColor","iconHoverElevation":"iconHoverElevation","iconHoverTextColor":"iconHoverTextColor","iconRestingElevation":"iconRestingElevation","iconRippleColor":"iconRippleColor","iconTextColor":"iconTextColor","id":"id","inputId":"inputId","isFocusStyleEnabled":"isFocusStyleEnabled","isHover":"isHover","lostFocus":"lostFocus","minHeight":"minHeight","minWidth":"minWidth","name":"name","outlinedBackgroundColor":"outlinedBackgroundColor","outlinedBorderColor":"outlinedBorderColor","outlinedBorderWidth":"outlinedBorderWidth","outlinedCornerRadiusBottomLeft":"outlinedCornerRadiusBottomLeft","outlinedCornerRadiusBottomRight":"outlinedCornerRadiusBottomRight","outlinedCornerRadiusTopLeft":"outlinedCornerRadiusTopLeft","outlinedCornerRadiusTopRight":"outlinedCornerRadiusTopRight","outlinedDisabledBackgroundColor":"outlinedDisabledBackgroundColor","outlinedDisabledBorderColor":"outlinedDisabledBorderColor","outlinedDisabledElevation":"outlinedDisabledElevation","outlinedDisabledTextColor":"outlinedDisabledTextColor","outlinedFocusBackgroundColor":"outlinedFocusBackgroundColor","outlinedFocusElevation":"outlinedFocusElevation","outlinedFocusTextColor":"outlinedFocusTextColor","outlinedHoverBackgroundColor":"outlinedHoverBackgroundColor","outlinedHoverElevation":"outlinedHoverElevation","outlinedHoverTextColor":"outlinedHoverTextColor","outlinedRestingElevation":"outlinedRestingElevation","outlinedRippleColor":"outlinedRippleColor","outlinedTextColor":"outlinedTextColor","raisedBackgroundColor":"raisedBackgroundColor","raisedBorderColor":"raisedBorderColor","raisedBorderWidth":"raisedBorderWidth","raisedCornerRadiusBottomLeft":"raisedCornerRadiusBottomLeft","raisedCornerRadiusBottomRight":"raisedCornerRadiusBottomRight","raisedCornerRadiusTopLeft":"raisedCornerRadiusTopLeft","raisedCornerRadiusTopRight":"raisedCornerRadiusTopRight","raisedDisabledBackgroundColor":"raisedDisabledBackgroundColor","raisedDisabledBorderColor":"raisedDisabledBorderColor","raisedDisabledElevation":"raisedDisabledElevation","raisedDisabledTextColor":"raisedDisabledTextColor","raisedFocusBackgroundColor":"raisedFocusBackgroundColor","raisedFocusElevation":"raisedFocusElevation","raisedFocusTextColor":"raisedFocusTextColor","raisedHoverBackgroundColor":"raisedHoverBackgroundColor","raisedHoverElevation":"raisedHoverElevation","raisedHoverTextColor":"raisedHoverTextColor","raisedRestingElevation":"raisedRestingElevation","raisedRippleColor":"raisedRippleColor","raisedTextColor":"raisedTextColor","restingElevation":"restingElevation","rippleColor":"rippleColor","stopPropagation":"stopPropagation","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","value":"value","verticalContentAlignment":"verticalContentAlignment","ensureActualCornerRadius":"ensureActualCornerRadius","ensureCornerRadius":"ensureCornerRadius","ensureFabCornerRadius":"ensureFabCornerRadius","ensureFlatCornerRadius":"ensureFlatCornerRadius","ensureIconCornerRadius":"ensureIconCornerRadius","ensureOutlinedCornerRadius":"ensureOutlinedCornerRadius","ensureRaisedCornerRadius":"ensureRaisedCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxXButtonGroupButtonCollection":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXButtonGroupButtonCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxXButtonGroupComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXButtonGroupComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","actualButtons":"actualButtons","container":"container","contentButtons":"contentButtons","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualItemBorderWidth":"ngAcceptInputType_actualItemBorderWidth","ngAcceptInputType_actualItemCornerRadius":"ngAcceptInputType_actualItemCornerRadius","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_flatItemBorderWidth":"ngAcceptInputType_flatItemBorderWidth","ngAcceptInputType_flatItemCornerRadius":"ngAcceptInputType_flatItemCornerRadius","ngAcceptInputType_isMultiSelect":"ngAcceptInputType_isMultiSelect","ngAcceptInputType_itemBorderWidth":"ngAcceptInputType_itemBorderWidth","ngAcceptInputType_itemCornerRadius":"ngAcceptInputType_itemCornerRadius","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_outlinedItemBorderWidth":"ngAcceptInputType_outlinedItemBorderWidth","ngAcceptInputType_outlinedItemCornerRadius":"ngAcceptInputType_outlinedItemCornerRadius","ngAcceptInputType_selectedIndices":"ngAcceptInputType_selectedIndices","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualDensity":"actualDensity","actualItemBackgroundColor":"actualItemBackgroundColor","actualItemBorderColor":"actualItemBorderColor","actualItemBorderWidth":"actualItemBorderWidth","actualItemCornerRadius":"actualItemCornerRadius","actualItemDisabledBackgroundColor":"actualItemDisabledBackgroundColor","actualItemDisabledBorderColor":"actualItemDisabledBorderColor","actualItemDisabledTextColor":"actualItemDisabledTextColor","actualItemHoverBackgroundColor":"actualItemHoverBackgroundColor","actualItemHoverTextColor":"actualItemHoverTextColor","actualItemTextColor":"actualItemTextColor","actualSelectedItemBackgroundColor":"actualSelectedItemBackgroundColor","actualSelectedItemHoverBackgroundColor":"actualSelectedItemHoverBackgroundColor","actualSelectedItemHoverTextColor":"actualSelectedItemHoverTextColor","actualSelectedItemTextColor":"actualSelectedItemTextColor","baseTheme":"baseTheme","buttons":"buttons","density":"density","disabled":"disabled","displayType":"displayType","flatItemBackgroundColor":"flatItemBackgroundColor","flatItemBorderColor":"flatItemBorderColor","flatItemBorderWidth":"flatItemBorderWidth","flatItemCornerRadius":"flatItemCornerRadius","flatItemDisabledBackgroundColor":"flatItemDisabledBackgroundColor","flatItemDisabledBorderColor":"flatItemDisabledBorderColor","flatItemDisabledTextColor":"flatItemDisabledTextColor","flatItemHoverBackgroundColor":"flatItemHoverBackgroundColor","flatItemHoverTextColor":"flatItemHoverTextColor","flatItemTextColor":"flatItemTextColor","flatSelectedItemBackgroundColor":"flatSelectedItemBackgroundColor","flatSelectedItemHoverBackgroundColor":"flatSelectedItemHoverBackgroundColor","flatSelectedItemHoverTextColor":"flatSelectedItemHoverTextColor","flatSelectedItemTextColor":"flatSelectedItemTextColor","i":"i","id":"id","isMultiSelect":"isMultiSelect","itemBackgroundColor":"itemBackgroundColor","itemBorderColor":"itemBorderColor","itemBorderWidth":"itemBorderWidth","itemCornerRadius":"itemCornerRadius","itemDisabledBackgroundColor":"itemDisabledBackgroundColor","itemDisabledBorderColor":"itemDisabledBorderColor","itemDisabledTextColor":"itemDisabledTextColor","itemHoverBackgroundColor":"itemHoverBackgroundColor","itemHoverTextColor":"itemHoverTextColor","itemTextColor":"itemTextColor","orientation":"orientation","outlinedItemBackgroundColor":"outlinedItemBackgroundColor","outlinedItemBorderColor":"outlinedItemBorderColor","outlinedItemBorderWidth":"outlinedItemBorderWidth","outlinedItemCornerRadius":"outlinedItemCornerRadius","outlinedItemDisabledBackgroundColor":"outlinedItemDisabledBackgroundColor","outlinedItemDisabledBorderColor":"outlinedItemDisabledBorderColor","outlinedItemDisabledTextColor":"outlinedItemDisabledTextColor","outlinedItemHoverBackgroundColor":"outlinedItemHoverBackgroundColor","outlinedItemHoverTextColor":"outlinedItemHoverTextColor","outlinedItemTextColor":"outlinedItemTextColor","outlinedSelectedItemBackgroundColor":"outlinedSelectedItemBackgroundColor","outlinedSelectedItemHoverBackgroundColor":"outlinedSelectedItemHoverBackgroundColor","outlinedSelectedItemHoverTextColor":"outlinedSelectedItemHoverTextColor","outlinedSelectedItemTextColor":"outlinedSelectedItemTextColor","selectedIndices":"selectedIndices","selectedItemBackgroundColor":"selectedItemBackgroundColor","selectedItemHoverBackgroundColor":"selectedItemHoverBackgroundColor","selectedItemHoverTextColor":"selectedItemHoverTextColor","selectedItemTextColor":"selectedItemTextColor","selectionChanged":"selectionChanged","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle"}}],"IgxXCalendarComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXCalendarComponent","k":"class","s":"classes","m":{"constructor":"constructor","_calendarContainer":"_calendarContainer","container":"container","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_firstDayOfWeek":"ngAcceptInputType_firstDayOfWeek","ngAcceptInputType_firstWeekOfYear":"ngAcceptInputType_firstWeekOfYear","ngAcceptInputType_showTodayButton":"ngAcceptInputType_showTodayButton","ngAcceptInputType_showWeekNumbers":"ngAcceptInputType_showWeekNumbers","ɵcmp":"ɵcmp","ɵfac":"ɵfac","backgroundColor":"backgroundColor","baseTheme":"baseTheme","currentDateBorderColor":"currentDateBorderColor","currentDateTextColor":"currentDateTextColor","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","focusDateBackgroundColor":"focusDateBackgroundColor","focusDateTextColor":"focusDateTextColor","height":"height","hoverBackgroundColor":"hoverBackgroundColor","i":"i","maxDate":"maxDate","minDate":"minDate","selectedDateBackgroundColor":"selectedDateBackgroundColor","selectedDateTextColor":"selectedDateTextColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","selectedValueChanged":"selectedValueChanged","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","value":"value","valueChange":"valueChange","width":"width","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","updateStyle":"updateStyle"}}],"IgxXCheckboxComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXCheckboxComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualBorderWidth":"ngAcceptInputType_actualBorderWidth","ngAcceptInputType_actualCornerRadius":"ngAcceptInputType_actualCornerRadius","ngAcceptInputType_actualTickStrokeWidth":"ngAcceptInputType_actualTickStrokeWidth","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_borderWidth":"ngAcceptInputType_borderWidth","ngAcceptInputType_checked":"ngAcceptInputType_checked","ngAcceptInputType_cornerRadius":"ngAcceptInputType_cornerRadius","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_disableRipple":"ngAcceptInputType_disableRipple","ngAcceptInputType_disableTransitions":"ngAcceptInputType_disableTransitions","ngAcceptInputType_focused":"ngAcceptInputType_focused","ngAcceptInputType_indeterminate":"ngAcceptInputType_indeterminate","ngAcceptInputType_labelPosition":"ngAcceptInputType_labelPosition","ngAcceptInputType_required":"ngAcceptInputType_required","ngAcceptInputType_tabIndex":"ngAcceptInputType_tabIndex","ngAcceptInputType_tickStrokeWidth":"ngAcceptInputType_tickStrokeWidth","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBorderWidth":"actualBorderWidth","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualCornerRadius":"actualCornerRadius","actualTickColor":"actualTickColor","actualTickStrokeWidth":"actualTickStrokeWidth","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","ariaLabel":"ariaLabel","ariaLabelledBy":"ariaLabelledBy","baseTheme":"baseTheme","borderWidth":"borderWidth","change":"change","checked":"checked","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","cornerRadius":"cornerRadius","disabled":"disabled","disableRipple":"disableRipple","disableTransitions":"disableTransitions","focused":"focused","i":"i","id":"id","indeterminate":"indeterminate","inputId":"inputId","labelId":"labelId","labelPosition":"labelPosition","name":"name","required":"required","tabIndex":"tabIndex","tickColor":"tickColor","tickStrokeWidth":"tickStrokeWidth","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","value":"value","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle"}}],"IgxXDatePickerComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXDatePickerComponent","k":"class","s":"classes","m":{"constructor":"constructor","_datePickerContainer":"_datePickerContainer","container":"container","ngAcceptInputType_allowTextInput":"ngAcceptInputType_allowTextInput","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_dateFormat":"ngAcceptInputType_dateFormat","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_firstDayOfWeek":"ngAcceptInputType_firstDayOfWeek","ngAcceptInputType_firstWeekOfYear":"ngAcceptInputType_firstWeekOfYear","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isFixed":"ngAcceptInputType_isFixed","ngAcceptInputType_openAsChild":"ngAcceptInputType_openAsChild","ngAcceptInputType_openOnFocus":"ngAcceptInputType_openOnFocus","ngAcceptInputType_showClearButton":"ngAcceptInputType_showClearButton","ngAcceptInputType_showTodayButton":"ngAcceptInputType_showTodayButton","ngAcceptInputType_showWeekNumbers":"ngAcceptInputType_showWeekNumbers","ngAcceptInputType_useTopLayer":"ngAcceptInputType_useTopLayer","ɵcmp":"ɵcmp","ɵfac":"ɵfac","allowTextInput":"allowTextInput","baseTheme":"baseTheme","changing":"changing","dateFormat":"dateFormat","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","formatString":"formatString","gotFocus":"gotFocus","height":"height","i":"i","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","maxDate":"maxDate","minDate":"minDate","openAsChild":"openAsChild","openOnFocus":"openOnFocus","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","showClearButton":"showClearButton","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","useTopLayer":"useTopLayer","value":"value","valueChange":"valueChange","width":"width","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","select":"select","updateStyle":"updateStyle"}}],"IgxXIconComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXIconComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualStrokeWidth":"ngAcceptInputType_actualStrokeWidth","ngAcceptInputType_actualViewBoxHeight":"ngAcceptInputType_actualViewBoxHeight","ngAcceptInputType_actualViewBoxLeft":"ngAcceptInputType_actualViewBoxLeft","ngAcceptInputType_actualViewBoxTop":"ngAcceptInputType_actualViewBoxTop","ngAcceptInputType_actualViewBoxWidth":"ngAcceptInputType_actualViewBoxWidth","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_fillColors":"ngAcceptInputType_fillColors","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_hoverStrokeThickness":"ngAcceptInputType_hoverStrokeThickness","ngAcceptInputType_isHover":"ngAcceptInputType_isHover","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_strokeColors":"ngAcceptInputType_strokeColors","ngAcceptInputType_strokeWidth":"ngAcceptInputType_strokeWidth","ngAcceptInputType_sVGPaths":"ngAcceptInputType_sVGPaths","ngAcceptInputType_tabIndex":"ngAcceptInputType_tabIndex","ngAcceptInputType_viewBoxHeight":"ngAcceptInputType_viewBoxHeight","ngAcceptInputType_viewBoxLeft":"ngAcceptInputType_viewBoxLeft","ngAcceptInputType_viewBoxTop":"ngAcceptInputType_viewBoxTop","ngAcceptInputType_viewBoxWidth":"ngAcceptInputType_viewBoxWidth","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualFill":"actualFill","actualStroke":"actualStroke","actualStrokeWidth":"actualStrokeWidth","actualTextColor":"actualTextColor","actualViewBoxHeight":"actualViewBoxHeight","actualViewBoxLeft":"actualViewBoxLeft","actualViewBoxTop":"actualViewBoxTop","actualViewBoxWidth":"actualViewBoxWidth","ariaLabel":"ariaLabel","baseTheme":"baseTheme","dataURL":"dataURL","disabled":"disabled","fill":"fill","fillColors":"fillColors","height":"height","hoverFill":"hoverFill","hoverStroke":"hoverStroke","hoverStrokeThickness":"hoverStrokeThickness","hoverTextColor":"hoverTextColor","i":"i","id":"id","isHover":"isHover","opacity":"opacity","primaryFillColor":"primaryFillColor","primaryStrokeColor":"primaryStrokeColor","secondaryFillColor":"secondaryFillColor","secondaryStrokeColor":"secondaryStrokeColor","source":"source","stroke":"stroke","strokeColors":"strokeColors","strokeWidth":"strokeWidth","svg":"svg","svgPath":"svgPath","sVGPaths":"sVGPaths","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","viewBoxHeight":"viewBoxHeight","viewBoxLeft":"viewBoxLeft","viewBoxTop":"viewBoxTop","viewBoxWidth":"viewBoxWidth","width":"width","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle"}}],"IgxXInputComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXInputComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_hasValue":"ngAcceptInputType_hasValue","ngAcceptInputType_includeLiterals":"ngAcceptInputType_includeLiterals","ngAcceptInputType_isHover":"ngAcceptInputType_isHover","ngAcceptInputType_readonly":"ngAcceptInputType_readonly","ngAcceptInputType_selectionEnd":"ngAcceptInputType_selectionEnd","ngAcceptInputType_selectionStart":"ngAcceptInputType_selectionStart","ngAcceptInputType_showSpinner":"ngAcceptInputType_showSpinner","ngAcceptInputType_tabIndex":"ngAcceptInputType_tabIndex","ngAcceptInputType_textAlignment":"ngAcceptInputType_textAlignment","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualDensity":"actualDensity","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","ariaLabel":"ariaLabel","baseTheme":"baseTheme","change":"change","changing":"changing","compositionEnd":"compositionEnd","density":"density","disabled":"disabled","for":"for","hasValue":"hasValue","hoverTextColor":"hoverTextColor","id":"id","includeLiterals":"includeLiterals","inputType":"inputType","isHover":"isHover","keyDown":"keyDown","keyPress":"keyPress","keyUp":"keyUp","mask":"mask","name":"name","placeholder":"placeholder","promptChar":"promptChar","readonly":"readonly","selectionEnd":"selectionEnd","selectionStart":"selectionStart","showSpinner":"showSpinner","tabIndex":"tabIndex","textAlignment":"textAlignment","textColor":"textColor","textStyle":"textStyle","value":"value","blur":"blur","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","select":"select","setSelectionRange":"setSelectionRange","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxXInputGroupComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXInputGroupComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","actualInputs":"actualInputs","container":"container","contentInputs":"contentInputs","ngAcceptInputType_actualBorderWidth":"ngAcceptInputType_actualBorderWidth","ngAcceptInputType_actualContentPaddingBottom":"ngAcceptInputType_actualContentPaddingBottom","ngAcceptInputType_actualContentPaddingLeft":"ngAcceptInputType_actualContentPaddingLeft","ngAcceptInputType_actualContentPaddingRight":"ngAcceptInputType_actualContentPaddingRight","ngAcceptInputType_actualContentPaddingTop":"ngAcceptInputType_actualContentPaddingTop","ngAcceptInputType_actualCornerRadiusBottomLeft":"ngAcceptInputType_actualCornerRadiusBottomLeft","ngAcceptInputType_actualCornerRadiusBottomRight":"ngAcceptInputType_actualCornerRadiusBottomRight","ngAcceptInputType_actualCornerRadiusTopLeft":"ngAcceptInputType_actualCornerRadiusTopLeft","ngAcceptInputType_actualCornerRadiusTopRight":"ngAcceptInputType_actualCornerRadiusTopRight","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualFocusBorderWidth":"ngAcceptInputType_actualFocusBorderWidth","ngAcceptInputType_actualFocusUnderlineOpacity":"ngAcceptInputType_actualFocusUnderlineOpacity","ngAcceptInputType_actualFocusUnderlineRippleOpacity":"ngAcceptInputType_actualFocusUnderlineRippleOpacity","ngAcceptInputType_actualHoverUnderlineOpacity":"ngAcceptInputType_actualHoverUnderlineOpacity","ngAcceptInputType_actualHoverUnderlineWidth":"ngAcceptInputType_actualHoverUnderlineWidth","ngAcceptInputType_actualIsExpanded":"ngAcceptInputType_actualIsExpanded","ngAcceptInputType_actualUnderlineOpacity":"ngAcceptInputType_actualUnderlineOpacity","ngAcceptInputType_actualUnderlineRippleOpacity":"ngAcceptInputType_actualUnderlineRippleOpacity","ngAcceptInputType_actualUnderlineRippleWidth":"ngAcceptInputType_actualUnderlineRippleWidth","ngAcceptInputType_actualUnderlineWidth":"ngAcceptInputType_actualUnderlineWidth","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_borderTypeBorderWidth":"ngAcceptInputType_borderTypeBorderWidth","ngAcceptInputType_borderTypeContentPaddingBottom":"ngAcceptInputType_borderTypeContentPaddingBottom","ngAcceptInputType_borderTypeContentPaddingLeft":"ngAcceptInputType_borderTypeContentPaddingLeft","ngAcceptInputType_borderTypeContentPaddingRight":"ngAcceptInputType_borderTypeContentPaddingRight","ngAcceptInputType_borderTypeContentPaddingTop":"ngAcceptInputType_borderTypeContentPaddingTop","ngAcceptInputType_borderTypeCornerRadiusBottomLeft":"ngAcceptInputType_borderTypeCornerRadiusBottomLeft","ngAcceptInputType_borderTypeCornerRadiusBottomRight":"ngAcceptInputType_borderTypeCornerRadiusBottomRight","ngAcceptInputType_borderTypeCornerRadiusTopLeft":"ngAcceptInputType_borderTypeCornerRadiusTopLeft","ngAcceptInputType_borderTypeCornerRadiusTopRight":"ngAcceptInputType_borderTypeCornerRadiusTopRight","ngAcceptInputType_borderTypeFocusBorderWidth":"ngAcceptInputType_borderTypeFocusBorderWidth","ngAcceptInputType_borderTypeFocusUnderlineOpacity":"ngAcceptInputType_borderTypeFocusUnderlineOpacity","ngAcceptInputType_borderTypeFocusUnderlineRippleOpacity":"ngAcceptInputType_borderTypeFocusUnderlineRippleOpacity","ngAcceptInputType_borderTypeHoverUnderlineOpacity":"ngAcceptInputType_borderTypeHoverUnderlineOpacity","ngAcceptInputType_borderTypeHoverUnderlineWidth":"ngAcceptInputType_borderTypeHoverUnderlineWidth","ngAcceptInputType_borderTypeUnderlineOpacity":"ngAcceptInputType_borderTypeUnderlineOpacity","ngAcceptInputType_borderTypeUnderlineRippleOpacity":"ngAcceptInputType_borderTypeUnderlineRippleOpacity","ngAcceptInputType_borderTypeUnderlineRippleWidth":"ngAcceptInputType_borderTypeUnderlineRippleWidth","ngAcceptInputType_borderTypeUnderlineWidth":"ngAcceptInputType_borderTypeUnderlineWidth","ngAcceptInputType_borderWidth":"ngAcceptInputType_borderWidth","ngAcceptInputType_boxTypeBorderWidth":"ngAcceptInputType_boxTypeBorderWidth","ngAcceptInputType_boxTypeContentPaddingBottom":"ngAcceptInputType_boxTypeContentPaddingBottom","ngAcceptInputType_boxTypeContentPaddingLeft":"ngAcceptInputType_boxTypeContentPaddingLeft","ngAcceptInputType_boxTypeContentPaddingRight":"ngAcceptInputType_boxTypeContentPaddingRight","ngAcceptInputType_boxTypeContentPaddingTop":"ngAcceptInputType_boxTypeContentPaddingTop","ngAcceptInputType_boxTypeCornerRadiusBottomLeft":"ngAcceptInputType_boxTypeCornerRadiusBottomLeft","ngAcceptInputType_boxTypeCornerRadiusBottomRight":"ngAcceptInputType_boxTypeCornerRadiusBottomRight","ngAcceptInputType_boxTypeCornerRadiusTopLeft":"ngAcceptInputType_boxTypeCornerRadiusTopLeft","ngAcceptInputType_boxTypeCornerRadiusTopRight":"ngAcceptInputType_boxTypeCornerRadiusTopRight","ngAcceptInputType_boxTypeFocusBorderWidth":"ngAcceptInputType_boxTypeFocusBorderWidth","ngAcceptInputType_boxTypeFocusUnderlineOpacity":"ngAcceptInputType_boxTypeFocusUnderlineOpacity","ngAcceptInputType_boxTypeFocusUnderlineRippleOpacity":"ngAcceptInputType_boxTypeFocusUnderlineRippleOpacity","ngAcceptInputType_boxTypeHoverUnderlineOpacity":"ngAcceptInputType_boxTypeHoverUnderlineOpacity","ngAcceptInputType_boxTypeHoverUnderlineWidth":"ngAcceptInputType_boxTypeHoverUnderlineWidth","ngAcceptInputType_boxTypeUnderlineOpacity":"ngAcceptInputType_boxTypeUnderlineOpacity","ngAcceptInputType_boxTypeUnderlineRippleOpacity":"ngAcceptInputType_boxTypeUnderlineRippleOpacity","ngAcceptInputType_boxTypeUnderlineRippleWidth":"ngAcceptInputType_boxTypeUnderlineRippleWidth","ngAcceptInputType_boxTypeUnderlineWidth":"ngAcceptInputType_boxTypeUnderlineWidth","ngAcceptInputType_contentPaddingBottom":"ngAcceptInputType_contentPaddingBottom","ngAcceptInputType_contentPaddingLeft":"ngAcceptInputType_contentPaddingLeft","ngAcceptInputType_contentPaddingRight":"ngAcceptInputType_contentPaddingRight","ngAcceptInputType_contentPaddingTop":"ngAcceptInputType_contentPaddingTop","ngAcceptInputType_cornerRadiusBottomLeft":"ngAcceptInputType_cornerRadiusBottomLeft","ngAcceptInputType_cornerRadiusBottomRight":"ngAcceptInputType_cornerRadiusBottomRight","ngAcceptInputType_cornerRadiusTopLeft":"ngAcceptInputType_cornerRadiusTopLeft","ngAcceptInputType_cornerRadiusTopRight":"ngAcceptInputType_cornerRadiusTopRight","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_focusBorderWidth":"ngAcceptInputType_focusBorderWidth","ngAcceptInputType_focusUnderlineOpacity":"ngAcceptInputType_focusUnderlineOpacity","ngAcceptInputType_focusUnderlineRippleOpacity":"ngAcceptInputType_focusUnderlineRippleOpacity","ngAcceptInputType_hoverUnderlineOpacity":"ngAcceptInputType_hoverUnderlineOpacity","ngAcceptInputType_hoverUnderlineWidth":"ngAcceptInputType_hoverUnderlineWidth","ngAcceptInputType_inputHasValue":"ngAcceptInputType_inputHasValue","ngAcceptInputType_isExpanded":"ngAcceptInputType_isExpanded","ngAcceptInputType_isFocused":"ngAcceptInputType_isFocused","ngAcceptInputType_isHovered":"ngAcceptInputType_isHovered","ngAcceptInputType_lineTypeBorderWidth":"ngAcceptInputType_lineTypeBorderWidth","ngAcceptInputType_lineTypeContentPaddingBottom":"ngAcceptInputType_lineTypeContentPaddingBottom","ngAcceptInputType_lineTypeContentPaddingLeft":"ngAcceptInputType_lineTypeContentPaddingLeft","ngAcceptInputType_lineTypeContentPaddingRight":"ngAcceptInputType_lineTypeContentPaddingRight","ngAcceptInputType_lineTypeContentPaddingTop":"ngAcceptInputType_lineTypeContentPaddingTop","ngAcceptInputType_lineTypeCornerRadiusBottomLeft":"ngAcceptInputType_lineTypeCornerRadiusBottomLeft","ngAcceptInputType_lineTypeCornerRadiusBottomRight":"ngAcceptInputType_lineTypeCornerRadiusBottomRight","ngAcceptInputType_lineTypeCornerRadiusTopLeft":"ngAcceptInputType_lineTypeCornerRadiusTopLeft","ngAcceptInputType_lineTypeCornerRadiusTopRight":"ngAcceptInputType_lineTypeCornerRadiusTopRight","ngAcceptInputType_lineTypeFocusBorderWidth":"ngAcceptInputType_lineTypeFocusBorderWidth","ngAcceptInputType_lineTypeFocusUnderlineOpacity":"ngAcceptInputType_lineTypeFocusUnderlineOpacity","ngAcceptInputType_lineTypeFocusUnderlineRippleOpacity":"ngAcceptInputType_lineTypeFocusUnderlineRippleOpacity","ngAcceptInputType_lineTypeHoverUnderlineOpacity":"ngAcceptInputType_lineTypeHoverUnderlineOpacity","ngAcceptInputType_lineTypeHoverUnderlineWidth":"ngAcceptInputType_lineTypeHoverUnderlineWidth","ngAcceptInputType_lineTypeUnderlineOpacity":"ngAcceptInputType_lineTypeUnderlineOpacity","ngAcceptInputType_lineTypeUnderlineRippleOpacity":"ngAcceptInputType_lineTypeUnderlineRippleOpacity","ngAcceptInputType_lineTypeUnderlineRippleWidth":"ngAcceptInputType_lineTypeUnderlineRippleWidth","ngAcceptInputType_lineTypeUnderlineWidth":"ngAcceptInputType_lineTypeUnderlineWidth","ngAcceptInputType_searchTypeBorderWidth":"ngAcceptInputType_searchTypeBorderWidth","ngAcceptInputType_searchTypeContentPaddingBottom":"ngAcceptInputType_searchTypeContentPaddingBottom","ngAcceptInputType_searchTypeContentPaddingLeft":"ngAcceptInputType_searchTypeContentPaddingLeft","ngAcceptInputType_searchTypeContentPaddingRight":"ngAcceptInputType_searchTypeContentPaddingRight","ngAcceptInputType_searchTypeContentPaddingTop":"ngAcceptInputType_searchTypeContentPaddingTop","ngAcceptInputType_searchTypeCornerRadiusBottomLeft":"ngAcceptInputType_searchTypeCornerRadiusBottomLeft","ngAcceptInputType_searchTypeCornerRadiusBottomRight":"ngAcceptInputType_searchTypeCornerRadiusBottomRight","ngAcceptInputType_searchTypeCornerRadiusTopLeft":"ngAcceptInputType_searchTypeCornerRadiusTopLeft","ngAcceptInputType_searchTypeCornerRadiusTopRight":"ngAcceptInputType_searchTypeCornerRadiusTopRight","ngAcceptInputType_searchTypeFocusBorderWidth":"ngAcceptInputType_searchTypeFocusBorderWidth","ngAcceptInputType_searchTypeFocusUnderlineOpacity":"ngAcceptInputType_searchTypeFocusUnderlineOpacity","ngAcceptInputType_searchTypeFocusUnderlineRippleOpacity":"ngAcceptInputType_searchTypeFocusUnderlineRippleOpacity","ngAcceptInputType_searchTypeHoverUnderlineOpacity":"ngAcceptInputType_searchTypeHoverUnderlineOpacity","ngAcceptInputType_searchTypeHoverUnderlineWidth":"ngAcceptInputType_searchTypeHoverUnderlineWidth","ngAcceptInputType_searchTypeUnderlineOpacity":"ngAcceptInputType_searchTypeUnderlineOpacity","ngAcceptInputType_searchTypeUnderlineRippleOpacity":"ngAcceptInputType_searchTypeUnderlineRippleOpacity","ngAcceptInputType_searchTypeUnderlineRippleWidth":"ngAcceptInputType_searchTypeUnderlineRippleWidth","ngAcceptInputType_searchTypeUnderlineWidth":"ngAcceptInputType_searchTypeUnderlineWidth","ngAcceptInputType_underlineOpacity":"ngAcceptInputType_underlineOpacity","ngAcceptInputType_underlineRippleOpacity":"ngAcceptInputType_underlineRippleOpacity","ngAcceptInputType_underlineRippleWidth":"ngAcceptInputType_underlineRippleWidth","ngAcceptInputType_underlineWidth":"ngAcceptInputType_underlineWidth","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualIsExpanded":"actualIsExpanded","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderTypeBackgroundColor":"borderTypeBackgroundColor","borderTypeBorderColor":"borderTypeBorderColor","borderTypeBorderWidth":"borderTypeBorderWidth","borderTypeContentPaddingBottom":"borderTypeContentPaddingBottom","borderTypeContentPaddingLeft":"borderTypeContentPaddingLeft","borderTypeContentPaddingRight":"borderTypeContentPaddingRight","borderTypeContentPaddingTop":"borderTypeContentPaddingTop","borderTypeCornerRadiusBottomLeft":"borderTypeCornerRadiusBottomLeft","borderTypeCornerRadiusBottomRight":"borderTypeCornerRadiusBottomRight","borderTypeCornerRadiusTopLeft":"borderTypeCornerRadiusTopLeft","borderTypeCornerRadiusTopRight":"borderTypeCornerRadiusTopRight","borderTypeFocusBorderColor":"borderTypeFocusBorderColor","borderTypeFocusBorderWidth":"borderTypeFocusBorderWidth","borderTypeFocusUnderlineColor":"borderTypeFocusUnderlineColor","borderTypeFocusUnderlineOpacity":"borderTypeFocusUnderlineOpacity","borderTypeFocusUnderlineRippleOpacity":"borderTypeFocusUnderlineRippleOpacity","borderTypeHoverUnderlineColor":"borderTypeHoverUnderlineColor","borderTypeHoverUnderlineOpacity":"borderTypeHoverUnderlineOpacity","borderTypeHoverUnderlineWidth":"borderTypeHoverUnderlineWidth","borderTypeUnderlineColor":"borderTypeUnderlineColor","borderTypeUnderlineOpacity":"borderTypeUnderlineOpacity","borderTypeUnderlineRippleColor":"borderTypeUnderlineRippleColor","borderTypeUnderlineRippleOpacity":"borderTypeUnderlineRippleOpacity","borderTypeUnderlineRippleWidth":"borderTypeUnderlineRippleWidth","borderTypeUnderlineWidth":"borderTypeUnderlineWidth","borderWidth":"borderWidth","boxTypeBackgroundColor":"boxTypeBackgroundColor","boxTypeBorderColor":"boxTypeBorderColor","boxTypeBorderWidth":"boxTypeBorderWidth","boxTypeContentPaddingBottom":"boxTypeContentPaddingBottom","boxTypeContentPaddingLeft":"boxTypeContentPaddingLeft","boxTypeContentPaddingRight":"boxTypeContentPaddingRight","boxTypeContentPaddingTop":"boxTypeContentPaddingTop","boxTypeCornerRadiusBottomLeft":"boxTypeCornerRadiusBottomLeft","boxTypeCornerRadiusBottomRight":"boxTypeCornerRadiusBottomRight","boxTypeCornerRadiusTopLeft":"boxTypeCornerRadiusTopLeft","boxTypeCornerRadiusTopRight":"boxTypeCornerRadiusTopRight","boxTypeFocusBorderColor":"boxTypeFocusBorderColor","boxTypeFocusBorderWidth":"boxTypeFocusBorderWidth","boxTypeFocusUnderlineColor":"boxTypeFocusUnderlineColor","boxTypeFocusUnderlineOpacity":"boxTypeFocusUnderlineOpacity","boxTypeFocusUnderlineRippleOpacity":"boxTypeFocusUnderlineRippleOpacity","boxTypeHoverUnderlineColor":"boxTypeHoverUnderlineColor","boxTypeHoverUnderlineOpacity":"boxTypeHoverUnderlineOpacity","boxTypeHoverUnderlineWidth":"boxTypeHoverUnderlineWidth","boxTypeUnderlineColor":"boxTypeUnderlineColor","boxTypeUnderlineOpacity":"boxTypeUnderlineOpacity","boxTypeUnderlineRippleColor":"boxTypeUnderlineRippleColor","boxTypeUnderlineRippleOpacity":"boxTypeUnderlineRippleOpacity","boxTypeUnderlineRippleWidth":"boxTypeUnderlineRippleWidth","boxTypeUnderlineWidth":"boxTypeUnderlineWidth","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","displayType":"displayType","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","i":"i","id":"id","inputHasValue":"inputHasValue","inputs":"inputs","isExpanded":"isExpanded","isFocused":"isFocused","isHovered":"isHovered","lineTypeBackgroundColor":"lineTypeBackgroundColor","lineTypeBorderColor":"lineTypeBorderColor","lineTypeBorderWidth":"lineTypeBorderWidth","lineTypeContentPaddingBottom":"lineTypeContentPaddingBottom","lineTypeContentPaddingLeft":"lineTypeContentPaddingLeft","lineTypeContentPaddingRight":"lineTypeContentPaddingRight","lineTypeContentPaddingTop":"lineTypeContentPaddingTop","lineTypeCornerRadiusBottomLeft":"lineTypeCornerRadiusBottomLeft","lineTypeCornerRadiusBottomRight":"lineTypeCornerRadiusBottomRight","lineTypeCornerRadiusTopLeft":"lineTypeCornerRadiusTopLeft","lineTypeCornerRadiusTopRight":"lineTypeCornerRadiusTopRight","lineTypeFocusBorderColor":"lineTypeFocusBorderColor","lineTypeFocusBorderWidth":"lineTypeFocusBorderWidth","lineTypeFocusUnderlineColor":"lineTypeFocusUnderlineColor","lineTypeFocusUnderlineOpacity":"lineTypeFocusUnderlineOpacity","lineTypeFocusUnderlineRippleOpacity":"lineTypeFocusUnderlineRippleOpacity","lineTypeHoverUnderlineColor":"lineTypeHoverUnderlineColor","lineTypeHoverUnderlineOpacity":"lineTypeHoverUnderlineOpacity","lineTypeHoverUnderlineWidth":"lineTypeHoverUnderlineWidth","lineTypeUnderlineColor":"lineTypeUnderlineColor","lineTypeUnderlineOpacity":"lineTypeUnderlineOpacity","lineTypeUnderlineRippleColor":"lineTypeUnderlineRippleColor","lineTypeUnderlineRippleOpacity":"lineTypeUnderlineRippleOpacity","lineTypeUnderlineRippleWidth":"lineTypeUnderlineRippleWidth","lineTypeUnderlineWidth":"lineTypeUnderlineWidth","searchTypeBackgroundColor":"searchTypeBackgroundColor","searchTypeBorderColor":"searchTypeBorderColor","searchTypeBorderWidth":"searchTypeBorderWidth","searchTypeContentPaddingBottom":"searchTypeContentPaddingBottom","searchTypeContentPaddingLeft":"searchTypeContentPaddingLeft","searchTypeContentPaddingRight":"searchTypeContentPaddingRight","searchTypeContentPaddingTop":"searchTypeContentPaddingTop","searchTypeCornerRadiusBottomLeft":"searchTypeCornerRadiusBottomLeft","searchTypeCornerRadiusBottomRight":"searchTypeCornerRadiusBottomRight","searchTypeCornerRadiusTopLeft":"searchTypeCornerRadiusTopLeft","searchTypeCornerRadiusTopRight":"searchTypeCornerRadiusTopRight","searchTypeFocusBorderColor":"searchTypeFocusBorderColor","searchTypeFocusBorderWidth":"searchTypeFocusBorderWidth","searchTypeFocusUnderlineColor":"searchTypeFocusUnderlineColor","searchTypeFocusUnderlineOpacity":"searchTypeFocusUnderlineOpacity","searchTypeFocusUnderlineRippleOpacity":"searchTypeFocusUnderlineRippleOpacity","searchTypeHoverUnderlineColor":"searchTypeHoverUnderlineColor","searchTypeHoverUnderlineOpacity":"searchTypeHoverUnderlineOpacity","searchTypeHoverUnderlineWidth":"searchTypeHoverUnderlineWidth","searchTypeUnderlineColor":"searchTypeUnderlineColor","searchTypeUnderlineOpacity":"searchTypeUnderlineOpacity","searchTypeUnderlineRippleColor":"searchTypeUnderlineRippleColor","searchTypeUnderlineRippleOpacity":"searchTypeUnderlineRippleOpacity","searchTypeUnderlineRippleWidth":"searchTypeUnderlineRippleWidth","searchTypeUnderlineWidth":"searchTypeUnderlineWidth","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","ensureActualContentPadding":"ensureActualContentPadding","ensureActualCornerRadius":"ensureActualCornerRadius","ensureBorderTypeContentPadding":"ensureBorderTypeContentPadding","ensureBorderTypeCornerRadius":"ensureBorderTypeCornerRadius","ensureBoxTypeContentPadding":"ensureBoxTypeContentPadding","ensureBoxTypeCornerRadius":"ensureBoxTypeCornerRadius","ensureContentPadding":"ensureContentPadding","ensureCornerRadius":"ensureCornerRadius","ensureLineTypeContentPadding":"ensureLineTypeContentPadding","ensureLineTypeCornerRadius":"ensureLineTypeCornerRadius","ensureSearchTypeContentPadding":"ensureSearchTypeContentPadding","ensureSearchTypeCornerRadius":"ensureSearchTypeCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle"}}],"IgxXInputGroupInputCollection":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXInputGroupInputCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxXInputGroupItemComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXInputGroupItemComponent","k":"class","s":"classes","m":{"constructor":"constructor","ɵcmp":"ɵcmp","ɵfac":"ɵfac","name":"name","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxXLabelComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXLabelComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_isHover":"ngAcceptInputType_isHover","ngAcceptInputType_tabIndex":"ngAcceptInputType_tabIndex","ngAcceptInputType_value":"ngAcceptInputType_value","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualDensity":"actualDensity","actualHighlightTextColor":"actualHighlightTextColor","actualHoverHighlightTextColor":"actualHoverHighlightTextColor","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","alignItems":"alignItems","alignSelf":"alignSelf","ariaLabel":"ariaLabel","baseTheme":"baseTheme","density":"density","disabled":"disabled","display":"display","flexDirection":"flexDirection","flexGrow":"flexGrow","for":"for","highlightTextColor":"highlightTextColor","hoverHighlightTextColor":"hoverHighlightTextColor","hoverTextColor":"hoverTextColor","id":"id","isHover":"isHover","name":"name","tabIndex":"tabIndex","text":"text","textColor":"textColor","textStyle":"textStyle","value":"value","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxXPrefixComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXPrefixComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_isHover":"ngAcceptInputType_isHover","ɵcmp":"ɵcmp","ɵfac":"ɵfac","ariaLabel":"ariaLabel","disabled":"disabled","id":"id","isHover":"isHover","name":"name","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgxXRippleComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXRippleComponent","k":"class","s":"classes","m":{"constructor":"constructor","container":"container","ngAcceptInputType_isCentered":"ngAcceptInputType_isCentered","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHoverEnabled":"ngAcceptInputType_isHoverEnabled","ngAcceptInputType_rippleDuration":"ngAcceptInputType_rippleDuration","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualHoverColor":"actualHoverColor","actualRippleColor":"actualRippleColor","eventSource":"eventSource","height":"height","hoverColor":"hoverColor","i":"i","isCentered":"isCentered","isDisabled":"isDisabled","isHoverEnabled":"isHoverEnabled","left":"left","position":"position","rippleColor":"rippleColor","rippleDuration":"rippleDuration","top":"top","width":"width","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle"}}],"IgxXSuffixComponent":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/IgxXSuffixComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","ngAcceptInputType_disabled":"ngAcceptInputType_disabled","ngAcceptInputType_isHover":"ngAcceptInputType_isHover","ɵcmp":"ɵcmp","ɵfac":"ɵfac","ariaLabel":"ariaLabel","disabled":"disabled","id":"id","isHover":"isHover","name":"name","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","ngOnInit":"ngOnInit","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"XCalendarLocaleEn":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/classes/XCalendarLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","April_Full":"April_Full","April_Short":"April_Short","August_Full":"August_Full","August_Short":"August_Short","December_Full":"December_Full","December_Short":"December_Short","February_Full":"February_Full","February_Short":"February_Short","Friday_Full":"Friday_Full","Friday_Short":"Friday_Short","Friday_Single":"Friday_Single","January_Full":"January_Full","January_Short":"January_Short","July_Full":"July_Full","July_Short":"July_Short","June_Full":"June_Full","June_Short":"June_Short","March_Full":"March_Full","March_Short":"March_Short","May_Full":"May_Full","May_Short":"May_Short","Monday_Full":"Monday_Full","Monday_Short":"Monday_Short","Monday_Single":"Monday_Single","November_Full":"November_Full","November_Short":"November_Short","October_Full":"October_Full","October_Short":"October_Short","Saturday_Full":"Saturday_Full","Saturday_Short":"Saturday_Short","Saturday_Single":"Saturday_Single","September_Full":"September_Full","September_Short":"September_Short","Sunday_Full":"Sunday_Full","Sunday_Short":"Sunday_Short","Sunday_Single":"Sunday_Single","Thursday_Full":"Thursday_Full","Thursday_Short":"Thursday_Short","Thursday_Single":"Thursday_Single","Today":"Today","Tuesday_Full":"Tuesday_Full","Tuesday_Short":"Tuesday_Short","Tuesday_Single":"Tuesday_Single","Wednesday_Full":"Wednesday_Full","Wednesday_Short":"Wednesday_Short","Wednesday_Single":"Wednesday_Single"}}],"ButtonGroupOrientation":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/ButtonGroupOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"DateFormats":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/DateFormats","k":"enum","s":"enums","m":{"DateLong":"DateLong","DateShort":"DateShort"}}],"FirstWeek":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/FirstWeek","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"InputGroupDisplayType":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/InputGroupDisplayType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line","Search":"Search"}}],"InputShiftType":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/InputShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"LabelShiftType":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/LabelShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"MultiSliderOrientation":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/MultiSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","TwoDimensional":"TwoDimensional","Vertical":"Vertical"}}],"MultiSliderThumbRangePosition":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/MultiSliderThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"PrefixShiftType":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/PrefixShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"SuffixShiftType":[{"p":"igniteui-angular-inputs","u":"/api/angular/igniteui-angular-inputs/21.0.0/enums/SuffixShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"IgxComboEditorComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxComboEditorComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","ngAcceptInputType_actualBaseTheme":"ngAcceptInputType_actualBaseTheme","ngAcceptInputType_actualBorderWidth":"ngAcceptInputType_actualBorderWidth","ngAcceptInputType_actualContentPaddingBottom":"ngAcceptInputType_actualContentPaddingBottom","ngAcceptInputType_actualContentPaddingLeft":"ngAcceptInputType_actualContentPaddingLeft","ngAcceptInputType_actualContentPaddingRight":"ngAcceptInputType_actualContentPaddingRight","ngAcceptInputType_actualContentPaddingTop":"ngAcceptInputType_actualContentPaddingTop","ngAcceptInputType_actualCornerRadiusBottomLeft":"ngAcceptInputType_actualCornerRadiusBottomLeft","ngAcceptInputType_actualCornerRadiusBottomRight":"ngAcceptInputType_actualCornerRadiusBottomRight","ngAcceptInputType_actualCornerRadiusTopLeft":"ngAcceptInputType_actualCornerRadiusTopLeft","ngAcceptInputType_actualCornerRadiusTopRight":"ngAcceptInputType_actualCornerRadiusTopRight","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualFocusBorderWidth":"ngAcceptInputType_actualFocusBorderWidth","ngAcceptInputType_actualFocusUnderlineOpacity":"ngAcceptInputType_actualFocusUnderlineOpacity","ngAcceptInputType_actualFocusUnderlineRippleOpacity":"ngAcceptInputType_actualFocusUnderlineRippleOpacity","ngAcceptInputType_actualHoverUnderlineOpacity":"ngAcceptInputType_actualHoverUnderlineOpacity","ngAcceptInputType_actualHoverUnderlineWidth":"ngAcceptInputType_actualHoverUnderlineWidth","ngAcceptInputType_actualLabelVisible":"ngAcceptInputType_actualLabelVisible","ngAcceptInputType_actualUnderlineOpacity":"ngAcceptInputType_actualUnderlineOpacity","ngAcceptInputType_actualUnderlineRippleOpacity":"ngAcceptInputType_actualUnderlineRippleOpacity","ngAcceptInputType_actualUnderlineRippleWidth":"ngAcceptInputType_actualUnderlineRippleWidth","ngAcceptInputType_actualUnderlineWidth":"ngAcceptInputType_actualUnderlineWidth","ngAcceptInputType_actualValueField":"ngAcceptInputType_actualValueField","ngAcceptInputType_allowFilter":"ngAcceptInputType_allowFilter","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_borderWidth":"ngAcceptInputType_borderWidth","ngAcceptInputType_contentPaddingBottom":"ngAcceptInputType_contentPaddingBottom","ngAcceptInputType_contentPaddingLeft":"ngAcceptInputType_contentPaddingLeft","ngAcceptInputType_contentPaddingRight":"ngAcceptInputType_contentPaddingRight","ngAcceptInputType_contentPaddingTop":"ngAcceptInputType_contentPaddingTop","ngAcceptInputType_cornerRadiusBottomLeft":"ngAcceptInputType_cornerRadiusBottomLeft","ngAcceptInputType_cornerRadiusBottomRight":"ngAcceptInputType_cornerRadiusBottomRight","ngAcceptInputType_cornerRadiusTopLeft":"ngAcceptInputType_cornerRadiusTopLeft","ngAcceptInputType_cornerRadiusTopRight":"ngAcceptInputType_cornerRadiusTopRight","ngAcceptInputType_dataSourceDesiredProperties":"ngAcceptInputType_dataSourceDesiredProperties","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_dropDownButtonVisible":"ngAcceptInputType_dropDownButtonVisible","ngAcceptInputType_fields":"ngAcceptInputType_fields","ngAcceptInputType_focusBorderWidth":"ngAcceptInputType_focusBorderWidth","ngAcceptInputType_focusUnderlineOpacity":"ngAcceptInputType_focusUnderlineOpacity","ngAcceptInputType_focusUnderlineRippleOpacity":"ngAcceptInputType_focusUnderlineRippleOpacity","ngAcceptInputType_hoverUnderlineOpacity":"ngAcceptInputType_hoverUnderlineOpacity","ngAcceptInputType_hoverUnderlineWidth":"ngAcceptInputType_hoverUnderlineWidth","ngAcceptInputType_isFixed":"ngAcceptInputType_isFixed","ngAcceptInputType_openAsChild":"ngAcceptInputType_openAsChild","ngAcceptInputType_underlineOpacity":"ngAcceptInputType_underlineOpacity","ngAcceptInputType_underlineRippleOpacity":"ngAcceptInputType_underlineRippleOpacity","ngAcceptInputType_underlineRippleWidth":"ngAcceptInputType_underlineRippleWidth","ngAcceptInputType_underlineWidth":"ngAcceptInputType_underlineWidth","ngAcceptInputType_useTopLayer":"ngAcceptInputType_useTopLayer","ngAcceptInputType_valueField":"ngAcceptInputType_valueField","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBackgroundColor":"actualBackgroundColor","actualBaseTheme":"actualBaseTheme","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDataSource":"actualDataSource","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualLabelTextColor":"actualLabelTextColor","actualLabelVisible":"actualLabelVisible","actualNoMatchesFoundLabel":"actualNoMatchesFoundLabel","actualNoMatchesFoundLabelBackgroundColor":"actualNoMatchesFoundLabelBackgroundColor","actualNoMatchesFoundLabelTextColor":"actualNoMatchesFoundLabelTextColor","actualTextColor":"actualTextColor","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","actualValueField":"actualValueField","allowFilter":"allowFilter","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","change":"change","changing":"changing","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","dataSource":"dataSource","dataSourceDesiredProperties":"dataSourceDesiredProperties","density":"density","dropDownButtonVisible":"dropDownButtonVisible","fields":"fields","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","gotFocus":"gotFocus","height":"height","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","i":"i","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","noMatchesFoundLabel":"noMatchesFoundLabel","noMatchesFoundLabelBackgroundColor":"noMatchesFoundLabelBackgroundColor","noMatchesFoundLabelTextColor":"noMatchesFoundLabelTextColor","noMatchesFoundLabelTextStyle":"noMatchesFoundLabelTextStyle","openAsChild":"openAsChild","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","text":"text","textChange":"textChange","textColor":"textColor","textField":"textField","textStyle":"textStyle","textValueChanged":"textValueChanged","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","useTopLayer":"useTopLayer","value":"value","valueChange":"valueChange","valueField":"valueField","width":"width","closeUp":"closeUp","dropDown":"dropDown","enableDisableFiltering":"enableDisableFiltering","ensureActualContentPadding":"ensureActualContentPadding","ensureActualCornerRadius":"ensureActualCornerRadius","ensureContentPadding":"ensureContentPadding","ensureCornerRadius":"ensureCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","select":"select","selectGridRow":"selectGridRow","updateStyle":"updateStyle","verifyDisplayText":"verifyDisplayText"}}],"IgxComboEditorGotFocusEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxComboEditorGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxComboEditorLostFocusEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxComboEditorLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxComboEditorTextChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxComboEditorTextChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newText":"newText","oldText":"oldText"}}],"IgxComboEditorValueChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxComboEditorValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxLayoutPrimaryKeyValue":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxLayoutPrimaryKeyValue","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_key":"ngAcceptInputType_key","ngAcceptInputType_value":"ngAcceptInputType_value","key":"key","value":"value","equals":"equals","findByName":"findByName"}}],"IgxLayoutSelectedItemsCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxLayoutSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxLayoutSelectedKeysCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxLayoutSelectedKeysCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxListPanelActiveRowChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelActiveRowChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_newActiveRow":"ngAcceptInputType_newActiveRow","ngAcceptInputType_oldActiveRow":"ngAcceptInputType_oldActiveRow","newActiveRow":"newActiveRow","oldActiveRow":"oldActiveRow"}}],"IgxListPanelComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","ngAcceptInputType_activationBorderBottomWidth":"ngAcceptInputType_activationBorderBottomWidth","ngAcceptInputType_activationBorderLeftWidth":"ngAcceptInputType_activationBorderLeftWidth","ngAcceptInputType_activationBorderRightWidth":"ngAcceptInputType_activationBorderRightWidth","ngAcceptInputType_activationBorderTopWidth":"ngAcceptInputType_activationBorderTopWidth","ngAcceptInputType_activationMode":"ngAcceptInputType_activationMode","ngAcceptInputType_activeRow":"ngAcceptInputType_activeRow","ngAcceptInputType_actualPrimaryKey":"ngAcceptInputType_actualPrimaryKey","ngAcceptInputType_actualRowHeight":"ngAcceptInputType_actualRowHeight","ngAcceptInputType_hasUnevenSizes":"ngAcceptInputType_hasUnevenSizes","ngAcceptInputType_isActiveRowStyleEnabled":"ngAcceptInputType_isActiveRowStyleEnabled","ngAcceptInputType_isCustomRowHeightEnabled":"ngAcceptInputType_isCustomRowHeightEnabled","ngAcceptInputType_itemSpacing":"ngAcceptInputType_itemSpacing","ngAcceptInputType_notifyOnAllSelectionChanges":"ngAcceptInputType_notifyOnAllSelectionChanges","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_primaryKey":"ngAcceptInputType_primaryKey","ngAcceptInputType_rowHeight":"ngAcceptInputType_rowHeight","ngAcceptInputType_schemaIncludedProperties":"ngAcceptInputType_schemaIncludedProperties","ngAcceptInputType_scrollbarStyle":"ngAcceptInputType_scrollbarStyle","ngAcceptInputType_selectedItems":"ngAcceptInputType_selectedItems","ngAcceptInputType_selectedKeys":"ngAcceptInputType_selectedKeys","ngAcceptInputType_selectionBehavior":"ngAcceptInputType_selectionBehavior","ngAcceptInputType_selectionMode":"ngAcceptInputType_selectionMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","activationBorder":"activationBorder","activationBorderBottomWidth":"activationBorderBottomWidth","activationBorderLeftWidth":"activationBorderLeftWidth","activationBorderRightWidth":"activationBorderRightWidth","activationBorderTopWidth":"activationBorderTopWidth","activationMode":"activationMode","activeRow":"activeRow","activeRowChanged":"activeRowChanged","actualPrimaryKey":"actualPrimaryKey","actualPrimaryKeyChange":"actualPrimaryKeyChange","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","contentRefreshed":"contentRefreshed","hasUnevenSizes":"hasUnevenSizes","height":"height","i":"i","isActiveRowStyleEnabled":"isActiveRowStyleEnabled","isCustomRowHeightEnabled":"isCustomRowHeightEnabled","itemClicked":"itemClicked","itemHeightRequested":"itemHeightRequested","itemRebind":"itemRebind","itemRecycled":"itemRecycled","itemSpacing":"itemSpacing","itemWidthRequested":"itemWidthRequested","normalBackground":"normalBackground","notifyOnAllSelectionChanges":"notifyOnAllSelectionChanges","orientation":"orientation","primaryKey":"primaryKey","rowHeight":"rowHeight","rowUpdating":"rowUpdating","schemaIncludedProperties":"schemaIncludedProperties","scrollbarBackground":"scrollbarBackground","scrollbarStyle":"scrollbarStyle","selectedBackground":"selectedBackground","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedKeys":"selectedKeys","selectedKeysChanged":"selectedKeysChanged","selectionBehavior":"selectionBehavior","selectionChanged":"selectionChanged","selectionMode":"selectionMode","textColor":"textColor","width":"width","createLocalDataSource":"createLocalDataSource","dataIndexOfItem":"dataIndexOfItem","dataIndexOfPrimaryKey":"dataIndexOfPrimaryKey","deselectAllRows":"deselectAllRows","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","getFirstVisibleIndex":"getFirstVisibleIndex","getItemKey":"getItemKey","getLastVisibleIndex":"getLastVisibleIndex","getRowKey":"getRowKey","invalidateVisibleItems":"invalidateVisibleItems","moveViewportTo":"moveViewportTo","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","notifySizeChanged":"notifySizeChanged","onContentSizeChanged":"onContentSizeChanged","onScroll":"onScroll","onScrollStart":"onScrollStart","onScrollStop":"onScrollStop","scrollTo":"scrollTo","scrollToLastRowByIndex":"scrollToLastRowByIndex","scrollToRowByIndex":"scrollToRowByIndex","selectAllRows":"selectAllRows","setScrollbarColor":"setScrollbarColor","setScrollbarStyle":"setScrollbarStyle","updateStyle":"updateStyle"}}],"IgxListPanelContentRebindEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelContentRebindEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","rowObject":"rowObject"}}],"IgxListPanelContentRecycledEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelContentRecycledEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","rowObject":"rowObject"}}],"IgxListPanelContentRefreshedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxListPanelItemEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelItemEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isDoubleClick":"ngAcceptInputType_isDoubleClick","ngAcceptInputType_isLeftButton":"ngAcceptInputType_isLeftButton","isDoubleClick":"isDoubleClick","isLeftButton":"isLeftButton","itemInfo":"itemInfo","listPanel":"listPanel"}}],"IgxListPanelItemModel":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelItemModel","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dataRow":"ngAcceptInputType_dataRow","ngAcceptInputType_isActivated":"ngAcceptInputType_isActivated","ngAcceptInputType_isActivationSupported":"ngAcceptInputType_isActivationSupported","ngAcceptInputType_isModelDirty":"ngAcceptInputType_isModelDirty","ngAcceptInputType_isSelected":"ngAcceptInputType_isSelected","ngAcceptInputType_left":"ngAcceptInputType_left","ngAcceptInputType_rowHeight":"ngAcceptInputType_rowHeight","ngAcceptInputType_top":"ngAcceptInputType_top","dataRow":"dataRow","isActivated":"isActivated","isActivationSupported":"isActivationSupported","isModelDirty":"isModelDirty","isSelected":"isSelected","left":"left","rowHeight":"rowHeight","rowObject":"rowObject","top":"top","findByName":"findByName"}}],"IgxListPanelPrimaryKeyValue":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelPrimaryKeyValue","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_key":"ngAcceptInputType_key","ngAcceptInputType_value":"ngAcceptInputType_value","key":"key","value":"value","equals":"equals","findByName":"findByName"}}],"IgxListPanelSelectedItemsChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_addedItems":"ngAcceptInputType_addedItems","ngAcceptInputType_currentItems":"ngAcceptInputType_currentItems","ngAcceptInputType_removedItems":"ngAcceptInputType_removedItems","addedItems":"addedItems","currentItems":"currentItems","removedItems":"removedItems"}}],"IgxListPanelSelectedItemsCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxListPanelSelectedKeysChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelSelectedKeysChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_addedKeys":"ngAcceptInputType_addedKeys","ngAcceptInputType_currentKeys":"ngAcceptInputType_currentKeys","ngAcceptInputType_removedKeys":"ngAcceptInputType_removedKeys","addedKeys":"addedKeys","currentKeys":"currentKeys","removedKeys":"removedKeys"}}],"IgxListPanelSelectedKeysCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelSelectedKeysCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxListPanelSelectionChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxListPanelTemplateHeightRequestedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelTemplateHeightRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dataRow":"ngAcceptInputType_dataRow","ngAcceptInputType_height":"ngAcceptInputType_height","dataItem":"dataItem","dataRow":"dataRow","height":"height"}}],"IgxListPanelTemplateItemUpdatingEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelTemplateItemUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_availableWidth":"ngAcceptInputType_availableWidth","availableWidth":"availableWidth","content":"content","model":"model"}}],"IgxListPanelTemplateWidthRequestedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxListPanelTemplateWidthRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_dataRow":"ngAcceptInputType_dataRow","ngAcceptInputType_width":"ngAcceptInputType_width","dataItem":"dataItem","dataRow":"dataRow","width":"width"}}],"IgxOnCollapsedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxOnCollapsedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxOnExpandedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxOnExpandedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxPropertyEditorDataSource":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorDataSource","k":"class","s":"classes","m":{"constructor":"constructor","context":"context","descriptionType":"descriptionType","findByName":"findByName"}}],"IgxPropertyEditorDescriptionObject":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorDescriptionObject","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_properties":"ngAcceptInputType_properties","descriptionType":"descriptionType","properties":"properties","findByName":"findByName"}}],"IgxPropertyEditorDescriptionObjectCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorDescriptionObjectCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxPropertyEditorPanelComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","actualProperties":"actualProperties","contentProperties":"contentProperties","ngAcceptInputType_actualDataSource":"ngAcceptInputType_actualDataSource","ngAcceptInputType_actualRowHeight":"ngAcceptInputType_actualRowHeight","ngAcceptInputType_isHorizontal":"ngAcceptInputType_isHorizontal","ngAcceptInputType_isIndirectModeEnabled":"ngAcceptInputType_isIndirectModeEnabled","ngAcceptInputType_isWrappingEnabled":"ngAcceptInputType_isWrappingEnabled","ngAcceptInputType_rowHeight":"ngAcceptInputType_rowHeight","ngAcceptInputType_updateMode":"ngAcceptInputType_updateMode","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualDataSource":"actualDataSource","actualDescriptionContext":"actualDescriptionContext","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","componentRenderer":"componentRenderer","descriptionContext":"descriptionContext","descriptionType":"descriptionType","height":"height","i":"i","isHorizontal":"isHorizontal","isIndirectModeEnabled":"isIndirectModeEnabled","isWrappingEnabled":"isWrappingEnabled","properties":"properties","rowHeight":"rowHeight","target":"target","textColor":"textColor","updateMode":"updateMode","width":"width","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","updateStyle":"updateStyle"}}],"IgxPropertyEditorPropertyDescriptionButtonClickEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPropertyDescriptionButtonClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxPropertyEditorPropertyDescriptionChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPropertyDescriptionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue"}}],"IgxPropertyEditorPropertyDescriptionCoercingValueEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPropertyDescriptionCoercingValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_complexValues":"ngAcceptInputType_complexValues","complexValue":"complexValue","complexValues":"complexValues","value":"value"}}],"IgxPropertyEditorPropertyDescriptionCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPropertyDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxPropertyEditorPropertyDescriptionComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPropertyDescriptionComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_coercedComplexValues":"ngAcceptInputType_coercedComplexValues","ngAcceptInputType_coercedValueType":"ngAcceptInputType_coercedValueType","ngAcceptInputType_complexValues":"ngAcceptInputType_complexValues","ngAcceptInputType_dropDownNames":"ngAcceptInputType_dropDownNames","ngAcceptInputType_dropDownValues":"ngAcceptInputType_dropDownValues","ngAcceptInputType_editorWidth":"ngAcceptInputType_editorWidth","ngAcceptInputType_labelWidth":"ngAcceptInputType_labelWidth","ngAcceptInputType_max":"ngAcceptInputType_max","ngAcceptInputType_min":"ngAcceptInputType_min","ngAcceptInputType_properties":"ngAcceptInputType_properties","ngAcceptInputType_shouldOverrideDefaultEditor":"ngAcceptInputType_shouldOverrideDefaultEditor","ngAcceptInputType_step":"ngAcceptInputType_step","ngAcceptInputType_useCoercedValue":"ngAcceptInputType_useCoercedValue","ngAcceptInputType_valueType":"ngAcceptInputType_valueType","ɵcmp":"ɵcmp","ɵfac":"ɵfac","buttonClicked":"buttonClicked","changed":"changed","coercedComplexValue":"coercedComplexValue","coercedComplexValues":"coercedComplexValues","coercedPrimitiveValue":"coercedPrimitiveValue","coercedValueType":"coercedValueType","coercingValue":"coercingValue","complexValue":"complexValue","complexValues":"complexValues","dropDownNames":"dropDownNames","dropDownValues":"dropDownValues","editorWidth":"editorWidth","elementDescriptionType":"elementDescriptionType","label":"label","labelWidth":"labelWidth","max":"max","min":"min","name":"name","primitiveValue":"primitiveValue","properties":"properties","propertyDescriptionType":"propertyDescriptionType","propertyPath":"propertyPath","shouldOverrideDefaultEditor":"shouldOverrideDefaultEditor","step":"step","subtitle":"subtitle","targetPropertyUpdating":"targetPropertyUpdating","useCoercedValue":"useCoercedValue","valueType":"valueType","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","propertyPath":"propertyPath","target":"target","value":"value"}}],"IgxToolActionButtonComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionButtonComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_cornerRadius":"ngAcceptInputType_cornerRadius","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionButtonPairComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionButtonPairComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_cornerRadius":"ngAcceptInputType_cornerRadius","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_displayType":"ngAcceptInputType_displayType","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_isToggleDisabled":"ngAcceptInputType_isToggleDisabled","ngAcceptInputType_leftIconFillColors":"ngAcceptInputType_leftIconFillColors","ngAcceptInputType_leftIconStrokeColors":"ngAcceptInputType_leftIconStrokeColors","ngAcceptInputType_leftIconStrokeWidth":"ngAcceptInputType_leftIconStrokeWidth","ngAcceptInputType_leftIconViewBoxHeight":"ngAcceptInputType_leftIconViewBoxHeight","ngAcceptInputType_leftIconViewBoxLeft":"ngAcceptInputType_leftIconViewBoxLeft","ngAcceptInputType_leftIconViewBoxTop":"ngAcceptInputType_leftIconViewBoxTop","ngAcceptInputType_leftIconViewBoxWidth":"ngAcceptInputType_leftIconViewBoxWidth","ngAcceptInputType_leftIsDisabled":"ngAcceptInputType_leftIsDisabled","ngAcceptInputType_leftIsSelected":"ngAcceptInputType_leftIsSelected","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_rightIconFillColors":"ngAcceptInputType_rightIconFillColors","ngAcceptInputType_rightIconStrokeColors":"ngAcceptInputType_rightIconStrokeColors","ngAcceptInputType_rightIconStrokeWidth":"ngAcceptInputType_rightIconStrokeWidth","ngAcceptInputType_rightIconViewBoxHeight":"ngAcceptInputType_rightIconViewBoxHeight","ngAcceptInputType_rightIconViewBoxLeft":"ngAcceptInputType_rightIconViewBoxLeft","ngAcceptInputType_rightIconViewBoxTop":"ngAcceptInputType_rightIconViewBoxTop","ngAcceptInputType_rightIconViewBoxWidth":"ngAcceptInputType_rightIconViewBoxWidth","ngAcceptInputType_rightIsDisabled":"ngAcceptInputType_rightIsDisabled","ngAcceptInputType_rightIsSelected":"ngAcceptInputType_rightIsSelected","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualLeftIconFill":"actualLeftIconFill","actualLeftIconStroke":"actualLeftIconStroke","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualRightIconFill":"actualRightIconFill","actualRightIconStroke":"actualRightIconStroke","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","isToggleDisabled":"isToggleDisabled","leftCommandArgument":"leftCommandArgument","leftIconCollectionName":"leftIconCollectionName","leftIconFill":"leftIconFill","leftIconFillColors":"leftIconFillColors","leftIconName":"leftIconName","leftIconStroke":"leftIconStroke","leftIconStrokeColors":"leftIconStrokeColors","leftIconStrokeWidth":"leftIconStrokeWidth","leftIconViewBoxHeight":"leftIconViewBoxHeight","leftIconViewBoxLeft":"leftIconViewBoxLeft","leftIconViewBoxTop":"leftIconViewBoxTop","leftIconViewBoxWidth":"leftIconViewBoxWidth","leftIsDisabled":"leftIsDisabled","leftIsSelected":"leftIsSelected","leftTitle":"leftTitle","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","rightCommandArgument":"rightCommandArgument","rightIconCollectionName":"rightIconCollectionName","rightIconFill":"rightIconFill","rightIconFillColors":"rightIconFillColors","rightIconName":"rightIconName","rightIconStroke":"rightIconStroke","rightIconStrokeColors":"rightIconStrokeColors","rightIconStrokeWidth":"rightIconStrokeWidth","rightIconViewBoxHeight":"rightIconViewBoxHeight","rightIconViewBoxLeft":"rightIconViewBoxLeft","rightIconViewBoxTop":"rightIconViewBoxTop","rightIconViewBoxWidth":"rightIconViewBoxWidth","rightIsDisabled":"rightIsDisabled","rightIsSelected":"rightIsSelected","rightTitle":"rightTitle","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionCheckboxComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionCheckboxComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isChecked":"ngAcceptInputType_isChecked","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionCheckboxListComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionCheckboxListComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_indexType":"ngAcceptInputType_indexType","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_primaryKey":"ngAcceptInputType_primaryKey","ngAcceptInputType_selectedKeys":"ngAcceptInputType_selectedKeys","ngAcceptInputType_showSelectAll":"ngAcceptInputType_showSelectAll","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","dataMemberPath":"dataMemberPath","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","indexType":"indexType","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","primaryKey":"primaryKey","selectedKeys":"selectedKeys","selectedMemberPath":"selectedMemberPath","showSelectAll":"showSelectAll","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolActionColorEditorComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionColorEditorComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionComboComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionComboComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_selectedValues":"ngAcceptInputType_selectedValues","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","displayMemberPath":"displayMemberPath","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedValues":"selectedValues","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","valueMemberPath":"valueMemberPath","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionEventDetail":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionEventDetail","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actionType":"ngAcceptInputType_actionType","ngAcceptInputType_boolValue":"ngAcceptInputType_boolValue","ngAcceptInputType_isModified":"ngAcceptInputType_isModified","ngAcceptInputType_numberValue":"ngAcceptInputType_numberValue","actionId":"actionId","actionType":"actionType","boolValue":"boolValue","dateTimeValue":"dateTimeValue","isModified":"isModified","numberValue":"numberValue","stringValue":"stringValue","untypedValue":"untypedValue","findByName":"findByName"}}],"IgxToolActionEventDetailCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionEventDetailCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolActionFieldSelectorAggregation":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionFieldSelectorAggregation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_operand":"ngAcceptInputType_operand","label":"label","name":"name","operand":"operand","findByName":"findByName"}}],"IgxToolActionFieldSelectorAggregationsCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionFieldSelectorAggregationsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolActionFieldSelectorComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionFieldSelectorComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_aggregations":"ngAcceptInputType_aggregations","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_fieldType":"ngAcceptInputType_fieldType","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_selectedAggregations":"ngAcceptInputType_selectedAggregations","ngAcceptInputType_singleSelection":"ngAcceptInputType_singleSelection","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_updateDataSource":"ngAcceptInputType_updateDataSource","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","aggregations":"aggregations","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","fieldType":"fieldType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","legendTarget":"legendTarget","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedAggregations":"selectedAggregations","singleSelection":"singleSelection","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","updateDataSource":"updateDataSource","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionFieldSelectorSelectedAggregation":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionFieldSelectorSelectedAggregation","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_aggregationOperand":"ngAcceptInputType_aggregationOperand","aggregationName":"aggregationName","aggregationOperand":"aggregationOperand","field":"field","findByName":"findByName"}}],"IgxToolActionFieldSelectorSelectedAggregationsCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionFieldSelectorSelectedAggregationsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolActionGroupHeaderComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionGroupHeaderComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualBackIconColor":"actualBackIconColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","backIconColor":"backIconColor","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionIconButtonComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionIconButtonComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualContentPaddingBottom":"ngAcceptInputType_actualContentPaddingBottom","ngAcceptInputType_actualContentPaddingLeft":"ngAcceptInputType_actualContentPaddingLeft","ngAcceptInputType_actualContentPaddingRight":"ngAcceptInputType_actualContentPaddingRight","ngAcceptInputType_actualContentPaddingTop":"ngAcceptInputType_actualContentPaddingTop","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_actualTooltipDelay":"ngAcceptInputType_actualTooltipDelay","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contentPaddingBottom":"ngAcceptInputType_contentPaddingBottom","ngAcceptInputType_contentPaddingLeft":"ngAcceptInputType_contentPaddingLeft","ngAcceptInputType_contentPaddingRight":"ngAcceptInputType_contentPaddingRight","ngAcceptInputType_contentPaddingTop":"ngAcceptInputType_contentPaddingTop","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_tooltipDelay":"ngAcceptInputType_tooltipDelay","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionIconMenuComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionIconMenuComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualContentPaddingBottom":"ngAcceptInputType_actualContentPaddingBottom","ngAcceptInputType_actualContentPaddingLeft":"ngAcceptInputType_actualContentPaddingLeft","ngAcceptInputType_actualContentPaddingRight":"ngAcceptInputType_actualContentPaddingRight","ngAcceptInputType_actualContentPaddingTop":"ngAcceptInputType_actualContentPaddingTop","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_actualTooltipDelay":"ngAcceptInputType_actualTooltipDelay","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contentPaddingBottom":"ngAcceptInputType_contentPaddingBottom","ngAcceptInputType_contentPaddingLeft":"ngAcceptInputType_contentPaddingLeft","ngAcceptInputType_contentPaddingRight":"ngAcceptInputType_contentPaddingRight","ngAcceptInputType_contentPaddingTop":"ngAcceptInputType_contentPaddingTop","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_showArrowIcon":"ngAcceptInputType_showArrowIcon","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_tooltipDelay":"ngAcceptInputType_tooltipDelay","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualArrowStroke":"actualArrowStroke","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","arrowStroke":"arrowStroke","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","showArrowIcon":"showArrowIcon","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionLabelComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionLabelComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionNumberInputComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionNumberInputComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_value":"ngAcceptInputType_value","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionPerformedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionPerformedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_detailCollection":"ngAcceptInputType_detailCollection","ngAcceptInputType_isAggregate":"ngAcceptInputType_isAggregate","detail":"detail","detailCollection":"detailCollection","isAggregate":"isAggregate"}}],"IgxToolActionPopupOpeningEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionPopupOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_cancel":"ngAcceptInputType_cancel","cancel":"cancel","sourceAction":"sourceAction"}}],"IgxToolActionRadioComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionRadioComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isChecked":"ngAcceptInputType_isChecked","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isManual":"ngAcceptInputType_isManual","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","channel":"channel","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isManual":"isManual","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionSeparatorComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionSeparatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isGroupHeaderSeparator":"ngAcceptInputType_isGroupHeaderSeparator","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_size":"ngAcceptInputType_size","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isGroupHeaderSeparator":"isGroupHeaderSeparator","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","size":"size","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionSubPanelComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionSubPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_itemSpacing":"ngAcceptInputType_itemSpacing","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","itemSpacing":"itemSpacing","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolActionTextInputComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolActionTextInputComponent","k":"class","s":"classes","m":{"constructor":"constructor","contentActions":"contentActions","ngAcceptInputType_actions":"ngAcceptInputType_actions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualIconHeight":"ngAcceptInputType_actualIconHeight","ngAcceptInputType_actualIconWidth":"ngAcceptInputType_actualIconWidth","ngAcceptInputType_actualPaddingBottom":"ngAcceptInputType_actualPaddingBottom","ngAcceptInputType_actualPaddingLeft":"ngAcceptInputType_actualPaddingLeft","ngAcceptInputType_actualPaddingRight":"ngAcceptInputType_actualPaddingRight","ngAcceptInputType_actualPaddingTop":"ngAcceptInputType_actualPaddingTop","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","ngAcceptInputType_contextBindings":"ngAcceptInputType_contextBindings","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_height":"ngAcceptInputType_height","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_iconFillColors":"ngAcceptInputType_iconFillColors","ngAcceptInputType_iconHeight":"ngAcceptInputType_iconHeight","ngAcceptInputType_iconStrokeColors":"ngAcceptInputType_iconStrokeColors","ngAcceptInputType_iconStrokeWidth":"ngAcceptInputType_iconStrokeWidth","ngAcceptInputType_iconViewBoxHeight":"ngAcceptInputType_iconViewBoxHeight","ngAcceptInputType_iconViewBoxLeft":"ngAcceptInputType_iconViewBoxLeft","ngAcceptInputType_iconViewBoxTop":"ngAcceptInputType_iconViewBoxTop","ngAcceptInputType_iconViewBoxWidth":"ngAcceptInputType_iconViewBoxWidth","ngAcceptInputType_iconWidth":"ngAcceptInputType_iconWidth","ngAcceptInputType_isDisabled":"ngAcceptInputType_isDisabled","ngAcceptInputType_isHighlighted":"ngAcceptInputType_isHighlighted","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_paddingBottom":"ngAcceptInputType_paddingBottom","ngAcceptInputType_paddingLeft":"ngAcceptInputType_paddingLeft","ngAcceptInputType_paddingRight":"ngAcceptInputType_paddingRight","ngAcceptInputType_paddingTop":"ngAcceptInputType_paddingTop","ngAcceptInputType_subPanelRowHeight":"ngAcceptInputType_subPanelRowHeight","ngAcceptInputType_titleHorizontalAlignment":"ngAcceptInputType_titleHorizontalAlignment","ngAcceptInputType_visibility":"ngAcceptInputType_visibility","ngAcceptInputType_width":"ngAcceptInputType_width","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnInit":"ngOnInit","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgxToolbarComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolbarComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","combinedActions":"combinedActions","contentActions":"contentActions","ngAcceptInputType_actualActions":"ngAcceptInputType_actualActions","ngAcceptInputType_autoGeneratedActions":"ngAcceptInputType_autoGeneratedActions","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_dropdownClickBuffer":"ngAcceptInputType_dropdownClickBuffer","ngAcceptInputType_dropdownDelay":"ngAcceptInputType_dropdownDelay","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_rowHeight":"ngAcceptInputType_rowHeight","ngAcceptInputType_scrollbarStyle":"ngAcceptInputType_scrollbarStyle","ngAcceptInputType_separatorHorizontalPaddingBottom":"ngAcceptInputType_separatorHorizontalPaddingBottom","ngAcceptInputType_separatorHorizontalPaddingLeft":"ngAcceptInputType_separatorHorizontalPaddingLeft","ngAcceptInputType_separatorHorizontalPaddingRight":"ngAcceptInputType_separatorHorizontalPaddingRight","ngAcceptInputType_separatorHorizontalPaddingTop":"ngAcceptInputType_separatorHorizontalPaddingTop","ngAcceptInputType_separatorVerticalPaddingBottom":"ngAcceptInputType_separatorVerticalPaddingBottom","ngAcceptInputType_separatorVerticalPaddingLeft":"ngAcceptInputType_separatorVerticalPaddingLeft","ngAcceptInputType_separatorVerticalPaddingRight":"ngAcceptInputType_separatorVerticalPaddingRight","ngAcceptInputType_separatorVerticalPaddingTop":"ngAcceptInputType_separatorVerticalPaddingTop","ngAcceptInputType_showOnHover":"ngAcceptInputType_showOnHover","ngAcceptInputType_showTooltipOnHover":"ngAcceptInputType_showTooltipOnHover","ngAcceptInputType_stopPropagation":"ngAcceptInputType_stopPropagation","ngAcceptInputType_toolTipCornerRadius":"ngAcceptInputType_toolTipCornerRadius","ngAcceptInputType_toolTipElevation":"ngAcceptInputType_toolTipElevation","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actions":"actions","actualActions":"actualActions","autoGeneratedActions":"autoGeneratedActions","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","i":"i","iconFill":"iconFill","iconStroke":"iconStroke","isOpen":"isOpen","menuArrowStroke":"menuArrowStroke","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subMenuClosing":"subMenuClosing","subMenuOpening":"subMenuOpening","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","target":"target","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width","closeSubmenus":"closeSubmenus","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushRefresh":"flushRefresh","getBoolContextItem":"getBoolContextItem","getBrushCollectionContextItem":"getBrushCollectionContextItem","getBrushContextItem":"getBrushContextItem","getColorContextItem":"getColorContextItem","getDataContextItem":"getDataContextItem","getDataURLFromCache":"getDataURLFromCache","getDesiredSize":"getDesiredSize","getDoubleContextItem":"getDoubleContextItem","getExternalDataContextItem":"getExternalDataContextItem","getExternalDoubleContextItem":"getExternalDoubleContextItem","getExternalIntContextItem":"getExternalIntContextItem","getIconFromCache":"getIconFromCache","getIconSource":"getIconSource","getIntContextItem":"getIntContextItem","getMultiPathSVGFromCache":"getMultiPathSVGFromCache","getStringContextItem":"getStringContextItem","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onCommandStateChanged":"onCommandStateChanged","registerIconFromDataURL":"registerIconFromDataURL","registerIconFromText":"registerIconFromText","registerIconSource":"registerIconSource","registerMultiPathSVG":"registerMultiPathSVG","setBoolContextItem":"setBoolContextItem","setBrushCollectionContextItem":"setBrushCollectionContextItem","setBrushContextItem":"setBrushContextItem","setColorContextItem":"setColorContextItem","setDataContextItem":"setDataContextItem","setDoubleContextItem":"setDoubleContextItem","setExternalDataContextItem":"setExternalDataContextItem","setExternalDoubleContextItem":"setExternalDoubleContextItem","setExternalIntContextItem":"setExternalIntContextItem","setIntContextItem":"setIntContextItem","setStringContextItem":"setStringContextItem","updateStyle":"updateStyle"}}],"IgxToolbarSubMenuClosingEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolbarSubMenuClosingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolbarSubMenuOpeningEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolbarSubMenuOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolCommandEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolCommandEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_closeOnExecute":"ngAcceptInputType_closeOnExecute","closeOnExecute":"closeOnExecute","command":"command"}}],"IgxToolContextBinding":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolContextBinding","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_bindingMode":"ngAcceptInputType_bindingMode","bindingMode":"bindingMode","contextKey":"contextKey","propertyName":"propertyName","propertyUpdated":"propertyUpdated","findByName":"findByName"}}],"IgxToolContextBindingCollection":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolContextBindingCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolPanelComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","actualActions":"actualActions","contentActions":"contentActions","ngAcceptInputType_actualDensity":"ngAcceptInputType_actualDensity","ngAcceptInputType_actualDropdownDelay":"ngAcceptInputType_actualDropdownDelay","ngAcceptInputType_actualHighlightRadius":"ngAcceptInputType_actualHighlightRadius","ngAcceptInputType_actualHighlightWidth":"ngAcceptInputType_actualHighlightWidth","ngAcceptInputType_actualRowHeight":"ngAcceptInputType_actualRowHeight","ngAcceptInputType_actualSeparatorHorizontalPaddingBottom":"ngAcceptInputType_actualSeparatorHorizontalPaddingBottom","ngAcceptInputType_actualSeparatorHorizontalPaddingLeft":"ngAcceptInputType_actualSeparatorHorizontalPaddingLeft","ngAcceptInputType_actualSeparatorHorizontalPaddingRight":"ngAcceptInputType_actualSeparatorHorizontalPaddingRight","ngAcceptInputType_actualSeparatorHorizontalPaddingTop":"ngAcceptInputType_actualSeparatorHorizontalPaddingTop","ngAcceptInputType_actualSeparatorVerticalPaddingBottom":"ngAcceptInputType_actualSeparatorVerticalPaddingBottom","ngAcceptInputType_actualSeparatorVerticalPaddingLeft":"ngAcceptInputType_actualSeparatorVerticalPaddingLeft","ngAcceptInputType_actualSeparatorVerticalPaddingRight":"ngAcceptInputType_actualSeparatorVerticalPaddingRight","ngAcceptInputType_actualSeparatorVerticalPaddingTop":"ngAcceptInputType_actualSeparatorVerticalPaddingTop","ngAcceptInputType_actualToolTipCornerRadius":"ngAcceptInputType_actualToolTipCornerRadius","ngAcceptInputType_actualToolTipElevation":"ngAcceptInputType_actualToolTipElevation","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_dropdownClickBuffer":"ngAcceptInputType_dropdownClickBuffer","ngAcceptInputType_dropdownDelay":"ngAcceptInputType_dropdownDelay","ngAcceptInputType_highlightRadius":"ngAcceptInputType_highlightRadius","ngAcceptInputType_highlightWidth":"ngAcceptInputType_highlightWidth","ngAcceptInputType_isOpen":"ngAcceptInputType_isOpen","ngAcceptInputType_itemSpacing":"ngAcceptInputType_itemSpacing","ngAcceptInputType_nestedActionMode":"ngAcceptInputType_nestedActionMode","ngAcceptInputType_orientation":"ngAcceptInputType_orientation","ngAcceptInputType_rowHeight":"ngAcceptInputType_rowHeight","ngAcceptInputType_scrollbarStyle":"ngAcceptInputType_scrollbarStyle","ngAcceptInputType_separatorHorizontalPaddingBottom":"ngAcceptInputType_separatorHorizontalPaddingBottom","ngAcceptInputType_separatorHorizontalPaddingLeft":"ngAcceptInputType_separatorHorizontalPaddingLeft","ngAcceptInputType_separatorHorizontalPaddingRight":"ngAcceptInputType_separatorHorizontalPaddingRight","ngAcceptInputType_separatorHorizontalPaddingTop":"ngAcceptInputType_separatorHorizontalPaddingTop","ngAcceptInputType_separatorVerticalPaddingBottom":"ngAcceptInputType_separatorVerticalPaddingBottom","ngAcceptInputType_separatorVerticalPaddingLeft":"ngAcceptInputType_separatorVerticalPaddingLeft","ngAcceptInputType_separatorVerticalPaddingRight":"ngAcceptInputType_separatorVerticalPaddingRight","ngAcceptInputType_separatorVerticalPaddingTop":"ngAcceptInputType_separatorVerticalPaddingTop","ngAcceptInputType_showOnHover":"ngAcceptInputType_showOnHover","ngAcceptInputType_showTooltipOnHover":"ngAcceptInputType_showTooltipOnHover","ngAcceptInputType_stopPropagation":"ngAcceptInputType_stopPropagation","ngAcceptInputType_toolTipCornerRadius":"ngAcceptInputType_toolTipCornerRadius","ngAcceptInputType_toolTipElevation":"ngAcceptInputType_toolTipElevation","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actions":"actions","actualBackgroundColor":"actualBackgroundColor","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualDropdownDelay":"actualDropdownDelay","actualGroupHeaderBackgroundColor":"actualGroupHeaderBackgroundColor","actualGroupHeaderSeparatorBackgroundColor":"actualGroupHeaderSeparatorBackgroundColor","actualGroupHeaderSubtitleTextColor":"actualGroupHeaderSubtitleTextColor","actualGroupHeaderTextColor":"actualGroupHeaderTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualIconFill":"actualIconFill","actualIconStroke":"actualIconStroke","actualMenuArrowStroke":"actualMenuArrowStroke","actualRowHeight":"actualRowHeight","actualSeparatorBackgroundColor":"actualSeparatorBackgroundColor","actualSeparatorHorizontalPaddingBottom":"actualSeparatorHorizontalPaddingBottom","actualSeparatorHorizontalPaddingLeft":"actualSeparatorHorizontalPaddingLeft","actualSeparatorHorizontalPaddingRight":"actualSeparatorHorizontalPaddingRight","actualSeparatorHorizontalPaddingTop":"actualSeparatorHorizontalPaddingTop","actualSeparatorVerticalPaddingBottom":"actualSeparatorVerticalPaddingBottom","actualSeparatorVerticalPaddingLeft":"actualSeparatorVerticalPaddingLeft","actualSeparatorVerticalPaddingRight":"actualSeparatorVerticalPaddingRight","actualSeparatorVerticalPaddingTop":"actualSeparatorVerticalPaddingTop","actualSubmenuBackgroundColor":"actualSubmenuBackgroundColor","actualSubtitleTextColor":"actualSubtitleTextColor","actualTextColor":"actualTextColor","actualToolTipBackgroundColor":"actualToolTipBackgroundColor","actualToolTipCornerRadius":"actualToolTipCornerRadius","actualToolTipElevation":"actualToolTipElevation","actualToolTipTextColor":"actualToolTipTextColor","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","contentRefreshed":"contentRefreshed","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSeparatorBackgroundColor":"groupHeaderSeparatorBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","i":"i","iconFill":"iconFill","iconStroke":"iconStroke","isOpen":"isOpen","itemSpacing":"itemSpacing","menuArrowStroke":"menuArrowStroke","nestedActionMode":"nestedActionMode","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width","closeSubmenus":"closeSubmenus","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushRefresh":"flushRefresh","getBoolContextItem":"getBoolContextItem","getBrushCollectionContextItem":"getBrushCollectionContextItem","getBrushContextItem":"getBrushContextItem","getColorContextItem":"getColorContextItem","getDataContextItem":"getDataContextItem","getDesiredSize":"getDesiredSize","getDoubleContextItem":"getDoubleContextItem","getIntContextItem":"getIntContextItem","getStringContextItem":"getStringContextItem","ngAfterContentInit":"ngAfterContentInit","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","refresh":"refresh","setBoolContextItem":"setBoolContextItem","setBrushCollectionContextItem":"setBrushCollectionContextItem","setBrushContextItem":"setBrushContextItem","setColorContextItem":"setColorContextItem","setDataContextItem":"setDataContextItem","setDoubleContextItem":"setDoubleContextItem","setIntContextItem":"setIntContextItem","setStringContextItem":"setStringContextItem","updateStyle":"updateStyle"}}],"IgxToolPanelContentRefreshedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxToolPanelContextChangedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolPanelContextChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contextKey":"contextKey","newValue":"newValue","oldValue":"oldValue"}}],"IgxToolPanelContextSwappedEventArgs":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxToolPanelContextSwappedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxXExpansionPanelComponent":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/classes/IgxXExpansionPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","_contentInner":"_contentInner","_contentOuter":"_contentOuter","_dynamicContent":"_dynamicContent","_header":"_header","_mainDiv":"_mainDiv","_mainDivRef":"_mainDivRef","ngAcceptInputType_actualElevation":"ngAcceptInputType_actualElevation","ngAcceptInputType_elevation":"ngAcceptInputType_elevation","ngAcceptInputType_expanded":"ngAcceptInputType_expanded","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualAmbientShadowColor":"actualAmbientShadowColor","actualCaptionTextColor":"actualCaptionTextColor","actualDescriptionTextColor":"actualDescriptionTextColor","actualElevation":"actualElevation","actualHeaderBackgroundColor":"actualHeaderBackgroundColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","caption":"caption","captionCollapsedTextColor":"captionCollapsedTextColor","captionExpandedTextColor":"captionExpandedTextColor","captionTextColor":"captionTextColor","descriptionCollapsedTextColor":"descriptionCollapsedTextColor","descriptionExpandedTextColor":"descriptionExpandedTextColor","descriptionText":"descriptionText","descriptionTextColor":"descriptionTextColor","elevation":"elevation","expanded":"expanded","headerBackgroundColor":"headerBackgroundColor","headerCollapsedBackgroundColor":"headerCollapsedBackgroundColor","headerExpandedBackgroundColor":"headerExpandedBackgroundColor","height":"height","i":"i","onCollapsed":"onCollapsed","onExpanded":"onExpanded","width":"width","collapse":"collapse","expand":"expand","findByName":"findByName","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","toggle":"toggle","updateStyle":"updateStyle"}}],"ComboEditorCloneDataSourceFilterOperation":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ComboEditorCloneDataSourceFilterOperation","k":"enum","s":"enums","m":{"None":"None","TextToValue":"TextToValue","ValueToText":"ValueToText"}}],"ComboEditorSelectedItemChangeType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ComboEditorSelectedItemChangeType","k":"enum","s":"enums","m":{"Row":"Row","Text":"Text","Value":"Value"}}],"ListPanelActivationMode":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ListPanelActivationMode","k":"enum","s":"enums","m":{"Cell":"Cell","None":"None"}}],"ListPanelOrientation":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ListPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ListPanelSelectionBehavior":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ListPanelSelectionBehavior","k":"enum","s":"enums","m":{"ModifierBased":"ModifierBased","Toggle":"Toggle"}}],"ListPanelSelectionMode":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ListPanelSelectionMode","k":"enum","s":"enums","m":{"MultipleRow":"MultipleRow","None":"None","SingleRow":"SingleRow"}}],"NestedActionMode":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/NestedActionMode","k":"enum","s":"enums","m":{"Replace":"Replace"}}],"PropertyEditorPanelUpdateMode":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/PropertyEditorPanelUpdateMode","k":"enum","s":"enums","m":{"Auto":"Auto","ComponentRendererOverlay":"ComponentRendererOverlay","DataSeriesToDescriptionCustomizations":"DataSeriesToDescriptionCustomizations"}}],"PropertyEditorValueType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/PropertyEditorValueType","k":"enum","s":"enums","m":{"Array":"Array","boolean1":"boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Button":"Button","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","Date":"Date","DoubleCollection":"DoubleCollection","EnumValue":"EnumValue","EventRef":"EventRef","Header":"Header","MethodRef":"MethodRef","Number":"Number","Point":"Point","Rect":"Rect","Separator":"Separator","Size":"Size","Slider":"Slider","StringValue":"StringValue","SubType":"SubType","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unhandled":"Unhandled"}}],"ToolActionButtonDisplayType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolActionButtonDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionButtonGroupDisplayType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolActionButtonGroupDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined"}}],"ToolActionCheckboxListIndexType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolActionCheckboxListIndexType","k":"enum","s":"enums","m":{"DeSelected":"DeSelected","Selected":"Selected"}}],"ToolActionFieldSelectorEventType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolActionFieldSelectorEventType","k":"enum","s":"enums","m":{"AggregationChange":"AggregationChange","Change":"Change"}}],"ToolActionFieldSelectorType":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolActionFieldSelectorType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolbarOrientation":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolbarOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ToolPanelOrientation":[{"p":"igniteui-angular-layouts","u":"/api/angular/igniteui-angular-layouts/21.0.0/enums/ToolPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"IgxArcGISOnlineMapImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxArcGISOnlineMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_defaultTokenTimeout":"ngAcceptInputType_defaultTokenTimeout","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_isMapPublic":"ngAcceptInputType_isMapPublic","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","cancellingImage":"cancellingImage","defaultTokenTimeout":"defaultTokenTimeout","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isMapPublic":"isMapPublic","mapServerUri":"mapServerUri","opacity":"opacity","password":"password","referer":"referer","refererUri":"refererUri","tokenGenerationEndPoint":"tokenGenerationEndPoint","userAgent":"userAgent","userName":"userName","userToken":"userToken","windowRect":"windowRect","acquireNewToken":"acquireNewToken","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxAzureMapsImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxAzureMapsImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_imageryStyle":"ngAcceptInputType_imageryStyle","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","apiKey":"apiKey","apiVersion":"apiVersion","cancellingImage":"cancellingImage","cultureName":"cultureName","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imageryStyle":"imageryStyle","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","localizedView":"localizedView","opacity":"opacity","referer":"referer","timestamp":"timestamp","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxBingMapsMapImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxBingMapsMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_actualSubDomains":"ngAcceptInputType_actualSubDomains","ngAcceptInputType_imageryStyle":"ngAcceptInputType_imageryStyle","ngAcceptInputType_isDeferredLoad":"ngAcceptInputType_isDeferredLoad","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_isInitialized":"ngAcceptInputType_isInitialized","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_subDomains":"ngAcceptInputType_subDomains","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","actualBingImageryRestUri":"actualBingImageryRestUri","actualSubDomains":"actualSubDomains","actualTilePath":"actualTilePath","apiKey":"apiKey","bingImageryRestUri":"bingImageryRestUri","cancellingImage":"cancellingImage","cultureName":"cultureName","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imageryStyle":"imageryStyle","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isDeferredLoad":"isDeferredLoad","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isInitialized":"isInitialized","opacity":"opacity","referer":"referer","subDomains":"subDomains","tilePath":"tilePath","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","requestMapSettings":"requestMapSettings","_createFromInternal":"_createFromInternal"}}],"IgxCustomMapImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxCustomMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","getTileImageUri":"getTileImageUri","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxGeographicContourLineSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicContourLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isLineContour":"ngAcceptInputType_isLineContour","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualFillScale":"actualFillScale","coercionMethods":"coercionMethods","fillScale":"fillScale","hasMarkers":"hasMarkers","isGeographic":"isGeographic","isLineContour":"isLineContour","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicHighDensityScatterSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicHighDensityScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_heatMaximum":"ngAcceptInputType_heatMaximum","ngAcceptInputType_heatMinimum":"ngAcceptInputType_heatMinimum","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isPixel":"ngAcceptInputType_isPixel","ngAcceptInputType_mouseOverEnabled":"ngAcceptInputType_mouseOverEnabled","ngAcceptInputType_pointExtent":"ngAcceptInputType_pointExtent","ngAcceptInputType_progressiveLoad":"ngAcceptInputType_progressiveLoad","ngAcceptInputType_progressiveStatus":"ngAcceptInputType_progressiveStatus","ngAcceptInputType_useBruteForce":"ngAcceptInputType_useBruteForce","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","isGeographic":"isGeographic","isPixel":"isPixel","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","mouseOverEnabled":"mouseOverEnabled","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","useBruteForce":"useBruteForce","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicMapComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicMapComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","actualSeries":"actualSeries","contentSeries":"contentSeries","ngAcceptInputType_actualWindowScale":"ngAcceptInputType_actualWindowScale","ngAcceptInputType_actualWorldRect":"ngAcceptInputType_actualWorldRect","ngAcceptInputType_backgroundTilingMode":"ngAcceptInputType_backgroundTilingMode","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_isMap":"ngAcceptInputType_isMap","ngAcceptInputType_resizeBehavior":"ngAcceptInputType_resizeBehavior","ngAcceptInputType_suppressZoomResetOnWorldRectChange":"ngAcceptInputType_suppressZoomResetOnWorldRectChange","ngAcceptInputType_useWorldRectForZoomBounds":"ngAcceptInputType_useWorldRectForZoomBounds","ngAcceptInputType_windowScale":"ngAcceptInputType_windowScale","ngAcceptInputType_worldRect":"ngAcceptInputType_worldRect","ngAcceptInputType_zoomable":"ngAcceptInputType_zoomable","ngAcceptInputType_zoomIsReady":"ngAcceptInputType_zoomIsReady","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualWindowScale":"actualWindowScale","actualWorldRect":"actualWorldRect","backgroundContent":"backgroundContent","backgroundTilingMode":"backgroundTilingMode","dataSource":"dataSource","height":"height","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isMap":"isMap","legend":"legend","resizeBehavior":"resizeBehavior","series":"series","suppressZoomResetOnWorldRectChange":"suppressZoomResetOnWorldRectChange","useWorldRectForZoomBounds":"useWorldRectForZoomBounds","width":"width","windowScale":"windowScale","worldRect":"worldRect","xAxis":"xAxis","yAxis":"yAxis","zoomable":"zoomable","zoomIsReady":"zoomIsReady","bindData":"bindData","clearTileCache":"clearTileCache","convertGeographicToZoom":"convertGeographicToZoom","deferredRefresh":"deferredRefresh","exportVisualData":"exportVisualData","findByName":"findByName","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getCurrentActualWorldRect":"getCurrentActualWorldRect","getGeographicFromZoom":"getGeographicFromZoom","getGeographicPoint":"getGeographicPoint","getPixelPoint":"getPixelPoint","getWindowPoint":"getWindowPoint","getZoomFromGeographicPoints":"getZoomFromGeographicPoints","getZoomFromGeographicRect":"getZoomFromGeographicRect","getZoomRectFromGeoRect":"getZoomRectFromGeoRect","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","styleUpdated":"styleUpdated","updateWorldRect":"updateWorldRect","updateZoomWindow":"updateZoomWindow","zoomToGeographic":"zoomToGeographic"}}],"IgxGeographicMapImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxGeographicMapSeriesHostComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicMapSeriesHostComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicMarkerSeriesBaseComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicMarkerSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicMarkerSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicMarkerSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicPolylineSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicPolylineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isPolyline":"ngAcceptInputType_isPolyline","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_shapeOpacity":"ngAcceptInputType_shapeOpacity","ngAcceptInputType_shapeStrokeThickness":"ngAcceptInputType_shapeStrokeThickness","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isPolyline":"isPolyline","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale","ensureShapeStyle":"ensureShapeStyle","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicProportionalSymbolSeriesBaseComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicProportionalSymbolSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicProportionalSymbolSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicProportionalSymbolSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_markerBrushBrightness":"ngAcceptInputType_markerBrushBrightness","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineBrightness":"ngAcceptInputType_markerOutlineBrightness","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerOutlineUsesFillScale":"ngAcceptInputType_markerOutlineUsesFillScale","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_radiusScaleUseGlobalValues":"ngAcceptInputType_radiusScaleUseGlobalValues","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicScatterAreaSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicScatterAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isArea":"ngAcceptInputType_isArea","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualColorScale":"actualColorScale","coercionMethods":"coercionMethods","colorMemberPath":"colorMemberPath","colorScale":"colorScale","hasMarkers":"hasMarkers","isArea":"isArea","isGeographic":"isGeographic","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","updateActualColorScale":"updateActualColorScale"}}],"IgxGeographicShapeSeriesBaseBaseComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicShapeSeriesBaseBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicShapeSeriesBaseComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicShapeSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicShapeSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicShapeSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isPolygon":"ngAcceptInputType_isPolygon","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_shapeOpacity":"ngAcceptInputType_shapeOpacity","ngAcceptInputType_shapeStrokeThickness":"ngAcceptInputType_shapeStrokeThickness","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isPolygon":"isPolygon","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale","ensureShapeStyle":"ensureShapeStyle","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicSymbolSeriesBaseComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicSymbolSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicSymbolSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicSymbolSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_hasOnlyMarkers":"ngAcceptInputType_hasOnlyMarkers","ngAcceptInputType_isCustomScatterMarkerStyleAllowed":"ngAcceptInputType_isCustomScatterMarkerStyleAllowed","ngAcceptInputType_isCustomScatterStyleAllowed":"ngAcceptInputType_isCustomScatterStyleAllowed","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_markerCollisionAvoidance":"ngAcceptInputType_markerCollisionAvoidance","ngAcceptInputType_markerFillMode":"ngAcceptInputType_markerFillMode","ngAcceptInputType_markerOutlineMode":"ngAcceptInputType_markerOutlineMode","ngAcceptInputType_markerThickness":"ngAcceptInputType_markerThickness","ngAcceptInputType_markerType":"ngAcceptInputType_markerType","ngAcceptInputType_maximumMarkers":"ngAcceptInputType_maximumMarkers","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicTileSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicTileSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_fillScaleUseGlobalValues":"ngAcceptInputType_fillScaleUseGlobalValues","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isCustomShapeMarkerStyleAllowed":"ngAcceptInputType_isCustomShapeMarkerStyleAllowed","ngAcceptInputType_isCustomShapeStyleAllowed":"ngAcceptInputType_isCustomShapeStyleAllowed","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ngAcceptInputType_itemSearchMode":"ngAcceptInputType_itemSearchMode","ngAcceptInputType_itemSearchPointsThreshold":"ngAcceptInputType_itemSearchPointsThreshold","ngAcceptInputType_itemSearchThreshold":"ngAcceptInputType_itemSearchThreshold","ngAcceptInputType_shapeFilterResolution":"ngAcceptInputType_shapeFilterResolution","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","imageTilesReady":"imageTilesReady","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isTile":"isTile","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","tileImagery":"tileImagery","visibleFromScale":"visibleFromScale","clearTileCache":"clearTileCache","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicXYTriangulatingSeriesBaseComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicXYTriangulatingSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxGeographicXYTriangulatingSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxGeographicXYTriangulatingSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_hasMarkers":"ngAcceptInputType_hasMarkers","ngAcceptInputType_isGeographic":"ngAcceptInputType_isGeographic","ngAcceptInputType_visibleFromScale":"ngAcceptInputType_visibleFromScale","ɵcmp":"ɵcmp","ɵfac":"ɵfac","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgxImagesChangedEventArgs":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxImagesChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxImageTilesReadyEventArgs":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxImageTilesReadyEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxOpenStreetMapImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxOpenStreetMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","tilePath":"tilePath","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxSubDomainsCollection":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxSubDomainsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxTileGeneratorMapImagery":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxTileGeneratorMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isHorizontalWrappingEnabled":"ngAcceptInputType_isHorizontalWrappingEnabled","ngAcceptInputType_opacity":"ngAcceptInputType_opacity","ngAcceptInputType_windowRect":"ngAcceptInputType_windowRect","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","tileGenerator":"tileGenerator","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgxTileSeriesComponent":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/classes/IgxTileSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_isTile":"ngAcceptInputType_isTile","ɵcmp":"ɵcmp","ɵfac":"ɵfac","isTile":"isTile","tileImagery":"tileImagery","deferredRefresh":"deferredRefresh","findByName":"findByName"}}],"AzureMapsImageryStyle":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/enums/AzureMapsImageryStyle","k":"enum","s":"enums","m":{"DarkGrey":"DarkGrey","HybridDarkGreyOverlay":"HybridDarkGreyOverlay","HybridRoadOverlay":"HybridRoadOverlay","LabelsDarkGreyOverlay":"LabelsDarkGreyOverlay","LabelsRoadOverlay":"LabelsRoadOverlay","Road":"Road","Satellite":"Satellite","TerraOverlay":"TerraOverlay","TrafficAbsoluteOverlay":"TrafficAbsoluteOverlay","TrafficDelayOverlay":"TrafficDelayOverlay","TrafficReducedOverlay":"TrafficReducedOverlay","TrafficRelativeDarkOverlay":"TrafficRelativeDarkOverlay","TrafficRelativeOverlay":"TrafficRelativeOverlay","WeatherInfraredOverlay":"WeatherInfraredOverlay","WeatherRadarOverlay":"WeatherRadarOverlay"}}],"BingMapsImageryStyle":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/enums/BingMapsImageryStyle","k":"enum","s":"enums","m":{"Aerial":"Aerial","AerialWithLabels":"AerialWithLabels","CanvasDark":"CanvasDark","CanvasGray":"CanvasGray","CanvasLight":"CanvasLight","Road":"Road"}}],"MapBackgroundTilingMode":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/enums/MapBackgroundTilingMode","k":"enum","s":"enums","m":{"Auto":"Auto","NonWrapped":"NonWrapped","Wrapped":"Wrapped"}}],"MapResizeBehavior":[{"p":"igniteui-angular-maps","u":"/api/angular/igniteui-angular-maps/21.0.0/enums/MapResizeBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","MaintainCenterPosition":"MaintainCenterPosition","MaintainTopLeftPosition":"MaintainTopLeftPosition"}}],"IgxDashboardTileChangingContentEventArgs":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileChangingContentEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contentJson":"contentJson"}}],"IgxDashboardTileComponent":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileComponent","k":"class","s":"classes","m":{"constructor":"constructor","_childTemplateRef":"_childTemplateRef","_dynamicContent":"_dynamicContent","container":"container","contentCustomizations":"contentCustomizations","ngAcceptInputType_actualBrushes":"ngAcceptInputType_actualBrushes","ngAcceptInputType_actualOutlines":"ngAcceptInputType_actualOutlines","ngAcceptInputType_autoCalloutsVisible":"ngAcceptInputType_autoCalloutsVisible","ngAcceptInputType_baseTheme":"ngAcceptInputType_baseTheme","ngAcceptInputType_brushes":"ngAcceptInputType_brushes","ngAcceptInputType_crosshairsAnnotationEnabled":"ngAcceptInputType_crosshairsAnnotationEnabled","ngAcceptInputType_crosshairsDisplayMode":"ngAcceptInputType_crosshairsDisplayMode","ngAcceptInputType_customizations":"ngAcceptInputType_customizations","ngAcceptInputType_density":"ngAcceptInputType_density","ngAcceptInputType_excludedProperties":"ngAcceptInputType_excludedProperties","ngAcceptInputType_finalValueAnnotationsVisible":"ngAcceptInputType_finalValueAnnotationsVisible","ngAcceptInputType_highlightedValuesDisplayMode":"ngAcceptInputType_highlightedValuesDisplayMode","ngAcceptInputType_includedProperties":"ngAcceptInputType_includedProperties","ngAcceptInputType_isUserAnnotationsEnabled":"ngAcceptInputType_isUserAnnotationsEnabled","ngAcceptInputType_isVisTypeRadial":"ngAcceptInputType_isVisTypeRadial","ngAcceptInputType_isVisTypeStacked":"ngAcceptInputType_isVisTypeStacked","ngAcceptInputType_outlines":"ngAcceptInputType_outlines","ngAcceptInputType_selectedSeriesItems":"ngAcceptInputType_selectedSeriesItems","ngAcceptInputType_shouldAvoidAxisAnnotationCollisions":"ngAcceptInputType_shouldAvoidAxisAnnotationCollisions","ngAcceptInputType_shouldDisplayMockData":"ngAcceptInputType_shouldDisplayMockData","ngAcceptInputType_shouldUseSkeletonStyleForMockData":"ngAcceptInputType_shouldUseSkeletonStyleForMockData","ngAcceptInputType_trendLineBrushes":"ngAcceptInputType_trendLineBrushes","ngAcceptInputType_trendLineType":"ngAcceptInputType_trendLineType","ngAcceptInputType_trendLineTypes":"ngAcceptInputType_trendLineTypes","ngAcceptInputType_validVisualizationTypePriorityThreshold":"ngAcceptInputType_validVisualizationTypePriorityThreshold","ngAcceptInputType_validVisualizationTypes":"ngAcceptInputType_validVisualizationTypes","ngAcceptInputType_valueLines":"ngAcceptInputType_valueLines","ngAcceptInputType_valueLinesBrushes":"ngAcceptInputType_valueLinesBrushes","ngAcceptInputType_visualizationType":"ngAcceptInputType_visualizationType","ɵcmp":"ɵcmp","ɵfac":"ɵfac","actualBrushes":"actualBrushes","actualCustomizations":"actualCustomizations","actualOutlines":"actualOutlines","autoCalloutsVisible":"autoCalloutsVisible","backgroundColor":"backgroundColor","baseTheme":"baseTheme","brushes":"brushes","categoryAxisMajorStroke":"categoryAxisMajorStroke","changingContent":"changingContent","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsDisplayMode":"crosshairsDisplayMode","customizations":"customizations","dataSource":"dataSource","density":"density","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVisTypeRadial":"isVisTypeRadial","isVisTypeStacked":"isVisTypeStacked","outlines":"outlines","selectedSeriesItems":"selectedSeriesItems","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","tileTitle":"tileTitle","trendLineBrushes":"trendLineBrushes","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","validVisualizationTypePriorityThreshold":"validVisualizationTypePriorityThreshold","validVisualizationTypes":"validVisualizationTypes","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesGlobalAverageBrush":"valueLinesGlobalAverageBrush","valueLinesGlobalMaximumBrush":"valueLinesGlobalMaximumBrush","valueLinesGlobalMinimumBrush":"valueLinesGlobalMinimumBrush","visualizationType":"visualizationType","width":"width","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","cancelAnnotationFlow":"cancelAnnotationFlow","clearSettings":"clearSettings","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","getDesiredToolbarActions":"getDesiredToolbarActions","getSettingsValue":"getSettingsValue","hasModifiedSettings":"hasModifiedSettings","loadAnnotationsFromJson":"loadAnnotationsFromJson","ngAfterViewInit":"ngAfterViewInit","ngOnDestroy":"ngOnDestroy","onUIReady":"onUIReady","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","removeSettingsValue":"removeSettingsValue","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","updateSettingsValue":"updateSettingsValue","updateStyle":"updateStyle","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgxDashboardTileCustomizationCollection":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileCustomizationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgxDashboardTileCustomizationComponent":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileCustomizationComponent","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_collectionIndex":"ngAcceptInputType_collectionIndex","ngAcceptInputType_isCollectionInsertionAtEnd":"ngAcceptInputType_isCollectionInsertionAtEnd","ngAcceptInputType_isCollectionInsertionAtIndex":"ngAcceptInputType_isCollectionInsertionAtIndex","ngAcceptInputType_isCollectionInsertionAtStart":"ngAcceptInputType_isCollectionInsertionAtStart","ngAcceptInputType_isCollectionRemovaltIndex":"ngAcceptInputType_isCollectionRemovaltIndex","ngAcceptInputType_matchParentIndex":"ngAcceptInputType_matchParentIndex","ngAcceptInputType_order":"ngAcceptInputType_order","ɵcmp":"ɵcmp","ɵfac":"ɵfac","collectionIndex":"collectionIndex","isCollectionInsertionAtEnd":"isCollectionInsertionAtEnd","isCollectionInsertionAtIndex":"isCollectionInsertionAtIndex","isCollectionInsertionAtStart":"isCollectionInsertionAtStart","isCollectionRemovaltIndex":"isCollectionRemovaltIndex","matchParentIndex":"matchParentIndex","matchType":"matchType","order":"order","propertyName":"propertyName","propertyValue":"propertyValue","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal"}}],"IgxDashboardTileFilterStringErrorsParsingEventArgs":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","errors":"errors","propertyName":"propertyName"}}],"IgxDashboardTileGroupDescription":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_sortDirection":"ngAcceptInputType_sortDirection","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgxDashboardTileGroupDescriptionCollection":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgxDashboardTileSortDescription":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_sortDirection":"ngAcceptInputType_sortDirection","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgxDashboardTileSortDescriptionCollection":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgxDashboardTileSummaryDescription":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_operand":"ngAcceptInputType_operand","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgxDashboardTileSummaryDescriptionCollection":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/classes/IgxDashboardTileSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_shouldDetachOnTargetChange":"ngAcceptInputType_shouldDetachOnTargetChange","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"DashboardTileVisualizationType":[{"p":"igniteui-angular-dashboards","u":"/api/angular/igniteui-angular-dashboards/21.0.0/enums/DashboardTileVisualizationType","k":"enum","s":"enums","m":{"AreaChart":"AreaChart","Auto":"Auto","BarChart":"BarChart","BubbleChart":"BubbleChart","BulletGraph":"BulletGraph","CandlestickChart":"CandlestickChart","ChoroplethMap":"ChoroplethMap","ColumnChart":"ColumnChart","DoughnutChart":"DoughnutChart","FunnelChart":"FunnelChart","Grid":"Grid","HeatmapMap":"HeatmapMap","HighDensityMap":"HighDensityMap","KPI":"KPI","LinearGauge":"LinearGauge","LineChart":"LineChart","Map":"Map","OHLCChart":"OHLCChart","PieChart":"PieChart","PolarChart":"PolarChart","RadialGauge":"RadialGauge","RadialLineChart":"RadialLineChart","ScatterChart":"ScatterChart","ScatterMap":"ScatterMap","SparklineChart":"SparklineChart","SplineAreaChart":"SplineAreaChart","SplineChart":"SplineChart","StackedAreaChart":"StackedAreaChart","StackedBarChart":"StackedBarChart","StackedColumnChart":"StackedColumnChart","StepAreaChart":"StepAreaChart","StepLineChart":"StepLineChart","TextGauge":"TextGauge","TextView":"TextView","TimeSeriesChart":"TimeSeriesChart","Treemap":"Treemap"}}],"Fdc3ContextType":[{"p":"igniteui-angular-fdc3","u":"/api/angular/igniteui-angular-fdc3/21.0.0/enums/Fdc3ContextType","k":"enum","s":"enums","m":{"Contact":"Contact","ContactList":"ContactList","Instrument":"Instrument","InstrumentList":"InstrumentList","Organization":"Organization","OrganizationList":"OrganizationList","Portfolio":"Portfolio","Position":"Position","Unknown":"Unknown"}}],"Fdc3IntentType":[{"p":"igniteui-angular-fdc3","u":"/api/angular/igniteui-angular-fdc3/21.0.0/enums/Fdc3IntentType","k":"enum","s":"enums","m":{"All":"All","None":"None","StartCall":"StartCall","StartChat":"StartChat","Unknown":"Unknown","ViewAnalysis":"ViewAnalysis","ViewChart":"ViewChart","ViewContact":"ViewContact","ViewInstrument":"ViewInstrument","ViewNews":"ViewNews","ViewQuote":"ViewQuote"}}],"AnyValueDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/AnyValueDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"ArgumentExceptionExtension":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ArgumentExceptionExtension","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArgumentOutOfRangeExceptionExtension":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ArgumentOutOfRangeExceptionExtension","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArithmeticException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ArithmeticException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArrayFormula":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ArrayFormula","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellRange":"cellRange","applyTo":"applyTo","clearCellRange":"clearCellRange","toString":"toString","areEqual":"areEqual","parse":"parse","staticInit":"staticInit"}}],"ArrayProxy":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ArrayProxy","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","_j":"_j","getEnumerator":"getEnumerator","getLength":"getLength","item":"item"}}],"AverageConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/AverageConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","aboveBelow":"aboveBelow","cellFormat":"cellFormat","conditionType":"conditionType","numericStandardDeviation":"numericStandardDeviation","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"AverageFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/AverageFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","average":"average","type":"type"}}],"Axis":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Axis","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisBetweenCategories":"axisBetweenCategories","axisGroup":"axisGroup","axisTitle":"axisTitle","baseUnit":"baseUnit","baseUnitIsAuto":"baseUnitIsAuto","categoryType":"categoryType","chart":"chart","crosses":"crosses","crossesAt":"crossesAt","displayUnit":"displayUnit","displayUnitCustom":"displayUnitCustom","displayUnitLabel":"displayUnitLabel","gapWidth":"gapWidth","logBase":"logBase","majorGridLines":"majorGridLines","majorTickMark":"majorTickMark","majorUnit":"majorUnit","majorUnitIsAuto":"majorUnitIsAuto","majorUnitScale":"majorUnitScale","maximumScale":"maximumScale","maximumScaleIsAuto":"maximumScaleIsAuto","minimumScale":"minimumScale","minimumScaleIsAuto":"minimumScaleIsAuto","minorGridLines":"minorGridLines","minorTickMark":"minorTickMark","minorUnit":"minorUnit","minorUnitIsAuto":"minorUnitIsAuto","minorUnitScale":"minorUnitScale","owner":"owner","position":"position","reversePlotOrder":"reversePlotOrder","scaleType":"scaleType","sheet":"sheet","tickLabelPosition":"tickLabelPosition","tickLabels":"tickLabels","tickLabelSpacing":"tickLabelSpacing","tickLabelSpacingIsAuto":"tickLabelSpacingIsAuto","tickLines":"tickLines","tickMarkSpacing":"tickMarkSpacing","type":"type","visible":"visible","workbook":"workbook","worksheet":"worksheet","setMajorMinorUnit":"setMajorMinorUnit"}}],"AxisCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/AxisCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","item":"item","remove":"remove","staticInit":"staticInit"}}],"BlanksConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/BlanksConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"BoxAndWhiskerSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/BoxAndWhiskerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","quartileCalculation":"quartileCalculation","showInnerPoints":"showInnerPoints","showMeanLine":"showMeanLine","showMeanMarkers":"showMeanMarkers","showOutlierPoints":"showOutlierPoints"}}],"CategoryAxisBinning":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CategoryAxisBinning","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","binWidth":"binWidth","numberOfBins":"numberOfBins","overflow":"overflow","overflowThreshold":"overflowThreshold","underflow":"underflow","underflowThreshold":"underflowThreshold"}}],"CellConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","dataBarInfo":"dataBarInfo","hasConditionFormatting":"hasConditionFormatting","iconInfo":"iconInfo"}}],"CellDataBarInfo":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellDataBarInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisColor":"axisColor","axisPosition":"axisPosition","barBorder":"barBorder","barColor":"barColor","barFillType":"barFillType","barPositionFrom":"barPositionFrom","barPositionTo":"barPositionTo","direction":"direction","isNegative":"isNegative","showValue":"showValue"}}],"CellFill":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","noColor":"noColor","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillGradient":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellFillGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","stops":"stops","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillGradientStop":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellFillGradientStop","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","offset":"offset","equals":"equals","getHashCode":"getHashCode"}}],"CellFillLinearGradient":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellFillLinearGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","angle":"angle","stops":"stops","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillPattern":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellFillPattern","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backgroundColorInfo":"backgroundColorInfo","patternColorInfo":"patternColorInfo","patternStyle":"patternStyle","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillRectangularGradient":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellFillRectangularGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottom":"bottom","left":"left","right":"right","stops":"stops","top":"top","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellIconInfo":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CellIconInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","icon":"icon","iconIndex":"iconIndex","iconSet":"iconSet","showValue":"showValue"}}],"ChartArea":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartArea","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","roundedCorners":"roundedCorners","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartAreaBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartAreaBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","roundedCorners":"roundedCorners","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartBorder":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartBorder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartDropLines":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartDropLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartEmptyFill":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartEmptyFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartFillBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartFillBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartGradientFill":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartGradientFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","angle":"angle","chart":"chart","gradientType":"gradientType","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","getStops":"getStops"}}],"ChartGridLines":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartGridLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","gridLineType":"gridLineType","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartHighLowLines":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartHighLowLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartLabelBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartLabelBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ChartLine":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartLine","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartLineBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartLineBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartObject":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartObject","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartPatternFill":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartPatternFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backgroundColor":"backgroundColor","chart":"chart","foregroundColor":"foregroundColor","owner":"owner","pattern":"pattern","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartSeriesLines":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartSeriesLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"Chartsheet":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Chartsheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","displayOptions":"displayOptions","hasProtectionPassword":"hasProtectionPassword","isProtected":"isProtected","name":"name","printOptions":"printOptions","protection":"protection","selected":"selected","sheetIndex":"sheetIndex","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","moveToSheetIndex":"moveToSheetIndex","protect":"protect","unprotect":"unprotect","staticInit":"staticInit"}}],"ChartsheetDisplayOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartsheetDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"ChartsheetDisplayOptionsBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartsheetDisplayOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"ChartsheetPrintOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartsheetPrintOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","paperSize":"paperSize","printErrors":"printErrors","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","resolution":"resolution","rightMargin":"rightMargin","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","reset":"reset"}}],"ChartsheetProtection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartsheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowEditContents":"allowEditContents","allowEditObjects":"allowEditObjects"}}],"ChartSolidFill":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartSolidFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","color":"color","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartTextAreaBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartTextAreaBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ChartTickLines":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartTickLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartTitle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ChartTitle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","overlay":"overlay","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ColorScaleConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ColorScaleConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorScaleType":"colorScaleType","conditionType":"conditionType","formula":"formula","maximumThreshold":"maximumThreshold","midpointThreshold":"midpointThreshold","minimumThreshold":"minimumThreshold","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ColorScaleCriterion":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ColorScaleCriterion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formatColor":"formatColor","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue","toString":"toString"}}],"ComboChartGroup":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ComboChartGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisGroup":"axisGroup","chart":"chart","chartType":"chartType","doughnutHoleSize":"doughnutHoleSize","firstSliceAngle":"firstSliceAngle","gapWidth":"gapWidth","owner":"owner","seriesOverlap":"seriesOverlap","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ComboChartGroupCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ComboChartGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","item":"item","remove":"remove","staticInit":"staticInit"}}],"ConditionalFormatBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ConditionalFormatBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ConditionalFormatCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ConditionalFormatCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","addAverageCondition":"addAverageCondition","addBlanksCondition":"addBlanksCondition","addColorScaleCondition":"addColorScaleCondition","addDataBarCondition":"addDataBarCondition","addDateTimeCondition":"addDateTimeCondition","addDuplicateCondition":"addDuplicateCondition","addErrorsCondition":"addErrorsCondition","addFormulaCondition":"addFormulaCondition","addIconSetCondition":"addIconSetCondition","addNoBlanksCondition":"addNoBlanksCondition","addNoErrorsCondition":"addNoErrorsCondition","addOperatorCondition":"addOperatorCondition","addRankCondition":"addRankCondition","addTextCondition":"addTextCondition","addUniqueCondition":"addUniqueCondition","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"ConditionBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ConditionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ConditionValue":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ConditionValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue","toString":"toString"}}],"CriterionBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CriterionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue"}}],"CustomDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","getFormula":"getFormula","isEquivalentTo":"isEquivalentTo","setFormula":"setFormula"}}],"CustomFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","condition1":"condition1","condition2":"condition2","conditionalOperator":"conditionalOperator"}}],"CustomFilterCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomFilterCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comparisonOperator":"comparisonOperator","value":"value","equals":"equals","getHashCode":"getHashCode"}}],"CustomListSortCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomListSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","list":"list","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"CustomTableStyleCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomTableStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"CustomView":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomView","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","name":"name","saveHiddenRowsAndColumns":"saveHiddenRowsAndColumns","savePrintOptions":"savePrintOptions","windowOptions":"windowOptions","apply":"apply","getDisplayOptions":"getDisplayOptions","getHiddenColumns":"getHiddenColumns","getHiddenRows":"getHiddenRows","getPrintOptions":"getPrintOptions","getSheetDisplayOptions":"getSheetDisplayOptions","getSheetPrintOptions":"getSheetPrintOptions"}}],"CustomViewChartDisplayOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomViewChartDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"CustomViewCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomViewCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"CustomViewDisplayOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomViewDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","magnificationInCurrentView":"magnificationInCurrentView","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showZeroValues":"showZeroValues","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"CustomViewWindowOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/CustomViewWindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","boundsInPixels":"boundsInPixels","maximized":"maximized","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","showFormulaBar":"showFormulaBar","showStatusBar":"showStatusBar","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"DataBarConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DataBarConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisColor":"axisColor","axisPosition":"axisPosition","barBorderColor":"barBorderColor","barColor":"barColor","barFillType":"barFillType","conditionType":"conditionType","direction":"direction","fillPercentMax":"fillPercentMax","fillPercentMin":"fillPercentMin","formula":"formula","maxPoint":"maxPoint","minPoint":"minPoint","negativeBarFormat":"negativeBarFormat","priority":"priority","regions":"regions","showBorder":"showBorder","showValue":"showValue","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DataLabel":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DataLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","height":"height","horizontalOverflow":"horizontalOverflow","isDeleted":"isDeleted","labelPosition":"labelPosition","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","separator":"separator","sheet":"sheet","showBubbleSize":"showBubbleSize","showCategoryName":"showCategoryName","showLegendKey":"showLegendKey","showPercentage":"showPercentage","showRange":"showRange","showSeriesName":"showSeriesName","showValue":"showValue","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","width":"width","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"DataPoint":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DataPoint","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyPicToEnd":"applyPicToEnd","applyPicToFront":"applyPicToFront","applyPicToSides":"applyPicToSides","border":"border","chart":"chart","dataLabel":"dataLabel","explosion":"explosion","fill":"fill","invertIfNegative":"invertIfNegative","markerBorder":"markerBorder","markerFill":"markerFill","markerSize":"markerSize","markerStyle":"markerStyle","owner":"owner","setAsTotal":"setAsTotal","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"DataPointCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DataPointCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item"}}],"DataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"DataValidationRuleCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DataValidationRuleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","findRule":"findRule","getAllReferences":"getAllReferences","item":"item","remove":"remove","removeItem":"removeItem","staticInit":"staticInit"}}],"DatePeriodFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DatePeriodFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","value":"value"}}],"DateRange":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DateRange","k":"class","s":"classes","m":{"constructor":"constructor","end":"end","start":"start","$t":"$t"}}],"DateRangeFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DateRangeFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start"}}],"DateTimeConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DateTimeConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","dateOperator":"dateOperator","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DiamondShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DiamondShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"DisplayOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showZeroValues":"showZeroValues","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"DisplayOptionsBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DisplayOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","visibility":"visibility","reset":"reset"}}],"DisplayUnitLabel":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DisplayUnitLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"DisplayValueCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DisplayValueCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"DivideByZeroException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DivideByZeroException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"DocumentEncryptedException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentEncryptedException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"DocumentProperties":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentProperties","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","author":"author","category":"category","comments":"comments","company":"company","keywords":"keywords","manager":"manager","status":"status","subject":"subject","title":"title"}}],"DocumentsCoreLocaleBg":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleCs":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleDa":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleDe":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleEn":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleEs":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleFr":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleHu":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleIt":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleJa":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleNb":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleNl":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocalePl":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocalePt":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleRo":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleRu":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleSv":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleTr":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleZhHans":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleZhHant":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DocumentsCoreLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DuplicateConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DuplicateConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DynamicValuesFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/DynamicValuesFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"EllipseShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/EllipseShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"EndOfStreamException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/EndOfStreamException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ErrorBars":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ErrorBars","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","direction":"direction","endStyle":"endStyle","errorValueType":"errorValueType","fill":"fill","owner":"owner","sheet":"sheet","value":"value","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet"}}],"ErrorsConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ErrorsConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ErrorValue":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ErrorValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","argumentOrFunctionNotAvailable":"argumentOrFunctionNotAvailable","circularity":"circularity","divisionByZero":"divisionByZero","emptyCellRangeIntersection":"emptyCellRangeIntersection","invalidCellReference":"invalidCellReference","valueRangeOverflow":"valueRangeOverflow","wrongFunctionName":"wrongFunctionName","wrongOperandType":"wrongOperandType","toString":"toString"}}],"ExcelCalcErrorValue":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelCalcErrorValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","code":"code","errorValue":"errorValue","message":"message","toString":"toString"}}],"ExcelCalcFunction":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelCalcFunction","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxArgs":"maxArgs","minArgs":"minArgs","name":"name","canParameterBeEnumerable":"canParameterBeEnumerable","doesParameterAllowIntermediateResultArray":"doesParameterAllowIntermediateResultArray","getArguments":"getArguments","performEvaluation":"performEvaluation"}}],"ExcelCalcNumberStack":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelCalcNumberStack","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","owningCell":"owningCell","clear":"clear","count":"count","peek":"peek","pop":"pop","push":"push","reset":"reset"}}],"ExcelCalcValue":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelCalcValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","isArray":"isArray","isArrayGroup":"isArrayGroup","isBoolean":"isBoolean","isDateTime":"isDateTime","isDBNull":"isDBNull","isError":"isError","isNull":"isNull","isReference":"isReference","isString":"isString","value":"value","compareTo":"compareTo","getResolvedValue":"getResolvedValue","isSameValue":"isSameValue","toArrayProxy":"toArrayProxy","toArrayProxyGroup":"toArrayProxyGroup","toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toErrorValue":"toErrorValue","toInt":"toInt","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toReference":"toReference","toSingle":"toSingle","toString":"toString","toString1":"toString1","areValuesEqual":"areValuesEqual","dateTimeToExcelDate":"dateTimeToExcelDate","excelDateToDateTime":"excelDateToDateTime"}}],"ExcelLocaleBg":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleCs":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleDa":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleDe":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleEn":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleEs":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleFr":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleHu":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleIt":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleJa":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","String":"String","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleNb":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleNl":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocalePl":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocalePt":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleRo":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleRu":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Axis_NoCrossAxis1":"LE_Axis_NoCrossAxis1","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartGradientFill_EmptyStops1":"LE_ChartGradientFill_EmptyStops1","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidConditionalFormatFormula1":"LE_FormulaParseException_InvalidConditionalFormatFormula1","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_GradientStop_InvalidPosition1":"LE_GradientStop_InvalidPosition1","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleSv":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleTr":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleZhHans":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleZhHant":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ExcelLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"FillFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FillFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fill":"fill"}}],"FillSortCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FillSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fill":"fill","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"Filter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Filter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"FixedDateGroup":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FixedDateGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start","type":"type","value":"value","equals":"equals","getHashCode":"getHashCode","getRange":"getRange"}}],"FixedDateGroupCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FixedDateGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"FixedValuesFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FixedValuesFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","calendarType":"calendarType","includeBlanks":"includeBlanks","dateGroups":"dateGroups","displayValues":"displayValues"}}],"FontColorFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FontColorFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fontColorInfo":"fontColorInfo"}}],"FontColorSortCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FontColorSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fontColorInfo":"fontColorInfo","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"FormattedFontBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedFontBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedString":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedString","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","unformattedString":"unformattedString","clone":"clone","equals":"equals","getFont":"getFont","getFormattingRuns":"getFormattingRuns","getHashCode":"getHashCode","toString":"toString"}}],"FormattedStringFont":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedStringFont","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","formattedString":"formattedString","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedText":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedText","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","verticalAlignment":"verticalAlignment","clone":"clone","getFont":"getFont","getFormattingRuns":"getFormattingRuns","paragraphs":"paragraphs","toString":"toString"}}],"FormattedTextFont":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedTextFont","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","formattedText":"formattedText","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedTextParagraph":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedTextParagraph","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignment":"alignment","formattedText":"formattedText","startIndex":"startIndex","unformattedString":"unformattedString"}}],"FormattedTextParagraphCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormattedTextParagraphCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"Formula":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Formula","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyTo":"applyTo","toString":"toString","areEqual":"areEqual","parse":"parse","staticInit":"staticInit"}}],"FormulaConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormulaConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","formula":"formula","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"FormulaParseException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FormulaParseException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","charIndexOfError":"charIndexOfError","formulaValue":"formulaValue","portionWithError":"portionWithError"}}],"FrozenPaneSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/FrozenPaneSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","frozenColumns":"frozenColumns","frozenRows":"frozenRows","reset":"reset","resetCore":"resetCore"}}],"GeographicMapColors":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/GeographicMapColors","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maximum":"maximum","midpoint":"midpoint","minimum":"minimum","seriesColor":"seriesColor"}}],"GeographicMapSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/GeographicMapSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","area":"area","attribution":"attribution","colors":"colors","cultureLanguage":"cultureLanguage","cultureRegion":"cultureRegion","labels":"labels","projection":"projection"}}],"GradientStop":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/GradientStop","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","position":"position"}}],"HeartShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/HeartShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"HiddenColumnCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/HiddenColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","worksheet":"worksheet","add_1":"add_1","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"HiddenRowCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/HiddenRowCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","worksheet":"worksheet","add_1":"add_1","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"HorizontalPageBreak":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/HorizontalPageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstRowOnPage":"firstRowOnPage","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"HorizontalPageBreakCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/HorizontalPageBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"IconCriterion":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IconCriterion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comparison":"comparison","formula":"formula","icon":"icon","iconSet":"iconSet","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue"}}],"IconFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IconFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","iconIndex":"iconIndex","iconSet":"iconSet"}}],"IconSetConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IconSetConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","formula":"formula","iconSet":"iconSet","isCustom":"isCustom","isReverseOrder":"isReverseOrder","priority":"priority","regions":"regions","showValue":"showValue","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","iconCriteria":"iconCriteria","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"IconSetCriterionCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IconSetCriterionCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","getEnumeratorObject":"getEnumeratorObject","item":"item"}}],"IconSortCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IconSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","iconIndex":"iconIndex","iconSet":"iconSet","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"InvalidCastException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/InvalidCastException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"InvalidEnumArgumentException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/InvalidEnumArgumentException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"IOException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IOException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"IrregularSeal1Shape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IrregularSeal1Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"IrregularSeal2Shape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/IrregularSeal2Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"KeyNotFoundException":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/KeyNotFoundException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"LeaderLines":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/LeaderLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"Legend":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Legend","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","defaultFontFill":"defaultFontFill","fill":"fill","height":"height","left":"left","overlay":"overlay","owner":"owner","position":"position","rotation":"rotation","sheet":"sheet","textDirection":"textDirection","top":"top","width":"width","workbook":"workbook","worksheet":"worksheet","legendEntries":"legendEntries"}}],"LegendEntries":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/LegendEntries","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item"}}],"LegendEntry":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/LegendEntry","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","font":"font","fontFill":"fontFill","isDeleted":"isDeleted","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","del":"del"}}],"LightningBoltShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/LightningBoltShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"LimitedValueDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/LimitedValueDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"LineShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/LineShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"ListDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ListDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showDropdown":"showDropdown","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","getValuesFormula":"getValuesFormula","isEquivalentTo":"isEquivalentTo","setValues":"setValues","setValuesFormula":"setValuesFormula"}}],"NamedReference":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/NamedReference","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","formula":"formula","isSimpleReferenceFormula":"isSimpleReferenceFormula","name":"name","referencedCell":"referencedCell","referencedRegion":"referencedRegion","referencedRegions":"referencedRegions","scope":"scope","setFormula":"setFormula","toString":"toString"}}],"NamedReferenceBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/NamedReferenceBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","name":"name","scope":"scope"}}],"NamedReferenceCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/NamedReferenceCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","workbook":"workbook","add":"add","clear":"clear","contains":"contains","find":"find","findAll":"findAll","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"NegativeBarFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/NegativeBarFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","barBorderColor":"barBorderColor","barBorderColorType":"barBorderColorType","barColor":"barColor","barColorType":"barColorType"}}],"NoBlanksConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/NoBlanksConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"NoErrorsConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/NoErrorsConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"OneConstraintDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/OneConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","validationOperator":"validationOperator","clone":"clone","getConstraintFormula":"getConstraintFormula","isEquivalentTo":"isEquivalentTo","setConstraint":"setConstraint","setConstraintFormula":"setConstraintFormula"}}],"OperatorConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/OperatorConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","operand1":"operand1","operand2":"operand2","operator":"operator","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setOperand1":"setOperand1","setOperand1Formula":"setOperand1Formula","setOperand2":"setOperand2","setOperand2Formula":"setOperand2Formula","setRegions":"setRegions","staticInit":"staticInit"}}],"OrderedSortCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/OrderedSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"PageBreak":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"PageBreakCollection$1":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PageBreakCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"PaneSettingsBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PaneSettingsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","reset":"reset","resetCore":"resetCore"}}],"PentagonShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PentagonShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"PlotArea":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PlotArea","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","height":"height","left":"left","owner":"owner","position":"position","roundedCorners":"roundedCorners","sheet":"sheet","top":"top","width":"width","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"PrintAreasCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PrintAreasCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"PrintOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PrintOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","centerHorizontally":"centerHorizontally","centerVertically":"centerVertically","columnsToRepeatAtLeft":"columnsToRepeatAtLeft","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","maxPagesHorizontally":"maxPagesHorizontally","maxPagesVertically":"maxPagesVertically","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","pageOrder":"pageOrder","paperSize":"paperSize","printErrors":"printErrors","printGridlines":"printGridlines","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","printRowAndColumnHeaders":"printRowAndColumnHeaders","resolution":"resolution","rightMargin":"rightMargin","rowsToRepeatAtTop":"rowsToRepeatAtTop","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","scalingFactor":"scalingFactor","scalingType":"scalingType","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","clearPageBreaks":"clearPageBreaks","horizontalPageBreaks":"horizontalPageBreaks","insertPageBreak":"insertPageBreak","printAreas":"printAreas","reset":"reset","verticalPageBreaks":"verticalPageBreaks"}}],"PrintOptionsBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/PrintOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","paperSize":"paperSize","printErrors":"printErrors","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","resolution":"resolution","rightMargin":"rightMargin","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","reset":"reset"}}],"RankConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RankConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","isPercent":"isPercent","priority":"priority","rank":"rank","regions":"regions","stopIfTrue":"stopIfTrue","topBottom":"topBottom","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"RectangleShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RectangleShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"RelativeDateRangeFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RelativeDateRangeFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","duration":"duration","end":"end","offset":"offset","start":"start"}}],"RelativeIndex":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RelativeIndex","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","index":"index","compareTo":"compareTo"}}],"RelativeIndexSortSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RelativeIndexSortSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","sortConditions":"sortConditions"}}],"RepeatTitleRange":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RepeatTitleRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","endIndex":"endIndex","startIndex":"startIndex","equals":"equals","getHashCode":"getHashCode","toString":"toString"}}],"RightTriangleShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RightTriangleShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"RowColumnBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RowColumnBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","worksheet":"worksheet","getResolvedCellFormat":"getResolvedCellFormat"}}],"RowColumnCollectionBase$1":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/RowColumnCollectionBase-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l"}}],"Series":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Series","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyPicToEnd":"applyPicToEnd","applyPicToFront":"applyPicToFront","applyPicToSides":"applyPicToSides","axisBinning":"axisBinning","axisGroup":"axisGroup","barShape":"barShape","barShapeResolved":"barShapeResolved","border":"border","boxAndWhiskerSettings":"boxAndWhiskerSettings","bubbleSizes":"bubbleSizes","chart":"chart","chartType":"chartType","dataLabels":"dataLabels","errorBars":"errorBars","explosion":"explosion","fill":"fill","geographicMapSettings":"geographicMapSettings","invertIfNegative":"invertIfNegative","leaderLines":"leaderLines","line":"line","markerBorder":"markerBorder","markerFill":"markerFill","markerSize":"markerSize","markerStyle":"markerStyle","name":"name","owner":"owner","owningSeries":"owningSeries","pictureType":"pictureType","pictureUnit":"pictureUnit","plotOrder":"plotOrder","sheet":"sheet","showDataLabels":"showDataLabels","showWaterfallConnectorLines":"showWaterfallConnectorLines","smooth":"smooth","type":"type","values":"values","workbook":"workbook","worksheet":"worksheet","xValues":"xValues","dataPointCollection":"dataPointCollection","trendlineCollection":"trendlineCollection"}}],"SeriesCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"SeriesDataLabels":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SeriesDataLabels","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","dataLabelsRange":"dataLabelsRange","defaultFont":"defaultFont","fill":"fill","formula":"formula","height":"height","horizontalOverflow":"horizontalOverflow","isDeleted":"isDeleted","labelPosition":"labelPosition","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","parentLabelLayout":"parentLabelLayout","position":"position","readingOrder":"readingOrder","rotation":"rotation","separator":"separator","sheet":"sheet","showBubbleSize":"showBubbleSize","showCategoryName":"showCategoryName","showLeaderLines":"showLeaderLines","showLegendKey":"showLegendKey","showPercentage":"showPercentage","showRange":"showRange","showSeriesName":"showSeriesName","showValue":"showValue","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","width":"width","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setDataLabelsRange":"setDataLabelsRange","setFormula":"setFormula","staticInit":"staticInit"}}],"SeriesName":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SeriesName","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","toString":"toString"}}],"SeriesValues":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SeriesValues","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"SeriesValuesBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SeriesValuesBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"ShapeFill":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ShapeFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeFillSolid":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ShapeFillSolid","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeOutline":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ShapeOutline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeOutlineSolid":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ShapeOutlineSolid","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"Sheet":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Sheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","hasProtectionPassword":"hasProtectionPassword","isProtected":"isProtected","name":"name","selected":"selected","sheetIndex":"sheetIndex","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","moveToSheetIndex":"moveToSheetIndex","unprotect":"unprotect","staticInit":"staticInit"}}],"SheetCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SheetCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"SheetProtection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SortCondition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"SortConditionCollection$1":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SortConditionCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","addItem":"addItem","addRange":"addRange","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","insertRange":"insertRange","item":"item","remove":"remove","removeAt":"removeAt","removeItem":"removeItem","replaceAll":"replaceAll"}}],"SortSettings$1":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SortSettings-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","sortConditions":"sortConditions"}}],"Sparkline":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Sparkline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","dataRegion":"dataRegion","dataRegionName":"dataRegionName","location":"location"}}],"SparklineCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SparklineCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"SparklineGroup":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SparklineGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorAxis":"colorAxis","colorFirstPoint":"colorFirstPoint","colorHighPoint":"colorHighPoint","colorLastPoint":"colorLastPoint","colorLowPoint":"colorLowPoint","colorMarkers":"colorMarkers","colorNegativePoints":"colorNegativePoints","colorSeries":"colorSeries","dateAxis":"dateAxis","dateRange":"dateRange","dateRangeFormula":"dateRangeFormula","displayBlanksAs":"displayBlanksAs","displayHidden":"displayHidden","displayXAxis":"displayXAxis","firstPoint":"firstPoint","guid":"guid","highPoint":"highPoint","lastPoint":"lastPoint","lineWeight":"lineWeight","lowPoint":"lowPoint","markers":"markers","negativePoints":"negativePoints","rightToLeft":"rightToLeft","type":"type","verticalAxisMax":"verticalAxisMax","verticalAxisMaxType":"verticalAxisMaxType","verticalAxisMin":"verticalAxisMin","verticalAxisMinType":"verticalAxisMinType","workbook":"workbook","worksheet":"worksheet","setDateRange":"setDateRange","sparklines":"sparklines","staticInit":"staticInit"}}],"SparklineGroupCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/SparklineGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","generateGuidsForGroups":"generateGuidsForGroups","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"StandardTableStyleCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/StandardTableStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","item":"item","staticInit":"staticInit"}}],"StraightConnector1Shape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/StraightConnector1Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"TextOperatorConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TextOperatorConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","text":"text","textFormula":"textFormula","textOperator":"textOperator","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","setTextFormula":"setTextFormula","staticInit":"staticInit"}}],"ThresholdConditionBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ThresholdConditionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","formula":"formula","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"TickLabels":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TickLabels","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignment":"alignment","chart":"chart","fill":"fill","font":"font","multiLevel":"multiLevel","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","offset":"offset","owner":"owner","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","textDirection":"textDirection","workbook":"workbook","worksheet":"worksheet"}}],"TopOrBottomFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TopOrBottomFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","value":"value"}}],"Trendline":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Trendline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backward":"backward","chart":"chart","forward":"forward","intercept":"intercept","label":"label","legendEntry":"legendEntry","line":"line","name":"name","order":"order","owner":"owner","period":"period","sheet":"sheet","trendlineType":"trendlineType","workbook":"workbook","worksheet":"worksheet"}}],"TrendlineCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TrendlineCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"TrendlineLabel":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TrendlineLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","displayEquation":"displayEquation","displayRSquared":"displayRSquared","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"TrendlineLine":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TrendlineLine","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"TwoConstraintDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/TwoConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","validationOperator":"validationOperator","clone":"clone","getLowerConstraintFormula":"getLowerConstraintFormula","getUpperConstraintFormula":"getUpperConstraintFormula","isEquivalentTo":"isEquivalentTo","setLowerConstraint":"setLowerConstraint","setLowerConstraintFormula":"setLowerConstraintFormula","setUpperConstraint":"setUpperConstraint","setUpperConstraintFormula":"setUpperConstraintFormula"}}],"UnfrozenPaneSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/UnfrozenPaneSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInLeftPane":"firstColumnInLeftPane","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","firstRowInTopPane":"firstRowInTopPane","leftPaneWidth":"leftPaneWidth","topPaneHeight":"topPaneHeight","reset":"reset","resetCore":"resetCore"}}],"UniqueConditionalFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/UniqueConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"UnknownShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/UnknownShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"UpDownBar":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/UpDownBar","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","barType":"barType","border":"border","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"UpDownBars":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/UpDownBars","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","downBar":"downBar","gapWidth":"gapWidth","owner":"owner","sheet":"sheet","upBar":"upBar","workbook":"workbook","worksheet":"worksheet"}}],"ValueConstraintDataValidationRule":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/ValueConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"VerticalPageBreak":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/VerticalPageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnOnPage":"firstColumnOnPage","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"VerticalPageBreakCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/VerticalPageBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"Wall":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Wall","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","thickness":"thickness","type":"type","workbook":"workbook","worksheet":"worksheet"}}],"WindowOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"Workbook":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Workbook","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxExcel2007CellFormatCount":"maxExcel2007CellFormatCount","maxExcel2007ColumnCount":"maxExcel2007ColumnCount","maxExcel2007RowCount":"maxExcel2007RowCount","maxExcelCellFormatCount":"maxExcelCellFormatCount","maxExcelColumnCount":"maxExcelColumnCount","maxExcelRowCount":"maxExcelRowCount","maxExcelWorkbookFonts":"maxExcelWorkbookFonts","calculationMode":"calculationMode","cellReferenceMode":"cellReferenceMode","culture":"culture","currentFormat":"currentFormat","dateSystem":"dateSystem","defaultTableStyle":"defaultTableStyle","documentProperties":"documentProperties","editingCulture":"editingCulture","hasProtectionPassword":"hasProtectionPassword","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isProtected":"isProtected","isSaving":"isSaving","iterativeCalculationsEnabled":"iterativeCalculationsEnabled","maxChangeInIteration":"maxChangeInIteration","maxColumnCount":"maxColumnCount","maxRecursionIterations":"maxRecursionIterations","maxRowCount":"maxRowCount","precision":"precision","protection":"protection","recalculateBeforeSave":"recalculateBeforeSave","saveExternalLinkedValues":"saveExternalLinkedValues","screenDpi":"screenDpi","shouldRemoveCarriageReturnsOnSave":"shouldRemoveCarriageReturnsOnSave","validateFormatStrings":"validateFormatStrings","windowOptions":"windowOptions","systemDpi":"systemDpi","_d9":"_d9","cancelAsyncCalculations":"cancelAsyncCalculations","characterWidth256thsToPixels":"characterWidth256thsToPixels","clearConnectionData":"clearConnectionData","clearPivotTableData":"clearPivotTableData","clearVbaData":"clearVbaData","createNewWorkbookFont":"createNewWorkbookFont","createNewWorksheetCellFormat":"createNewWorksheetCellFormat","customTableStyles":"customTableStyles","customViews":"customViews","getTable":"getTable","isValidFunctionName":"isValidFunctionName","namedReferences":"namedReferences","palette":"palette","pixelsToCharacterWidth256ths":"pixelsToCharacterWidth256ths","protect":"protect","recalculate":"recalculate","recalculateAsync":"recalculateAsync","registerUserDefinedFunction":"registerUserDefinedFunction","resumeCalculations":"resumeCalculations","save":"save","setCurrentFormat":"setCurrentFormat","sheets":"sheets","standardTableStyles":"standardTableStyles","styles":"styles","suspendCalculations":"suspendCalculations","unprotect":"unprotect","worksheets":"worksheets","getMaxColumnCount":"getMaxColumnCount","getMaxRowCount":"getMaxRowCount","getWorkbookFormat":"getWorkbookFormat","isWorkbookEncrypted":"isWorkbookEncrypted","load":"load","staticInit":"staticInit"}}],"WorkbookColorInfo":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookColorInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","isAutomatic":"isAutomatic","themeColorType":"themeColorType","tint":"tint","transform":"transform","automatic":"automatic","equals":"equals","getHashCode":"getHashCode","getResolvedColor":"getResolvedColor","toString":"toString"}}],"WorkbookColorPalette":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookColorPalette","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","isCustom":"isCustom","contains":"contains","getEnumerator":"getEnumerator","getIndexOfNearestColor":"getIndexOfNearestColor","item":"item","reset":"reset"}}],"WorkbookColorTransform":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookColorTransform","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alpha":"alpha","luminanceModulation":"luminanceModulation","luminanceOffset":"luminanceOffset","shade":"shade"}}],"WorkbookLoadOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookLoadOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","autoResumeCalculations":"autoResumeCalculations","culture":"culture","isDuplicateFormulaParsingOptimized":"isDuplicateFormulaParsingOptimized","screenDpi":"screenDpi","userDefinedFunctions":"userDefinedFunctions","staticInit":"staticInit"}}],"WorkbookOptionsBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","staticInit":"staticInit"}}],"WorkbookProtection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowEditStructure":"allowEditStructure","allowEditWindows":"allowEditWindows"}}],"WorkbookSaveOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookSaveOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","staticInit":"staticInit"}}],"WorkbookStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookStyle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","isBuiltIn":"isBuiltIn","name":"name","styleFormat":"styleFormat","reset":"reset","staticInit":"staticInit"}}],"WorkbookStyleCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","normalStyle":"normalStyle","_u":"_u","addUserDefinedStyle":"addUserDefinedStyle","clear":"clear","contains":"contains","item":"item","remove":"remove","removeAt":"removeAt","reset":"reset","staticInit":"staticInit"}}],"WorkbookWindowOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorkbookWindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","boundsInTwips":"boundsInTwips","firstVisibleTabIndex":"firstVisibleTabIndex","minimized":"minimized","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"Worksheet":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/Worksheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","defaultColumnWidth":"defaultColumnWidth","defaultRowHeight":"defaultRowHeight","displayOptions":"displayOptions","filterSettings":"filterSettings","hasProtectionPassword":"hasProtectionPassword","index":"index","isProtected":"isProtected","name":"name","printOptions":"printOptions","protection":"protection","selected":"selected","sheetIndex":"sheetIndex","sortSettings":"sortSettings","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","_ey":"_ey","clearConditionalFormattingData":"clearConditionalFormattingData","columns":"columns","conditionalFormats":"conditionalFormats","dataTables":"dataTables","dataValidationRules":"dataValidationRules","deleteCells":"deleteCells","getCell":"getCell","getCellConditionalFormat":"getCellConditionalFormat","getDefaultColumnWidth":"getDefaultColumnWidth","getRegion":"getRegion","getRegions":"getRegions","hideColumns":"hideColumns","hideRows":"hideRows","hyperlinks":"hyperlinks","insertCells":"insertCells","mergedCellsRegions":"mergedCellsRegions","moveToIndex":"moveToIndex","moveToSheetIndex":"moveToSheetIndex","protect":"protect","rows":"rows","setDefaultColumnWidth":"setDefaultColumnWidth","shapes":"shapes","sparklineGroups":"sparklineGroups","tables":"tables","unhideColumns":"unhideColumns","unhideRows":"unhideRows","unprotect":"unprotect","staticInit":"staticInit"}}],"WorksheetCell":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetCell","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","associatedDataTable":"associatedDataTable","associatedMergedCellsRegion":"associatedMergedCellsRegion","associatedTable":"associatedTable","cellFormat":"cellFormat","columnIndex":"columnIndex","comment":"comment","dataValidationRule":"dataValidationRule","formula":"formula","hasCellFormat":"hasCellFormat","hasComment":"hasComment","rowIndex":"rowIndex","value":"value","worksheet":"worksheet","applyFormula":"applyFormula","clearComment":"clearComment","equals":"equals","getBoundsInTwips":"getBoundsInTwips","getHashCode":"getHashCode","getHyperlink":"getHyperlink","getResolvedCellFormat":"getResolvedCellFormat","getText":"getText","toString":"toString","validateValue":"validateValue","getCellAddressString":"getCellAddressString","isCellTypeSupported":"isCellTypeSupported"}}],"WorksheetCellCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetCellCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","item":"item"}}],"WorksheetCellComment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetCellComment","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","author":"author","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","cell":"cell","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetChart":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetChart","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","autoScaling":"autoScaling","backWall":"backWall","barShape":"barShape","barShapeResolved":"barShapeResolved","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","chartArea":"chartArea","chartTitle":"chartTitle","chartType":"chartType","depthPercent":"depthPercent","displayBlanksAs":"displayBlanksAs","doughnutHoleSize":"doughnutHoleSize","dropLines":"dropLines","fill":"fill","firstSliceAngle":"firstSliceAngle","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","floor":"floor","gapDepth":"gapDepth","gapWidth":"gapWidth","heightPercent":"heightPercent","highLowLines":"highLowLines","legend":"legend","outline":"outline","perspective":"perspective","plotArea":"plotArea","plotVisibleOnly":"plotVisibleOnly","positioningMode":"positioningMode","rightAngleAxes":"rightAngleAxes","rotationX":"rotationX","rotationY":"rotationY","secondPlotSize":"secondPlotSize","seriesLines":"seriesLines","seriesOverlap":"seriesOverlap","sheet":"sheet","sideWall":"sideWall","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","upDownBars":"upDownBars","varyColors":"varyColors","visible":"visible","wallDefault":"wallDefault","worksheet":"worksheet","axisCollection":"axisCollection","clearUnknownData":"clearUnknownData","comboChartGroups":"comboChartGroups","getBoundsInTwips":"getBoundsInTwips","seriesCollection":"seriesCollection","setBoundsInTwips":"setBoundsInTwips","setComboChartSourceData":"setComboChartSourceData","setSourceData":"setSourceData","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"WorksheetColumn":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetColumn","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","width":"width","worksheet":"worksheet","autoFitWidth":"autoFitWidth","calculateAutoFitWidth":"calculateAutoFitWidth","getResolvedCellFormat":"getResolvedCellFormat","getWidth":"getWidth","setWidth":"setWidth"}}],"WorksheetColumnCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","insert":"insert","item":"item","remove":"remove","staticInit":"staticInit"}}],"WorksheetDataTable":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetDataTable","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellsInTable":"cellsInTable","columnInputCell":"columnInputCell","rowInputCell":"rowInputCell","worksheet":"worksheet"}}],"WorksheetDataTableCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetDataTableCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetDisplayOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","magnificationInNormalView":"magnificationInNormalView","magnificationInPageBreakView":"magnificationInPageBreakView","magnificationInPageLayoutView":"magnificationInPageLayoutView","orderColumnsRightToLeft":"orderColumnsRightToLeft","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showWhitespaceInPageLayoutView":"showWhitespaceInPageLayoutView","showZeroValues":"showZeroValues","tabColorInfo":"tabColorInfo","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"WorksheetFilterSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetFilterSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","region":"region","sortAndFilterAreaRegion":"sortAndFilterAreaRegion","sortSettings":"sortSettings","applyAverageFilter":"applyAverageFilter","applyCustomFilter":"applyCustomFilter","applyDatePeriodFilter":"applyDatePeriodFilter","applyFillFilter":"applyFillFilter","applyFixedValuesFilter":"applyFixedValuesFilter","applyFontColorFilter":"applyFontColorFilter","applyIconFilter":"applyIconFilter","applyRelativeDateRangeFilter":"applyRelativeDateRangeFilter","applyTopOrBottomFilter":"applyTopOrBottomFilter","applyYearToDateFilter":"applyYearToDateFilter","clearFilter":"clearFilter","clearFilters":"clearFilters","clearRegion":"clearRegion","getFilter":"getFilter","reapplyFilters":"reapplyFilters","reapplySortConditions":"reapplySortConditions","setRegion":"setRegion","staticInit":"staticInit"}}],"WorksheetHyperlink":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetHyperlink","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","displayText":"displayText","isSealed":"isSealed","sourceAddress":"sourceAddress","sourceCell":"sourceCell","sourceRegion":"sourceRegion","target":"target","targetAddress":"targetAddress","targetCell":"targetCell","targetNamedReference":"targetNamedReference","targetRegion":"targetRegion","toolTip":"toolTip","worksheet":"worksheet","toString":"toString"}}],"WorksheetHyperlinkCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetHyperlinkCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetImage":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetImage","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetItemCollection$1":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetItemCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l"}}],"WorksheetMergedCellsRegion":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetMergedCellsRegion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","comment":"comment","firstColumn":"firstColumn","firstRow":"firstRow","formula":"formula","lastColumn":"lastColumn","lastRow":"lastRow","value":"value","worksheet":"worksheet","applyArrayFormula":"applyArrayFormula","applyFormula":"applyFormula","equals":"equals","formatAsTable":"formatAsTable","getBoundsInTwips":"getBoundsInTwips","getEnumerator":"getEnumerator","getHashCode":"getHashCode","getResolvedCellFormat":"getResolvedCellFormat","toString":"toString"}}],"WorksheetMergedCellsRegionCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetMergedCellsRegionCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","isOverlappingWithMergedRegion":"isOverlappingWithMergedRegion","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetProtectedRange":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetProtectedRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","hasPassword":"hasPassword","isProtected":"isProtected","ranges":"ranges","title":"title","worksheet":"worksheet","unprotect":"unprotect"}}],"WorksheetProtectedRangeCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetProtectedRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"WorksheetProtection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowDeletingColumns":"allowDeletingColumns","allowDeletingRows":"allowDeletingRows","allowEditObjects":"allowEditObjects","allowEditScenarios":"allowEditScenarios","allowFiltering":"allowFiltering","allowFormattingCells":"allowFormattingCells","allowFormattingColumns":"allowFormattingColumns","allowFormattingRows":"allowFormattingRows","allowInsertingColumns":"allowInsertingColumns","allowInsertingHyperlinks":"allowInsertingHyperlinks","allowInsertingRows":"allowInsertingRows","allowSorting":"allowSorting","allowUsingPivotTables":"allowUsingPivotTables","selectionMode":"selectionMode","allowedEditRanges":"allowedEditRanges"}}],"WorksheetReferenceCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetReferenceCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellsCount":"cellsCount","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","remove":"remove","toString":"toString"}}],"WorksheetRegion":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetRegion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumn":"firstColumn","firstRow":"firstRow","lastColumn":"lastColumn","lastRow":"lastRow","worksheet":"worksheet","applyArrayFormula":"applyArrayFormula","applyFormula":"applyFormula","equals":"equals","formatAsTable":"formatAsTable","getBoundsInTwips":"getBoundsInTwips","getEnumerator":"getEnumerator","getHashCode":"getHashCode","toString":"toString"}}],"WorksheetRow":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetRow","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","height":"height","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","worksheet":"worksheet","_cm":"_cm","_co":"_co","_cp":"_cp","applyCellFormula":"applyCellFormula","cells":"cells","getCellAssociatedDataTable":"getCellAssociatedDataTable","getCellAssociatedMergedCellsRegion":"getCellAssociatedMergedCellsRegion","getCellAssociatedTable":"getCellAssociatedTable","getCellBoundsInTwips":"getCellBoundsInTwips","getCellComment":"getCellComment","getCellConditionalFormat":"getCellConditionalFormat","getCellFormat":"getCellFormat","getCellFormula":"getCellFormula","getCellHyperlink":"getCellHyperlink","getCellText":"getCellText","getCellValue":"getCellValue","getResolvedCellFormat":"getResolvedCellFormat","setCellComment":"setCellComment","setCellValue":"setCellValue","validateCellValue":"validateCellValue"}}],"WorksheetRowCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetRowCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","insert":"insert","item":"item","remove":"remove","staticInit":"staticInit"}}],"WorksheetShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetShapeCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","addChart":"addChart","clear":"clear","contains":"contains","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetShapeGroup":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetShapeGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeGroupBase":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetShapeGroupBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeWithText":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetShapeWithText","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetSortSettings":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetSortSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","region":"region","sortType":"sortType","clearRegion":"clearRegion","reapplySortConditions":"reapplySortConditions","setRegion":"setRegion","sortConditions":"sortConditions"}}],"WorksheetTable":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetTable","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","dataAreaRegion":"dataAreaRegion","displayBandedColumns":"displayBandedColumns","displayBandedRows":"displayBandedRows","displayFirstColumnFormatting":"displayFirstColumnFormatting","displayLastColumnFormatting":"displayLastColumnFormatting","headerRowRegion":"headerRowRegion","isFilterUIVisible":"isFilterUIVisible","isHeaderRowVisible":"isHeaderRowVisible","isTotalsRowVisible":"isTotalsRowVisible","name":"name","scope":"scope","sortSettings":"sortSettings","style":"style","totalsRowRegion":"totalsRowRegion","wholeTableRegion":"wholeTableRegion","worksheet":"worksheet","areaFormats":"areaFormats","clearFilters":"clearFilters","clearSortConditions":"clearSortConditions","columns":"columns","deleteColumns":"deleteColumns","deleteDataRows":"deleteDataRows","insertColumns":"insertColumns","insertDataRows":"insertDataRows","reapplyFilters":"reapplyFilters","reapplySortConditions":"reapplySortConditions","resize":"resize","toString":"toString","staticInit":"staticInit"}}],"WorksheetTableAreaFormatsCollection$1":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetTableAreaFormatsCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","getEnumerator":"getEnumerator","hasFormat":"hasFormat","item":"item"}}],"WorksheetTableCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetTableCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetTableColumn":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetTableColumn","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","columnFormula":"columnFormula","dataAreaRegion":"dataAreaRegion","filter":"filter","headerCell":"headerCell","index":"index","name":"name","sortCondition":"sortCondition","table":"table","totalCell":"totalCell","totalFormula":"totalFormula","totalLabel":"totalLabel","wholeColumnRegion":"wholeColumnRegion","applyAverageFilter":"applyAverageFilter","applyCustomFilter":"applyCustomFilter","applyDatePeriodFilter":"applyDatePeriodFilter","applyFillFilter":"applyFillFilter","applyFixedValuesFilter":"applyFixedValuesFilter","applyFontColorFilter":"applyFontColorFilter","applyIconFilter":"applyIconFilter","applyRelativeDateRangeFilter":"applyRelativeDateRangeFilter","applyTopOrBottomFilter":"applyTopOrBottomFilter","applyYearToDateFilter":"applyYearToDateFilter","areaFormats":"areaFormats","clearFilter":"clearFilter","setColumnFormula":"setColumnFormula"}}],"WorksheetTableColumnCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetTableColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","contains":"contains","indexOf":"indexOf","item":"item"}}],"WorksheetTableStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/WorksheetTableStyle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alternateColumnStripeWidth":"alternateColumnStripeWidth","alternateRowStripeHeight":"alternateRowStripeHeight","columnStripeWidth":"columnStripeWidth","isCustom":"isCustom","name":"name","rowStripeHeight":"rowStripeHeight","areaFormats":"areaFormats","clone":"clone"}}],"XValues":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/XValues","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"YearToDateFilter":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/classes/YearToDateFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start"}}],"IExcelCalcFormula":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/interfaces/IExcelCalcFormula","k":"interface","s":"interfaces","m":{"baseReference":"baseReference","dynamicReferences":"dynamicReferences","formulaString":"formulaString","hasAlwaysDirty":"hasAlwaysDirty","staticReferences":"staticReferences","addDynamicReferenceI":"addDynamicReferenceI","evaluate":"evaluate"}}],"IExcelCalcReference":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/interfaces/IExcelCalcReference","k":"interface","s":"interfaces","m":{"absoluteName":"absoluteName","context":"context","elementName":"elementName","formula":"formula","isEnumerable":"isEnumerable","normalizedAbsoluteName":"normalizedAbsoluteName","references":"references","value":"value","containsReference":"containsReference","createReference":"createReference","isSubsetReference":"isSubsetReference"}}],"IExcelCalcReferenceCollection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/interfaces/IExcelCalcReferenceCollection","k":"interface","s":"interfaces"}],"ISortable":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/interfaces/ISortable","k":"interface","s":"interfaces","m":{"index":"index"}}],"IWorkbookFont":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/interfaces/IWorkbookFont","k":"interface","s":"interfaces","m":{"_bold$i":"_bold$i","_italic$i":"_italic$i","_strikeout$i":"_strikeout$i","bold":"bold","colorInfo":"colorInfo","height":"height","italic":"italic","name":"name","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"IWorksheetCellFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/interfaces/IWorksheetCellFormat","k":"interface","s":"interfaces","m":{"_hidden$i":"_hidden$i","_locked$i":"_locked$i","_shrinkToFit$i":"_shrinkToFit$i","_wrapText$i":"_wrapText$i","alignment":"alignment","bottomBorderColorInfo":"bottomBorderColorInfo","bottomBorderStyle":"bottomBorderStyle","diagonalBorderColorInfo":"diagonalBorderColorInfo","diagonalBorders":"diagonalBorders","diagonalBorderStyle":"diagonalBorderStyle","fill":"fill","font":"font","formatOptions":"formatOptions","formatString":"formatString","hidden":"hidden","indent":"indent","leftBorderColorInfo":"leftBorderColorInfo","leftBorderStyle":"leftBorderStyle","locked":"locked","rightBorderColorInfo":"rightBorderColorInfo","rightBorderStyle":"rightBorderStyle","rotation":"rotation","shrinkToFit":"shrinkToFit","style":"style","topBorderColorInfo":"topBorderColorInfo","topBorderStyle":"topBorderStyle","verticalAlignment":"verticalAlignment","wrapText":"wrapText","setFormatting":"setFormatting"}}],"AverageFilterType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/AverageFilterType","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","BelowAverage":"BelowAverage"}}],"AxisCrosses":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/AxisCrosses","k":"enum","s":"enums","m":{"Automatic":"Automatic","Custom":"Custom","Maximum":"Maximum","Minimum":"Minimum"}}],"AxisGroup":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/AxisGroup","k":"enum","s":"enums","m":{"Primary":"Primary","Secondary":"Secondary"}}],"AxisPosition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/AxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"AxisType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/AxisType","k":"enum","s":"enums","m":{"Category":"Category","SeriesAxis":"SeriesAxis","Value":"Value"}}],"BarShape":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/BarShape","k":"enum","s":"enums","m":{"Box":"Box","ConeToMax":"ConeToMax","ConeToPoint":"ConeToPoint","Cylinder":"Cylinder","PyramidToMax":"PyramidToMax","PyramidToPoint":"PyramidToPoint"}}],"BorderLineStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/BorderLineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"CalculationMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/CalculationMode","k":"enum","s":"enums","m":{"Automatic":"Automatic","AutomaticExceptForDataTables":"AutomaticExceptForDataTables","Manual":"Manual"}}],"CalendarType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/CalendarType","k":"enum","s":"enums","m":{"Gregorian":"Gregorian","GregorianArabic":"GregorianArabic","GregorianMeFrench":"GregorianMeFrench","GregorianUs":"GregorianUs","GregorianXlitEnglish":"GregorianXlitEnglish","GregorianXlitFrench":"GregorianXlitFrench","Hebrew":"Hebrew","Hijri":"Hijri","Japan":"Japan","Korea":"Korea","None":"None","Saka":"Saka","Taiwan":"Taiwan","Thai":"Thai"}}],"CategoryType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/CategoryType","k":"enum","s":"enums","m":{"AutomaticScale":"AutomaticScale","CategoryScale":"CategoryScale","TimeScale":"TimeScale"}}],"CellBorderLineStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/CellBorderLineStyle","k":"enum","s":"enums","m":{"DashDot":"DashDot","DashDotDot":"DashDotDot","Dashed":"Dashed","Default":"Default","Dotted":"Dotted","double1":"double1","Hair":"Hair","Medium":"Medium","MediumDashDot":"MediumDashDot","MediumDashDotDot":"MediumDashDotDot","MediumDashed":"MediumDashed","None":"None","SlantedDashDot":"SlantedDashDot","Thick":"Thick","Thin":"Thin"}}],"CellReferenceMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/CellReferenceMode","k":"enum","s":"enums","m":{"A1":"A1","R1C1":"R1C1"}}],"ChartType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ChartType","k":"enum","s":"enums","m":{"Area":"Area","Area3D":"Area3D","Area3DStacked":"Area3DStacked","Area3DStacked100":"Area3DStacked100","AreaStacked":"AreaStacked","AreaStacked100":"AreaStacked100","Bar3DClustered":"Bar3DClustered","Bar3DStacked":"Bar3DStacked","Bar3DStacked100":"Bar3DStacked100","BarClustered":"BarClustered","BarOfPie":"BarOfPie","BarStacked":"BarStacked","BarStacked100":"BarStacked100","BoxAndWhisker":"BoxAndWhisker","Bubble":"Bubble","Bubble3DEffect":"Bubble3DEffect","Column3D":"Column3D","Column3DClustered":"Column3DClustered","Column3DStacked":"Column3DStacked","Column3DStacked100":"Column3DStacked100","ColumnClustered":"ColumnClustered","ColumnStacked":"ColumnStacked","ColumnStacked100":"ColumnStacked100","Combo":"Combo","ConeBarClustered":"ConeBarClustered","ConeBarStacked":"ConeBarStacked","ConeBarStacked100":"ConeBarStacked100","ConeCol":"ConeCol","ConeColClustered":"ConeColClustered","ConeColStacked":"ConeColStacked","ConeColStacked100":"ConeColStacked100","CylinderBarClustered":"CylinderBarClustered","CylinderBarStacked":"CylinderBarStacked","CylinderBarStacked100":"CylinderBarStacked100","CylinderCol":"CylinderCol","CylinderColClustered":"CylinderColClustered","CylinderColStacked":"CylinderColStacked","CylinderColStacked100":"CylinderColStacked100","Doughnut":"Doughnut","DoughnutExploded":"DoughnutExploded","Funnel":"Funnel","Histogram":"Histogram","Line":"Line","Line3D":"Line3D","LineMarkers":"LineMarkers","LineMarkersStacked":"LineMarkersStacked","LineMarkersStacked100":"LineMarkersStacked100","LineStacked":"LineStacked","LineStacked100":"LineStacked100","Pareto":"Pareto","Pie":"Pie","Pie3D":"Pie3D","Pie3DExploded":"Pie3DExploded","PieExploded":"PieExploded","PieOfPie":"PieOfPie","PyramidBarClustered":"PyramidBarClustered","PyramidBarStacked":"PyramidBarStacked","PyramidBarStacked100":"PyramidBarStacked100","PyramidCol":"PyramidCol","PyramidColClustered":"PyramidColClustered","PyramidColStacked":"PyramidColStacked","PyramidColStacked100":"PyramidColStacked100","Radar":"Radar","RadarFilled":"RadarFilled","RadarMarkers":"RadarMarkers","RegionMap":"RegionMap","StockHLC":"StockHLC","StockOHLC":"StockOHLC","StockVHLC":"StockVHLC","StockVOHLC":"StockVOHLC","Sunburst":"Sunburst","Surface":"Surface","SurfaceTopView":"SurfaceTopView","SurfaceTopViewWireframe":"SurfaceTopViewWireframe","SurfaceWireframe":"SurfaceWireframe","Treemap":"Treemap","Unknown":"Unknown","Waterfall":"Waterfall","XYScatter":"XYScatter","XYScatterLines":"XYScatterLines","XYScatterLinesNoMarkers":"XYScatterLinesNoMarkers","XYScatterSmooth":"XYScatterSmooth","XYScatterSmoothNoMarkers":"XYScatterSmoothNoMarkers"}}],"ColorScaleCriterionThreshold":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ColorScaleCriterionThreshold","k":"enum","s":"enums","m":{"Maximum":"Maximum","Midpoint":"Midpoint","Minimum":"Minimum"}}],"ColorScaleType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ColorScaleType","k":"enum","s":"enums","m":{"ThreeColor":"ThreeColor","TwoColor":"TwoColor"}}],"ConditionalOperator":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ConditionalOperator","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"DataBarAxisPosition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataBarAxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Midpoint":"Midpoint","None":"None"}}],"DataBarDirection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataBarDirection","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"DataBarFillType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataBarFillType","k":"enum","s":"enums","m":{"Gradient":"Gradient","SolidColor":"SolidColor"}}],"DataBarNegativeBarColorType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataBarNegativeBarColorType","k":"enum","s":"enums","m":{"Color":"Color","SameAsPositive":"SameAsPositive"}}],"DataLabelPosition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataLabelPosition","k":"enum","s":"enums","m":{"Above":"Above","Below":"Below","BestFit":"BestFit","Center":"Center","Custom":"Custom","Default":"Default","InsideBase":"InsideBase","InsideEnd":"InsideEnd","Left":"Left","OutsideEnd":"OutsideEnd","Right":"Right"}}],"DataValidationCriteria":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataValidationCriteria","k":"enum","s":"enums","m":{"Date":"Date","Decimal":"Decimal","TextLength":"TextLength","Time":"Time","WholeNumber":"WholeNumber"}}],"DataValidationErrorStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataValidationErrorStyle","k":"enum","s":"enums","m":{"Information":"Information","Stop":"Stop","Warning":"Warning"}}],"DataValidationImeMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DataValidationImeMode","k":"enum","s":"enums","m":{"Disabled":"Disabled","FullAlpha":"FullAlpha","FullHangul":"FullHangul","FullKatakana":"FullKatakana","HalfAlpha":"HalfAlpha","HalfHangul":"HalfHangul","HalfKatakana":"HalfKatakana","Hiragana":"Hiragana","NoControl":"NoControl","Off":"Off","On":"On"}}],"DatePeriodFilterType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DatePeriodFilterType","k":"enum","s":"enums","m":{"Month":"Month","Quarter":"Quarter"}}],"DateSystem":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DateSystem","k":"enum","s":"enums","m":{"From1900":"From1900","From1904":"From1904"}}],"DiagonalBorders":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DiagonalBorders","k":"enum","s":"enums","m":{"All":"All","Default":"Default","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","None":"None"}}],"DisplayBlanksAs":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DisplayBlanksAs","k":"enum","s":"enums","m":{"Interpolated":"Interpolated","NotPlotted":"NotPlotted","Zero":"Zero"}}],"DisplayUnit":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/DisplayUnit","k":"enum","s":"enums","m":{"Custom":"Custom","HundredMillions":"HundredMillions","Hundreds":"Hundreds","HundredThousands":"HundredThousands","MillionMillions":"MillionMillions","Millions":"Millions","None":"None","Percentage":"Percentage","TenMillions":"TenMillions","TenThousands":"TenThousands","ThousandMillions":"ThousandMillions","Thousands":"Thousands"}}],"ElementPosition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ElementPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Left":"Left","LeftBottom":"LeftBottom","LeftTop":"LeftTop","Right":"Right","RightBottom":"RightBottom","RightTop":"RightTop","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"EndStyleCap":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/EndStyleCap","k":"enum","s":"enums","m":{"Cap":"Cap","NoCap":"NoCap"}}],"ErrorBarDirection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ErrorBarDirection","k":"enum","s":"enums","m":{"Both":"Both","Minus":"Minus","Plus":"Plus"}}],"ErrorValueType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ErrorValueType","k":"enum","s":"enums","m":{"FixedValue":"FixedValue","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"ExcelCalcErrorCode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ExcelCalcErrorCode","k":"enum","s":"enums","m":{"Circularity":"Circularity","Div":"Div","NA":"NA","Name1":"Name1","Null":"Null","Num":"Num","Reference":"Reference","Value":"Value"}}],"ExcelComparisonOperator":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ExcelComparisonOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"FillPatternStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FillPatternStyle","k":"enum","s":"enums","m":{"Default":"Default","DiagonalCrosshatch":"DiagonalCrosshatch","DiagonalStripe":"DiagonalStripe","Gray12percent":"Gray12percent","Gray25percent":"Gray25percent","Gray50percent":"Gray50percent","Gray6percent":"Gray6percent","Gray75percent":"Gray75percent","HorizontalStripe":"HorizontalStripe","None":"None","ReverseDiagonalStripe":"ReverseDiagonalStripe","Solid":"Solid","ThickDiagonalCrosshatch":"ThickDiagonalCrosshatch","ThinDiagonalCrosshatch":"ThinDiagonalCrosshatch","ThinDiagonalStripe":"ThinDiagonalStripe","ThinHorizontalCrosshatch":"ThinHorizontalCrosshatch","ThinHorizontalStripe":"ThinHorizontalStripe","ThinReverseDiagonalStripe":"ThinReverseDiagonalStripe","ThinVerticalStripe":"ThinVerticalStripe","VerticalStripe":"VerticalStripe"}}],"FixedDateGroupType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FixedDateGroupType","k":"enum","s":"enums","m":{"Day":"Day","Hour":"Hour","Minute":"Minute","Month":"Month","Second":"Second","Year":"Year"}}],"FontSuperscriptSubscriptStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FontSuperscriptSubscriptStyle","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Subscript":"Subscript","Superscript":"Superscript"}}],"FontUnderlineStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FontUnderlineStyle","k":"enum","s":"enums","m":{"Default":"Default","double1":"double1","DoubleAccounting":"DoubleAccounting","None":"None","Single":"Single","SingleAccounting":"SingleAccounting"}}],"FormatConditionAboveBelow":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionAboveBelow","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","AboveStandardDeviation":"AboveStandardDeviation","BelowAverage":"BelowAverage","BelowStandardDeviation":"BelowStandardDeviation","EqualAboveAverage":"EqualAboveAverage","EqualBelowAverage":"EqualBelowAverage"}}],"FormatConditionIcon":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionIcon","k":"enum","s":"enums","m":{"BlackCircle":"BlackCircle","BlackCircleWithBorder":"BlackCircleWithBorder","CircleWithOneWhiteQuarter":"CircleWithOneWhiteQuarter","CircleWithThreeWhiteQuarters":"CircleWithThreeWhiteQuarters","CircleWithTwoWhiteQuarters":"CircleWithTwoWhiteQuarters","FourBars":"FourBars","FourFilledBoxes":"FourFilledBoxes","GoldStar":"GoldStar","GrayCircle":"GrayCircle","GrayDownArrow":"GrayDownArrow","GrayDownInclineArrow":"GrayDownInclineArrow","GraySideArrow":"GraySideArrow","GrayUpArrow":"GrayUpArrow","GrayUpInclineArrow":"GrayUpInclineArrow","GreenCheck":"GreenCheck","GreenCheckSymbol":"GreenCheckSymbol","GreenCircle":"GreenCircle","GreenFlag":"GreenFlag","GreenTrafficLight":"GreenTrafficLight","GreenUpArrow":"GreenUpArrow","GreenUpTriangle":"GreenUpTriangle","HalfGoldStar":"HalfGoldStar","NoCellIcon":"NoCellIcon","OneBar":"OneBar","OneFilledBox":"OneFilledBox","PinkCircle":"PinkCircle","RedCircle":"RedCircle","RedCircleWithBorder":"RedCircleWithBorder","RedCross":"RedCross","RedCrossSymbol":"RedCrossSymbol","RedDiamond":"RedDiamond","RedDownArrow":"RedDownArrow","RedDownTriangle":"RedDownTriangle","RedFlag":"RedFlag","RedTrafficLight":"RedTrafficLight","SilverStar":"SilverStar","ThreeBars":"ThreeBars","ThreeFilledBoxes":"ThreeFilledBoxes","TwoBars":"TwoBars","TwoFilledBoxes":"TwoFilledBoxes","WhiteCircleAllWhiteQuarters":"WhiteCircleAllWhiteQuarters","YellowCircle":"YellowCircle","YellowDash":"YellowDash","YellowDownInclineArrow":"YellowDownInclineArrow","YellowExclamation":"YellowExclamation","YellowExclamationSymbol":"YellowExclamationSymbol","YellowFlag":"YellowFlag","YellowSideArrow":"YellowSideArrow","YellowTrafficLight":"YellowTrafficLight","YellowTriangle":"YellowTriangle","YellowUpInclineArrow":"YellowUpInclineArrow","ZeroBars":"ZeroBars","ZeroFilledBoxes":"ZeroFilledBoxes"}}],"FormatConditionIconSet":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionIconSet","k":"enum","s":"enums","m":{"IconSet3Arrows":"IconSet3Arrows","IconSet3ArrowsGray":"IconSet3ArrowsGray","IconSet3Flags":"IconSet3Flags","IconSet3Signs":"IconSet3Signs","IconSet3Stars":"IconSet3Stars","IconSet3Symbols":"IconSet3Symbols","IconSet3Symbols2":"IconSet3Symbols2","IconSet3TrafficLights1":"IconSet3TrafficLights1","IconSet3TrafficLights2":"IconSet3TrafficLights2","IconSet3Triangles":"IconSet3Triangles","IconSet4Arrows":"IconSet4Arrows","IconSet4ArrowsGray":"IconSet4ArrowsGray","IconSet4Rating":"IconSet4Rating","IconSet4RedToBlack":"IconSet4RedToBlack","IconSet4TrafficLights":"IconSet4TrafficLights","IconSet5Arrows":"IconSet5Arrows","IconSet5ArrowsGray":"IconSet5ArrowsGray","IconSet5Boxes":"IconSet5Boxes","IconSet5Quarters":"IconSet5Quarters","IconSet5Rating":"IconSet5Rating","IconSetNoIcon":"IconSetNoIcon"}}],"FormatConditionOperator":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionOperator","k":"enum","s":"enums","m":{"Between":"Between","Equal":"Equal","Greater":"Greater","GreaterEqual":"GreaterEqual","Less":"Less","LessEqual":"LessEqual","NotBetween":"NotBetween","NotEqual":"NotEqual"}}],"FormatConditionTextOperator":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionTextOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotContain":"DoesNotContain","EndsWith":"EndsWith"}}],"FormatConditionTimePeriod":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionTimePeriod","k":"enum","s":"enums","m":{"LastMonth":"LastMonth","LastSevenDays":"LastSevenDays","LastWeek":"LastWeek","NextMonth":"NextMonth","NextWeek":"NextWeek","ThisMonth":"ThisMonth","ThisWeek":"ThisWeek","Today":"Today","Tomorrow":"Tomorrow","Yesterday":"Yesterday"}}],"FormatConditionTopBottom":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionTopBottom","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"FormatConditionType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionType","k":"enum","s":"enums","m":{"Average":"Average","Blanks":"Blanks","CellValue":"CellValue","ColorScale":"ColorScale","DataBar":"DataBar","DuplicateValues":"DuplicateValues","Errors":"Errors","Expression":"Expression","IconSets":"IconSets","NoBlanks":"NoBlanks","NoErrors":"NoErrors","Rank":"Rank","TextString":"TextString","TimePeriod":"TimePeriod","UniqueValues":"UniqueValues"}}],"FormatConditionValueType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/FormatConditionValueType","k":"enum","s":"enums","m":{"AutomaticMaximum":"AutomaticMaximum","AutomaticMinimum":"AutomaticMinimum","Formula":"Formula","HighestValue":"HighestValue","LowestValue":"LowestValue","Number":"Number","Percentage":"Percentage","Percentile":"Percentile"}}],"GeographicMapLabels":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/GeographicMapLabels","k":"enum","s":"enums","m":{"BestFit":"BestFit","None":"None","ShowAll":"ShowAll"}}],"GeographicMappingArea":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/GeographicMappingArea","k":"enum","s":"enums","m":{"CountryOrRegion":"CountryOrRegion","County":"County","DataOnly":"DataOnly","MultipleCountriesOrRegions":"MultipleCountriesOrRegions","PostalCode":"PostalCode","State":"State","World":"World"}}],"GeographicMapProjection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/GeographicMapProjection","k":"enum","s":"enums","m":{"Albers":"Albers","Mercator":"Mercator","Miller":"Miller","Robinson":"Robinson"}}],"GeographicMapSeriesColor":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/GeographicMapSeriesColor","k":"enum","s":"enums","m":{"Diverging":"Diverging","Sequential":"Sequential"}}],"GradientType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/GradientType","k":"enum","s":"enums","m":{"Linear":"Linear","Path":"Path","Radial":"Radial","Rectangular":"Rectangular"}}],"GridLineType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/GridLineType","k":"enum","s":"enums","m":{"Major":"Major","Minor":"Minor"}}],"HorizontalCellAlignment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/HorizontalCellAlignment","k":"enum","s":"enums","m":{"Center":"Center","CenterAcrossSelection":"CenterAcrossSelection","Default":"Default","Distributed":"Distributed","Fill":"Fill","General":"General","Justify":"Justify","Left":"Left","Right":"Right"}}],"HorizontalTextAlignment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/HorizontalTextAlignment","k":"enum","s":"enums","m":{"Center":"Center","Distributed":"Distributed","Justified":"Justified","JustifiedLow":"JustifiedLow","Left":"Left","Right":"Right","ThaiDistributed":"ThaiDistributed"}}],"LegendPosition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/LegendPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Default":"Default","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"LineStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/LineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"MarkerStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/MarkerStyle","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Dash":"Dash","Diamond":"Diamond","Dot":"Dot","None":"None","Picture":"Picture","Plus":"Plus","Square":"Square","Star":"Star","Triangle":"Triangle","X":"X"}}],"ObjectDisplayStyle":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ObjectDisplayStyle","k":"enum","s":"enums","m":{"HideAll":"HideAll","ShowAll":"ShowAll","ShowPlaceholders":"ShowPlaceholders"}}],"OneConstraintDataValidationOperator":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/OneConstraintDataValidationOperator","k":"enum","s":"enums","m":{"EqualTo":"EqualTo","GreaterThan":"GreaterThan","GreaterThanOrEqualTo":"GreaterThanOrEqualTo","LessThan":"LessThan","LessThanOrEqualTo":"LessThanOrEqualTo","NotEqualTo":"NotEqualTo"}}],"OpenPackagingNonConformanceReason":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/OpenPackagingNonConformanceReason","k":"enum","s":"enums","m":{"Conformant":"Conformant","ContentTypeHasComments":"ContentTypeHasComments","ContentTypeHasInvalidSyntax":"ContentTypeHasInvalidSyntax","ContentTypeHasInvalidWhitespace":"ContentTypeHasInvalidWhitespace","ContentTypeHasParameters":"ContentTypeHasParameters","ContentTypeMissing":"ContentTypeMissing","CouldNotGetPackagePart":"CouldNotGetPackagePart","DuplicateName":"DuplicateName","GrowthHintChanged":"GrowthHintChanged","NameDerivesFromExistingPartName":"NameDerivesFromExistingPartName","NameDoesNotStartWithForwardSlash":"NameDoesNotStartWithForwardSlash","NameEndsWithForwardSlash":"NameEndsWithForwardSlash","NameMissing":"NameMissing","RelationshipIdInvalid":"RelationshipIdInvalid","RelationshipNameInvalid":"RelationshipNameInvalid","RelationshipTargetInvalid":"RelationshipTargetInvalid","RelationshipTargetNotRelativeReference":"RelationshipTargetNotRelativeReference","RelationshipTargetsOtherRelationship":"RelationshipTargetsOtherRelationship","RelationshipTypeInvalid":"RelationshipTypeInvalid","SegmentEmpty":"SegmentEmpty","SegmentEndsWithDotCharacter":"SegmentEndsWithDotCharacter","SegmentHasNonPCharCharacters":"SegmentHasNonPCharCharacters","SegmentHasPercentEncodedSlashCharacters":"SegmentHasPercentEncodedSlashCharacters","SegmentHasPercentEncodedUnreservedCharacters":"SegmentHasPercentEncodedUnreservedCharacters","SegmentMissingNonDotCharacter":"SegmentMissingNonDotCharacter","XmlContentDrawsOnUndefinedNamespace":"XmlContentDrawsOnUndefinedNamespace","XmlContentInvalidForSchema":"XmlContentInvalidForSchema","XmlEncodingUnsupported":"XmlEncodingUnsupported"}}],"Orientation":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/Orientation","k":"enum","s":"enums","m":{"Default":"Default","Landscape":"Landscape","Portrait":"Portrait"}}],"PageNumbering":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PageNumbering","k":"enum","s":"enums","m":{"Automatic":"Automatic","UseStartPageNumber":"UseStartPageNumber"}}],"PageOrder":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PageOrder","k":"enum","s":"enums","m":{"DownThenOver":"DownThenOver","OverThenDown":"OverThenDown"}}],"PaperSize":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PaperSize","k":"enum","s":"enums","m":{"A2":"A2","A3":"A3","A3Extra":"A3Extra","A3ExtraTransverse":"A3ExtraTransverse","A3Rotated":"A3Rotated","A3Transverse":"A3Transverse","A4":"A4","A4Extra":"A4Extra","A4Plus":"A4Plus","A4Rotated":"A4Rotated","A4Small":"A4Small","A4Transverse":"A4Transverse","A5":"A5","A5Extra":"A5Extra","A5Rotated":"A5Rotated","A5Transverse":"A5Transverse","A6":"A6","A6Rotated":"A6Rotated","B4ISO_1":"B4ISO_1","B4ISO_2":"B4ISO_2","B4JIS":"B4JIS","B4JISRotated":"B4JISRotated","B5ISO":"B5ISO","B5ISOExtra":"B5ISOExtra","B5JIS":"B5JIS","B5JISRotated":"B5JISRotated","B5JISTransverse":"B5JISTransverse","B6ISO":"B6ISO","B6JIS":"B6JIS","B6JISRotated":"B6JISRotated","C":"C","D":"D","DblJapanesePostcard":"DblJapanesePostcard","DblJapanesePostcardRotated":"DblJapanesePostcardRotated","E":"E","Envelope10":"Envelope10","Envelope11":"Envelope11","Envelope12":"Envelope12","Envelope14":"Envelope14","Envelope9":"Envelope9","EnvelopeC3":"EnvelopeC3","EnvelopeC4":"EnvelopeC4","EnvelopeC5":"EnvelopeC5","EnvelopeC6":"EnvelopeC6","EnvelopeC6C5":"EnvelopeC6C5","EnvelopeDL":"EnvelopeDL","EnvelopeInvite":"EnvelopeInvite","EnvelopeItaly":"EnvelopeItaly","EnvelopeMonarch":"EnvelopeMonarch","Executive":"Executive","Folio":"Folio","GermanLegalFanfold":"GermanLegalFanfold","GermanStandardFanfold":"GermanStandardFanfold","JapanesePostcard":"JapanesePostcard","JapanesePostcardRotated":"JapanesePostcardRotated","Ledger":"Ledger","Legal":"Legal","LegalExtra":"LegalExtra","Letter":"Letter","LetterExtra":"LetterExtra","LetterExtraTransverse":"LetterExtraTransverse","LetterPlus":"LetterPlus","LetterRotated":"LetterRotated","LetterSmall":"LetterSmall","LetterTransverse":"LetterTransverse","Note":"Note","Quarto":"Quarto","Size10x11":"Size10x11","Size10x14":"Size10x14","Size11x17":"Size11x17","Size12x11":"Size12x11","Size15x11":"Size15x11","Size634Envelope":"Size634Envelope","Size9x11":"Size9x11","Statement":"Statement","SuperAA4":"SuperAA4","SuperBA3":"SuperBA3","Tabloid":"Tabloid","TabloidExtra":"TabloidExtra","Undefined":"Undefined","USStandardFanfold":"USStandardFanfold"}}],"ParentLabelLayout":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ParentLabelLayout","k":"enum","s":"enums","m":{"Banner":"Banner","None":"None","Overlapping":"Overlapping"}}],"PatternType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PatternType","k":"enum","s":"enums","m":{"Pattern10Percent":"Pattern10Percent","Pattern20Percent":"Pattern20Percent","Pattern25Percent":"Pattern25Percent","Pattern30Percent":"Pattern30Percent","Pattern40Percent":"Pattern40Percent","Pattern50Percent":"Pattern50Percent","Pattern5Percent":"Pattern5Percent","Pattern60Percent":"Pattern60Percent","Pattern70Percent":"Pattern70Percent","Pattern75Percent":"Pattern75Percent","Pattern80Percent":"Pattern80Percent","Pattern90Percent":"Pattern90Percent","PatternCross":"PatternCross","PatternDarkDownwardDiagonal":"PatternDarkDownwardDiagonal","PatternDarkHorizontal":"PatternDarkHorizontal","PatternDarkUpwardDiagonal":"PatternDarkUpwardDiagonal","PatternDarkVertical":"PatternDarkVertical","PatternDashedDownwardDiagonal":"PatternDashedDownwardDiagonal","PatternDashedHorizontal":"PatternDashedHorizontal","PatternDashedUpwardDiagonal":"PatternDashedUpwardDiagonal","PatternDashedVertical":"PatternDashedVertical","PatternDiagonalBrick":"PatternDiagonalBrick","PatternDiagonalCross":"PatternDiagonalCross","PatternDivot":"PatternDivot","PatternDottedDiamond":"PatternDottedDiamond","PatternDottedGrid":"PatternDottedGrid","PatternDownwardDiagonal":"PatternDownwardDiagonal","PatternHorizontal":"PatternHorizontal","PatternHorizontalBrick":"PatternHorizontalBrick","PatternLargeCheckerBoard":"PatternLargeCheckerBoard","PatternLargeConfetti":"PatternLargeConfetti","PatternLargeGrid":"PatternLargeGrid","PatternLightDownwardDiagonal":"PatternLightDownwardDiagonal","PatternLightHorizontal":"PatternLightHorizontal","PatternLightUpwardDiagonal":"PatternLightUpwardDiagonal","PatternLightVertical":"PatternLightVertical","PatternMixed":"PatternMixed","PatternNarrowHorizontal":"PatternNarrowHorizontal","PatternNarrowVertical":"PatternNarrowVertical","PatternOutlinedDiamond":"PatternOutlinedDiamond","PatternPlaid":"PatternPlaid","PatternShingle":"PatternShingle","PatternSmallCheckerBoard":"PatternSmallCheckerBoard","PatternSmallConfetti":"PatternSmallConfetti","PatternSmallGrid":"PatternSmallGrid","PatternSolidDiamond":"PatternSolidDiamond","PatternSphere":"PatternSphere","PatternTrellis":"PatternTrellis","PatternUpwardDiagonal":"PatternUpwardDiagonal","PatternVertical":"PatternVertical","PatternWave":"PatternWave","PatternWeave":"PatternWeave","PatternWideDownwardDiagonal":"PatternWideDownwardDiagonal","PatternWideUpwardDiagonal":"PatternWideUpwardDiagonal","PatternZigZag":"PatternZigZag"}}],"PictureType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PictureType","k":"enum","s":"enums","m":{"Scale":"Scale","Stack":"Stack","Stretch":"Stretch"}}],"PositioningOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PositioningOptions","k":"enum","s":"enums","m":{"None":"None","TreatAllRowsAndColumnsAsVisible":"TreatAllRowsAndColumnsAsVisible"}}],"Precision":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/Precision","k":"enum","s":"enums","m":{"UseDisplayValues":"UseDisplayValues","UseRealCellValues":"UseRealCellValues"}}],"PredefinedShapeType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PredefinedShapeType","k":"enum","s":"enums","m":{"Diamond":"Diamond","Ellipse":"Ellipse","Heart":"Heart","IrregularSeal1":"IrregularSeal1","IrregularSeal2":"IrregularSeal2","LightningBolt":"LightningBolt","Line":"Line","Pentagon":"Pentagon","Rectangle":"Rectangle","RightTriangle":"RightTriangle","StraightConnector1":"StraightConnector1"}}],"PrintErrors":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PrintErrors","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDashes":"PrintAsDashes","PrintAsDisplayed":"PrintAsDisplayed","PrintAsNA":"PrintAsNA"}}],"PrintNotes":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/PrintNotes","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDisplayed":"PrintAsDisplayed","PrintAtEndOfSheet":"PrintAtEndOfSheet"}}],"QuartileCalculation":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/QuartileCalculation","k":"enum","s":"enums","m":{"ExclusiveMedian":"ExclusiveMedian","InclusiveMedian":"InclusiveMedian"}}],"ReadingOrder":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ReadingOrder","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"RelativeDateRangeDuration":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/RelativeDateRangeDuration","k":"enum","s":"enums","m":{"Day":"Day","Month":"Month","Quarter":"Quarter","Week":"Week","Year":"Year"}}],"RelativeDateRangeOffset":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/RelativeDateRangeOffset","k":"enum","s":"enums","m":{"Current":"Current","Next":"Next","Previous":"Previous"}}],"ScaleType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ScaleType","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"ScalingType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ScalingType","k":"enum","s":"enums","m":{"FitToPages":"FitToPages","UseScalingFactor":"UseScalingFactor"}}],"ScrollBars":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ScrollBars","k":"enum","s":"enums","m":{"Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"SeriesType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","Bubble":"Bubble","Line":"Line","Pie":"Pie","Radar":"Radar","Scatter":"Scatter","Surface":"Surface"}}],"SeriesValuesColorBy":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SeriesValuesColorBy","k":"enum","s":"enums","m":{"NumericalValue":"NumericalValue","SecondaryCategory":"SecondaryCategory"}}],"ShapePositioningMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ShapePositioningMode","k":"enum","s":"enums","m":{"DontMoveOrSizeWithCells":"DontMoveOrSizeWithCells","MoveAndSizeWithCells":"MoveAndSizeWithCells","MoveWithCells":"MoveWithCells"}}],"SheetType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SheetType","k":"enum","s":"enums","m":{"Chartsheet":"Chartsheet","Worksheet":"Worksheet"}}],"SortDirection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"SparklineAxisMinMax":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SparklineAxisMinMax","k":"enum","s":"enums","m":{"Custom":"Custom","Group":"Group","Individual":"Individual"}}],"SparklineDisplayBlanksAs":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SparklineDisplayBlanksAs","k":"enum","s":"enums","m":{"Gap":"Gap","Span":"Span","Zero":"Zero"}}],"SparklineType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/SparklineType","k":"enum","s":"enums","m":{"Column":"Column","Line":"Line","Stacked":"Stacked","WinLoss":"WinLoss"}}],"TextDirection":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TextDirection","k":"enum","s":"enums","m":{"EastAsianVertical":"EastAsianVertical","Horizontal":"Horizontal","MongolianVertical":"MongolianVertical","Vertical":"Vertical","Vertical270":"Vertical270","WordArtVertical":"WordArtVertical","WordArtVerticalRtl":"WordArtVerticalRtl"}}],"TextFormatMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TextFormatMode","k":"enum","s":"enums","m":{"AsDisplayed":"AsDisplayed","IgnoreCellWidth":"IgnoreCellWidth"}}],"TextHorizontalOverflow":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TextHorizontalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Overflow":"Overflow"}}],"TextVerticalOverflow":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TextVerticalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Ellipsis":"Ellipsis","Overflow":"Overflow"}}],"ThresholdComparison":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/ThresholdComparison","k":"enum","s":"enums","m":{"Greater":"Greater","GreaterEqual":"GreaterEqual"}}],"TickLabelAlignment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TickLabelAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}}],"TickLabelPosition":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TickLabelPosition","k":"enum","s":"enums","m":{"High":"High","Low":"Low","NextToAxis":"NextToAxis","None":"None"}}],"TickMark":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TickMark","k":"enum","s":"enums","m":{"Cross":"Cross","Inside":"Inside","None":"None","Outside":"Outside"}}],"TimeUnit":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TimeUnit","k":"enum","s":"enums","m":{"Days":"Days","Months":"Months","Years":"Years"}}],"TopOrBottomFilterType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TopOrBottomFilterType","k":"enum","s":"enums","m":{"BottomPercentage":"BottomPercentage","BottomValues":"BottomValues","TopPercentage":"TopPercentage","TopValues":"TopValues"}}],"TrendlinePolynomialOrder":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TrendlinePolynomialOrder","k":"enum","s":"enums","m":{"Fifth":"Fifth","Fourth":"Fourth","Second":"Second","Sixth":"Sixth","Third":"Third"}}],"TrendlineType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TrendlineType","k":"enum","s":"enums","m":{"Exponential":"Exponential","Linear":"Linear","Logarithmic":"Logarithmic","MovingAverage":"MovingAverage","Polynomial":"Polynomial","Power":"Power"}}],"TwoConstraintDataValidationOperator":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/TwoConstraintDataValidationOperator","k":"enum","s":"enums","m":{"Between":"Between","NotBetween":"NotBetween"}}],"UpDownBarType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/UpDownBarType","k":"enum","s":"enums","m":{"Down":"Down","Up":"Up"}}],"VerticalCellAlignment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/VerticalCellAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Default":"Default","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"VerticalTextAlignment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/VerticalTextAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Top":"Top"}}],"VerticalTitleAlignment":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/VerticalTitleAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"WallType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WallType","k":"enum","s":"enums","m":{"All":"All","Back":"Back","Floor":"Floor","Side":"Side"}}],"WorkbookEncryptionMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorkbookEncryptionMode","k":"enum","s":"enums","m":{"Agile":"Agile","Standard":"Standard"}}],"WorkbookFormat":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorkbookFormat","k":"enum","s":"enums","m":{"Excel2007":"Excel2007","Excel2007MacroEnabled":"Excel2007MacroEnabled","Excel2007MacroEnabledTemplate":"Excel2007MacroEnabledTemplate","Excel2007Template":"Excel2007Template","Excel97To2003":"Excel97To2003","Excel97To2003Template":"Excel97To2003Template","StrictOpenXml":"StrictOpenXml"}}],"WorkbookThemeColorType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorkbookThemeColorType","k":"enum","s":"enums","m":{"Accent1":"Accent1","Accent2":"Accent2","Accent3":"Accent3","Accent4":"Accent4","Accent5":"Accent5","Accent6":"Accent6","Dark1":"Dark1","Dark2":"Dark2","FollowedHyperlink":"FollowedHyperlink","Hyperlink":"Hyperlink","Light1":"Light1","Light2":"Light2"}}],"WorksheetCellFormatOptions":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetCellFormatOptions","k":"enum","s":"enums","m":{"All":"All","ApplyAlignmentFormatting":"ApplyAlignmentFormatting","ApplyBorderFormatting":"ApplyBorderFormatting","ApplyFillFormatting":"ApplyFillFormatting","ApplyFontFormatting":"ApplyFontFormatting","ApplyNumberFormatting":"ApplyNumberFormatting","ApplyProtectionFormatting":"ApplyProtectionFormatting","None":"None"}}],"WorksheetColumnWidthUnit":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetColumnWidthUnit","k":"enum","s":"enums","m":{"Character":"Character","Character256th":"Character256th","CharacterPaddingExcluded":"CharacterPaddingExcluded","Pixel":"Pixel","Point":"Point","Twip":"Twip"}}],"WorksheetProtectedSelectionMode":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetProtectedSelectionMode","k":"enum","s":"enums","m":{"AllCells":"AllCells","NoCells":"NoCells","UnlockedCells":"UnlockedCells"}}],"WorksheetSortType":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetSortType","k":"enum","s":"enums","m":{"Columns":"Columns","Rows":"Rows"}}],"WorksheetTableArea":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetTableArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderRow":"HeaderRow","TotalsRow":"TotalsRow","WholeTable":"WholeTable"}}],"WorksheetTableColumnArea":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetTableColumnArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderCell":"HeaderCell","TotalCell":"TotalCell"}}],"WorksheetTableStyleArea":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetTableStyleArea","k":"enum","s":"enums","m":{"AlternateColumnStripe":"AlternateColumnStripe","AlternateRowStripe":"AlternateRowStripe","ColumnStripe":"ColumnStripe","FirstColumn":"FirstColumn","FirstHeaderCell":"FirstHeaderCell","FirstTotalCell":"FirstTotalCell","HeaderRow":"HeaderRow","LastColumn":"LastColumn","LastHeaderCell":"LastHeaderCell","LastTotalCell":"LastTotalCell","RowStripe":"RowStripe","TotalRow":"TotalRow","WholeTable":"WholeTable"}}],"WorksheetView":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetView","k":"enum","s":"enums","m":{"Normal":"Normal","PageBreakPreview":"PageBreakPreview","PageLayout":"PageLayout"}}],"WorksheetVisibility":[{"p":"igniteui-angular-excel","u":"/api/angular/igniteui-angular-excel/21.0.0/enums/WorksheetVisibility","k":"enum","s":"enums","m":{"Hidden":"Hidden","StrongHidden":"StrongHidden","Visible":"Visible"}}],"ComboBoxListItem":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/ComboBoxListItem","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","dataValue":"dataValue","displayText":"displayText","tag":"tag","toString":"toString"}}],"EnumWrapper$1":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/EnumWrapper-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","enumValue":"enumValue","enumValueNameLocalized":"enumValueNameLocalized","toString":"toString"}}],"IgxSpreadsheetActionExecutedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetActionExecutedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","command":"command","commandParameter":"commandParameter"}}],"IgxSpreadsheetActionExecutingEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetActionExecutingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","command":"command","commandParameter":"commandParameter"}}],"IgxSpreadsheetActiveCellChangedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetActiveCellChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxSpreadsheetActivePaneChangedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetActivePaneChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxSpreadsheetActiveTableChangedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetActiveTableChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxSpreadsheetActiveWorksheetChangedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetActiveWorksheetChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgxSpreadsheetComponent":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetComponent","k":"class","s":"classes","m":{"constructor":"constructor","_dynamicContent":"_dynamicContent","ngAcceptInputType_allowAddWorksheet":"ngAcceptInputType_allowAddWorksheet","ngAcceptInputType_allowAsyncCalculations":"ngAcceptInputType_allowAsyncCalculations","ngAcceptInputType_allowDeleteWorksheet":"ngAcceptInputType_allowDeleteWorksheet","ngAcceptInputType_areGridlinesVisible":"ngAcceptInputType_areGridlinesVisible","ngAcceptInputType_areHeadersVisible":"ngAcceptInputType_areHeadersVisible","ngAcceptInputType_fixedDecimalPlaceCount":"ngAcceptInputType_fixedDecimalPlaceCount","ngAcceptInputType_isEnterKeyNavigationEnabled":"ngAcceptInputType_isEnterKeyNavigationEnabled","ngAcceptInputType_isFixedDecimalEnabled":"ngAcceptInputType_isFixedDecimalEnabled","ngAcceptInputType_isFormulaBarVisible":"ngAcceptInputType_isFormulaBarVisible","ngAcceptInputType_isInEditMode":"ngAcceptInputType_isInEditMode","ngAcceptInputType_isInEndMode":"ngAcceptInputType_isInEndMode","ngAcceptInputType_isPerformingAsyncCalculations":"ngAcceptInputType_isPerformingAsyncCalculations","ngAcceptInputType_isRenamingWorksheet":"ngAcceptInputType_isRenamingWorksheet","ngAcceptInputType_isScrollLocked":"ngAcceptInputType_isScrollLocked","ngAcceptInputType_isUndoEnabled":"ngAcceptInputType_isUndoEnabled","ngAcceptInputType_nameBoxWidth":"ngAcceptInputType_nameBoxWidth","ngAcceptInputType_selectedWorksheets":"ngAcceptInputType_selectedWorksheets","ngAcceptInputType_validationInputMessagePosition":"ngAcceptInputType_validationInputMessagePosition","ngAcceptInputType_zoomLevel":"ngAcceptInputType_zoomLevel","ɵcmp":"ɵcmp","ɵfac":"ɵfac","ActionExecuted":"ActionExecuted","ActionExecuting":"ActionExecuting","activeCell":"activeCell","activeCellChanged":"activeCellChanged","activePane":"activePane","activePaneChanged":"activePaneChanged","activeSelection":"activeSelection","activeSelectionCellRangeFormat":"activeSelectionCellRangeFormat","activeTable":"activeTable","activeTableChanged":"activeTableChanged","activeWorksheet":"activeWorksheet","activeWorksheetChanged":"activeWorksheetChanged","allowAddWorksheet":"allowAddWorksheet","allowAsyncCalculations":"allowAsyncCalculations","allowDeleteWorksheet":"allowDeleteWorksheet","areGridlinesVisible":"areGridlinesVisible","areHeadersVisible":"areHeadersVisible","cellEditMode":"cellEditMode","chartAdapter":"chartAdapter","contextMenuOpening":"contextMenuOpening","editModeEntered":"editModeEntered","editModeEntering":"editModeEntering","editModeExited":"editModeExited","editModeExiting":"editModeExiting","editModeValidationError":"editModeValidationError","editRangePasswordNeeded":"editRangePasswordNeeded","enterKeyNavigationDirection":"enterKeyNavigationDirection","fixedDecimalPlaceCount":"fixedDecimalPlaceCount","height":"height","hyperlinkExecuting":"hyperlinkExecuting","isEnterKeyNavigationEnabled":"isEnterKeyNavigationEnabled","isFixedDecimalEnabled":"isFixedDecimalEnabled","isFormulaBarVisible":"isFormulaBarVisible","isInEditMode":"isInEditMode","isInEndMode":"isInEndMode","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isRenamingWorksheet":"isRenamingWorksheet","isScrollLocked":"isScrollLocked","isUndoEnabled":"isUndoEnabled","nameBoxWidth":"nameBoxWidth","panes":"panes","selectedWorksheets":"selectedWorksheets","selectionChanged":"selectionChanged","selectionMode":"selectionMode","undoManager":"undoManager","userPromptDisplaying":"userPromptDisplaying","validationInputMessagePosition":"validationInputMessagePosition","width":"width","workbook":"workbook","workbookDirtied":"workbookDirtied","zoomLevel":"zoomLevel","containerResized":"containerResized","executeAction":"executeAction","exportVisualData":"exportVisualData","findByName":"findByName","flush":"flush","ngAfterContentInit":"ngAfterContentInit","ngOnDestroy":"ngOnDestroy","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgxSpreadsheetContextMenuOpeningEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetContextMenuOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","menuArea":"menuArea"}}],"IgxSpreadsheetEditModeEnteredEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetEditModeEnteredEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgxSpreadsheetEditModeEnteringEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetEditModeEnteringEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgxSpreadsheetEditModeExitedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetEditModeExitedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgxSpreadsheetEditModeExitingEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetEditModeExitingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_acceptChanges":"ngAcceptInputType_acceptChanges","ngAcceptInputType_canCancel":"ngAcceptInputType_canCancel","acceptChanges":"acceptChanges","canCancel":"canCancel","cell":"cell","editText":"editText"}}],"IgxSpreadsheetEditModeValidationErrorEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetEditModeValidationErrorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_canStayInEditMode":"ngAcceptInputType_canStayInEditMode","action":"action","canStayInEditMode":"canStayInEditMode","cell":"cell","validationRule":"validationRule"}}],"IgxSpreadsheetEditRangePasswordNeededEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetEditRangePasswordNeededEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_ranges":"ngAcceptInputType_ranges","ranges":"ranges","unprotect":"unprotect"}}],"IgxSpreadsheetHyperlinkExecutingEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetHyperlinkExecutingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","hyperlink":"hyperlink","workingDirectory":"workingDirectory"}}],"IgxSpreadsheetSelectionChangedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","pane":"pane"}}],"IgxSpreadsheetUserPromptDisplayingEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetUserPromptDisplayingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ngAcceptInputType_canCancel":"ngAcceptInputType_canCancel","ngAcceptInputType_cancel":"ngAcceptInputType_cancel","ngAcceptInputType_displayMessage":"ngAcceptInputType_displayMessage","canCancel":"canCancel","cancel":"cancel","caption":"caption","displayMessage":"displayMessage","exception":"exception","message":"message","trigger":"trigger"}}],"IgxSpreadsheetWorkbookDirtiedEventArgs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/IgxSpreadsheetWorkbookDirtiedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"PaletteEntry":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/PaletteEntry","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","colorInfo":"colorInfo"}}],"SpreadsheetCell":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetCell","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","column":"column","row":"row","equals":"equals","equals1":"equals1","getHashCode":"getHashCode","toString":"toString","staticInit":"staticInit"}}],"SpreadsheetCellAreaVisualData":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetCellAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","columns":"columns","relativeBounds":"relativeBounds","rows":"rows","shapes":"shapes","serialize":"serialize"}}],"SpreadsheetCellAreaVisualDataList":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetCellAreaVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetCellRange":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetCellRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","empty":"empty","firstColumn":"firstColumn","firstRow":"firstRow","isEmpty":"isEmpty","isSingleCell":"isSingleCell","lastColumn":"lastColumn","lastRow":"lastRow","contains":"contains","equals":"equals","equals1":"equals1","getHashCode":"getHashCode","intersect":"intersect","intersectsWith":"intersectsWith","toString":"toString","union":"union","staticInit":"staticInit"}}],"SpreadsheetCellRangeFormat":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetCellRangeFormat","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","alignment":"alignment","fill":"fill","font":"font","formatString":"formatString","hidden":"hidden","indent":"indent","locked":"locked","rotation":"rotation","shrinkToFit":"shrinkToFit","style":"style","verticalAlignment":"verticalAlignment","wrapText":"wrapText","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","setBorders":"setBorders"}}],"SpreadsheetChartAdapterBase":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetChartAdapterBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetColumnScrollRegion":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetColumnScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetCss":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetCss","k":"class","s":"classes","m":{"constructor":"constructor","activateNextHiddenTabButton":"activateNextHiddenTabButton","activatePreviousHiddenTabButton":"activatePreviousHiddenTabButton","addNewWorksheetButton":"addNewWorksheetButton","automaticGridline":"automaticGridline","cellSelection":"cellSelection","cellSelectionHandle":"cellSelectionHandle","columnHeader":"columnHeader","columnHeaderArea":"columnHeaderArea","columnHeaderHover":"columnHeaderHover","columnHeaderSelected":"columnHeaderSelected","columnHeaderSelectedCells":"columnHeaderSelectedCells","columnSplitter":"columnSplitter","columnSplitterPreview":"columnSplitterPreview","dropDownButton":"dropDownButton","dropDownButtonOpen":"dropDownButtonOpen","filterDialog":"filterDialog","filterDialogButtons":"filterDialogButtons","filterDialogColumnName":"filterDialogColumnName","filterDialogCondition1":"filterDialogCondition1","filterDialogCondition2":"filterDialogCondition2","filterDialogConditionalOperator":"filterDialogConditionalOperator","filterDialogHintText":"filterDialogHintText","filterDialogShowRowsWhere":"filterDialogShowRowsWhere","formatCellsDialog":"formatCellsDialog","formatCellsDialogButtons":"formatCellsDialogButtons","formatCellsDialogColorPickerDropdownButton":"formatCellsDialogColorPickerDropdownButton","formatCellsDialogNumericSpinner":"formatCellsDialogNumericSpinner","formatCellsDialogTab":"formatCellsDialogTab","formatCellsDialogTable":"formatCellsDialogTable","formatCellsDialogTabs":"formatCellsDialogTabs","formulaBar":"formulaBar","formulaBarButtonContainer":"formulaBarButtonContainer","formulaBarCancelButton":"formulaBarCancelButton","formulaBarEnterButton":"formulaBarEnterButton","formulaBarExpandButton":"formulaBarExpandButton","formulaBarExpandButtonOpen":"formulaBarExpandButtonOpen","formulaBarTextAreaContainer":"formulaBarTextAreaContainer","formulaBarTextAreaSplitter":"formulaBarTextAreaSplitter","headerResizeLine":"headerResizeLine","inputMessage":"inputMessage","inputMessageContent":"inputMessageContent","inputMessageTitle":"inputMessageTitle","invalidData":"invalidData","nameBoxContainer":"nameBoxContainer","nameBoxSplitter":"nameBoxSplitter","paneArea":"paneArea","rowHeader":"rowHeader","rowHeaderArea":"rowHeaderArea","rowHeaderHover":"rowHeaderHover","rowHeaderSelected":"rowHeaderSelected","rowHeaderSelectedCells":"rowHeaderSelectedCells","rowSplitter":"rowSplitter","rowSplitterPreview":"rowSplitterPreview","scrollBarArrowDown":"scrollBarArrowDown","scrollBarArrowLeft":"scrollBarArrowLeft","scrollBarArrowRight":"scrollBarArrowRight","scrollBarArrowUp":"scrollBarArrowUp","scrollBarHorizontal":"scrollBarHorizontal","scrollBarThumbHorizontal":"scrollBarThumbHorizontal","scrollBarThumbVertical":"scrollBarThumbVertical","scrollBarTrackDown":"scrollBarTrackDown","scrollBarTrackLeft":"scrollBarTrackLeft","scrollBarTrackRight":"scrollBarTrackRight","scrollBarTrackUp":"scrollBarTrackUp","scrollBarVertical":"scrollBarVertical","scrollFirstTabButton":"scrollFirstTabButton","scrollLastTabButton":"scrollLastTabButton","scrollNextTabButton":"scrollNextTabButton","scrollPreviousTabButton":"scrollPreviousTabButton","selectAll":"selectAll","sortDialog":"sortDialog","sortDialogAddLevelButton":"sortDialogAddLevelButton","sortDialogCopyLevelButton":"sortDialogCopyLevelButton","sortDialogDeleteLevelButton":"sortDialogDeleteLevelButton","sortDialogMoveDownButton":"sortDialogMoveDownButton","sortDialogMoveUpButton":"sortDialogMoveUpButton","sortDialogMyDataHasHeaderCheckBox":"sortDialogMyDataHasHeaderCheckBox","sortDialogOkCancelButtonsArea":"sortDialogOkCancelButtonsArea","sortDialogOptionsButton":"sortDialogOptionsButton","sortDialogSortConditionActiveRow":"sortDialogSortConditionActiveRow","sortDialogSortConditionRow":"sortDialogSortConditionRow","sortDialogSortConditionsGridArea":"sortDialogSortConditionsGridArea","sortDialogSortConditionsGridHeader":"sortDialogSortConditionsGridHeader","sortDialogTopButtonsArea":"sortDialogTopButtonsArea","sortOptionsDialogCaseSensitiveCheckboxArea":"sortOptionsDialogCaseSensitiveCheckboxArea","sortOptionsDialogOkCancelButtonsArea":"sortOptionsDialogOkCancelButtonsArea","sortOptionsDialogOrientationArea":"sortOptionsDialogOrientationArea","splitterIntersection":"splitterIntersection","spreadsheet":"spreadsheet","tabAreaBackground":"tabAreaBackground","tabAreaBorder":"tabAreaBorder","tabAreaSplitter":"tabAreaSplitter","tabDropIndicator":"tabDropIndicator","tabItem":"tabItem","tabItemActive":"tabItemActive","tabItemArea":"tabItemArea","tabItemContent":"tabItemContent","tabItemDark":"tabItemDark","tabItemLight":"tabItemLight","tabItemProtected":"tabItemProtected","tabItemSelected":"tabItemSelected","tooltip":"tooltip","tooltipBody":"tooltipBody","tooltipTitle":"tooltipTitle","topOrBottomDialog":"topOrBottomDialog","topOrBottomDialogButtons":"topOrBottomDialogButtons","topOrBottomDialogInputArea":"topOrBottomDialogInputArea","topOrBottomDialogShow":"topOrBottomDialogShow"}}],"SpreadsheetHeaderAreaVisualData":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetHeaderAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","items":"items","relativeBounds":"relativeBounds","shapes":"shapes","serialize":"serialize"}}],"SpreadsheetHeaderAreaVisualDataList":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetHeaderAreaVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetLocaleBg":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_Text_SelectedColor":"SpreadsheetFontControl_Text_SelectedColor","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleCs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleDa":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleDe":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleEn":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleEs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleFr":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleHu":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleIt":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleJa":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_IntersectsMergedCells_Message1":"PasteError_IntersectsMergedCells_Message1","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Bold_Description":"Undo_Bold_Description","Undo_Bold_Title":"Undo_Bold_Title","Undo_Borders":"Undo_Borders","Undo_Borders_Description":"Undo_Borders_Description","Undo_Borders_Title":"Undo_Borders_Title","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_BottomAlignment_Description":"Undo_BottomAlignment_Description","Undo_BottomAlignment_Title":"Undo_BottomAlignment_Title","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_CenterAlignment_Description":"Undo_CenterAlignment_Description","Undo_CenterAlignment_Title":"Undo_CenterAlignment_Title","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellContents_Description":"Undo_ClearCellContents_Description","Undo_ClearCellContents_Title":"Undo_ClearCellContents_Title","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateNamedReference_Title":"Undo_CreateNamedReference_Title","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_Delete_Description":"Undo_Delete_Description","Undo_Delete_Title":"Undo_Delete_Title","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_EditCell_Description":"Undo_EditCell_Description","Undo_EditCell_Title":"Undo_EditCell_Title","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_Font_Description":"Undo_Font_Description","Undo_Font_Title":"Undo_Font_Title","Undo_FontSize":"Undo_FontSize","Undo_FontSize_Description":"Undo_FontSize_Description","Undo_FontSize_Title":"Undo_FontSize_Title","Undo_FormatCells":"Undo_FormatCells","Undo_FormatCells_Description":"Undo_FormatCells_Description","Undo_FormatCells_Title":"Undo_FormatCells_Title","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertCells_Description":"Undo_InsertCells_Description","Undo_InsertCells_Title":"Undo_InsertCells_Title","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertColumns_Description":"Undo_InsertColumns_Description","Undo_InsertColumns_Title":"Undo_InsertColumns_Title","Undo_InsertRows":"Undo_InsertRows","Undo_InsertRows_Description":"Undo_InsertRows_Description","Undo_InsertRows_Title":"Undo_InsertRows_Title","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_Italic_Description":"Undo_Italic_Description","Undo_Italic_Title":"Undo_Italic_Title","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_JustifyAlignment_Description":"Undo_JustifyAlignment_Description","Undo_JustifyAlignment_Title":"Undo_JustifyAlignment_Title","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_LeftAlignment_Description":"Undo_LeftAlignment_Description","Undo_LeftAlignment_Title":"Undo_LeftAlignment_Title","Undo_MergeCells":"Undo_MergeCells","Undo_MergeCells_Description":"Undo_MergeCells_Description","Undo_MergeCells_Title":"Undo_MergeCells_Title","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_MiddleAlignment_Description":"Undo_MiddleAlignment_Description","Undo_MiddleAlignment_Title":"Undo_MiddleAlignment_Title","Undo_Paste":"Undo_Paste","Undo_Paste_Description":"Undo_Paste_Description","Undo_Paste_Title":"Undo_Paste_Title","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeColumn_Description":"Undo_ResizeColumn_Description","Undo_ResizeColumn_Title":"Undo_ResizeColumn_Title","Undo_ResizeRow":"Undo_ResizeRow","Undo_ResizeRow_Description":"Undo_ResizeRow_Description","Undo_ResizeRow_Title":"Undo_ResizeRow_Title","Undo_RightAlignment":"Undo_RightAlignment","Undo_RightAlignment_Description":"Undo_RightAlignment_Description","Undo_RightAlignment_Title":"Undo_RightAlignment_Title","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Strikethrough_Description":"Undo_Strikethrough_Description","Undo_Strikethrough_Title":"Undo_Strikethrough_Title","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_TopAlignment_Description":"Undo_TopAlignment_Description","Undo_TopAlignment_Title":"Undo_TopAlignment_Title","Undo_Underline":"Undo_Underline","Undo_Underline_Description":"Undo_Underline_Description","Undo_Underline_Title":"Undo_Underline_Title","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_WrapText_Description":"Undo_WrapText_Description","Undo_WrapText_Title":"Undo_WrapText_Title","Undo_Zoom":"Undo_Zoom","Undo_Zoom_Description":"Undo_Zoom_Description","Undo_Zoom_Title":"Undo_Zoom_Title","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleNb":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleNl":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocalePl":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocalePt":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleRo":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleRu":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_Text_SelectedColor":"SpreadsheetFontControl_Text_SelectedColor","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleSv":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleTr":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleZhHans":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleZhHant":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetPane":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetPane","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","columnScrollRegion":"columnScrollRegion","rowScrollRegion":"rowScrollRegion","selection":"selection","visibleRange":"visibleRange","addListener":"addListener","d":"d","e":"e","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","scrollCellIntoView":"scrollCellIntoView","scrollColumnIntoView":"scrollColumnIntoView","scrollRangeIntoView":"scrollRangeIntoView","scrollRowIntoView":"scrollRowIntoView"}}],"SpreadsheetRowColumnVisualData":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetRowColumnVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","extent":"extent","index":"index","offset":"offset","serialize":"serialize"}}],"SpreadsheetRowColumnVisualDataList":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetRowColumnVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetRowScrollRegion":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetRowScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetScrollRegion":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetSelection":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetSelection","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","activeCell":"activeCell","activeCellRangeIndex":"activeCellRangeIndex","cellRanges":"cellRanges","cellRangesAddress":"cellRangesAddress","addActiveCellRange":"addActiveCellRange","addCellRange":"addCellRange","addListener":"addListener","clearCellRanges":"clearCellRanges","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","replaceActiveCellRange":"replaceActiveCellRange","resetSelection":"resetSelection","setActiveCell":"setActiveCell","unselectRange":"unselectRange"}}],"SpreadsheetTabItemAreaVisualData":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetTabItemAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","relativeBounds":"relativeBounds","tabs":"tabs","serialize":"serialize"}}],"SpreadsheetTabVisualData":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetTabVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","isActive":"isActive","isEditing":"isEditing","isProtected":"isProtected","isSelected":"isSelected","relativeBounds":"relativeBounds","sheetIndex":"sheetIndex","serialize":"serialize"}}],"SpreadsheetTabVisualDataList":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetTabVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetVisualData":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellAreas":"cellAreas","columnHeaderAreas":"columnHeaderAreas","rowHeaderAreas":"rowHeaderAreas","tabArea":"tabArea","serialize":"serialize"}}],"SpreadsheetVisualDataBase":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/SpreadsheetVisualDataBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","serialize":"serialize"}}],"UndoLocaleBg":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleCs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleDa":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleDe":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleEn":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleEs":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleFr":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleHu":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleIt":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleJa":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleNb":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleNl":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocalePl":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocalePt":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleRo":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleRu":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleSv":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleTr":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleZhHans":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleZhHant":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/classes/UndoLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"SpreadsheetAction":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetAction","k":"enum","s":"enums","m":{"ActivateAndSelectNextWorksheet":"ActivateAndSelectNextWorksheet","ActivateAndSelectPreviousWorksheet":"ActivateAndSelectPreviousWorksheet","ActivateNextOutOfViewWorksheet":"ActivateNextOutOfViewWorksheet","ActivateNextPane":"ActivateNextPane","ActivateNextWorksheet":"ActivateNextWorksheet","ActivatePreviousOutOfViewWorksheet":"ActivatePreviousOutOfViewWorksheet","ActivatePreviousPane":"ActivatePreviousPane","ActivatePreviousWorksheet":"ActivatePreviousWorksheet","AddNewWorksheet":"AddNewWorksheet","AddTableColumn":"AddTableColumn","AddTableRow":"AddTableRow","AlignHorizontalCenter":"AlignHorizontalCenter","AlignHorizontalJustify":"AlignHorizontalJustify","AlignHorizontalLeft":"AlignHorizontalLeft","AlignHorizontalRight":"AlignHorizontalRight","AlignVerticalBottom":"AlignVerticalBottom","AlignVerticalMiddle":"AlignVerticalMiddle","AlignVerticalTop":"AlignVerticalTop","AutoFitColumnWidth":"AutoFitColumnWidth","AutoFitRowHeight":"AutoFitRowHeight","CancelRenameWorksheet":"CancelRenameWorksheet","CellAbove":"CellAbove","CellBelow":"CellBelow","CellInNextSelectionRange":"CellInNextSelectionRange","CellInPreviousSelectionRange":"CellInPreviousSelectionRange","CellInSelectionAbove":"CellInSelectionAbove","CellInSelectionBelow":"CellInSelectionBelow","CellInSelectionLeft":"CellInSelectionLeft","CellInSelectionRight":"CellInSelectionRight","CellInTableLeft":"CellInTableLeft","CellInTableRight":"CellInTableRight","CellLeft":"CellLeft","CellPageAbove":"CellPageAbove","CellPageBelow":"CellPageBelow","CellPageLeft":"CellPageLeft","CellPageRight":"CellPageRight","CellRight":"CellRight","CellWithDataAbove":"CellWithDataAbove","CellWithDataBelow":"CellWithDataBelow","CellWithDataLeft":"CellWithDataLeft","CellWithDataRight":"CellWithDataRight","CircleInvalidData":"CircleInvalidData","ClearAllFilterAndSort":"ClearAllFilterAndSort","ClearContents":"ClearContents","ClearFilter":"ClearFilter","ClearFormats":"ClearFormats","ClearHyperlinks":"ClearHyperlinks","ClearValidationCircles":"ClearValidationCircles","CommitRenameWorksheet":"CommitRenameWorksheet","ConvertTableToRange":"ConvertTableToRange","Copy":"Copy","Cut":"Cut","DecreaseFontSize":"DecreaseFontSize","DecreaseIndentation":"DecreaseIndentation","DeleteCells":"DeleteCells","DeleteCellsShiftLeft":"DeleteCellsShiftLeft","DeleteCellsShiftUp":"DeleteCellsShiftUp","DeleteColumns":"DeleteColumns","DeleteRows":"DeleteRows","DeleteTableColumns":"DeleteTableColumns","DeleteTableRows":"DeleteTableRows","DeleteWorksheets":"DeleteWorksheets","EdgeCellWithDataAbove":"EdgeCellWithDataAbove","EdgeCellWithDataBelow":"EdgeCellWithDataBelow","EdgeCellWithDataLeft":"EdgeCellWithDataLeft","EdgeCellWithDataRight":"EdgeCellWithDataRight","EnterEditMode":"EnterEditMode","EnterEditModeAndClearValue":"EnterEditModeAndClearValue","EnterEndMode":"EnterEndMode","EnterKeyNavigation":"EnterKeyNavigation","ExitEditModeAndCreateArrayFormula":"ExitEditModeAndCreateArrayFormula","ExitEditModeAndDiscardChanges":"ExitEditModeAndDiscardChanges","ExitEditModeAndUpdateActiveCell":"ExitEditModeAndUpdateActiveCell","ExitEditModeAndUpdateSelectedCells":"ExitEditModeAndUpdateSelectedCells","ExitEndMode":"ExitEndMode","FilterByCellColor":"FilterByCellColor","FilterByCellFontColor":"FilterByCellFontColor","FilterByCellIcon":"FilterByCellIcon","FilterByCellValue":"FilterByCellValue","FirstCellInRow":"FirstCellInRow","FirstCellInView":"FirstCellInView","FirstCellInViewWithinSelection":"FirstCellInViewWithinSelection","FirstCellInWorksheet":"FirstCellInWorksheet","FirstScrollableCellInRow":"FirstScrollableCellInRow","FirstScrollableCellInWorksheet":"FirstScrollableCellInWorksheet","FirstUnlockedCell":"FirstUnlockedCell","FreezeFirstColumn":"FreezeFirstColumn","FreezeFirstRow":"FreezeFirstRow","HideColumns":"HideColumns","HideRows":"HideRows","IncreaseFontSize":"IncreaseFontSize","IncreaseIndentation":"IncreaseIndentation","InsertCells":"InsertCells","InsertCellsShiftDown":"InsertCellsShiftDown","InsertCellsShiftRight":"InsertCellsShiftRight","InsertColumns":"InsertColumns","InsertNewWorksheets":"InsertNewWorksheets","InsertRows":"InsertRows","InsertTableColumns":"InsertTableColumns","InsertTableRows":"InsertTableRows","LastCellInView":"LastCellInView","LastCellInViewWithinSelection":"LastCellInViewWithinSelection","LastUnlockedCell":"LastUnlockedCell","LastUsedCell":"LastUsedCell","LastUsedCellInRow":"LastUsedCellInRow","MergeCells":"MergeCells","MergeCellsAcross":"MergeCellsAcross","MergeCellsAndCenter":"MergeCellsAndCenter","OpenHyperlink":"OpenHyperlink","Paste":"Paste","PickFromDropDownList":"PickFromDropDownList","ReapplyFilterAndSort":"ReapplyFilterAndSort","Redo":"Redo","RemoveColumnScrollRegionSplit":"RemoveColumnScrollRegionSplit","RemoveHyperlinks":"RemoveHyperlinks","RemoveRowScrollRegionSplit":"RemoveRowScrollRegionSplit","RemoveScrollRegionSplits":"RemoveScrollRegionSplits","RenameWorksheet":"RenameWorksheet","ResetNameBoxWidth":"ResetNameBoxWidth","ScrollDown":"ScrollDown","ScrollLeft":"ScrollLeft","ScrollNextWorksheet":"ScrollNextWorksheet","ScrollPageAbove":"ScrollPageAbove","ScrollPageBelow":"ScrollPageBelow","ScrollPageLeft":"ScrollPageLeft","ScrollPageRight":"ScrollPageRight","ScrollPreviousWorksheet":"ScrollPreviousWorksheet","ScrollRight":"ScrollRight","ScrollToFirstWorksheet":"ScrollToFirstWorksheet","ScrollToLastWorksheet":"ScrollToLastWorksheet","ScrollUp":"ScrollUp","SelectActiveCellOnly":"SelectActiveCellOnly","SelectAllCells":"SelectAllCells","SelectAllWorksheets":"SelectAllWorksheets","SelectCellAbove":"SelectCellAbove","SelectCellBelow":"SelectCellBelow","SelectCellLeft":"SelectCellLeft","SelectCellPageAbove":"SelectCellPageAbove","SelectCellPageBelow":"SelectCellPageBelow","SelectCellPageLeft":"SelectCellPageLeft","SelectCellPageRight":"SelectCellPageRight","SelectCellRight":"SelectCellRight","SelectCellWithDataAbove":"SelectCellWithDataAbove","SelectCellWithDataBelow":"SelectCellWithDataBelow","SelectCellWithDataLeft":"SelectCellWithDataLeft","SelectCellWithDataRight":"SelectCellWithDataRight","SelectColumns":"SelectColumns","SelectCurrentArray":"SelectCurrentArray","SelectCurrentRegion":"SelectCurrentRegion","SelectEdgeCellWithDataAbove":"SelectEdgeCellWithDataAbove","SelectEdgeCellWithDataBelow":"SelectEdgeCellWithDataBelow","SelectEdgeCellWithDataLeft":"SelectEdgeCellWithDataLeft","SelectEdgeCellWithDataRight":"SelectEdgeCellWithDataRight","SelectEntireTableColumn":"SelectEntireTableColumn","SelectFirstCellInRow":"SelectFirstCellInRow","SelectFirstCellInView":"SelectFirstCellInView","SelectFirstCellInWorksheet":"SelectFirstCellInWorksheet","SelectFirstScrollableCellInRow":"SelectFirstScrollableCellInRow","SelectFirstScrollableCellInWorksheet":"SelectFirstScrollableCellInWorksheet","SelectLastCellInView":"SelectLastCellInView","SelectLastUsedCell":"SelectLastUsedCell","SelectLastUsedCellInRow":"SelectLastUsedCellInRow","SelectRows":"SelectRows","SelectTableColumnData":"SelectTableColumnData","SelectTableRow":"SelectTableRow","SelectVisibleCellsOnly":"SelectVisibleCellsOnly","ShiftEnterKeyNavigation":"ShiftEnterKeyNavigation","ShowCellDropDown":"ShowCellDropDown","ShowCustomSortDialog":"ShowCustomSortDialog","ShowFormatCellsDialog":"ShowFormatCellsDialog","SnapColumnScrollRegionSplit":"SnapColumnScrollRegionSplit","SnapRowScrollRegionSplit":"SnapRowScrollRegionSplit","SnapScrollRegionSplits":"SnapScrollRegionSplits","SortAscending":"SortAscending","SortByCellColor":"SortByCellColor","SortByCellFontColor":"SortByCellFontColor","SortByCellIcon":"SortByCellIcon","SortDescending":"SortDescending","SwitchToAddToSelectionMode":"SwitchToAddToSelectionMode","SwitchToExtendSelectionMode":"SwitchToExtendSelectionMode","SwitchToNormalSelectionMode":"SwitchToNormalSelectionMode","ToggleBold":"ToggleBold","ToggleCellEditMode":"ToggleCellEditMode","ToggleDoubleUnderline":"ToggleDoubleUnderline","ToggleFilter":"ToggleFilter","ToggleFreezePanes":"ToggleFreezePanes","ToggleItalic":"ToggleItalic","ToggleShowFormulasInCells":"ToggleShowFormulasInCells","ToggleSplitPanes":"ToggleSplitPanes","ToggleStrikeThrough":"ToggleStrikeThrough","ToggleSubscript":"ToggleSubscript","ToggleSuperscript":"ToggleSuperscript","ToggleTableTotalRow":"ToggleTableTotalRow","ToggleUnderline":"ToggleUnderline","ToggleWrapText":"ToggleWrapText","Undo":"Undo","UnhideColumns":"UnhideColumns","UnhideRows":"UnhideRows","UnmergeCells":"UnmergeCells","UnselectWorksheets":"UnselectWorksheets","ZoomIn":"ZoomIn","ZoomOut":"ZoomOut","ZoomTo100":"ZoomTo100","ZoomToSelection":"ZoomToSelection"}}],"SpreadsheetCellEditMode":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetCellEditMode","k":"enum","s":"enums","m":{"ArrowKeysNavigateBetweenCells":"ArrowKeysNavigateBetweenCells","ArrowKeysNavigateInCell":"ArrowKeysNavigateInCell","NotInEditMode":"NotInEditMode"}}],"SpreadsheetCellRangeBorders":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetCellRangeBorders","k":"enum","s":"enums","m":{"AllBorder":"AllBorder","BottomBorder":"BottomBorder","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","InsideBorder":"InsideBorder","InsideHorizontal":"InsideHorizontal","InsideVertical":"InsideVertical","LeftBorder":"LeftBorder","OutsideBorder":"OutsideBorder","RightBorder":"RightBorder","TopBorder":"TopBorder"}}],"SpreadsheetCellSelectionMode":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetCellSelectionMode","k":"enum","s":"enums","m":{"AddToSelection":"AddToSelection","ExtendSelection":"ExtendSelection","Normal":"Normal"}}],"SpreadsheetContextMenuArea":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetContextMenuArea","k":"enum","s":"enums","m":{"Cell":"Cell","Column":"Column","FormulaBarEditor":"FormulaBarEditor","InPlaceEditor":"InPlaceEditor","Row":"Row","SelectAllButton":"SelectAllButton","Tab":"Tab","TableCell":"TableCell"}}],"SpreadsheetEditModeValidationErrorAction":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetEditModeValidationErrorAction","k":"enum","s":"enums","m":{"AcceptChange":"AcceptChange","RevertChange":"RevertChange","ShowPrompt":"ShowPrompt","StayInEditMode":"StayInEditMode"}}],"SpreadsheetEnterKeyNavigationDirection":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetEnterKeyNavigationDirection","k":"enum","s":"enums","m":{"Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"SpreadsheetFilterDialogOption":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetFilterDialogOption","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Between":"Between","Contains":"Contains","Custom":"Custom","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"SpreadsheetResourceId":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetResourceId","k":"enum","s":"enums","m":{"AddSheetButtonDisabledForeground":"AddSheetButtonDisabledForeground","AddSheetButtonForeground":"AddSheetButtonForeground","AddSheetButtonHotTrackForeground":"AddSheetButtonHotTrackForeground","AutomaticGridline":"AutomaticGridline","CellSelectionDragBorder":"CellSelectionDragBorder","CellSelectionDragBorderInHeader":"CellSelectionDragBorderInHeader","CellSelectionFill":"CellSelectionFill","CellSelectionHandleBorder":"CellSelectionHandleBorder","CellSelectionHandleFill":"CellSelectionHandleFill","CellSelectionInnerBorder":"CellSelectionInnerBorder","CellSelectionOuterBorder":"CellSelectionOuterBorder","ColumnHeaderBackground":"ColumnHeaderBackground","ColumnHeaderBorder":"ColumnHeaderBorder","ColumnHeaderForeground":"ColumnHeaderForeground","ColumnHeaderHotTrackBackground":"ColumnHeaderHotTrackBackground","ColumnHeaderHotTrackBorder":"ColumnHeaderHotTrackBorder","ColumnHeaderHotTrackForeground":"ColumnHeaderHotTrackForeground","ColumnHeaderHotTrackSelectedForeground":"ColumnHeaderHotTrackSelectedForeground","ColumnHeaderSelectedBackground":"ColumnHeaderSelectedBackground","ColumnHeaderSelectedBorder":"ColumnHeaderSelectedBorder","ColumnHeaderSelectedForeground":"ColumnHeaderSelectedForeground","ColumnHeaderWithSelectedCellsBackground":"ColumnHeaderWithSelectedCellsBackground","ColumnHeaderWithSelectedCellsBorder":"ColumnHeaderWithSelectedCellsBorder","ColumnHeaderWithSelectedCellsForeground":"ColumnHeaderWithSelectedCellsForeground","DropDownButtonBackground":"DropDownButtonBackground","DropDownButtonBorder":"DropDownButtonBorder","DropDownButtonForeground":"DropDownButtonForeground","DropDownButtonOpenBackground":"DropDownButtonOpenBackground","DropDownButtonOpenBorder":"DropDownButtonOpenBorder","DropDownButtonOpenForeground":"DropDownButtonOpenForeground","InputMessageBackground":"InputMessageBackground","InputMessageBorder":"InputMessageBorder","InputMessageForeground":"InputMessageForeground","InvalidDataBorder":"InvalidDataBorder","MultiSelectActiveCellBorder":"MultiSelectActiveCellBorder","ResizeColumnLine":"ResizeColumnLine","ResizeRowLine":"ResizeRowLine","RowHeaderBackground":"RowHeaderBackground","RowHeaderBorder":"RowHeaderBorder","RowHeaderForeground":"RowHeaderForeground","RowHeaderHotTrackBackground":"RowHeaderHotTrackBackground","RowHeaderHotTrackBorder":"RowHeaderHotTrackBorder","RowHeaderHotTrackForeground":"RowHeaderHotTrackForeground","RowHeaderHotTrackSelectedForeground":"RowHeaderHotTrackSelectedForeground","RowHeaderSelectedBackground":"RowHeaderSelectedBackground","RowHeaderSelectedBorder":"RowHeaderSelectedBorder","RowHeaderSelectedForeground":"RowHeaderSelectedForeground","RowHeaderWithSelectedCellsBackground":"RowHeaderWithSelectedCellsBackground","RowHeaderWithSelectedCellsBorder":"RowHeaderWithSelectedCellsBorder","RowHeaderWithSelectedCellsForeground":"RowHeaderWithSelectedCellsForeground","SelectAllBackground":"SelectAllBackground","SelectAllTriangleFill":"SelectAllTriangleFill","SelectAllTriangleHotTrackFill":"SelectAllTriangleHotTrackFill","SelectAllTriangleSelectedFill":"SelectAllTriangleSelectedFill","SelectedTabHighlight":"SelectedTabHighlight","SheetPaneSplitterBackground":"SheetPaneSplitterBackground","SheetPaneSplitterPreview":"SheetPaneSplitterPreview","TabAreaBackground":"TabAreaBackground","TabAreaBorder":"TabAreaBorder","TabAreaSplitterForeground":"TabAreaSplitterForeground","TabItemActiveBackground":"TabItemActiveBackground","TabItemActiveForeground":"TabItemActiveForeground","TabItemBackground":"TabItemBackground","TabItemForeground":"TabItemForeground","TabItemHotTrackBackground":"TabItemHotTrackBackground","TabItemHotTrackForeground":"TabItemHotTrackForeground","TabItemSelectedBackground":"TabItemSelectedBackground","TabItemSelectedForeground":"TabItemSelectedForeground","TabScrollButtonDisabledForeground":"TabScrollButtonDisabledForeground","TabScrollButtonForeground":"TabScrollButtonForeground","TabScrollButtonHotTrackForeground":"TabScrollButtonHotTrackForeground","UnselectCellsBorder":"UnselectCellsBorder","UnselectCellsFill":"UnselectCellsFill"}}],"SpreadsheetUserPromptTrigger":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/SpreadsheetUserPromptTrigger","k":"enum","s":"enums","m":{"ChangePartOfDataTable":"ChangePartOfDataTable","ClearCellContentError":"ClearCellContentError","ConflictingWorksheetName":"ConflictingWorksheetName","CopyError":"CopyError","CopyInvalidRanges":"CopyInvalidRanges","DeletingLockedColumnCells":"DeletingLockedColumnCells","DeletingLockedRowCells":"DeletingLockedRowCells","DeletingWorksheets":"DeletingWorksheets","EditError":"EditError","FormulaParseError":"FormulaParseError","General":"General","IntersectsMergedCells":"IntersectsMergedCells","InvalidArrayFormulaLockedState":"InvalidArrayFormulaLockedState","InvalidCommandForMixedCellSelections":"InvalidCommandForMixedCellSelections","InvalidCommandForMultipleSelections":"InvalidCommandForMultipleSelections","InvalidCommandForOverlappingSelections":"InvalidCommandForOverlappingSelections","InvalidHyperlinkAddress":"InvalidHyperlinkAddress","InvalidHyperlinkReference":"InvalidHyperlinkReference","InvalidNameBoxValue":"InvalidNameBoxValue","InvalidProtectedWorksheetChange":"InvalidProtectedWorksheetChange","InvalidSortOrFilterRange":"InvalidSortOrFilterRange","InvalidWorksheetName":"InvalidWorksheetName","LargeCopyOperation":"LargeCopyOperation","LargePasteOperation":"LargePasteOperation","NoSingleAllowedEditRange":"NoSingleAllowedEditRange","PasteCellRangeSize":"PasteCellRangeSize","PasteError":"PasteError","PasteIntersectsMergedCells":"PasteIntersectsMergedCells","PasteInvalidSheetCount":"PasteInvalidSheetCount","PasteInvalidSourceRanges":"PasteInvalidSourceRanges","PasteMultipleSheetsTables":"PasteMultipleSheetsTables","PasteMultipleSourceAndTargetRanges":"PasteMultipleSourceAndTargetRanges","TableChangeWithMultipleSelectedSheets":"TableChangeWithMultipleSelectedSheets"}}],"UndoExecuteReason":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/UndoExecuteReason","k":"enum","s":"enums","m":{"Redo":"Redo","Rollback":"Rollback","Undo":"Undo"}}],"UndoHistoryItemType":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/UndoHistoryItemType","k":"enum","s":"enums","m":{"Redo":"Redo","Undo":"Undo"}}],"UndoMergeAction":[{"p":"igniteui-angular-spreadsheet","u":"/api/angular/igniteui-angular-spreadsheet/21.0.0/enums/UndoMergeAction","k":"enum","s":"enums","m":{"Merged":"Merged","MergedRemoveUnit":"MergedRemoveUnit","NotMerged":"NotMerged"}}],"SpreadsheetChartAdapter":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetChartAdapterLocaleBg":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleCs":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleDa":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleDe":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleEn":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleEs":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleFr":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleHu":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleIt":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleJa":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleNb":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleNl":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocalePl":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocalePt":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleRo":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleRu":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleSv":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleTr":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleZhHans":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleZhHant":[{"p":"igniteui-angular-spreadsheet-chart-adapter","u":"/api/angular/igniteui-angular-spreadsheet-chart-adapter/21.0.0/classes/SpreadsheetChartAdapterLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}]}} \ No newline at end of file diff --git a/src/data/api-link-index/blazor/staging-latest.json b/src/data/api-link-index/blazor/staging-latest.json new file mode 100644 index 0000000000..cd754efd14 --- /dev/null +++ b/src/data/api-link-index/blazor/staging-latest.json @@ -0,0 +1 @@ +{"platform":"blazor","version":"latest","generatedAt":"2026-06-02T12:21:24.891Z","packages":["IgniteUI.Blazor","IgniteUI.Blazor.Documents.Core","IgniteUI.Blazor.Documents.Excel","IgniteUI.Blazor.GridLite","IgniteUI.Blazor.Lite"],"symbols":{"BaseAlertLikePosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/BaseAlertLikePosition","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Bottom":"Bottom","Middle":"Middle","Top":"Top"}}],"BaseCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/BaseCollection","k":"class","s":"classes","m":{"Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(T)":"Add(T)","Add":"Add(T)","Clear()":"Clear()","Clear":"Clear()","CopyTo(T[], int)":"CopyTo(T[], int)","CopyTo":"CopyTo(T[], int)","Contains(T)":"Contains(T)","Contains":"Contains(T)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(T)":"IndexOf(T)","IndexOf":"IndexOf(T)","Insert(int, T)":"Insert(int, T)","Insert":"Insert(int, T)","Remove(T)":"Remove(T)","Remove":"Remove(T)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BaseCollection(object, string)":"BaseCollection(object, string)","BaseCollection":"BaseCollection(object, string)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","InsertItem(int, T)":"InsertItem(int, T)","InsertItem":"InsertItem(int, T)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","SetItem(int, T)":"SetItem(int, T)","SetItem":"SetItem(int, T)","ToArray()":"ToArray()","ToArray":"ToArray()"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/BaseCollection","k":"class","s":"classes","m":{"Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(T)":"Add(T)","Add":"Add(T)","Clear()":"Clear()","Clear":"Clear()","CopyTo(T[], int)":"CopyTo(T[], int)","CopyTo":"CopyTo(T[], int)","Contains(T)":"Contains(T)","Contains":"Contains(T)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(T)":"IndexOf(T)","IndexOf":"IndexOf(T)","Insert(int, T)":"Insert(int, T)","Insert":"Insert(int, T)","Remove(T)":"Remove(T)","Remove":"Remove(T)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BaseCollection(object, string)":"BaseCollection(object, string)","BaseCollection":"BaseCollection(object, string)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","InsertItem(int, T)":"InsertItem(int, T)","InsertItem":"InsertItem(int, T)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","SetItem(int, T)":"SetItem(int, T)","SetItem":"SetItem(int, T)","ToArray()":"ToArray()","ToArray":"ToArray()"}}],"BaseRendererControl":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/BaseRendererControl","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BaseRendererControl()":"BaseRendererControl()","BaseRendererControl":"BaseRendererControl()","AdditionalAttributes":"AdditionalAttributes","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ChildContent":"ChildContent","Class":"Class","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Dispose()":"Dispose()","Dispose":"Dispose()","Dispose(bool)":"Dispose(bool)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","EventBehavior":"EventBehavior","~BaseRendererControl()":"~BaseRendererControl()","~BaseRendererControl":"~BaseRendererControl()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Height":"Height","IgBlazor":"IgBlazor","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","NeedsDynamicContent":"NeedsDynamicContent","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","RoundTripDateConversion":"RoundTripDateConversion","Serialize()":"Serialize()","Serialize":"Serialize()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, object)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SupportsVisualChildren":"SupportsVisualChildren","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","Type":"Type","UseCamelEnumValues":"UseCamelEnumValues","UseDirectRender":"UseDirectRender","Width":"Width","_cachedSerializedContent":"_cachedSerializedContent","eventCallbacksCache":"eventCallbacksCache"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/BaseRendererControl","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BaseRendererControl()":"BaseRendererControl()","BaseRendererControl":"BaseRendererControl()","AdditionalAttributes":"AdditionalAttributes","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ChildContent":"ChildContent","Class":"Class","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Dispose()":"Dispose()","Dispose":"Dispose()","Dispose(bool)":"Dispose(bool)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","EventBehavior":"EventBehavior","~BaseRendererControl()":"~BaseRendererControl()","~BaseRendererControl":"~BaseRendererControl()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Height":"Height","IgBlazor":"IgBlazor","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","NeedsDynamicContent":"NeedsDynamicContent","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","RoundTripDateConversion":"RoundTripDateConversion","Serialize()":"Serialize()","Serialize":"Serialize()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, object)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SupportsVisualChildren":"SupportsVisualChildren","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","Type":"Type","UseCamelEnumValues":"UseCamelEnumValues","UseDirectRender":"UseDirectRender","Width":"Width","_cachedSerializedContent":"_cachedSerializedContent","eventCallbacksCache":"eventCallbacksCache"}}],"BaseRendererElement":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/BaseRendererElement","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BaseRendererElement()":"BaseRendererElement()","BaseRendererElement":"BaseRendererElement()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ChildContent":"ChildContent","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","CurrParent":"CurrParent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IgBlazor":"IgBlazor","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","IsComponentRooted":"IsComponentRooted","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","MethodTarget":"MethodTarget","Name":"Name","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Parent":"Parent","ParentTypeName":"ParentTypeName","Serialize()":"Serialize()","Serialize":"Serialize()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SupportsVisualChildren":"SupportsVisualChildren","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UseDirectRender":"UseDirectRender","_cachedSerializedContent":"_cachedSerializedContent","_name":"_name","eventCallbacksCache":"eventCallbacksCache"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/BaseRendererElement","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BaseRendererElement()":"BaseRendererElement()","BaseRendererElement":"BaseRendererElement()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ChildContent":"ChildContent","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","CurrParent":"CurrParent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IgBlazor":"IgBlazor","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","IsComponentRooted":"IsComponentRooted","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","MethodTarget":"MethodTarget","Name":"Name","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Parent":"Parent","ParentTypeName":"ParentTypeName","Serialize()":"Serialize()","Serialize":"Serialize()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SupportsVisualChildren":"SupportsVisualChildren","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UseDirectRender":"UseDirectRender","_cachedSerializedContent":"_cachedSerializedContent","_name":"_name","eventCallbacksCache":"eventCallbacksCache"}}],"Brush":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/Brush","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Brush()":"Brush()","Brush":"Brush()","BrushType":"BrushType","FromString(string)":"FromString(string)","FromString":"FromString(string)","Serialize()":"Serialize()","Serialize":"Serialize()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","implicit operator Brush(string)":"implicit operator Brush(string)","implicit operator Brush":"implicit operator Brush(string)"}}],"ButtonGroupAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/ButtonGroupAlignment","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Horizontal":"Horizontal","Vertical":"Vertical"}}],"CalendarBaseSelection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/CalendarBaseSelection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Multiple":"Multiple","Range":"Range","Single":"Single"}}],"CalendarOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/CalendarOrientation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Horizontal":"Horizontal","Vertical":"Vertical"}}],"CardActionsOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/CardActionsOrientation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Horizontal":"Horizontal","Vertical":"Vertical"}}],"CarouselAnimationType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/CarouselAnimationType","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Fade":"Fade","None":"None","Slide":"Slide"}}],"CheckboxBaseLabelPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/CheckboxBaseLabelPosition","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","After":"After","Before":"Before"}}],"Color":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/Color","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","Color()":"Color()","Color":"Color()","A":"A","B":"B","Equals(object)":"Equals(object)","FromArgb(byte, byte, byte, byte)":"FromArgb(byte, byte, byte, byte)","FromArgb":"FromArgb(byte, byte, byte, byte)","G":"G","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","R":"R"}},{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/classes/Color","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","Color()":"Color()","Color":"Color()","A":"A","B":"B","ColorString":"ColorString","Equals(object)":"Equals(object)","FromArgb(byte, byte, byte, byte)":"FromArgb(byte, byte, byte, byte)","FromArgb":"FromArgb(byte, byte, byte, byte)","G":"G","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","R":"R","ToString()":"ToString()","ToString":"ToString()"}}],"ColorUtil":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/ColorUtil","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ColorToInt(Color)":"ColorToInt(Color)","ColorToInt":"ColorToInt(Color)","ColorToString(Color, bool)":"ColorToString(Color, bool)","ColorToString":"ColorToString(Color, bool)","FromAHSL(double, double, double, double)":"FromAHSL(double, double, double, double)","FromAHSL":"FromAHSL(double, double, double, double)","FromAHSV(double, double, double, double)":"FromAHSV(double, double, double, double)","FromAHSV":"FromAHSV(double, double, double, double)","FromArgb(int)":"FromArgb(int)","FromArgb":"FromArgb(int)","FromArgb(string)":"FromArgb(string)","FromHex(string)":"FromHex(string)","FromHex":"FromHex(string)","FromRGB(string)":"FromRGB(string)","FromRGB":"FromRGB(string)","FromRGBA(string)":"FromRGBA(string)","FromRGBA":"FromRGBA(string)","FromString(string)":"FromString(string)","FromString":"FromString(string)","GetAHSL(Color)":"GetAHSL(Color)","GetAHSL":"GetAHSL(Color)","GetAHSV(Color)":"GetAHSV(Color)","GetAHSV":"GetAHSV(Color)","GetAHSVInterpolation(double[], double, double[])":"GetAHSVInterpolation(double[], double, double[])","GetAHSVInterpolation":"GetAHSVInterpolation(double[], double, double[])","GetColor(Brush)":"GetColor(Brush)","GetColor":"GetColor(Brush)","GetInterpolation(Color, double, Color, InterpolationMode)":"GetInterpolation(Color, double, Color, InterpolationMode)","GetInterpolation":"GetInterpolation(Color, double, Color, InterpolationMode)","GetL(Color)":"GetL(Color)","GetL":"GetL(Color)","GetRandomColor(int)":"GetRandomColor(int)","GetRandomColor":"GetRandomColor(int)","GetsRGB(Color)":"GetsRGB(Color)","GetsRGB":"GetsRGB(Color)","RGBAToRGB(Color, Color)":"RGBAToRGB(Color, Color)","RGBAToRGB":"RGBAToRGB(Color, Color)","RandomColor(byte)":"RandomColor(byte)","RandomColor":"RandomColor(byte)","RandomHue(Color)":"RandomHue(Color)","RandomHue":"RandomHue(Color)","ToGrayscale(Color)":"ToGrayscale(Color)","ToGrayscale":"ToGrayscale(Color)"}}],"ComponentRendererComponentChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/ComponentRendererComponentChangedEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ComponentRendererComponentChangedEventArgs()":"ComponentRendererComponentChangedEventArgs()","ComponentRendererComponentChangedEventArgs":"ComponentRendererComponentChangedEventArgs()","NewComponent":"NewComponent","OldComponent":"OldComponent"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/ComponentRendererComponentChangedEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ComponentRendererComponentChangedEventArgs()":"ComponentRendererComponentChangedEventArgs()","ComponentRendererComponentChangedEventArgs":"ComponentRendererComponentChangedEventArgs()","NewComponent":"NewComponent","OldComponent":"OldComponent"}}],"DataIntentAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DataIntentAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","DataIntentAttribute(string)":"DataIntentAttribute(string)","DataIntentAttribute":"DataIntentAttribute(string)","Intent":"Intent"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/DataIntentAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","DataIntentAttribute(string)":"DataIntentAttribute(string)","DataIntentAttribute":"DataIntentAttribute(string)","Intent":"Intent"}}],"DataSeriesMemberIntentAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DataSeriesMemberIntentAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","DataSeriesMemberIntentAttribute(DataSeriesIntent)":"DataSeriesMemberIntentAttribute(DataSeriesIntent)","DataSeriesMemberIntentAttribute":"DataSeriesMemberIntentAttribute(DataSeriesIntent)","MemberIntent":"MemberIntent"}}],"DataSeriesTitleAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DataSeriesTitleAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","DataSeriesTitleAttribute(string)":"DataSeriesTitleAttribute(string)","DataSeriesTitleAttribute":"DataSeriesTitleAttribute(string)","MemberIntent":"MemberIntent","Title":"Title"}}],"DatePickerHeaderOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DatePickerHeaderOrientation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Horizontal":"Horizontal","Vertical":"Vertical"}}],"DatePickerMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DatePickerMode","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Dialog":"Dialog","Dropdown":"Dropdown"}}],"DatePickerOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DatePickerOrientation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Horizontal":"Horizontal","Vertical":"Vertical"}}],"DropdownPlacement":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DropdownPlacement","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Bottom":"Bottom","BottomEnd":"BottomEnd","BottomStart":"BottomStart","Left":"Left","LeftEnd":"LeftEnd","LeftStart":"LeftStart","Right":"Right","RightEnd":"RightEnd","RightStart":"RightStart","Top":"Top","TopEnd":"TopEnd","TopStart":"TopStart"}}],"DropdownScrollStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DropdownScrollStrategy","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Block":"Block","Close":"Close","Scroll":"Scroll"}}],"DynamicComponentChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DynamicComponentChangingEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicComponentChangingEventArgs()":"DynamicComponentChangingEventArgs()","DynamicComponentChangingEventArgs":"DynamicComponentChangingEventArgs()","NewComponent":"NewComponent","OldComponent":"OldComponent"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/DynamicComponentChangingEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicComponentChangingEventArgs()":"DynamicComponentChangingEventArgs()","DynamicComponentChangingEventArgs":"DynamicComponentChangingEventArgs()","NewComponent":"NewComponent","OldComponent":"OldComponent"}}],"DynamicContentHolder":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DynamicContentHolder","k":"class","s":"classes","m":{"OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicContentHolder()":"DynamicContentHolder()","DynamicContentHolder":"DynamicContentHolder()","AddDynamicContent(DynamicContentInfo)":"AddDynamicContent(DynamicContentInfo)","AddDynamicContent":"AddDynamicContent(DynamicContentInfo)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","DynamicContentInfo":"DynamicContentInfo","OnDynamicChildRef(string, object)":"OnDynamicChildRef(string, object)","OnDynamicChildRef":"OnDynamicChildRef(string, object)","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","Refresh()":"Refresh()","Refresh":"Refresh()","RemoveDynamicContent(DynamicContentInfo)":"RemoveDynamicContent(DynamicContentInfo)","RemoveDynamicContent":"RemoveDynamicContent(DynamicContentInfo)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/DynamicContentHolder","k":"class","s":"classes","m":{"OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicContentHolder()":"DynamicContentHolder()","DynamicContentHolder":"DynamicContentHolder()","AddDynamicContent(DynamicContentInfo)":"AddDynamicContent(DynamicContentInfo)","AddDynamicContent":"AddDynamicContent(DynamicContentInfo)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","DynamicContentInfo":"DynamicContentInfo","OnDynamicChildRef(string, object)":"OnDynamicChildRef(string, object)","OnDynamicChildRef":"OnDynamicChildRef(string, object)","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","RemoveDynamicContent(DynamicContentInfo)":"RemoveDynamicContent(DynamicContentInfo)","RemoveDynamicContent":"RemoveDynamicContent(DynamicContentInfo)"}}],"DynamicContentInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DynamicContentInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicContentInfo()":"DynamicContentInfo()","DynamicContentInfo":"DynamicContentInfo()","Component":"Component","ControlType":"ControlType","OnComponentChanged(object, object)":"OnComponentChanged(object, object)","OnComponentChanged":"OnComponentChanged(object, object)","Owner":"Owner","RefDivName":"RefDivName","RefName":"RefName","UpdateContext(object)":"UpdateContext(object)","UpdateContext":"UpdateContext(object)","UpdateTemplate(object)":"UpdateTemplate(object)","UpdateTemplate":"UpdateTemplate(object)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/DynamicContentInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicContentInfo()":"DynamicContentInfo()","DynamicContentInfo":"DynamicContentInfo()","Component":"Component","ControlType":"ControlType","OnComponentChanged(object, object)":"OnComponentChanged(object, object)","OnComponentChanged":"OnComponentChanged(object, object)","Owner":"Owner","RefDivName":"RefDivName","RefName":"RefName","UpdateContext(object)":"UpdateContext(object)","UpdateContext":"UpdateContext(object)","UpdateTemplate(object)":"UpdateTemplate(object)","UpdateTemplate":"UpdateTemplate(object)"}}],"DynamicContentInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/DynamicContentInfo","k":"class","s":"classes","m":{"ControlType":"ControlType","RefName":"RefName","RefDivName":"RefDivName","Component":"Component","Owner":"Owner","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicContentInfo()":"DynamicContentInfo()","DynamicContentInfo":"DynamicContentInfo()","Context":"Context","OnComponentChanged(object, object)":"OnComponentChanged(object, object)","OnComponentChanged":"OnComponentChanged(object, object)","Template":"Template","UpdateContext(object)":"UpdateContext(object)","UpdateContext":"UpdateContext(object)","UpdateTemplate(object)":"UpdateTemplate(object)","UpdateTemplate":"UpdateTemplate(object)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/DynamicContentInfo","k":"class","s":"classes","m":{"ControlType":"ControlType","RefName":"RefName","RefDivName":"RefDivName","Component":"Component","Owner":"Owner","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DynamicContentInfo()":"DynamicContentInfo()","DynamicContentInfo":"DynamicContentInfo()","Context":"Context","OnComponentChanged(object, object)":"OnComponentChanged(object, object)","OnComponentChanged":"OnComponentChanged(object, object)","Template":"Template","UpdateContext(object)":"UpdateContext(object)","UpdateContext":"UpdateContext(object)","UpdateTemplate(object)":"UpdateTemplate(object)","UpdateTemplate":"UpdateTemplate(object)"}}],"FastReflectionHelper":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/FastReflectionHelper","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FastReflectionHelper()":"FastReflectionHelper()","FastReflectionHelper":"FastReflectionHelper()","FastReflectionHelper(bool, string)":"FastReflectionHelper(bool, string)","GetPropertyValue(object)":"GetPropertyValue(object)","GetPropertyValue":"GetPropertyValue(object)","GetPropertyValue(Type, object)":"GetPropertyValue(Type, object)","Invalid":"Invalid","PropertyName":"PropertyName","SetPropertyValue(object, object)":"SetPropertyValue(object, object)","SetPropertyValue":"SetPropertyValue(object, object)","UseTraditionalReflection":"UseTraditionalReflection"}}],"FilterFactory":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/FilterFactory","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FilterFactory()":"FilterFactory()","FilterFactory":"FilterFactory()","Add(IgbFilterExpression, IgbFilterExpression)":"Add(IgbFilterExpression, IgbFilterExpression)","Add":"Add(IgbFilterExpression, IgbFilterExpression)","And(IgbFilterExpression, IgbFilterExpression)":"And(IgbFilterExpression, IgbFilterExpression)","And":"And(IgbFilterExpression, IgbFilterExpression)","Build(DataSourceFilterBuilderBuildCallback)":"Build(DataSourceFilterBuilderBuildCallback)","Build":"Build(DataSourceFilterBuilderBuildCallback)","Cast(IgbFilterExpression, DataSourceSchemaPropertyType)":"Cast(IgbFilterExpression, DataSourceSchemaPropertyType)","Cast":"Cast(IgbFilterExpression, DataSourceSchemaPropertyType)","Ceiling(IgbFilterExpression)":"Ceiling(IgbFilterExpression)","Ceiling":"Ceiling(IgbFilterExpression)","Concat(IgbFilterExpression, IgbFilterExpression)":"Concat(IgbFilterExpression, IgbFilterExpression)","Concat":"Concat(IgbFilterExpression, IgbFilterExpression)","Concat(IgbFilterExpression, string)":"Concat(IgbFilterExpression, string)","Contains(IgbFilterExpression, IgbFilterExpression)":"Contains(IgbFilterExpression, IgbFilterExpression)","Contains":"Contains(IgbFilterExpression, IgbFilterExpression)","Contains(IgbFilterExpression, string)":"Contains(IgbFilterExpression, string)","Date(IgbFilterExpression)":"Date(IgbFilterExpression)","Date":"Date(IgbFilterExpression)","Day(IgbFilterExpression)":"Day(IgbFilterExpression)","Day":"Day(IgbFilterExpression)","Divide(IgbFilterExpression, IgbFilterExpression)":"Divide(IgbFilterExpression, IgbFilterExpression)","Divide":"Divide(IgbFilterExpression, IgbFilterExpression)","EndsWith(IgbFilterExpression, IgbFilterExpression)":"EndsWith(IgbFilterExpression, IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression, IgbFilterExpression)","EndsWith(IgbFilterExpression, string)":"EndsWith(IgbFilterExpression, string)","Env(IgbFilterExpression)":"Env(IgbFilterExpression)","Env":"Env(IgbFilterExpression)","Equal(IgbFilterExpression, IgbFilterExpression)":"Equal(IgbFilterExpression, IgbFilterExpression)","Equal":"Equal(IgbFilterExpression, IgbFilterExpression)","Floor(IgbFilterExpression)":"Floor(IgbFilterExpression)","Floor":"Floor(IgbFilterExpression)","GreaterThan(IgbFilterExpression, IgbFilterExpression)":"GreaterThan(IgbFilterExpression, IgbFilterExpression)","GreaterThan":"GreaterThan(IgbFilterExpression, IgbFilterExpression)","GreaterThanOrEqual(IgbFilterExpression, IgbFilterExpression)":"GreaterThanOrEqual(IgbFilterExpression, IgbFilterExpression)","GreaterThanOrEqual":"GreaterThanOrEqual(IgbFilterExpression, IgbFilterExpression)","Group(IgbFilterExpression)":"Group(IgbFilterExpression)","Group":"Group(IgbFilterExpression)","Hour(IgbFilterExpression)":"Hour(IgbFilterExpression)","Hour":"Hour(IgbFilterExpression)","IndexOf(IgbFilterExpression, IgbFilterExpression)":"IndexOf(IgbFilterExpression, IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression, IgbFilterExpression)","IndexOf(IgbFilterExpression, string)":"IndexOf(IgbFilterExpression, string)","Instance":"Instance","IsOf(IgbFilterExpression, DataSourceSchemaPropertyType)":"IsOf(IgbFilterExpression, DataSourceSchemaPropertyType)","IsOf":"IsOf(IgbFilterExpression, DataSourceSchemaPropertyType)","Length(IgbFilterExpression)":"Length(IgbFilterExpression)","Length":"Length(IgbFilterExpression)","LessThan(IgbFilterExpression, IgbFilterExpression)":"LessThan(IgbFilterExpression, IgbFilterExpression)","LessThan":"LessThan(IgbFilterExpression, IgbFilterExpression)","LessThanOrEqual(IgbFilterExpression, IgbFilterExpression)":"LessThanOrEqual(IgbFilterExpression, IgbFilterExpression)","LessThanOrEqual":"LessThanOrEqual(IgbFilterExpression, IgbFilterExpression)","Literal(object)":"Literal(object)","Literal":"Literal(object)","Minute(IgbFilterExpression)":"Minute(IgbFilterExpression)","Minute":"Minute(IgbFilterExpression)","Modulus(IgbFilterExpression, IgbFilterExpression)":"Modulus(IgbFilterExpression, IgbFilterExpression)","Modulus":"Modulus(IgbFilterExpression, IgbFilterExpression)","Month(IgbFilterExpression)":"Month(IgbFilterExpression)","Month":"Month(IgbFilterExpression)","Multiply(IgbFilterExpression, IgbFilterExpression)":"Multiply(IgbFilterExpression, IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression, IgbFilterExpression)","Not(IgbFilterExpression)":"Not(IgbFilterExpression)","Not":"Not(IgbFilterExpression)","NotEqual(IgbFilterExpression, IgbFilterExpression)":"NotEqual(IgbFilterExpression, IgbFilterExpression)","NotEqual":"NotEqual(IgbFilterExpression, IgbFilterExpression)","Now()":"Now()","Now":"Now()","Or(IgbFilterExpression, IgbFilterExpression)":"Or(IgbFilterExpression, IgbFilterExpression)","Or":"Or(IgbFilterExpression, IgbFilterExpression)","Property(string)":"Property(string)","Property":"Property(string)","Replace(IgbFilterExpression, IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression, IgbFilterExpression)","Replace(IgbFilterExpression, IgbFilterExpression, string)":"Replace(IgbFilterExpression, IgbFilterExpression, string)","Replace(IgbFilterExpression, string, IgbFilterExpression)":"Replace(IgbFilterExpression, string, IgbFilterExpression)","Replace(IgbFilterExpression, string, string)":"Replace(IgbFilterExpression, string, string)","Round(IgbFilterExpression)":"Round(IgbFilterExpression)","Round":"Round(IgbFilterExpression)","Second(IgbFilterExpression)":"Second(IgbFilterExpression)","Second":"Second(IgbFilterExpression)","StartsWith(IgbFilterExpression, IgbFilterExpression)":"StartsWith(IgbFilterExpression, IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression, IgbFilterExpression)","StartsWith(IgbFilterExpression, string)":"StartsWith(IgbFilterExpression, string)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(IgbFilterExpression, IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression, IgbFilterExpression)","Substring(IgbFilterExpression, IgbFilterExpression, int)":"Substring(IgbFilterExpression, IgbFilterExpression, int)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(IgbFilterExpression, int, IgbFilterExpression)":"Substring(IgbFilterExpression, int, IgbFilterExpression)","Substring(IgbFilterExpression, int, int)":"Substring(IgbFilterExpression, int, int)","Subtract(IgbFilterExpression, IgbFilterExpression)":"Subtract(IgbFilterExpression, IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression, IgbFilterExpression)","Time(IgbFilterExpression)":"Time(IgbFilterExpression)","Time":"Time(IgbFilterExpression)","ToLower(IgbFilterExpression)":"ToLower(IgbFilterExpression)","ToLower":"ToLower(IgbFilterExpression)","ToUpper(IgbFilterExpression)":"ToUpper(IgbFilterExpression)","ToUpper":"ToUpper(IgbFilterExpression)","TodayOverride":"TodayOverride","Trim(IgbFilterExpression)":"Trim(IgbFilterExpression)","Trim":"Trim(IgbFilterExpression)","Year(IgbFilterExpression)":"Year(IgbFilterExpression)","Year":"Year(IgbFilterExpression)"}}],"GlobalAnimationState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/GlobalAnimationState","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GetAnimationIdleVersionNumber()":"GetAnimationIdleVersionNumber()","GetAnimationIdleVersionNumber":"GetAnimationIdleVersionNumber()","Instance":"Instance","IsAnimationActive()":"IsAnimationActive()","IsAnimationActive":"IsAnimationActive()","NotifyAnimationEnd()":"NotifyAnimationEnd()","NotifyAnimationEnd":"NotifyAnimationEnd()","NotifyAnimationStart()":"NotifyAnimationStart()","NotifyAnimationStart":"NotifyAnimationStart()","QueueForAnimationIdle(Action, int)":"QueueForAnimationIdle(Action, int)","QueueForAnimationIdle":"QueueForAnimationIdle(Action, int)","QueueForAnimationIdleWithTimeout(Action, int, int)":"QueueForAnimationIdleWithTimeout(Action, int, int)","QueueForAnimationIdleWithTimeout":"QueueForAnimationIdleWithTimeout(Action, int, int)","SetExecutionContext(IExecutionContext)":"SetExecutionContext(IExecutionContext)","SetExecutionContext":"SetExecutionContext(IExecutionContext)"}}],"GradientStop":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/GradientStop","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GradientStop()":"GradientStop()","GradientStop":"GradientStop()","GradientStop(Color, double)":"GradientStop(Color, double)","Color":"Color","Offset":"Offset","Serialize()":"Serialize()","Serialize":"Serialize()"}},{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/GradientStop","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GradientStop(WorkbookColorInfo, float)":"GradientStop(WorkbookColorInfo, float)","GradientStop":"GradientStop(WorkbookColorInfo, float)","Color":"Color","Position":"Position"}}],"HorizontalLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/HorizontalLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","HorizontalLabelFormatSpecifiers()":"HorizontalLabelFormatSpecifiers()","HorizontalLabelFormatSpecifiers":"HorizontalLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","SparklineParent":"SparklineParent"}}],"IgbAbsoluteVolumeOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAbsoluteVolumeOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAbsoluteVolumeOscillatorIndicator()":"IgbAbsoluteVolumeOscillatorIndicator()","IgbAbsoluteVolumeOscillatorIndicator":"IgbAbsoluteVolumeOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPeriod":"LongPeriod","ShortPeriod":"ShortPeriod","Type":"Type"}}],"IgbAbsoluteVolumeOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAbsoluteVolumeOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAbsoluteVolumeOscillatorIndicatorModule()":"IgbAbsoluteVolumeOscillatorIndicatorModule()","IgbAbsoluteVolumeOscillatorIndicatorModule":"IgbAbsoluteVolumeOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAccordion":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAccordion","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAccordion()":"IgbAccordion()","IgbAccordion":"IgbAccordion()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideAll()":"HideAll()","HideAll":"HideAll()","HideAllAsync()":"HideAllAsync()","HideAllAsync":"HideAllAsync()","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowAll()":"ShowAll()","ShowAll":"ShowAll()","ShowAllAsync()":"ShowAllAsync()","ShowAllAsync":"ShowAllAsync()","SingleExpand":"SingleExpand","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbAccordion","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAccordion()":"IgbAccordion()","IgbAccordion":"IgbAccordion()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideAll()":"HideAll()","HideAll":"HideAll()","HideAllAsync()":"HideAllAsync()","HideAllAsync":"HideAllAsync()","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowAll()":"ShowAll()","ShowAll":"ShowAll()","ShowAllAsync()":"ShowAllAsync()","ShowAllAsync":"ShowAllAsync()","SingleExpand":"SingleExpand","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbAccordionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAccordionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAccordionModule()":"IgbAccordionModule()","IgbAccordionModule":"IgbAccordionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbAccordionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAccordionModule()":"IgbAccordionModule()","IgbAccordionModule":"IgbAccordionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAccumulationDistributionIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAccumulationDistributionIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAccumulationDistributionIndicator()":"IgbAccumulationDistributionIndicator()","IgbAccumulationDistributionIndicator":"IgbAccumulationDistributionIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAccumulationDistributionIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAccumulationDistributionIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAccumulationDistributionIndicatorModule()":"IgbAccumulationDistributionIndicatorModule()","IgbAccumulationDistributionIndicatorModule":"IgbAccumulationDistributionIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbActionStrip":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActionStrip","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActionStrip()":"IgbActionStrip()","IgbActionStrip":"IgbActionStrip()","ActionButtons":"ActionButtons","ActualActionButtons":"ActualActionButtons","ContentActionButtons":"ContentActionButtons","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GridBaseDirectiveParent":"GridBaseDirectiveParent","Hidden":"Hidden","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","HierarchicalGridParent":"HierarchicalGridParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","ResourceStrings":"ResourceStrings","RowIslandParent":"RowIslandParent","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show(object)":"Show(object)","Show":"Show(object)","ShowAsync(object)":"ShowAsync(object)","ShowAsync":"ShowAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type"}}],"IgbActionStripCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActionStripCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbActionStrip)":"InsertItem(int, IgbActionStrip)","InsertItem":"InsertItem(int, IgbActionStrip)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbActionStrip)":"SetItem(int, IgbActionStrip)","SetItem":"SetItem(int, IgbActionStrip)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbActionStrip)":"Add(IgbActionStrip)","Add":"Add(IgbActionStrip)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbActionStrip[], int)":"CopyTo(IgbActionStrip[], int)","CopyTo":"CopyTo(IgbActionStrip[], int)","Contains(IgbActionStrip)":"Contains(IgbActionStrip)","Contains":"Contains(IgbActionStrip)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbActionStrip)":"IndexOf(IgbActionStrip)","IndexOf":"IndexOf(IgbActionStrip)","Insert(int, IgbActionStrip)":"Insert(int, IgbActionStrip)","Insert":"Insert(int, IgbActionStrip)","Remove(IgbActionStrip)":"Remove(IgbActionStrip)","Remove":"Remove(IgbActionStrip)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActionStripCollection(object, string)":"IgbActionStripCollection(object, string)","IgbActionStripCollection":"IgbActionStripCollection(object, string)"}}],"IgbActionStripModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActionStripModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActionStripModule()":"IgbActionStripModule()","IgbActionStripModule":"IgbActionStripModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbActionStripResourceStrings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActionStripResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActionStripResourceStrings()":"IgbActionStripResourceStrings()","IgbActionStripResourceStrings":"IgbActionStripResourceStrings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Igx_action_strip_button_more_title":"Igx_action_strip_button_more_title","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbActiveNodeChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveNodeChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveNodeChangeEventArgs()":"IgbActiveNodeChangeEventArgs()","IgbActiveNodeChangeEventArgs":"IgbActiveNodeChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActiveNodeChangeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveNodeChangeEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveNodeChangeEventArgsDetail()":"IgbActiveNodeChangeEventArgsDetail()","IgbActiveNodeChangeEventArgsDetail":"IgbActiveNodeChangeEventArgsDetail()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Level":"Level","Row":"Row","Tag":"Tag","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActivePaneEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActivePaneEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActivePaneEventArgs()":"IgbActivePaneEventArgs()","IgbActivePaneEventArgs":"IgbActivePaneEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActivePaneEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActivePaneEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActivePaneEventArgsDetail()":"IgbActivePaneEventArgsDetail()","IgbActivePaneEventArgsDetail":"IgbActivePaneEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewPane":"NewPane","OldPane":"OldPane","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActiveStepChangedArgsEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveStepChangedArgsEventArgs","k":"class","s":"classes","m":{"FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Type":"Type","Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangedArgsEventArgs()":"IgbActiveStepChangedArgsEventArgs()","IgbActiveStepChangedArgsEventArgs":"IgbActiveStepChangedArgsEventArgs()"}}],"IgbActiveStepChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveStepChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangedEventArgs()":"IgbActiveStepChangedEventArgs()","IgbActiveStepChangedEventArgs":"IgbActiveStepChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbActiveStepChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangedEventArgs()":"IgbActiveStepChangedEventArgs()","IgbActiveStepChangedEventArgs":"IgbActiveStepChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActiveStepChangedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveStepChangedEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangedEventArgsDetail()":"IgbActiveStepChangedEventArgsDetail()","IgbActiveStepChangedEventArgsDetail":"IgbActiveStepChangedEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbActiveStepChangedEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangedEventArgsDetail()":"IgbActiveStepChangedEventArgsDetail()","IgbActiveStepChangedEventArgsDetail":"IgbActiveStepChangedEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActiveStepChangingArgsEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveStepChangingArgsEventArgs","k":"class","s":"classes","m":{"FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Type":"Type","Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangingArgsEventArgs()":"IgbActiveStepChangingArgsEventArgs()","IgbActiveStepChangingArgsEventArgs":"IgbActiveStepChangingArgsEventArgs()"}}],"IgbActiveStepChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveStepChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangingEventArgs()":"IgbActiveStepChangingEventArgs()","IgbActiveStepChangingEventArgs":"IgbActiveStepChangingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbActiveStepChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangingEventArgs()":"IgbActiveStepChangingEventArgs()","IgbActiveStepChangingEventArgs":"IgbActiveStepChangingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbActiveStepChangingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbActiveStepChangingEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangingEventArgsDetail()":"IgbActiveStepChangingEventArgsDetail()","IgbActiveStepChangingEventArgsDetail":"IgbActiveStepChangingEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewIndex":"NewIndex","OldIndex":"OldIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbActiveStepChangingEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbActiveStepChangingEventArgsDetail()":"IgbActiveStepChangingEventArgsDetail()","IgbActiveStepChangingEventArgsDetail":"IgbActiveStepChangingEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewIndex":"NewIndex","OldIndex":"OldIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAlignLinearGraphLabelEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAlignLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAlignLinearGraphLabelEventArgs()":"IgbAlignLinearGraphLabelEventArgs()","IgbAlignLinearGraphLabelEventArgs":"IgbAlignLinearGraphLabelEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAlignRadialGaugeLabelEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAlignRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAlignRadialGaugeLabelEventArgs()":"IgbAlignRadialGaugeLabelEventArgs()","IgbAlignRadialGaugeLabelEventArgs":"IgbAlignRadialGaugeLabelEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAnchoredCategorySeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAnchoredCategorySeries","k":"class","s":"classes","m":{"GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAnchoredCategorySeries()":"IgbAnchoredCategorySeries()","IgbAnchoredCategorySeries":"IgbAnchoredCategorySeries()","ActualTrendLineBrush":"ActualTrendLineBrush","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","HighlightedValueMemberPath":"HighlightedValueMemberPath","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","TrendLineBrush":"TrendLineBrush","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","Type":"Type","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","ValueMemberPath":"ValueMemberPath"}}],"IgbAnchoredRadialSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAnchoredRadialSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","CanUseAsValueAxisAsync(object)":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxisAsync":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxis(object)":"CanUseAsValueAxis(object)","CanUseAsValueAxis":"CanUseAsValueAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetAngleFromWorldAsync(Point)":"GetAngleFromWorldAsync(Point)","GetAngleFromWorldAsync":"GetAngleFromWorldAsync(Point)","GetAngleFromWorld(Point)":"GetAngleFromWorld(Point)","GetAngleFromWorld":"GetAngleFromWorld(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutPercentagePrecision":"AutoCalloutPercentagePrecision","AutoCalloutLabelValueSeparator":"AutoCalloutLabelValueSeparator","LegendRadialLabelMode":"LegendRadialLabelMode","CategoryCollisionMode":"CategoryCollisionMode","AutoCalloutRadialLabelMode":"AutoCalloutRadialLabelMode","AutoCalloutOthersLabelFormat":"AutoCalloutOthersLabelFormat","AutoCalloutOthersLabelFormatSpecifiers":"AutoCalloutOthersLabelFormatSpecifiers","ProportionalRadialLabelFormat":"ProportionalRadialLabelFormat","ProportionalRadialLabelFormatSpecifiers":"ProportionalRadialLabelFormatSpecifiers","LegendProportionalRadialLabelFormat":"LegendProportionalRadialLabelFormat","LegendProportionalRadialLabelFormatSpecifiers":"LegendProportionalRadialLabelFormatSpecifiers","OthersProportionalRadialLabelFormat":"OthersProportionalRadialLabelFormat","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersProportionalRadialLabelFormatSpecifiers":"OthersProportionalRadialLabelFormatSpecifiers","OthersLegendProportionalRadialLabelFormat":"OthersLegendProportionalRadialLabelFormat","OthersLegendProportionalRadialLabelFormatSpecifiers":"OthersLegendProportionalRadialLabelFormatSpecifiers","IsCustomRadialStyleAllowed":"IsCustomRadialStyleAllowed","IsCustomRadialMarkerStyleAllowed":"IsCustomRadialMarkerStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","ValueAxis":"ValueAxis","ValueAxisScript":"ValueAxisScript","ValueAxisName":"ValueAxisName","ClipSeriesToBounds":"ClipSeriesToBounds","AssigningRadialStyleScript":"AssigningRadialStyleScript","AssigningRadialStyle":"AssigningRadialStyle","AssigningRadialMarkerStyleScript":"AssigningRadialMarkerStyleScript","AssigningRadialMarkerStyle":"AssigningRadialMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAnchoredRadialSeries()":"IgbAnchoredRadialSeries()","IgbAnchoredRadialSeries":"IgbAnchoredRadialSeries()","ActualTrendLineBrush":"ActualTrendLineBrush","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","HighlightedValueMemberPath":"HighlightedValueMemberPath","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","TrendLineBrush":"TrendLineBrush","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","TrendLineZIndex":"TrendLineZIndex","Type":"Type","UseCategoryNormalizedValues":"UseCategoryNormalizedValues","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","ValueMemberPath":"ValueMemberPath"}}],"IgbAnnotationLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAnnotationLayer","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAnnotationLayer()":"IgbAnnotationLayer()","IgbAnnotationLayer":"IgbAnnotationLayer()","ActualAppearanceMode":"ActualAppearanceMode","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","ActualHorizontalDashArray":"ActualHorizontalDashArray","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","ActualShiftAmount":"ActualShiftAmount","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","ActualVerticalDashArray":"ActualVerticalDashArray","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","AppearanceMode":"AppearanceMode","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalAppearanceMode":"HorizontalAppearanceMode","HorizontalDashArray":"HorizontalDashArray","HorizontalShiftAmount":"HorizontalShiftAmount","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","ShiftAmount":"ShiftAmount","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Type":"Type","UseIndex":"UseIndex","UseLegend":"UseLegend","VerticalAppearanceMode":"VerticalAppearanceMode","VerticalDashArray":"VerticalDashArray","VerticalShiftAmount":"VerticalShiftAmount"}}],"IgbAnnotationLayerProxyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAnnotationLayerProxyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAnnotationLayerProxyModule()":"IgbAnnotationLayerProxyModule()","IgbAnnotationLayerProxyModule":"IgbAnnotationLayerProxyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbApplyButtonClickEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbApplyButtonClickEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbApplyButtonClickEventArgs()":"IgbApplyButtonClickEventArgs()","IgbApplyButtonClickEventArgs":"IgbApplyButtonClickEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbArcGISOnlineMapImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbArcGISOnlineMapImagery","k":"class","s":"classes","m":{"ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","WindowRect":"WindowRect","Referer":"Referer","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","UserAgent":"UserAgent","Opacity":"Opacity","ImageTilesReadyScript":"ImageTilesReadyScript","ImageTilesReady":"ImageTilesReady","ImagesChangedScript":"ImagesChangedScript","ImagesChanged":"ImagesChanged","CancellingImageScript":"CancellingImageScript","CancellingImage":"CancellingImage","DownloadingImageScript":"DownloadingImageScript","DownloadingImage":"DownloadingImage","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbArcGISOnlineMapImagery()":"IgbArcGISOnlineMapImagery()","IgbArcGISOnlineMapImagery":"IgbArcGISOnlineMapImagery()","AcquireNewToken()":"AcquireNewToken()","AcquireNewToken":"AcquireNewToken()","AcquireNewTokenAsync()":"AcquireNewTokenAsync()","AcquireNewTokenAsync":"AcquireNewTokenAsync()","DefaultTokenTimeout":"DefaultTokenTimeout","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsMapPublic":"IsMapPublic","MapServerUri":"MapServerUri","Password":"Password","RefererUri":"RefererUri","TokenGenerationEndPoint":"TokenGenerationEndPoint","Type":"Type","UserName":"UserName","UserToken":"UserToken"}}],"IgbArcGISOnlineMapImageryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbArcGISOnlineMapImageryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbArcGISOnlineMapImageryModule()":"IgbArcGISOnlineMapImageryModule()","IgbArcGISOnlineMapImageryModule":"IgbArcGISOnlineMapImageryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAreaFragment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAreaFragment","k":"class","s":"classes","m":{"GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAreaFragment()":"IgbAreaFragment()","IgbAreaFragment":"IgbAreaFragment()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAreaFragmentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAreaFragmentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAreaFragmentModule()":"IgbAreaFragmentModule()","IgbAreaFragmentModule":"IgbAreaFragmentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAreaSeries()":"IgbAreaSeries()","IgbAreaSeries":"IgbAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAreaSeriesModule()":"IgbAreaSeriesModule()","IgbAreaSeriesModule":"IgbAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAssigningCategoryMarkerStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningCategoryMarkerStyleEventArgs","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningCategoryMarkerStyleEventArgs()":"IgbAssigningCategoryMarkerStyleEventArgs()","IgbAssigningCategoryMarkerStyleEventArgs":"IgbAssigningCategoryMarkerStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningCategoryStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningCategoryStyleEventArgs","k":"class","s":"classes","m":{"StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","RadiusX":"RadiusX","RadiusY":"RadiusY","StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningCategoryStyleEventArgs()":"IgbAssigningCategoryStyleEventArgs()","IgbAssigningCategoryStyleEventArgs":"IgbAssigningCategoryStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningCategoryStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningCategoryStyleEventArgsBase","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningCategoryStyleEventArgsBase()":"IgbAssigningCategoryStyleEventArgsBase()","IgbAssigningCategoryStyleEventArgsBase":"IgbAssigningCategoryStyleEventArgsBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAssigningPolarMarkerStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningPolarMarkerStyleEventArgs","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningPolarMarkerStyleEventArgs()":"IgbAssigningPolarMarkerStyleEventArgs()","IgbAssigningPolarMarkerStyleEventArgs":"IgbAssigningPolarMarkerStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningPolarStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningPolarStyleEventArgs","k":"class","s":"classes","m":{"StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","RadiusX":"RadiusX","RadiusY":"RadiusY","StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningPolarStyleEventArgs()":"IgbAssigningPolarStyleEventArgs()","IgbAssigningPolarStyleEventArgs":"IgbAssigningPolarStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningPolarStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningPolarStyleEventArgsBase","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningPolarStyleEventArgsBase()":"IgbAssigningPolarStyleEventArgsBase()","IgbAssigningPolarStyleEventArgsBase":"IgbAssigningPolarStyleEventArgsBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAssigningRadialMarkerStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningRadialMarkerStyleEventArgs","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningRadialMarkerStyleEventArgs()":"IgbAssigningRadialMarkerStyleEventArgs()","IgbAssigningRadialMarkerStyleEventArgs":"IgbAssigningRadialMarkerStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningRadialStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningRadialStyleEventArgs","k":"class","s":"classes","m":{"StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","RadiusX":"RadiusX","RadiusY":"RadiusY","StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningRadialStyleEventArgs()":"IgbAssigningRadialStyleEventArgs()","IgbAssigningRadialStyleEventArgs":"IgbAssigningRadialStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningRadialStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningRadialStyleEventArgsBase","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningRadialStyleEventArgsBase()":"IgbAssigningRadialStyleEventArgsBase()","IgbAssigningRadialStyleEventArgsBase":"IgbAssigningRadialStyleEventArgsBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAssigningScatterMarkerStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningScatterMarkerStyleEventArgs","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningScatterMarkerStyleEventArgs()":"IgbAssigningScatterMarkerStyleEventArgs()","IgbAssigningScatterMarkerStyleEventArgs":"IgbAssigningScatterMarkerStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningScatterStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningScatterStyleEventArgs","k":"class","s":"classes","m":{"StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","RadiusX":"RadiusX","RadiusY":"RadiusY","StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningScatterStyleEventArgs()":"IgbAssigningScatterStyleEventArgs()","IgbAssigningScatterStyleEventArgs":"IgbAssigningScatterStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningScatterStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningScatterStyleEventArgsBase","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningScatterStyleEventArgsBase()":"IgbAssigningScatterStyleEventArgsBase()","IgbAssigningScatterStyleEventArgsBase":"IgbAssigningScatterStyleEventArgsBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAssigningSeriesShapeStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningSeriesShapeStyleEventArgsBase","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningSeriesShapeStyleEventArgsBase()":"IgbAssigningSeriesShapeStyleEventArgsBase()","IgbAssigningSeriesShapeStyleEventArgsBase":"IgbAssigningSeriesShapeStyleEventArgsBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","RadiusX":"RadiusX","RadiusY":"RadiusY","StrokeDashArray":"StrokeDashArray","StrokeThickness":"StrokeThickness","Type":"Type"}}],"IgbAssigningSeriesStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningSeriesStyleEventArgsBase","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningSeriesStyleEventArgsBase()":"IgbAssigningSeriesStyleEventArgsBase()","IgbAssigningSeriesStyleEventArgsBase":"IgbAssigningSeriesStyleEventArgsBase()","EndDate":"EndDate","EndIndex":"EndIndex","FadeOpacity":"FadeOpacity","Fill":"Fill","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusHighlightingInfo":"FocusHighlightingInfo","GetItems":"GetItems","GetItemsScript":"GetItemsScript","HasDateRange":"HasDateRange","HighlightingHandled":"HighlightingHandled","HighlightingInfo":"HighlightingInfo","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","Opacity":"Opacity","SelectionHighlightingInfo":"SelectionHighlightingInfo","StartDate":"StartDate","StartIndex":"StartIndex","Stroke":"Stroke","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","Type":"Type"}}],"IgbAssigningShapeMarkerStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningShapeMarkerStyleEventArgs","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningShapeMarkerStyleEventArgs()":"IgbAssigningShapeMarkerStyleEventArgs()","IgbAssigningShapeMarkerStyleEventArgs":"IgbAssigningShapeMarkerStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningShapeStyleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningShapeStyleEventArgs","k":"class","s":"classes","m":{"StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","RadiusX":"RadiusX","RadiusY":"RadiusY","StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningShapeStyleEventArgs()":"IgbAssigningShapeStyleEventArgs()","IgbAssigningShapeStyleEventArgs":"IgbAssigningShapeStyleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAssigningShapeStyleEventArgsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAssigningShapeStyleEventArgsBase","k":"class","s":"classes","m":{"StartIndex":"StartIndex","EndIndex":"EndIndex","StartDate":"StartDate","EndDate":"EndDate","GetItems":"GetItems","GetItemsScript":"GetItemsScript","Fill":"Fill","Stroke":"Stroke","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingInfo":"HighlightingInfo","SelectionHighlightingInfo":"SelectionHighlightingInfo","FocusHighlightingInfo":"FocusHighlightingInfo","MaxAllSeriesHighlightingProgress":"MaxAllSeriesHighlightingProgress","SumAllSeriesHighlightingProgress":"SumAllSeriesHighlightingProgress","MaxAllSeriesSelectionHighlightingProgress":"MaxAllSeriesSelectionHighlightingProgress","SumAllSeriesSelectionHighlightingProgress":"SumAllSeriesSelectionHighlightingProgress","MaxAllSeriesFocusHighlightingProgress":"MaxAllSeriesFocusHighlightingProgress","SumAllSeriesFocusHighlightingProgress":"SumAllSeriesFocusHighlightingProgress","TotalAllSeriesHighlightingProgress":"TotalAllSeriesHighlightingProgress","TotalAllSeriesHighWaterMark":"TotalAllSeriesHighWaterMark","TotalAllSeriesFocusHighWaterMark":"TotalAllSeriesFocusHighWaterMark","TotalAllSeriesSelectionHighWaterMark":"TotalAllSeriesSelectionHighWaterMark","TotalAllSeriesSelectionHighlightingProgress":"TotalAllSeriesSelectionHighlightingProgress","TotalAllSeriesFocusHighlightingProgress":"TotalAllSeriesFocusHighlightingProgress","HighlightingHandled":"HighlightingHandled","HasDateRange":"HasDateRange","IsNegativeShape":"IsNegativeShape","IsThumbnail":"IsThumbnail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAssigningShapeStyleEventArgsBase()":"IgbAssigningShapeStyleEventArgsBase()","IgbAssigningShapeStyleEventArgsBase":"IgbAssigningShapeStyleEventArgsBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbAsyncCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAsyncCompletedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAsyncCompletedEventArgs()":"IgbAsyncCompletedEventArgs()","IgbAsyncCompletedEventArgs":"IgbAsyncCompletedEventArgs()","Cancelled":"Cancelled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UserState":"UserState","UserStateScript":"UserStateScript"}}],"IgbAvatar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAvatar","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAvatar()":"IgbAvatar()","IgbAvatar":"IgbAvatar()","Alt":"Alt","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Initials":"Initials","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Shape":"Shape","Src":"Src","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbAvatar","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAvatar()":"IgbAvatar()","IgbAvatar":"IgbAvatar()","Alt":"Alt","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Initials":"Initials","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Shape":"Shape","Src":"Src","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbAvatarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAvatarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAvatarModule()":"IgbAvatarModule()","IgbAvatarModule":"IgbAvatarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbAvatarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAvatarModule()":"IgbAvatarModule()","IgbAvatarModule":"IgbAvatarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAverageDirectionalIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAverageDirectionalIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAverageDirectionalIndexIndicator()":"IgbAverageDirectionalIndexIndicator()","IgbAverageDirectionalIndexIndicator":"IgbAverageDirectionalIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbAverageDirectionalIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAverageDirectionalIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAverageDirectionalIndexIndicatorModule()":"IgbAverageDirectionalIndexIndicatorModule()","IgbAverageDirectionalIndexIndicatorModule":"IgbAverageDirectionalIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAverageTrueRangeIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAverageTrueRangeIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAverageTrueRangeIndicator()":"IgbAverageTrueRangeIndicator()","IgbAverageTrueRangeIndicator":"IgbAverageTrueRangeIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbAverageTrueRangeIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAverageTrueRangeIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAverageTrueRangeIndicatorModule()":"IgbAverageTrueRangeIndicatorModule()","IgbAverageTrueRangeIndicatorModule":"IgbAverageTrueRangeIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxis","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxis()":"IgbAxis()","IgbAxis":"IgbAxis()","ActualAnnotations":"ActualAnnotations","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ActualMajorStroke":"ActualMajorStroke","ActualMinorStroke":"ActualMinorStroke","ActualStroke":"ActualStroke","Annotations":"Annotations","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","ContentAnnotations":"ContentAnnotations","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","CrossingAxis":"CrossingAxis","CrossingAxisName":"CrossingAxisName","CrossingAxisScript":"CrossingAxisScript","CrossingValue":"CrossingValue","Dispose()":"Dispose()","Dispose":"Dispose()","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","ExpectFunctions":"ExpectFunctions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatLabelScript":"FormatLabelScript","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","IsCompanionAxis":"IsCompanionAxis","IsDisabled":"IsDisabled","IsInverted":"IsInverted","Label":"Label","LabelAngle":"LabelAngle","LabelBottomMargin":"LabelBottomMargin","LabelExtent":"LabelExtent","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelLeftMargin":"LabelLeftMargin","LabelLocation":"LabelLocation","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelRightMargin":"LabelRightMargin","LabelShowFirstLabel":"LabelShowFirstLabel","LabelTextColor":"LabelTextColor","LabelTopMargin":"LabelTopMargin","LabelVerticalAlignment":"LabelVerticalAlignment","LabelVisibility":"LabelVisibility","MajorStroke":"MajorStroke","MajorStrokeDashArray":"MajorStrokeDashArray","MajorStrokeThickness":"MajorStrokeThickness","MinorStroke":"MinorStroke","MinorStrokeDashArray":"MinorStrokeDashArray","MinorStrokeThickness":"MinorStrokeThickness","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","RangeChanged":"RangeChanged","RangeChangedScript":"RangeChangedScript","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderRequested":"RenderRequested","RenderRequestedScript":"RenderRequestedScript","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","SeriesViewerParent":"SeriesViewerParent","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","Strip":"Strip","Stroke":"Stroke","StrokeDashArray":"StrokeDashArray","StrokeThickness":"StrokeThickness","TickLength":"TickLength","TickStroke":"TickStroke","TickStrokeDashArray":"TickStrokeDashArray","TickStrokeThickness":"TickStrokeThickness","Title":"Title","TitleAngle":"TitleAngle","TitleBottomMargin":"TitleBottomMargin","TitleExtent":"TitleExtent","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleLeftMargin":"TitleLeftMargin","TitleLocation":"TitleLocation","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitlePosition":"TitlePosition","TitleRightMargin":"TitleRightMargin","TitleShowFirstLabel":"TitleShowFirstLabel","TitleTextColor":"TitleTextColor","TitleTopMargin":"TitleTopMargin","TitleVerticalAlignment":"TitleVerticalAlignment","TitleVisibility":"TitleVisibility","Type":"Type","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement"}}],"IgbAxisAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisAnnotation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisAnnotation()":"IgbAxisAnnotation()","IgbAxisAnnotation":"IgbAxisAnnotation()","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","AxisParent":"AxisParent","Background":"Background","BackgroundCornerRadius":"BackgroundCornerRadius","BackgroundPaddingBottom":"BackgroundPaddingBottom","BackgroundPaddingLeft":"BackgroundPaddingLeft","BackgroundPaddingRight":"BackgroundPaddingRight","BackgroundPaddingTop":"BackgroundPaddingTop","BadgeBackground":"BadgeBackground","BadgeCornerRadius":"BadgeCornerRadius","BadgeImagePath":"BadgeImagePath","BadgeMargin":"BadgeMargin","BadgeOutline":"BadgeOutline","BadgeOutlineThickness":"BadgeOutlineThickness","BadgeSize":"BadgeSize","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","Dispose()":"Dispose()","Dispose":"Dispose()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatLabelScript":"FormatLabelScript","IsBadgeEnabled":"IsBadgeEnabled","IsPillShaped":"IsPillShaped","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Outline":"Outline","ParentTypeName":"ParentTypeName","ResetCachedExtent()":"ResetCachedExtent()","ResetCachedExtent":"ResetCachedExtent()","ResetCachedExtentAsync()":"ResetCachedExtentAsync()","ResetCachedExtentAsync":"ResetCachedExtentAsync()","ResolveLabelValue()":"ResolveLabelValue()","ResolveLabelValue":"ResolveLabelValue()","ResolveLabelValueAsync()":"ResolveLabelValueAsync()","ResolveLabelValueAsync":"ResolveLabelValueAsync()","StrokeThickness":"StrokeThickness","Text":"Text","TextColor":"TextColor","Type":"Type","Value":"Value"}}],"IgbAxisAnnotationCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisAnnotationCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbAxisAnnotation)":"InsertItem(int, IgbAxisAnnotation)","InsertItem":"InsertItem(int, IgbAxisAnnotation)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbAxisAnnotation)":"SetItem(int, IgbAxisAnnotation)","SetItem":"SetItem(int, IgbAxisAnnotation)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbAxisAnnotation)":"Add(IgbAxisAnnotation)","Add":"Add(IgbAxisAnnotation)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbAxisAnnotation[], int)":"CopyTo(IgbAxisAnnotation[], int)","CopyTo":"CopyTo(IgbAxisAnnotation[], int)","Contains(IgbAxisAnnotation)":"Contains(IgbAxisAnnotation)","Contains":"Contains(IgbAxisAnnotation)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbAxisAnnotation)":"IndexOf(IgbAxisAnnotation)","IndexOf":"IndexOf(IgbAxisAnnotation)","Insert(int, IgbAxisAnnotation)":"Insert(int, IgbAxisAnnotation)","Insert":"Insert(int, IgbAxisAnnotation)","Remove(IgbAxisAnnotation)":"Remove(IgbAxisAnnotation)","Remove":"Remove(IgbAxisAnnotation)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisAnnotationCollection(object, string)":"IgbAxisAnnotationCollection(object, string)","IgbAxisAnnotationCollection":"IgbAxisAnnotationCollection(object, string)"}}],"IgbAxisCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbAxis)":"InsertItem(int, IgbAxis)","InsertItem":"InsertItem(int, IgbAxis)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbAxis)":"SetItem(int, IgbAxis)","SetItem":"SetItem(int, IgbAxis)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbAxis)":"Add(IgbAxis)","Add":"Add(IgbAxis)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbAxis[], int)":"CopyTo(IgbAxis[], int)","CopyTo":"CopyTo(IgbAxis[], int)","Contains(IgbAxis)":"Contains(IgbAxis)","Contains":"Contains(IgbAxis)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbAxis)":"IndexOf(IgbAxis)","IndexOf":"IndexOf(IgbAxis)","Insert(int, IgbAxis)":"Insert(int, IgbAxis)","Insert":"Insert(int, IgbAxis)","Remove(IgbAxis)":"Remove(IgbAxis)","Remove":"Remove(IgbAxis)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisCollection(object, string)":"IgbAxisCollection(object, string)","IgbAxisCollection":"IgbAxisCollection(object, string)"}}],"IgbAxisMatcher":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisMatcher","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisMatcher()":"IgbAxisMatcher()","IgbAxisMatcher":"IgbAxisMatcher()","AxisType":"AxisType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","MemberPath":"MemberPath","MemberPathType":"MemberPathType","Title":"Title","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","TypedIndex":"TypedIndex"}}],"IgbAxisMatcherModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisMatcherModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisMatcherModule()":"IgbAxisMatcherModule()","IgbAxisMatcherModule":"IgbAxisMatcherModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbAxisMouseEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisMouseEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisMouseEventArgs()":"IgbAxisMouseEventArgs()","IgbAxisMouseEventArgs":"IgbAxisMouseEventArgs()","Axis":"Axis","AxisDateValue":"AxisDateValue","AxisScript":"AxisScript","AxisValue":"AxisValue","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Label":"Label","LabelContext":"LabelContext","LabelContextScript":"LabelContextScript","PlotAreaPosition":"PlotAreaPosition","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WorldPosition":"WorldPosition"}}],"IgbAxisRangeChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAxisRangeChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAxisRangeChangedEventArgs()":"IgbAxisRangeChangedEventArgs()","IgbAxisRangeChangedEventArgs":"IgbAxisRangeChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","OldMaximumValue":"OldMaximumValue","OldMinimumValue":"OldMinimumValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbAzureMapsImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAzureMapsImagery","k":"class","s":"classes","m":{"ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","WindowRect":"WindowRect","Referer":"Referer","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","UserAgent":"UserAgent","Opacity":"Opacity","ImageTilesReadyScript":"ImageTilesReadyScript","ImageTilesReady":"ImageTilesReady","ImagesChangedScript":"ImagesChangedScript","ImagesChanged":"ImagesChanged","CancellingImageScript":"CancellingImageScript","CancellingImage":"CancellingImage","DownloadingImageScript":"DownloadingImageScript","DownloadingImage":"DownloadingImage","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAzureMapsImagery()":"IgbAzureMapsImagery()","IgbAzureMapsImagery":"IgbAzureMapsImagery()","ApiKey":"ApiKey","ApiVersion":"ApiVersion","CultureName":"CultureName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ImageryStyle":"ImageryStyle","LocalizedView":"LocalizedView","Timestamp":"Timestamp","Type":"Type"}}],"IgbAzureMapsImageryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbAzureMapsImageryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbAzureMapsImageryModule()":"IgbAzureMapsImageryModule()","IgbAzureMapsImageryModule":"IgbAzureMapsImageryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBadge":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBadge","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBadge()":"IgbBadge()","IgbBadge":"IgbBadge()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Dot":"Dot","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Outlined":"Outlined","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Shape":"Shape","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBadge","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBadge()":"IgbBadge()","IgbBadge":"IgbBadge()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Outlined":"Outlined","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Shape":"Shape","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}}],"IgbBadgeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBadgeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBadgeModule()":"IgbBadgeModule()","IgbBadgeModule":"IgbBadgeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBadgeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBadgeModule()":"IgbBadgeModule()","IgbBadgeModule":"IgbBadgeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBanner":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBanner","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBanner()":"IgbBanner()","IgbBanner":"IgbBanner()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Open":"Open","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBanner","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBanner()":"IgbBanner()","IgbBanner":"IgbBanner()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Open":"Open","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbBannerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBannerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBannerModule()":"IgbBannerModule()","IgbBannerModule":"IgbBannerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBannerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBannerModule()":"IgbBannerModule()","IgbBannerModule":"IgbBannerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBarFragment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBarFragment","k":"class","s":"classes","m":{"GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","RadiusX":"RadiusX","RadiusY":"RadiusY","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBarFragment()":"IgbBarFragment()","IgbBarFragment":"IgbBarFragment()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","Type":"Type"}}],"IgbBarFragmentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBarFragmentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBarFragmentModule()":"IgbBarFragmentModule()","IgbBarFragmentModule":"IgbBarFragmentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBarSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBarSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBarSeries()":"IgbBarSeries()","IgbBarSeries":"IgbBarSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","RadiusX":"RadiusX","RadiusY":"RadiusY","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","Type":"Type"}}],"IgbBarSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBarSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBarSeriesModule()":"IgbBarSeriesModule()","IgbBarSeriesModule":"IgbBarSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBaseAlertLike":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseAlertLike","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseAlertLike()":"IgbBaseAlertLike()","IgbBaseAlertLike":"IgbBaseAlertLike()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisplayTime":"DisplayTime","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","KeepOpen":"KeepOpen","Open":"Open","Position":"Position","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBaseAlertLike","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseAlertLike()":"IgbBaseAlertLike()","IgbBaseAlertLike":"IgbBaseAlertLike()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisplayTime":"DisplayTime","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","KeepOpen":"KeepOpen","Open":"Open","Position":"Position","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbBaseAlertLikeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseAlertLikeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseAlertLikeModule()":"IgbBaseAlertLikeModule()","IgbBaseAlertLikeModule":"IgbBaseAlertLikeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBaseAlertLikeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseAlertLikeModule()":"IgbBaseAlertLikeModule()","IgbBaseAlertLikeModule":"IgbBaseAlertLikeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBaseComboBoxLike":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseComboBoxLike","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseComboBoxLike()":"IgbBaseComboBoxLike()","IgbBaseComboBoxLike":"IgbBaseComboBoxLike()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","KeepOpenOnSelect":"KeepOpenOnSelect","Open":"Open","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBaseComboBoxLike","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseComboBoxLike()":"IgbBaseComboBoxLike()","IgbBaseComboBoxLike":"IgbBaseComboBoxLike()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","KeepOpenOnSelect":"KeepOpenOnSelect","Open":"Open","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type"}}],"IgbBaseComboBoxLikeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseComboBoxLikeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseComboBoxLikeModule()":"IgbBaseComboBoxLikeModule()","IgbBaseComboBoxLikeModule":"IgbBaseComboBoxLikeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBaseComboBoxLikeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseComboBoxLikeModule()":"IgbBaseComboBoxLikeModule()","IgbBaseComboBoxLikeModule":"IgbBaseComboBoxLikeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBaseDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseDataSource","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseDataSource()":"IgbBaseDataSource()","IgbBaseDataSource":"IgbBaseDataSource()","AcceptPendingCommit(int)":"AcceptPendingCommit(int)","AcceptPendingCommit":"AcceptPendingCommit(int)","AcceptPendingCommitAsync(int)":"AcceptPendingCommitAsync(int)","AcceptPendingCommitAsync":"AcceptPendingCommitAsync(int)","AcceptPendingTransaction(int)":"AcceptPendingTransaction(int)","AcceptPendingTransaction":"AcceptPendingTransaction(int)","AcceptPendingTransactionAsync(int)":"AcceptPendingTransactionAsync(int)","AcceptPendingTransactionAsync":"AcceptPendingTransactionAsync(int)","ActualCount":"ActualCount","AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","ClearPinnedRows()":"ClearPinnedRows()","ClearPinnedRows":"ClearPinnedRows()","ClearPinnedRowsAsync()":"ClearPinnedRowsAsync()","ClearPinnedRowsAsync":"ClearPinnedRowsAsync()","Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","CloneProperties(DataSource)":"CloneProperties(DataSource)","CloneProperties":"CloneProperties(DataSource)","ClonePropertiesAsync(DataSource)":"ClonePropertiesAsync(DataSource)","ClonePropertiesAsync":"ClonePropertiesAsync(DataSource)","CommitEdits(bool)":"CommitEdits(bool)","CommitEdits":"CommitEdits(bool)","CommitEditsAsync(bool)":"CommitEditsAsync(bool)","CommitEditsAsync":"CommitEditsAsync(bool)","DeferAutoRefresh":"DeferAutoRefresh","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FirstVisibleIndexRequested":"FirstVisibleIndexRequested","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","GetAggregatedChanges(int)":"GetAggregatedChanges(int)","GetAggregatedChanges":"GetAggregatedChanges(int)","GetAggregatedChangesAsync(int)":"GetAggregatedChangesAsync(int)","GetAggregatedChangesAsync":"GetAggregatedChangesAsync(int)","GetIsRowExpandedAtIndex(int)":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndex":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndexAsync(int)":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndexAsync":"GetIsRowExpandedAtIndexAsync(int)","GetItemAtIndex(int)":"GetItemAtIndex(int)","GetItemAtIndex":"GetItemAtIndex(int)","GetItemAtIndexAsync(int)":"GetItemAtIndexAsync(int)","GetItemAtIndexAsync":"GetItemAtIndexAsync(int)","GetItemFromKey(object[])":"GetItemFromKey(object[])","GetItemFromKey":"GetItemFromKey(object[])","GetItemFromKeyAsync(object[])":"GetItemFromKeyAsync(object[])","GetItemFromKeyAsync":"GetItemFromKeyAsync(object[])","GetItemProperty(object, string)":"GetItemProperty(object, string)","GetItemProperty":"GetItemProperty(object, string)","GetItemPropertyAsync(object, string)":"GetItemPropertyAsync(object, string)","GetItemPropertyAsync":"GetItemPropertyAsync(object, string)","GetItemPropertyAtIndex(int, string)":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndex":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndexAsync(int, string)":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndexAsync":"GetItemPropertyAtIndexAsync(int, string)","GetMainValuePath(DataSourceRowType)":"GetMainValuePath(DataSourceRowType)","GetMainValuePath":"GetMainValuePath(DataSourceRowType)","GetMainValuePathAsync(DataSourceRowType)":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePathAsync":"GetMainValuePathAsync(DataSourceRowType)","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetRootSummaryRowCount()":"GetRootSummaryRowCount()","GetRootSummaryRowCount":"GetRootSummaryRowCount()","GetRootSummaryRowCountAsync()":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCountAsync":"GetRootSummaryRowCountAsync()","GetRowCount()":"GetRowCount()","GetRowCount":"GetRowCount()","GetRowCountAsync()":"GetRowCountAsync()","GetRowCountAsync":"GetRowCountAsync()","GetRowLevel(int)":"GetRowLevel(int)","GetRowLevel":"GetRowLevel(int)","GetRowLevelAsync(int)":"GetRowLevelAsync(int)","GetRowLevelAsync":"GetRowLevelAsync(int)","GetRowType(int)":"GetRowType(int)","GetRowType":"GetRowType(int)","GetRowTypeAsync(int)":"GetRowTypeAsync(int)","GetRowTypeAsync":"GetRowTypeAsync(int)","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GetStickyRowPriority(int)":"GetStickyRowPriority(int)","GetStickyRowPriority":"GetStickyRowPriority(int)","GetStickyRowPriorityAsync(int)":"GetStickyRowPriorityAsync(int)","GetStickyRowPriorityAsync":"GetStickyRowPriorityAsync(int)","GetTransactionErrorByID(int)":"GetTransactionErrorByID(int)","GetTransactionErrorByID":"GetTransactionErrorByID(int)","GetTransactionErrorByIDAsync(int)":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByIDAsync":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByKey(object[], string)":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKey":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKeyAsync(object[], string)":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKeyAsync":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionID(object[], string)":"GetTransactionID(object[], string)","GetTransactionID":"GetTransactionID(object[], string)","GetTransactionIDAsync(object[], string)":"GetTransactionIDAsync(object[], string)","GetTransactionIDAsync":"GetTransactionIDAsync(object[], string)","HasAdd(object)":"HasAdd(object)","HasAdd":"HasAdd(object)","HasAddAsync(object)":"HasAddAsync(object)","HasAddAsync":"HasAddAsync(object)","HasDelete(object[])":"HasDelete(object[])","HasDelete":"HasDelete(object[])","HasDeleteAsync(object[])":"HasDeleteAsync(object[])","HasDeleteAsync":"HasDeleteAsync(object[])","HasEdit(object[], string)":"HasEdit(object[], string)","HasEdit":"HasEdit(object[], string)","HasEditAsync(object[], string)":"HasEditAsync(object[], string)","HasEditAsync":"HasEditAsync(object[], string)","IncludeSummaryRowsInSection":"IncludeSummaryRowsInSection","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","IsBatchingEnabled":"IsBatchingEnabled","IsExclusivelySticky(int)":"IsExclusivelySticky(int)","IsExclusivelySticky":"IsExclusivelySticky(int)","IsExclusivelyStickyAsync(int)":"IsExclusivelyStickyAsync(int)","IsExclusivelyStickyAsync":"IsExclusivelyStickyAsync(int)","IsPendingCommit(int)":"IsPendingCommit(int)","IsPendingCommit":"IsPendingCommit(int)","IsPendingCommitAsync(int)":"IsPendingCommitAsync(int)","IsPendingCommitAsync":"IsPendingCommitAsync(int)","IsPendingTransaction(int)":"IsPendingTransaction(int)","IsPendingTransaction":"IsPendingTransaction(int)","IsPendingTransactionAsync(int)":"IsPendingTransactionAsync(int)","IsPendingTransactionAsync":"IsPendingTransactionAsync(int)","IsPlaceholderItem(int)":"IsPlaceholderItem(int)","IsPlaceholderItem":"IsPlaceholderItem(int)","IsPlaceholderItemAsync(int)":"IsPlaceholderItemAsync(int)","IsPlaceholderItemAsync":"IsPlaceholderItemAsync(int)","IsReadOnly":"IsReadOnly","IsRowPinned(int)":"IsRowPinned(int)","IsRowPinned":"IsRowPinned(int)","IsRowPinnedAsync(int)":"IsRowPinnedAsync(int)","IsRowPinnedAsync":"IsRowPinnedAsync(int)","IsRowSpanning(DataSourceRowType)":"IsRowSpanning(DataSourceRowType)","IsRowSpanning":"IsRowSpanning(DataSourceRowType)","IsRowSpanningAsync(DataSourceRowType)":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanningAsync":"IsRowSpanningAsync(DataSourceRowType)","IsSectionCollapsable":"IsSectionCollapsable","IsSectionContentVisible":"IsSectionContentVisible","IsSectionExpandedDefault":"IsSectionExpandedDefault","IsSectionHeaderNormalRow":"IsSectionHeaderNormalRow","IsSectionSummaryRowsAtBottom":"IsSectionSummaryRowsAtBottom","LastVisibleIndexRequested":"LastVisibleIndexRequested","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","PinRow(object[])":"PinRow(object[])","PinRow":"PinRow(object[])","PinRowAsync(object[])":"PinRowAsync(object[])","PinRowAsync":"PinRowAsync(object[])","PrimaryKey":"PrimaryKey","PropertiesRequested":"PropertiesRequested","PropertiesRequestedChanged":"PropertiesRequestedChanged","PropertiesRequestedChangedScript":"PropertiesRequestedChangedScript","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","Redo()":"Redo()","Redo":"Redo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","RejectPendingCommit(int)":"RejectPendingCommit(int)","RejectPendingCommit":"RejectPendingCommit(int)","RejectPendingCommitAsync(int)":"RejectPendingCommitAsync(int)","RejectPendingCommitAsync":"RejectPendingCommitAsync(int)","RejectPendingTransaction(int)":"RejectPendingTransaction(int)","RejectPendingTransaction":"RejectPendingTransaction(int)","RejectPendingTransactionAsync(int)":"RejectPendingTransactionAsync(int)","RejectPendingTransactionAsync":"RejectPendingTransactionAsync(int)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","RootSummariesChanged":"RootSummariesChanged","RootSummariesChangedScript":"RootSummariesChangedScript","RowExpansionChanged":"RowExpansionChanged","RowExpansionChangedScript":"RowExpansionChangedScript","SchemaChanged":"SchemaChanged","SchemaChangedScript":"SchemaChangedScript","SchemaIncludedProperties":"SchemaIncludedProperties","SectionHeaderDisplayMode":"SectionHeaderDisplayMode","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","SetIsRowExpandedAtIndex(int, bool)":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndex":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndexAsync(int, bool)":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndexAsync":"SetIsRowExpandedAtIndexAsync(int, bool)","SetTransactionError(int, string)":"SetTransactionError(int, string)","SetTransactionError":"SetTransactionError(int, string)","SetTransactionErrorAsync(int, string)":"SetTransactionErrorAsync(int, string)","SetTransactionErrorAsync":"SetTransactionErrorAsync(int, string)","ShouldEmitSectionFooters":"ShouldEmitSectionFooters","ShouldEmitSectionHeaders":"ShouldEmitSectionHeaders","ShouldEmitShiftedRows":"ShouldEmitShiftedRows","ShouldEmitSummaryRows":"ShouldEmitSummaryRows","Type":"Type","Undo()":"Undo()","Undo":"Undo()","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","UnpinRow(object[])":"UnpinRow(object[])","UnpinRow":"UnpinRow(object[])","UnpinRowAsync(object[])":"UnpinRowAsync(object[])","UnpinRowAsync":"UnpinRowAsync(object[])","UpdatePropertyAtKey(object[], string, object, bool)":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKeyAsync(object[], string, object, bool)":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object, bool)"}}],"IgbBaseEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseEventArgs()":"IgbBaseEventArgs()","IgbBaseEventArgs":"IgbBaseEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbBaseEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseEventArgsDetail()":"IgbBaseEventArgsDetail()","IgbBaseEventArgsDetail":"IgbBaseEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Owner":"Owner","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbBaseExporter":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseExporter","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseExporter()":"IgbBaseExporter()","IgbBaseExporter":"IgbBaseExporter()","ColumnExporting":"ColumnExporting","ColumnExportingScript":"ColumnExportingScript","ExportData(object[], IgbExporterOptionsBase)":"ExportData(object[], IgbExporterOptionsBase)","ExportData":"ExportData(object[], IgbExporterOptionsBase)","ExportDataAsync(object[], IgbExporterOptionsBase)":"ExportDataAsync(object[], IgbExporterOptionsBase)","ExportDataAsync":"ExportDataAsync(object[], IgbExporterOptionsBase)","ExportEnded":"ExportEnded","ExportEndedScript":"ExportEndedScript","ExportGrid(object, IgbExporterOptionsBase)":"ExportGrid(object, IgbExporterOptionsBase)","ExportGrid":"ExportGrid(object, IgbExporterOptionsBase)","ExportGridAsync(object, IgbExporterOptionsBase)":"ExportGridAsync(object, IgbExporterOptionsBase)","ExportGridAsync":"ExportGridAsync(object, IgbExporterOptionsBase)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","RowExporting":"RowExporting","RowExportingScript":"RowExportingScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbBaseGenericDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseGenericDataSource","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseGenericDataSource()":"IgbBaseGenericDataSource()","IgbBaseGenericDataSource":"IgbBaseGenericDataSource()","FilterExpressions":"FilterExpressions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentFilterExpressions()":"GetCurrentFilterExpressions()","GetCurrentFilterExpressions":"GetCurrentFilterExpressions()","GetCurrentFilterExpressionsAsync()":"GetCurrentFilterExpressionsAsync()","GetCurrentFilterExpressionsAsync":"GetCurrentFilterExpressionsAsync()","GetCurrentGroupDescriptions()":"GetCurrentGroupDescriptions()","GetCurrentGroupDescriptions":"GetCurrentGroupDescriptions()","GetCurrentGroupDescriptionsAsync()":"GetCurrentGroupDescriptionsAsync()","GetCurrentGroupDescriptionsAsync":"GetCurrentGroupDescriptionsAsync()","GetCurrentSortDescriptions()":"GetCurrentSortDescriptions()","GetCurrentSortDescriptions":"GetCurrentSortDescriptions()","GetCurrentSortDescriptionsAsync()":"GetCurrentSortDescriptionsAsync()","GetCurrentSortDescriptionsAsync":"GetCurrentSortDescriptionsAsync()","GetCurrentSummaryDescriptions()":"GetCurrentSummaryDescriptions()","GetCurrentSummaryDescriptions":"GetCurrentSummaryDescriptions()","GetCurrentSummaryDescriptionsAsync()":"GetCurrentSummaryDescriptionsAsync()","GetCurrentSummaryDescriptionsAsync":"GetCurrentSummaryDescriptionsAsync()","GroupDescriptions":"GroupDescriptions","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","SortDescriptions":"SortDescriptions","SummaryDescriptions":"SummaryDescriptions","Type":"Type"}}],"IgbBaseOptionLike":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseOptionLike","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseOptionLike()":"IgbBaseOptionLike()","IgbBaseOptionLike":"IgbBaseOptionLike()","Active":"Active","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBaseOptionLike","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseOptionLike()":"IgbBaseOptionLike()","IgbBaseOptionLike":"IgbBaseOptionLike()","Active":"Active","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}}],"IgbBaseOptionLikeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseOptionLikeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseOptionLikeModule()":"IgbBaseOptionLikeModule()","IgbBaseOptionLikeModule":"IgbBaseOptionLikeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbBaseOptionLikeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseOptionLikeModule()":"IgbBaseOptionLikeModule()","IgbBaseOptionLikeModule":"IgbBaseOptionLikeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBaseSearchInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseSearchInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseSearchInfo()":"IgbBaseSearchInfo()","IgbBaseSearchInfo":"IgbBaseSearchInfo()","CaseSensitive":"CaseSensitive","Content":"Content","ExactMatch":"ExactMatch","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MatchCount":"MatchCount","SearchText":"SearchText","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbBaseToolbarColumnActionsDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseToolbarColumnActionsDirective","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ColumnListHeight":"ColumnListHeight","Title":"Title","Prompt":"Prompt","OverlaySettings":"OverlaySettings","OpeningScript":"OpeningScript","Opening":"Opening","OpenedScript":"OpenedScript","Opened":"Opened","ClosingScript":"ClosingScript","Closing":"Closing","ClosedScript":"ClosedScript","Closed":"Closed","ColumnToggleScript":"ColumnToggleScript","ColumnToggle":"ColumnToggle","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarActionsParent":"GridToolbarActionsParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseToolbarColumnActionsDirective()":"IgbBaseToolbarColumnActionsDirective()","IgbBaseToolbarColumnActionsDirective":"IgbBaseToolbarColumnActionsDirective()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbBaseToolbarColumnActionsDirectiveModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseToolbarColumnActionsDirectiveModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseToolbarColumnActionsDirectiveModule()":"IgbBaseToolbarColumnActionsDirectiveModule()","IgbBaseToolbarColumnActionsDirectiveModule":"IgbBaseToolbarColumnActionsDirectiveModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBaseToolbarDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBaseToolbarDirective","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarActionsParent":"GridToolbarActionsParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBaseToolbarDirective()":"IgbBaseToolbarDirective()","IgbBaseToolbarDirective":"IgbBaseToolbarDirective()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","ColumnListHeight":"ColumnListHeight","ColumnToggle":"ColumnToggle","ColumnToggleScript":"ColumnToggleScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","OverlaySettings":"OverlaySettings","Prompt":"Prompt","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Title":"Title","Type":"Type"}}],"IgbBingMapsMapImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBingMapsMapImagery","k":"class","s":"classes","m":{"ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","WindowRect":"WindowRect","Referer":"Referer","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","UserAgent":"UserAgent","Opacity":"Opacity","ImageTilesReadyScript":"ImageTilesReadyScript","ImageTilesReady":"ImageTilesReady","ImagesChangedScript":"ImagesChangedScript","ImagesChanged":"ImagesChanged","CancellingImageScript":"CancellingImageScript","CancellingImage":"CancellingImage","DownloadingImageScript":"DownloadingImageScript","DownloadingImage":"DownloadingImage","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBingMapsMapImagery()":"IgbBingMapsMapImagery()","IgbBingMapsMapImagery":"IgbBingMapsMapImagery()","ActualBingImageryRestUri":"ActualBingImageryRestUri","ActualSubDomains":"ActualSubDomains","ActualTilePath":"ActualTilePath","ApiKey":"ApiKey","BingImageryRestUri":"BingImageryRestUri","CultureName":"CultureName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ImageryStyle":"ImageryStyle","IsDeferredLoad":"IsDeferredLoad","IsInitialized":"IsInitialized","RequestMapSettings()":"RequestMapSettings()","RequestMapSettings":"RequestMapSettings()","RequestMapSettingsAsync()":"RequestMapSettingsAsync()","RequestMapSettingsAsync":"RequestMapSettingsAsync()","SubDomains":"SubDomains","TilePath":"TilePath","Type":"Type"}}],"IgbBingMapsMapImageryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBingMapsMapImageryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBingMapsMapImageryModule()":"IgbBingMapsMapImageryModule()","IgbBingMapsMapImageryModule":"IgbBingMapsMapImageryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBollingerBandsOverlay":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBollingerBandsOverlay","k":"class","s":"classes","m":{"ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","IgnoreFirst":"IgnoreFirst","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBollingerBandsOverlay()":"IgbBollingerBandsOverlay()","IgbBollingerBandsOverlay":"IgbBollingerBandsOverlay()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","Multiplier":"Multiplier","Period":"Period","Type":"Type"}}],"IgbBollingerBandsOverlayModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBollingerBandsOverlayModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBollingerBandsOverlayModule()":"IgbBollingerBandsOverlayModule()","IgbBollingerBandsOverlayModule":"IgbBollingerBandsOverlayModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBollingerBandWidthIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBollingerBandWidthIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBollingerBandWidthIndicator()":"IgbBollingerBandWidthIndicator()","IgbBollingerBandWidthIndicator":"IgbBollingerBandWidthIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Multiplier":"Multiplier","Period":"Period","Type":"Type"}}],"IgbBollingerBandWidthIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBollingerBandWidthIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBollingerBandWidthIndicatorModule()":"IgbBollingerBandWidthIndicatorModule()","IgbBollingerBandWidthIndicatorModule":"IgbBollingerBandWidthIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBrushScale":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBrushScale","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBrushScale()":"IgbBrushScale()","IgbBrushScale":"IgbBrushScale()","Brushes":"Brushes","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetBrush(int)":"GetBrush(int)","GetBrush":"GetBrush(int)","GetBrushAsync(int)":"GetBrushAsync(int)","GetBrushAsync":"GetBrushAsync(int)","NotifySeries()":"NotifySeries()","NotifySeries":"NotifySeries()","NotifySeriesAsync()":"NotifySeriesAsync()","NotifySeriesAsync":"NotifySeriesAsync()","RegisterSeries(IgbSeries)":"RegisterSeries(IgbSeries)","RegisterSeries":"RegisterSeries(IgbSeries)","RegisterSeriesAsync(IgbSeries)":"RegisterSeriesAsync(IgbSeries)","RegisterSeriesAsync":"RegisterSeriesAsync(IgbSeries)","Type":"Type","UnregisterSeries(IgbSeries)":"UnregisterSeries(IgbSeries)","UnregisterSeries":"UnregisterSeries(IgbSeries)","UnregisterSeriesAsync(IgbSeries)":"UnregisterSeriesAsync(IgbSeries)","UnregisterSeriesAsync":"UnregisterSeriesAsync(IgbSeries)"}}],"IgbBrushScaleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBrushScaleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBrushScaleModule()":"IgbBrushScaleModule()","IgbBrushScaleModule":"IgbBrushScaleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBubbleSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBubbleSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath","HighlightedXMemberPath":"HighlightedXMemberPath","HighlightedYMemberPath":"HighlightedYMemberPath","XMemberAsLegendLabel":"XMemberAsLegendLabel","YMemberAsLegendLabel":"YMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","YMemberAsLegendUnit":"YMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","TrendLineZIndex":"TrendLineZIndex","MaximumMarkers":"MaximumMarkers","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ActualItemSearchMode":"ActualItemSearchMode","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","AssigningScatterStyleScript":"AssigningScatterStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBubbleSeries()":"IgbBubbleSeries()","IgbBubbleSeries":"IgbBubbleSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FillMemberAsLegendLabel":"FillMemberAsLegendLabel","FillMemberAsLegendUnit":"FillMemberAsLegendUnit","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","LabelMemberPath":"LabelMemberPath","MarkerBrushBrightness":"MarkerBrushBrightness","MarkerOutlineBrightness":"MarkerOutlineBrightness","MarkerOutlineUsesFillScale":"MarkerOutlineUsesFillScale","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","RadiusMemberPath":"RadiusMemberPath","RadiusScale":"RadiusScale","RadiusScaleUseGlobalValues":"RadiusScaleUseGlobalValues","Type":"Type"}}],"IgbBubbleSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBubbleSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBubbleSeriesModule()":"IgbBubbleSeriesModule()","IgbBubbleSeriesModule":"IgbBubbleSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBulletGraph":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBulletGraph","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBulletGraph()":"IgbBulletGraph()","IgbBulletGraph":"IgbBulletGraph()","ActualHighlightValueDisplayMode":"ActualHighlightValueDisplayMode","ActualHighlightValueOpacity":"ActualHighlightValueOpacity","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ActualMaximumValue":"ActualMaximumValue","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMinimumValue":"ActualMinimumValue","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualRanges":"ActualRanges","AlignLabel":"AlignLabel","AlignLabelScript":"AlignLabelScript","BackingBrush":"BackingBrush","BackingInnerExtent":"BackingInnerExtent","BackingOuterExtent":"BackingOuterExtent","BackingOutline":"BackingOutline","BackingStrokeThickness":"BackingStrokeThickness","ContainerResized()":"ContainerResized()","ContainerResized":"ContainerResized()","ContainerResizedAsync()":"ContainerResizedAsync()","ContainerResizedAsync":"ContainerResizedAsync()","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ContentRanges":"ContentRanges","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Font":"Font","FontBrush":"FontBrush","FormatLabel":"FormatLabel","FormatLabelScript":"FormatLabelScript","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentHighlightValue()":"GetCurrentHighlightValue()","GetCurrentHighlightValue":"GetCurrentHighlightValue()","GetCurrentHighlightValueAsync()":"GetCurrentHighlightValueAsync()","GetCurrentHighlightValueAsync":"GetCurrentHighlightValueAsync()","GetValueForPoint(Point)":"GetValueForPoint(Point)","GetValueForPoint":"GetValueForPoint(Point)","GetValueForPointAsync(Point)":"GetValueForPointAsync(Point)","GetValueForPointAsync":"GetValueForPointAsync(Point)","HighlightValue":"HighlightValue","HighlightValueDisplayMode":"HighlightValueDisplayMode","HighlightValueOpacity":"HighlightValueOpacity","Interval":"Interval","IsScaleInverted":"IsScaleInverted","LabelExtent":"LabelExtent","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelInterval":"LabelInterval","LabelsPostInitial":"LabelsPostInitial","LabelsPreTerminal":"LabelsPreTerminal","LabelsVisible":"LabelsVisible","MaximumValue":"MaximumValue","MergeViewports":"MergeViewports","MinimumValue":"MinimumValue","MinorTickBrush":"MinorTickBrush","MinorTickCount":"MinorTickCount","MinorTickEndExtent":"MinorTickEndExtent","MinorTickStartExtent":"MinorTickStartExtent","MinorTickStrokeThickness":"MinorTickStrokeThickness","Orientation":"Orientation","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RangeBrushes":"RangeBrushes","RangeInnerExtent":"RangeInnerExtent","RangeOuterExtent":"RangeOuterExtent","RangeOutlines":"RangeOutlines","Ranges":"Ranges","ScaleBackgroundBrush":"ScaleBackgroundBrush","ScaleBackgroundOutline":"ScaleBackgroundOutline","ScaleBackgroundThickness":"ScaleBackgroundThickness","ScaleEndExtent":"ScaleEndExtent","ScaleStartExtent":"ScaleStartExtent","ShowToolTip":"ShowToolTip","ShowToolTipTimeout":"ShowToolTipTimeout","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","TargetValue":"TargetValue","TargetValueBreadth":"TargetValueBreadth","TargetValueBrush":"TargetValueBrush","TargetValueInnerExtent":"TargetValueInnerExtent","TargetValueName":"TargetValueName","TargetValueOuterExtent":"TargetValueOuterExtent","TargetValueOutline":"TargetValueOutline","TargetValueStrokeThickness":"TargetValueStrokeThickness","TickBrush":"TickBrush","TickEndExtent":"TickEndExtent","TickStartExtent":"TickStartExtent","TickStrokeThickness":"TickStrokeThickness","TicksPostInitial":"TicksPostInitial","TicksPreTerminal":"TicksPreTerminal","TransitionDuration":"TransitionDuration","TransitionProgress":"TransitionProgress","Type":"Type","Value":"Value","ValueBrush":"ValueBrush","ValueInnerExtent":"ValueInnerExtent","ValueName":"ValueName","ValueOuterExtent":"ValueOuterExtent","ValueOutline":"ValueOutline","ValueStrokeThickness":"ValueStrokeThickness"}}],"IgbBulletGraphCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBulletGraphCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBulletGraphCoreModule()":"IgbBulletGraphCoreModule()","IgbBulletGraphCoreModule":"IgbBulletGraphCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbBulletGraphModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbBulletGraphModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbBulletGraphModule()":"IgbBulletGraphModule()","IgbBulletGraphModule":"IgbBulletGraphModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbButton":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbButton","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","DefaultEventBehavior":"DefaultEventBehavior","DisplayType":"DisplayType","Href":"Href","Download":"Download","Target":"Target","Rel":"Rel","Disabled":"Disabled","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButton()":"IgbButton()","IgbButton":"IgbButton()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbButton","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","DefaultEventBehavior":"DefaultEventBehavior","DisplayType":"DisplayType","Href":"Href","Download":"Download","Target":"Target","Rel":"Rel","Disabled":"Disabled","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButton()":"IgbButton()","IgbButton":"IgbButton()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}}],"IgbButtonBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbButtonBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonBase()":"IgbButtonBase()","IgbButtonBase":"IgbButtonBase()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","DisplayType":"DisplayType","Download":"Download","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","Href":"Href","Rel":"Rel","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Target":"Target","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbButtonBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonBase()":"IgbButtonBase()","IgbButtonBase":"IgbButtonBase()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","DisplayType":"DisplayType","Download":"Download","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","Href":"Href","Rel":"Rel","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Target":"Target","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbButtonBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbButtonBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonBaseModule()":"IgbButtonBaseModule()","IgbButtonBaseModule":"IgbButtonBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbButtonBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonBaseModule()":"IgbButtonBaseModule()","IgbButtonBaseModule":"IgbButtonBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbButtonGroup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbButtonGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonGroup()":"IgbButtonGroup()","IgbButtonGroup":"IgbButtonGroup()","Alignment":"Alignment","DefaultEventBehavior":"DefaultEventBehavior","Deselect":"Deselect","DeselectScript":"DeselectScript","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select":"Select","SelectScript":"SelectScript","SelectedItems":"SelectedItems","Selection":"Selection","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbButtonGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonGroup()":"IgbButtonGroup()","IgbButtonGroup":"IgbButtonGroup()","Alignment":"Alignment","DefaultEventBehavior":"DefaultEventBehavior","Deselect":"Deselect","DeselectScript":"DeselectScript","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select":"Select","SelectScript":"SelectScript","SelectedItems":"SelectedItems","Selection":"Selection","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbButtonGroupModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbButtonGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonGroupModule()":"IgbButtonGroupModule()","IgbButtonGroupModule":"IgbButtonGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbButtonGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonGroupModule()":"IgbButtonGroupModule()","IgbButtonGroupModule":"IgbButtonGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbButtonModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonModule()":"IgbButtonModule()","IgbButtonModule":"IgbButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbButtonModule()":"IgbButtonModule()","IgbButtonModule":"IgbButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbByLevelTreeGridMergeStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbByLevelTreeGridMergeStrategy","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","InstanceAsync()":"InstanceAsync()","InstanceAsync":"InstanceAsync()","Instance()":"Instance()","Instance":"Instance()","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbByLevelTreeGridMergeStrategy()":"IgbByLevelTreeGridMergeStrategy()","IgbByLevelTreeGridMergeStrategy":"IgbByLevelTreeGridMergeStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbCalculatedColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalculatedColumn","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalculatedColumn()":"IgbCalculatedColumn()","IgbCalculatedColumn":"IgbCalculatedColumn()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbCalendar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendar","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Selection":"Selection","ShowWeekNumbers":"ShowWeekNumbers","WeekStart":"WeekStart","Locale":"Locale","ResourceStrings":"ResourceStrings","SpecialDates":"SpecialDates","DisabledDates":"DisabledDates","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendar()":"IgbCalendar()","IgbCalendar":"IgbCalendar()","ActiveDate":"ActiveDate","ActiveView":"ActiveView","Change":"Change","ChangeScript":"ChangeScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatOptions":"FormatOptions","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetCurrentValues()":"GetCurrentValues()","GetCurrentValues":"GetCurrentValues()","GetCurrentValuesAsync()":"GetCurrentValuesAsync()","GetCurrentValuesAsync":"GetCurrentValuesAsync()","HeaderOrientation":"HeaderOrientation","HideHeader":"HideHeader","HideOutsideDays":"HideOutsideDays","Orientation":"Orientation","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomizedStringAsync(string, Dictionary)":"SetCustomizedStringAsync(string, Dictionary)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, Dictionary)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","Values":"Values","ValuesChanged":"ValuesChanged","VisibleMonths":"VisibleMonths"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendar","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Selection":"Selection","ShowWeekNumbers":"ShowWeekNumbers","WeekStart":"WeekStart","Locale":"Locale","SpecialDates":"SpecialDates","DisabledDates":"DisabledDates","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendar()":"IgbCalendar()","IgbCalendar":"IgbCalendar()","ActiveDate":"ActiveDate","ActiveView":"ActiveView","Change":"Change","ChangeScript":"ChangeScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatOptions":"FormatOptions","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetCurrentValues()":"GetCurrentValues()","GetCurrentValues":"GetCurrentValues()","GetCurrentValuesAsync()":"GetCurrentValuesAsync()","GetCurrentValuesAsync":"GetCurrentValuesAsync()","HeaderOrientation":"HeaderOrientation","HideHeader":"HideHeader","HideOutsideDays":"HideOutsideDays","Orientation":"Orientation","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResourceStrings":"ResourceStrings","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","Values":"Values","ValuesChanged":"ValuesChanged","VisibleMonths":"VisibleMonths"}}],"IgbCalendarBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarBase()":"IgbCalendarBase()","IgbCalendarBase":"IgbCalendarBase()","DefaultEventBehavior":"DefaultEventBehavior","DisabledDates":"DisabledDates","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Locale":"Locale","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResourceStrings":"ResourceStrings","Selection":"Selection","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowWeekNumbers":"ShowWeekNumbers","SpecialDates":"SpecialDates","Type":"Type","WeekStart":"WeekStart"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarBase()":"IgbCalendarBase()","IgbCalendarBase":"IgbCalendarBase()","DefaultEventBehavior":"DefaultEventBehavior","DisabledDates":"DisabledDates","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Locale":"Locale","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selection":"Selection","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowWeekNumbers":"ShowWeekNumbers","SpecialDates":"SpecialDates","Type":"Type","WeekStart":"WeekStart"}}],"IgbCalendarBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarBaseModule()":"IgbCalendarBaseModule()","IgbCalendarBaseModule":"IgbCalendarBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarBaseModule()":"IgbCalendarBaseModule()","IgbCalendarBaseModule":"IgbCalendarBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCalendarDate":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarDate","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarDate()":"IgbCalendarDate()","IgbCalendarDate":"IgbCalendarDate()","Date":"Date","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsCurrentMonth":"IsCurrentMonth","IsNextMonth":"IsNextMonth","IsPrevMonth":"IsPrevMonth","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarDate","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarDate()":"IgbCalendarDate()","IgbCalendarDate":"IgbCalendarDate()","Date":"Date","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsCurrentMonth":"IsCurrentMonth","IsNextMonth":"IsNextMonth","IsPrevMonth":"IsPrevMonth","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCalendarDateEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarDateEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarDateEventArgs()":"IgbCalendarDateEventArgs()","IgbCalendarDateEventArgs":"IgbCalendarDateEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarDateEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarDateEventArgs()":"IgbCalendarDateEventArgs()","IgbCalendarDateEventArgs":"IgbCalendarDateEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCalendarFormatOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarFormatOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarFormatOptions()":"IgbCalendarFormatOptions()","IgbCalendarFormatOptions":"IgbCalendarFormatOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Month":"Month","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Weekday":"Weekday"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarFormatOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarFormatOptions()":"IgbCalendarFormatOptions()","IgbCalendarFormatOptions":"IgbCalendarFormatOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Month":"Month","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Weekday":"Weekday"}}],"IgbCalendarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarModule()":"IgbCalendarModule()","IgbCalendarModule":"IgbCalendarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarModule()":"IgbCalendarModule()","IgbCalendarModule":"IgbCalendarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCalendarResourceStrings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalendarResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarResourceStrings()":"IgbCalendarResourceStrings()","IgbCalendarResourceStrings":"IgbCalendarResourceStrings()","EndDate":"EndDate","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","NextMonth":"NextMonth","NextYear":"NextYear","NextYears":"NextYears","PreviousMonth":"PreviousMonth","PreviousYear":"PreviousYear","PreviousYears":"PreviousYears","SelectDate":"SelectDate","SelectMonth":"SelectMonth","SelectRange":"SelectRange","SelectYear":"SelectYear","SelectedDate":"SelectedDate","StartDate":"StartDate","Type":"Type","WeekLabel":"WeekLabel"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCalendarResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalendarResourceStrings()":"IgbCalendarResourceStrings()","IgbCalendarResourceStrings":"IgbCalendarResourceStrings()","EndDate":"EndDate","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","NextMonth":"NextMonth","NextYear":"NextYear","NextYears":"NextYears","PreviousMonth":"PreviousMonth","PreviousYear":"PreviousYear","PreviousYears":"PreviousYears","SelectDate":"SelectDate","SelectMonth":"SelectMonth","SelectRange":"SelectRange","SelectYear":"SelectYear","SelectedDate":"SelectedDate","StartDate":"StartDate","Type":"Type","WeekLabel":"WeekLabel"}}],"IgbCalloutAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutAnnotation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutAnnotation()":"IgbCalloutAnnotation()","IgbCalloutAnnotation":"IgbCalloutAnnotation()","Background":"Background","BackgroundCornerRadius":"BackgroundCornerRadius","BackgroundPaddingBottom":"BackgroundPaddingBottom","BackgroundPaddingLeft":"BackgroundPaddingLeft","BackgroundPaddingRight":"BackgroundPaddingRight","BackgroundPaddingTop":"BackgroundPaddingTop","BadgeBackground":"BadgeBackground","BadgeCorner":"BadgeCorner","BadgeGap":"BadgeGap","BadgeHeight":"BadgeHeight","BadgeImage":"BadgeImage","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeVisible":"BadgeVisible","BadgeWidth":"BadgeWidth","Content":"Content","ContentScript":"ContentScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatLabelScript":"FormatLabelScript","ItemColor":"ItemColor","Key":"Key","KeyScript":"KeyScript","LeaderBrush":"LeaderBrush","Outline":"Outline","Series":"Series","StrokeThickness":"StrokeThickness","Text":"Text","TextColor":"TextColor","Type":"Type","XValue":"XValue","XValueScript":"XValueScript","YValue":"YValue","YValueScript":"YValueScript"}}],"IgbCalloutAnnotationCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutAnnotationCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbCalloutAnnotation)":"InsertItem(int, IgbCalloutAnnotation)","InsertItem":"InsertItem(int, IgbCalloutAnnotation)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbCalloutAnnotation)":"SetItem(int, IgbCalloutAnnotation)","SetItem":"SetItem(int, IgbCalloutAnnotation)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbCalloutAnnotation)":"Add(IgbCalloutAnnotation)","Add":"Add(IgbCalloutAnnotation)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbCalloutAnnotation[], int)":"CopyTo(IgbCalloutAnnotation[], int)","CopyTo":"CopyTo(IgbCalloutAnnotation[], int)","Contains(IgbCalloutAnnotation)":"Contains(IgbCalloutAnnotation)","Contains":"Contains(IgbCalloutAnnotation)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbCalloutAnnotation)":"IndexOf(IgbCalloutAnnotation)","IndexOf":"IndexOf(IgbCalloutAnnotation)","Insert(int, IgbCalloutAnnotation)":"Insert(int, IgbCalloutAnnotation)","Insert":"Insert(int, IgbCalloutAnnotation)","Remove(IgbCalloutAnnotation)":"Remove(IgbCalloutAnnotation)","Remove":"Remove(IgbCalloutAnnotation)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutAnnotationCollection(object, string)":"IgbCalloutAnnotationCollection(object, string)","IgbCalloutAnnotationCollection":"IgbCalloutAnnotationCollection(object, string)"}}],"IgbCalloutBadgeInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutBadgeInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutBadgeInfo()":"IgbCalloutBadgeInfo()","IgbCalloutBadgeInfo":"IgbCalloutBadgeInfo()","BadgeCorner":"BadgeCorner","BadgeGap":"BadgeGap","BadgeHeight":"BadgeHeight","BadgeImage":"BadgeImage","BadgeThickness":"BadgeThickness","BadgeVisible":"BadgeVisible","BadgeWidth":"BadgeWidth","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbCalloutContentUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutContentUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutContentUpdatingEventArgs()":"IgbCalloutContentUpdatingEventArgs()","IgbCalloutContentUpdatingEventArgs":"IgbCalloutContentUpdatingEventArgs()","Content":"Content","ContentScript":"ContentScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","XValue":"XValue","XValueScript":"XValueScript","YValue":"YValue","YValueScript":"YValueScript"}}],"IgbCalloutLabelUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutLabelUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutLabelUpdatingEventArgs()":"IgbCalloutLabelUpdatingEventArgs()","IgbCalloutLabelUpdatingEventArgs":"IgbCalloutLabelUpdatingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Label":"Label","LabelScript":"LabelScript","Series":"Series","SeriesName":"SeriesName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","XValue":"XValue","XValueScript":"XValueScript","YValue":"YValue","YValueScript":"YValueScript"}}],"IgbCalloutLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutLayer()":"IgbCalloutLayer()","IgbCalloutLayer":"IgbCalloutLayer()","AllowedPositions":"AllowedPositions","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutVisibilityMode":"AutoCalloutVisibilityMode","CalloutBackground":"CalloutBackground","CalloutBadgeBackground":"CalloutBadgeBackground","CalloutBadgeCorner":"CalloutBadgeCorner","CalloutBadgeGap":"CalloutBadgeGap","CalloutBadgeHeight":"CalloutBadgeHeight","CalloutBadgeImageMemberPath":"CalloutBadgeImageMemberPath","CalloutBadgeMatchSeries":"CalloutBadgeMatchSeries","CalloutBadgeOutline":"CalloutBadgeOutline","CalloutBadgeThickness":"CalloutBadgeThickness","CalloutBadgeVisible":"CalloutBadgeVisible","CalloutBadgeWidth":"CalloutBadgeWidth","CalloutCollisionMode":"CalloutCollisionMode","CalloutContentUpdating":"CalloutContentUpdating","CalloutContentUpdatingScript":"CalloutContentUpdatingScript","CalloutCornerRadius":"CalloutCornerRadius","CalloutDarkTextColor":"CalloutDarkTextColor","CalloutExpandsAxisBufferEnabled":"CalloutExpandsAxisBufferEnabled","CalloutExpandsAxisBufferMaxHeight":"CalloutExpandsAxisBufferMaxHeight","CalloutExpandsAxisBufferMaxWidth":"CalloutExpandsAxisBufferMaxWidth","CalloutExpandsAxisBufferMinHeight":"CalloutExpandsAxisBufferMinHeight","CalloutExpandsAxisBufferMinWidth":"CalloutExpandsAxisBufferMinWidth","CalloutExpandsAxisBufferOnInitialVisibility":"CalloutExpandsAxisBufferOnInitialVisibility","CalloutExpandsAxisBufferOnlyWhenVisible":"CalloutExpandsAxisBufferOnlyWhenVisible","CalloutInterpolatedValuePrecision":"CalloutInterpolatedValuePrecision","CalloutLabelUpdating":"CalloutLabelUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLeaderBrush":"CalloutLeaderBrush","CalloutLightTextColor":"CalloutLightTextColor","CalloutOutline":"CalloutOutline","CalloutPaddingBottom":"CalloutPaddingBottom","CalloutPaddingLeft":"CalloutPaddingLeft","CalloutPaddingRight":"CalloutPaddingRight","CalloutPaddingTop":"CalloutPaddingTop","CalloutPositionPadding":"CalloutPositionPadding","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutSeriesSelecting":"CalloutSeriesSelecting","CalloutSeriesSelectingScript":"CalloutSeriesSelectingScript","CalloutStrokeThickness":"CalloutStrokeThickness","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutSuspendedWhenShiftingToVisible":"CalloutSuspendedWhenShiftingToVisible","CalloutTextColor":"CalloutTextColor","CollisionChannel":"CollisionChannel","ContentMemberPath":"ContentMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","HighlightedValueLabelMode":"HighlightedValueLabelMode","InvalidateCalloutContent()":"InvalidateCalloutContent()","InvalidateCalloutContent":"InvalidateCalloutContent()","InvalidateCalloutContentAsync()":"InvalidateCalloutContentAsync()","InvalidateCalloutContentAsync":"InvalidateCalloutContentAsync()","IsAutoCalloutBehaviorEnabled":"IsAutoCalloutBehaviorEnabled","IsCalloutOffsettingEnabled":"IsCalloutOffsettingEnabled","IsCustomCalloutRenderStyleEnabled":"IsCustomCalloutRenderStyleEnabled","IsCustomCalloutStyleEnabled":"IsCustomCalloutStyleEnabled","KeyMemberPath":"KeyMemberPath","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelMemberPath":"LabelMemberPath","RecalculateAxisRangeBuffer()":"RecalculateAxisRangeBuffer()","RecalculateAxisRangeBuffer":"RecalculateAxisRangeBuffer()","RecalculateAxisRangeBufferAsync()":"RecalculateAxisRangeBufferAsync()","RecalculateAxisRangeBufferAsync":"RecalculateAxisRangeBufferAsync()","RefreshAxisBufferAndCalloutPositions()":"RefreshAxisBufferAndCalloutPositions()","RefreshAxisBufferAndCalloutPositions":"RefreshAxisBufferAndCalloutPositions()","RefreshAxisBufferAndCalloutPositionsAsync()":"RefreshAxisBufferAndCalloutPositionsAsync()","RefreshAxisBufferAndCalloutPositionsAsync":"RefreshAxisBufferAndCalloutPositionsAsync()","RefreshLabelPositions()":"RefreshLabelPositions()","RefreshLabelPositions":"RefreshLabelPositions()","RefreshLabelPositionsAsync()":"RefreshLabelPositionsAsync()","RefreshLabelPositionsAsync":"RefreshLabelPositionsAsync()","ShouldTruncateOnBoundaryCollisions":"ShouldTruncateOnBoundaryCollisions","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","TextStyle":"TextStyle","Type":"Type","UseAutoContrastingLabelColors":"UseAutoContrastingLabelColors","UseInterpolatedValueForAutoCalloutLabels":"UseInterpolatedValueForAutoCalloutLabels","UseItemColorForFill":"UseItemColorForFill","UseItemColorForOutline":"UseItemColorForOutline","UseSeriesColorForOutline":"UseSeriesColorForOutline","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath"}}],"IgbCalloutLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutLayerModule()":"IgbCalloutLayerModule()","IgbCalloutLayerModule":"IgbCalloutLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCalloutPlacementPositionsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutPlacementPositionsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, CalloutPlacementPositions)":"InsertItem(int, CalloutPlacementPositions)","InsertItem":"InsertItem(int, CalloutPlacementPositions)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, CalloutPlacementPositions)":"SetItem(int, CalloutPlacementPositions)","SetItem":"SetItem(int, CalloutPlacementPositions)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(CalloutPlacementPositions)":"Add(CalloutPlacementPositions)","Add":"Add(CalloutPlacementPositions)","Clear()":"Clear()","Clear":"Clear()","CopyTo(CalloutPlacementPositions[], int)":"CopyTo(CalloutPlacementPositions[], int)","CopyTo":"CopyTo(CalloutPlacementPositions[], int)","Contains(CalloutPlacementPositions)":"Contains(CalloutPlacementPositions)","Contains":"Contains(CalloutPlacementPositions)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(CalloutPlacementPositions)":"IndexOf(CalloutPlacementPositions)","IndexOf":"IndexOf(CalloutPlacementPositions)","Insert(int, CalloutPlacementPositions)":"Insert(int, CalloutPlacementPositions)","Insert":"Insert(int, CalloutPlacementPositions)","Remove(CalloutPlacementPositions)":"Remove(CalloutPlacementPositions)","Remove":"Remove(CalloutPlacementPositions)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutPlacementPositionsCollection(object, string)":"IgbCalloutPlacementPositionsCollection(object, string)","IgbCalloutPlacementPositionsCollection":"IgbCalloutPlacementPositionsCollection(object, string)"}}],"IgbCalloutRenderStyleUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutRenderStyleUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutRenderStyleUpdatingEventArgs()":"IgbCalloutRenderStyleUpdatingEventArgs()","IgbCalloutRenderStyleUpdatingEventArgs":"IgbCalloutRenderStyleUpdatingEventArgs()","ActualPosition":"ActualPosition","Background":"Background","BackgroundCorner":"BackgroundCorner","BadgeBackground":"BadgeBackground","BadgeImage":"BadgeImage","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Height":"Height","Item":"Item","ItemScript":"ItemScript","LabelPositionX":"LabelPositionX","LabelPositionY":"LabelPositionY","LeaderBrush":"LeaderBrush","Outline":"Outline","Series":"Series","StrokeThickness":"StrokeThickness","TargetPositionX":"TargetPositionX","TargetPositionY":"TargetPositionY","TextColor":"TextColor","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width","XValue":"XValue","XValueScript":"XValueScript","YValue":"YValue","YValueScript":"YValueScript"}}],"IgbCalloutSeriesSelectingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutSeriesSelectingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutSeriesSelectingEventArgs()":"IgbCalloutSeriesSelectingEventArgs()","IgbCalloutSeriesSelectingEventArgs":"IgbCalloutSeriesSelectingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Series":"Series","SeriesName":"SeriesName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","XValue":"XValue","XValueScript":"XValueScript","YValue":"YValue","YValueScript":"YValueScript"}}],"IgbCalloutStyleUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCalloutStyleUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCalloutStyleUpdatingEventArgs()":"IgbCalloutStyleUpdatingEventArgs()","IgbCalloutStyleUpdatingEventArgs":"IgbCalloutStyleUpdatingEventArgs()","BacgkroundPaddingBottom":"BacgkroundPaddingBottom","BacgkroundPaddingLeft":"BacgkroundPaddingLeft","BacgkroundPaddingRight":"BacgkroundPaddingRight","BacgkroundPaddingTop":"BacgkroundPaddingTop","Background":"Background","BackgroundCorner":"BackgroundCorner","BadgeBackground":"BadgeBackground","BadgeCorner":"BadgeCorner","BadgeGap":"BadgeGap","BadgeHeight":"BadgeHeight","BadgeImage":"BadgeImage","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeVisible":"BadgeVisible","BadgeWidth":"BadgeWidth","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","LeaderBrush":"LeaderBrush","Outline":"Outline","Series":"Series","StrokeThickness":"StrokeThickness","TextColor":"TextColor","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","XValue":"XValue","XValueScript":"XValueScript","YValue":"YValue","YValueScript":"YValueScript"}}],"IgbCancelableBrowserEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancelableBrowserEventArgs","k":"class","s":"classes","m":{"Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancelableBrowserEventArgs()":"IgbCancelableBrowserEventArgs()","IgbCancelableBrowserEventArgs":"IgbCancelableBrowserEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCancelableBrowserEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancelableBrowserEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancelableBrowserEventArgsDetail()":"IgbCancelableBrowserEventArgsDetail()","IgbCancelableBrowserEventArgsDetail":"IgbCancelableBrowserEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCancelableEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancelableEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancelableEventArgs()":"IgbCancelableEventArgs()","IgbCancelableEventArgs":"IgbCancelableEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCancelableEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancelableEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancelableEventArgsDetail()":"IgbCancelableEventArgsDetail()","IgbCancelableEventArgsDetail":"IgbCancelableEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCancelButtonClickEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancelButtonClickEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancelButtonClickEventArgs()":"IgbCancelButtonClickEventArgs()","IgbCancelButtonClickEventArgs":"IgbCancelButtonClickEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCancelEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancelEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancelEventArgs()":"IgbCancelEventArgs()","IgbCancelEventArgs":"IgbCancelEventArgs()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCancellingMultiScaleImageEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCancellingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCancellingMultiScaleImageEventArgs()":"IgbCancellingMultiScaleImageEventArgs()","IgbCancellingMultiScaleImageEventArgs":"IgbCancellingMultiScaleImageEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Uri":"Uri"}}],"IgbCaptureImageSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCaptureImageSettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCaptureImageSettings()":"IgbCaptureImageSettings()","IgbCaptureImageSettings":"IgbCaptureImageSettings()","AddToClipboard":"AddToClipboard","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Format":"Format","Type":"Type"}}],"IgbCard":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCard","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCard()":"IgbCard()","IgbCard":"IgbCard()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Elevated":"Elevated","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCard","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCard()":"IgbCard()","IgbCard":"IgbCard()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Elevated":"Elevated","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCardActions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardActions","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardActions()":"IgbCardActions()","IgbCardActions":"IgbCardActions()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Orientation":"Orientation","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardActions","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardActions()":"IgbCardActions()","IgbCardActions":"IgbCardActions()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Orientation":"Orientation","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCardActionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardActionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardActionsModule()":"IgbCardActionsModule()","IgbCardActionsModule":"IgbCardActionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardActionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardActionsModule()":"IgbCardActionsModule()","IgbCardActionsModule":"IgbCardActionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCardContent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardContent","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardContent()":"IgbCardContent()","IgbCardContent":"IgbCardContent()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardContent","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardContent()":"IgbCardContent()","IgbCardContent":"IgbCardContent()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCardContentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardContentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardContentModule()":"IgbCardContentModule()","IgbCardContentModule":"IgbCardContentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardContentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardContentModule()":"IgbCardContentModule()","IgbCardContentModule":"IgbCardContentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCardHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardHeader()":"IgbCardHeader()","IgbCardHeader":"IgbCardHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardHeader()":"IgbCardHeader()","IgbCardHeader":"IgbCardHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCardHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardHeaderModule()":"IgbCardHeaderModule()","IgbCardHeaderModule":"IgbCardHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardHeaderModule()":"IgbCardHeaderModule()","IgbCardHeaderModule":"IgbCardHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCardMedia":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardMedia","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardMedia()":"IgbCardMedia()","IgbCardMedia":"IgbCardMedia()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardMedia","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardMedia()":"IgbCardMedia()","IgbCardMedia":"IgbCardMedia()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCardMediaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardMediaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardMediaModule()":"IgbCardMediaModule()","IgbCardMediaModule":"IgbCardMediaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardMediaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardMediaModule()":"IgbCardMediaModule()","IgbCardMediaModule":"IgbCardMediaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCardModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCardModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardModule()":"IgbCardModule()","IgbCardModule":"IgbCardModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCardModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCardModule()":"IgbCardModule()","IgbCardModule":"IgbCardModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCarousel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCarousel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarousel()":"IgbCarousel()","IgbCarousel":"IgbCarousel()","AnimationType":"AnimationType","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisableLoop":"DisableLoop","DisablePauseOnInteraction":"DisablePauseOnInteraction","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrent()":"GetCurrent()","GetCurrent":"GetCurrent()","GetCurrentAsync()":"GetCurrentAsync()","GetCurrentAsync":"GetCurrentAsync()","GetIsPaused()":"GetIsPaused()","GetIsPaused":"GetIsPaused()","GetIsPausedAsync()":"GetIsPausedAsync()","GetIsPausedAsync":"GetIsPausedAsync()","GetIsPlaying()":"GetIsPlaying()","GetIsPlaying":"GetIsPlaying()","GetIsPlayingAsync()":"GetIsPlayingAsync()","GetIsPlayingAsync":"GetIsPlayingAsync()","GetTotal()":"GetTotal()","GetTotal":"GetTotal()","GetTotalAsync()":"GetTotalAsync()","GetTotalAsync":"GetTotalAsync()","HideIndicators":"HideIndicators","HideNavigation":"HideNavigation","IndicatorsLabelFormat":"IndicatorsLabelFormat","IndicatorsOrientation":"IndicatorsOrientation","Interval":"Interval","MaximumIndicatorsCount":"MaximumIndicatorsCount","Next()":"Next()","Next":"Next()","NextAsync()":"NextAsync()","NextAsync":"NextAsync()","Pause()":"Pause()","Pause":"Pause()","PauseAsync()":"PauseAsync()","PauseAsync":"PauseAsync()","Paused":"Paused","PausedScript":"PausedScript","Play()":"Play()","Play":"Play()","PlayAsync()":"PlayAsync()","PlayAsync":"PlayAsync()","Playing":"Playing","PlayingScript":"PlayingScript","Prev()":"Prev()","Prev":"Prev()","PrevAsync()":"PrevAsync()","PrevAsync":"PrevAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select(double, CarouselAnimationDirection?)":"Select(double, CarouselAnimationDirection?)","Select":"Select(double, CarouselAnimationDirection?)","SelectAsync(double, CarouselAnimationDirection?)":"SelectAsync(double, CarouselAnimationDirection?)","SelectAsync":"SelectAsync(double, CarouselAnimationDirection?)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SlideChanged":"SlideChanged","SlideChangedScript":"SlideChangedScript","SlidesLabelFormat":"SlidesLabelFormat","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Vertical":"Vertical"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCarousel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarousel()":"IgbCarousel()","IgbCarousel":"IgbCarousel()","AnimationType":"AnimationType","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisableLoop":"DisableLoop","DisablePauseOnInteraction":"DisablePauseOnInteraction","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrent()":"GetCurrent()","GetCurrent":"GetCurrent()","GetCurrentAsync()":"GetCurrentAsync()","GetCurrentAsync":"GetCurrentAsync()","GetIsPaused()":"GetIsPaused()","GetIsPaused":"GetIsPaused()","GetIsPausedAsync()":"GetIsPausedAsync()","GetIsPausedAsync":"GetIsPausedAsync()","GetIsPlaying()":"GetIsPlaying()","GetIsPlaying":"GetIsPlaying()","GetIsPlayingAsync()":"GetIsPlayingAsync()","GetIsPlayingAsync":"GetIsPlayingAsync()","GetTotal()":"GetTotal()","GetTotal":"GetTotal()","GetTotalAsync()":"GetTotalAsync()","GetTotalAsync":"GetTotalAsync()","HideIndicators":"HideIndicators","HideNavigation":"HideNavigation","IndicatorsLabelFormat":"IndicatorsLabelFormat","IndicatorsOrientation":"IndicatorsOrientation","Interval":"Interval","MaximumIndicatorsCount":"MaximumIndicatorsCount","Next()":"Next()","Next":"Next()","NextAsync()":"NextAsync()","NextAsync":"NextAsync()","Pause()":"Pause()","Pause":"Pause()","PauseAsync()":"PauseAsync()","PauseAsync":"PauseAsync()","Paused":"Paused","PausedScript":"PausedScript","Play()":"Play()","Play":"Play()","PlayAsync()":"PlayAsync()","PlayAsync":"PlayAsync()","Playing":"Playing","PlayingScript":"PlayingScript","Prev()":"Prev()","Prev":"Prev()","PrevAsync()":"PrevAsync()","PrevAsync":"PrevAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select(double, CarouselAnimationDirection)":"Select(double, CarouselAnimationDirection)","Select":"Select(double, CarouselAnimationDirection)","SelectAsync(double, CarouselAnimationDirection)":"SelectAsync(double, CarouselAnimationDirection)","SelectAsync":"SelectAsync(double, CarouselAnimationDirection)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SlideChanged":"SlideChanged","SlideChangedScript":"SlideChangedScript","SlidesLabelFormat":"SlidesLabelFormat","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Vertical":"Vertical"}}],"IgbCarouselIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCarouselIndicator","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselIndicator()":"IgbCarouselIndicator()","IgbCarouselIndicator":"IgbCarouselIndicator()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCarouselIndicator","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselIndicator()":"IgbCarouselIndicator()","IgbCarouselIndicator":"IgbCarouselIndicator()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCarouselIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCarouselIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselIndicatorModule()":"IgbCarouselIndicatorModule()","IgbCarouselIndicatorModule":"IgbCarouselIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCarouselIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselIndicatorModule()":"IgbCarouselIndicatorModule()","IgbCarouselIndicatorModule":"IgbCarouselIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCarouselModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCarouselModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselModule()":"IgbCarouselModule()","IgbCarouselModule":"IgbCarouselModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCarouselModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselModule()":"IgbCarouselModule()","IgbCarouselModule":"IgbCarouselModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCarouselSlide":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCarouselSlide","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselSlide()":"IgbCarouselSlide()","IgbCarouselSlide":"IgbCarouselSlide()","Active":"Active","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCarouselSlide","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselSlide()":"IgbCarouselSlide()","IgbCarouselSlide":"IgbCarouselSlide()","Active":"Active","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCarouselSlideModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCarouselSlideModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselSlideModule()":"IgbCarouselSlideModule()","IgbCarouselSlideModule":"IgbCarouselSlideModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCarouselSlideModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCarouselSlideModule()":"IgbCarouselSlideModule()","IgbCarouselSlideModule":"IgbCarouselSlideModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryAngleAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryAngleAxis","k":"class","s":"classes","m":{"GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryAngleAxis()":"IgbCategoryAngleAxis()","IgbCategoryAngleAxis":"IgbCategoryAngleAxis()","ActualInterval":"ActualInterval","ActualIntervalChanged":"ActualIntervalChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualMinorInterval":"ActualMinorInterval","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisLabelMode":"CompanionAxisLabelMode","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisStartAngleOffset":"CompanionAxisStartAngleOffset","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetScaledAngle(double)":"GetScaledAngle(double)","GetScaledAngle":"GetScaledAngle(double)","GetScaledAngleAsync(double)":"GetScaledAngleAsync(double)","GetScaledAngleAsync":"GetScaledAngleAsync(double)","GetUnscaledAngle(double)":"GetUnscaledAngle(double)","GetUnscaledAngle":"GetUnscaledAngle(double)","GetUnscaledAngleAsync(double)":"GetUnscaledAngleAsync(double)","GetUnscaledAngleAsync":"GetUnscaledAngleAsync(double)","Interval":"Interval","LabelMode":"LabelMode","MinorInterval":"MinorInterval","StartAngleOffset":"StartAngleOffset","Type":"Type"}}],"IgbCategoryAngleAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryAngleAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryAngleAxisModule()":"IgbCategoryAngleAxisModule()","IgbCategoryAngleAxisModule":"IgbCategoryAngleAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryAxisBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryAxisBase","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryAxisBase()":"IgbCategoryAxisBase()","IgbCategoryAxisBase":"IgbCategoryAxisBase()","DataSource":"DataSource","DataSourceScript":"DataSourceScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Gap":"Gap","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","ItemsCount":"ItemsCount","ItemsCountChanged":"ItemsCountChanged","ItemsCountChangedScript":"ItemsCountChangedScript","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","Overlap":"Overlap","Type":"Type","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UseClusteringMode":"UseClusteringMode"}}],"IgbCategoryChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryChart","k":"class","s":"classes","m":{"ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","GetScaledValueXAsync(double)":"GetScaledValueXAsync(double)","GetScaledValueXAsync":"GetScaledValueXAsync(double)","GetScaledValueX(double)":"GetScaledValueX(double)","GetScaledValueX":"GetScaledValueX(double)","GetUnscaledValueXAsync(double)":"GetUnscaledValueXAsync(double)","GetUnscaledValueXAsync":"GetUnscaledValueXAsync(double)","GetUnscaledValueX(double)":"GetUnscaledValueX(double)","GetUnscaledValueX":"GetUnscaledValueX(double)","GetScaledValueYAsync(double)":"GetScaledValueYAsync(double)","GetScaledValueYAsync":"GetScaledValueYAsync(double)","GetScaledValueY(double)":"GetScaledValueY(double)","GetScaledValueY":"GetScaledValueY(double)","GetUnscaledValueYAsync(double)":"GetUnscaledValueYAsync(double)","GetUnscaledValueYAsync":"GetUnscaledValueYAsync(double)","GetUnscaledValueY(double)":"GetUnscaledValueY(double)","GetUnscaledValueY":"GetUnscaledValueY(double)","ParentTypeName":"ParentTypeName","ContentXAxisLabelFormatSpecifiers":"ContentXAxisLabelFormatSpecifiers","ActualXAxisLabelFormatSpecifiers":"ActualXAxisLabelFormatSpecifiers","ContentYAxisLabelFormatSpecifiers":"ContentYAxisLabelFormatSpecifiers","ActualYAxisLabelFormatSpecifiers":"ActualYAxisLabelFormatSpecifiers","XAxisFormatLabel":"XAxisFormatLabel","XAxisFormatLabelScript":"XAxisFormatLabelScript","YAxisFormatLabel":"YAxisFormatLabel","YAxisFormatLabelScript":"YAxisFormatLabelScript","XAxisLabelLeftMargin":"XAxisLabelLeftMargin","XAxisLabelTopMargin":"XAxisLabelTopMargin","XAxisLabelRightMargin":"XAxisLabelRightMargin","XAxisLabelBottomMargin":"XAxisLabelBottomMargin","YAxisLabelLeftMargin":"YAxisLabelLeftMargin","YAxisLabelTopMargin":"YAxisLabelTopMargin","YAxisLabelRightMargin":"YAxisLabelRightMargin","YAxisLabelBottomMargin":"YAxisLabelBottomMargin","XAxisLabelTextColor":"XAxisLabelTextColor","YAxisLabelTextColor":"YAxisLabelTextColor","ActualXAxisLabelTextColor":"ActualXAxisLabelTextColor","ActualYAxisLabelTextColor":"ActualYAxisLabelTextColor","XAxisTitleMargin":"XAxisTitleMargin","YAxisTitleMargin":"YAxisTitleMargin","XAxisTitleLeftMargin":"XAxisTitleLeftMargin","YAxisTitleLeftMargin":"YAxisTitleLeftMargin","XAxisTitleTopMargin":"XAxisTitleTopMargin","YAxisTitleTopMargin":"YAxisTitleTopMargin","XAxisTitleRightMargin":"XAxisTitleRightMargin","YAxisTitleRightMargin":"YAxisTitleRightMargin","XAxisTitleBottomMargin":"XAxisTitleBottomMargin","YAxisTitleBottomMargin":"YAxisTitleBottomMargin","XAxisTitleTextColor":"XAxisTitleTextColor","YAxisTitleTextColor":"YAxisTitleTextColor","XAxisLabelTextStyle":"XAxisLabelTextStyle","YAxisLabelTextStyle":"YAxisLabelTextStyle","XAxisTitleTextStyle":"XAxisTitleTextStyle","YAxisTitleTextStyle":"YAxisTitleTextStyle","XAxisLabel":"XAxisLabel","XAxisLabelScript":"XAxisLabelScript","YAxisLabel":"YAxisLabel","YAxisLabelScript":"YAxisLabelScript","XAxisMajorStroke":"XAxisMajorStroke","YAxisMajorStroke":"YAxisMajorStroke","XAxisMajorStrokeThickness":"XAxisMajorStrokeThickness","YAxisMajorStrokeThickness":"YAxisMajorStrokeThickness","XAxisMinorStrokeThickness":"XAxisMinorStrokeThickness","YAxisMinorStrokeThickness":"YAxisMinorStrokeThickness","XAxisStrip":"XAxisStrip","YAxisStrip":"YAxisStrip","XAxisStroke":"XAxisStroke","YAxisStroke":"YAxisStroke","XAxisStrokeThickness":"XAxisStrokeThickness","YAxisStrokeThickness":"YAxisStrokeThickness","XAxisTickLength":"XAxisTickLength","YAxisTickLength":"YAxisTickLength","XAxisTickStroke":"XAxisTickStroke","YAxisTickStroke":"YAxisTickStroke","XAxisTickStrokeThickness":"XAxisTickStrokeThickness","YAxisTickStrokeThickness":"YAxisTickStrokeThickness","XAxisTitle":"XAxisTitle","YAxisTitle":"YAxisTitle","XAxisMinorStroke":"XAxisMinorStroke","YAxisMinorStroke":"YAxisMinorStroke","XAxisLabelAngle":"XAxisLabelAngle","YAxisLabelAngle":"YAxisLabelAngle","XAxisExtent":"XAxisExtent","YAxisExtent":"YAxisExtent","XAxisMaximumExtent":"XAxisMaximumExtent","YAxisMaximumExtent":"YAxisMaximumExtent","XAxisMaximumExtentPercentage":"XAxisMaximumExtentPercentage","YAxisMaximumExtentPercentage":"YAxisMaximumExtentPercentage","XAxisTitleAngle":"XAxisTitleAngle","YAxisTitleAngle":"YAxisTitleAngle","XAxisInverted":"XAxisInverted","YAxisInverted":"YAxisInverted","XAxisTitleAlignment":"XAxisTitleAlignment","YAxisTitleAlignment":"YAxisTitleAlignment","XAxisLabelHorizontalAlignment":"XAxisLabelHorizontalAlignment","YAxisLabelHorizontalAlignment":"YAxisLabelHorizontalAlignment","XAxisLabelVerticalAlignment":"XAxisLabelVerticalAlignment","YAxisLabelVerticalAlignment":"YAxisLabelVerticalAlignment","XAxisLabelVisibility":"XAxisLabelVisibility","YAxisLabelVisibility":"YAxisLabelVisibility","YAxisLabelLocation":"YAxisLabelLocation","XAxisLabelLocation":"XAxisLabelLocation","XAxisLabelFormat":"XAxisLabelFormat","XAxisLabelFormatSpecifiers":"XAxisLabelFormatSpecifiers","YAxisLabelFormat":"YAxisLabelFormat","YAxisLabelFormatSpecifiers":"YAxisLabelFormatSpecifiers","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","DefaultEventBehavior":"DefaultEventBehavior","PixelScalingRatio":"PixelScalingRatio","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleTextColor":"SubtitleTextColor","TitleTextColor":"TitleTextColor","LeftMargin":"LeftMargin","TopMargin":"TopMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","HighlightingTransitionDuration":"HighlightingTransitionDuration","SelectionTransitionDuration":"SelectionTransitionDuration","FocusTransitionDuration":"FocusTransitionDuration","SubtitleTextStyle":"SubtitleTextStyle","TitleTextStyle":"TitleTextStyle","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","SortDescriptions":"SortDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupDescriptions":"GroupDescriptions","FilterExpressions":"FilterExpressions","HighlightFilterExpressions":"HighlightFilterExpressions","SummaryDescriptions":"SummaryDescriptions","SelectionMode":"SelectionMode","FocusMode":"FocusMode","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","SelectionBehavior":"SelectionBehavior","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","InitialSortDescriptions":"InitialSortDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialFilterExpressions":"InitialFilterExpressions","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSummaryDescriptions":"InitialSummaryDescriptions","InitialSorts":"InitialSorts","GroupSorts":"GroupSorts","InitialGroups":"InitialGroups","InitialFilter":"InitialFilter","InitialHighlightFilter":"InitialHighlightFilter","InitialSummaries":"InitialSummaries","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","IncludedProperties":"IncludedProperties","ExcludedProperties":"ExcludedProperties","Brushes":"Brushes","Outlines":"Outlines","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","Legend":"Legend","LegendScript":"LegendScript","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","LegendItemVisibility":"LegendItemVisibility","WindowRect":"WindowRect","ChartTitle":"ChartTitle","Subtitle":"Subtitle","TitleAlignment":"TitleAlignment","SubtitleAlignment":"SubtitleAlignment","UnknownValuePlotting":"UnknownValuePlotting","Resolution":"Resolution","Thickness":"Thickness","OutlineMode":"OutlineMode","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerMaxCount":"MarkerMaxCount","AreaFillOpacity":"AreaFillOpacity","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineThickness":"TrendLineThickness","TrendLineTypes":"TrendLineTypes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginBottom":"PlotAreaMarginBottom","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","HighlightingMode":"HighlightingMode","HighlightingBehavior":"HighlightingBehavior","HighlightingFadeOpacity":"HighlightingFadeOpacity","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","TrendLinePeriod":"TrendLinePeriod","ToolTipType":"ToolTipType","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsSnapToData":"CrosshairsSnapToData","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","AutoCalloutsVisible":"AutoCalloutsVisible","CalloutsVisible":"CalloutsVisible","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","CalloutCollisionMode":"CalloutCollisionMode","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsBackground":"CalloutsBackground","CalloutsOutline":"CalloutsOutline","CalloutsTextColor":"CalloutsTextColor","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","SeriesAddedScript":"SeriesAddedScript","SeriesAdded":"SeriesAdded","SeriesRemovedScript":"SeriesRemovedScript","SeriesRemoved":"SeriesRemoved","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerDown":"SeriesPointerDown","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesPointerUp":"SeriesPointerUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","PlotAreaPointerUp":"PlotAreaPointerUp","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLabelUpdating":"CalloutLabelUpdating","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryChart()":"IgbCategoryChart()","IgbCategoryChart":"IgbCategoryChart()","AutoExpandMarginExtraPadding":"AutoExpandMarginExtraPadding","AutoExpandMarginMaximumValue":"AutoExpandMarginMaximumValue","AutoMarginAndAngleUpdateMode":"AutoMarginAndAngleUpdateMode","ChartType":"ChartType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentXAxisActualMaximum()":"GetCurrentXAxisActualMaximum()","GetCurrentXAxisActualMaximum":"GetCurrentXAxisActualMaximum()","GetCurrentXAxisActualMaximumAsync()":"GetCurrentXAxisActualMaximumAsync()","GetCurrentXAxisActualMaximumAsync":"GetCurrentXAxisActualMaximumAsync()","GetCurrentXAxisActualMinimum()":"GetCurrentXAxisActualMinimum()","GetCurrentXAxisActualMinimum":"GetCurrentXAxisActualMinimum()","GetCurrentXAxisActualMinimumAsync()":"GetCurrentXAxisActualMinimumAsync()","GetCurrentXAxisActualMinimumAsync":"GetCurrentXAxisActualMinimumAsync()","GetCurrentYAxisActualMaximum()":"GetCurrentYAxisActualMaximum()","GetCurrentYAxisActualMaximum":"GetCurrentYAxisActualMaximum()","GetCurrentYAxisActualMaximumAsync()":"GetCurrentYAxisActualMaximumAsync()","GetCurrentYAxisActualMaximumAsync":"GetCurrentYAxisActualMaximumAsync()","GetCurrentYAxisActualMinimum()":"GetCurrentYAxisActualMinimum()","GetCurrentYAxisActualMinimum":"GetCurrentYAxisActualMinimum()","GetCurrentYAxisActualMinimumAsync()":"GetCurrentYAxisActualMinimumAsync()","GetCurrentYAxisActualMinimumAsync":"GetCurrentYAxisActualMinimumAsync()","IsCategoryHighlightingEnabled":"IsCategoryHighlightingEnabled","IsItemHighlightingEnabled":"IsItemHighlightingEnabled","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","IsTransitionInEnabled":"IsTransitionInEnabled","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","NeedsDynamicContent":"NeedsDynamicContent","NegativeBrushes":"NegativeBrushes","NegativeOutlines":"NegativeOutlines","RecalculateMarginAutoExpansion()":"RecalculateMarginAutoExpansion()","RecalculateMarginAutoExpansion":"RecalculateMarginAutoExpansion()","RecalculateMarginAutoExpansionAsync()":"RecalculateMarginAutoExpansionAsync()","RecalculateMarginAutoExpansionAsync":"RecalculateMarginAutoExpansionAsync()","ShouldAutoExpandMarginForInitialLabels":"ShouldAutoExpandMarginForInitialLabels","ShouldConsiderAutoRotationForInitialLabels":"ShouldConsiderAutoRotationForInitialLabels","TooltipTemplate":"TooltipTemplate","TransitionInDuration":"TransitionInDuration","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionInMode":"TransitionInMode","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutDuration":"TransitionOutDuration","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","Type":"Type","XAxisEnhancedIntervalPreferMoreCategoryLabels":"XAxisEnhancedIntervalPreferMoreCategoryLabels","XAxisGap":"XAxisGap","XAxisInterval":"XAxisInterval","XAxisMaximumGap":"XAxisMaximumGap","XAxisMinimumGapSize":"XAxisMinimumGapSize","XAxisMinorInterval":"XAxisMinorInterval","XAxisOverlap":"XAxisOverlap","XAxisZoomMaximumCategoryRange":"XAxisZoomMaximumCategoryRange","XAxisZoomMaximumItemSpan":"XAxisZoomMaximumItemSpan","XAxisZoomToCategoryRange":"XAxisZoomToCategoryRange","XAxisZoomToCategoryStart":"XAxisZoomToCategoryStart","XAxisZoomToItemSpan":"XAxisZoomToItemSpan","YAxisAbbreviateLargeNumbers":"YAxisAbbreviateLargeNumbers","YAxisAutoRangeBufferMode":"YAxisAutoRangeBufferMode","YAxisEnhancedIntervalPreferMoreCategoryLabels":"YAxisEnhancedIntervalPreferMoreCategoryLabels","YAxisFavorLabellingScaleEnd":"YAxisFavorLabellingScaleEnd","YAxisInterval":"YAxisInterval","YAxisIsLogarithmic":"YAxisIsLogarithmic","YAxisLogarithmBase":"YAxisLogarithmBase","YAxisMaximumValue":"YAxisMaximumValue","YAxisMinimumValue":"YAxisMinimumValue","YAxisMinorInterval":"YAxisMinorInterval"}}],"IgbCategoryChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryChartCoreModule()":"IgbCategoryChartCoreModule()","IgbCategoryChartCoreModule":"IgbCategoryChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryChartModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryChartModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryChartModule()":"IgbCategoryChartModule()","IgbCategoryChartModule":"IgbCategoryChartModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryChartToolbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryChartToolbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryChartToolbarModule()":"IgbCategoryChartToolbarModule()","IgbCategoryChartToolbarModule":"IgbCategoryChartToolbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryDateTimeXAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryDateTimeXAxis","k":"class","s":"classes","m":{"GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetIndexClosestToUnscaledValueAsync(double)":"GetIndexClosestToUnscaledValueAsync(double)","GetIndexClosestToUnscaledValueAsync":"GetIndexClosestToUnscaledValueAsync(double)","GetIndexClosestToUnscaledValue(double)":"GetIndexClosestToUnscaledValue(double)","GetIndexClosestToUnscaledValue":"GetIndexClosestToUnscaledValue(double)","NotifyDataChangedAsync()":"NotifyDataChangedAsync()","NotifyDataChangedAsync":"NotifyDataChangedAsync()","NotifyDataChanged()":"NotifyDataChanged()","NotifyDataChanged":"NotifyDataChanged()","DateTimeMemberPath":"DateTimeMemberPath","IsDataPreSorted":"IsDataPreSorted","ActualMinimumValue":"ActualMinimumValue","ActualMaximumValue":"ActualMaximumValue","MinimumValue":"MinimumValue","MaximumValue":"MaximumValue","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryDateTimeXAxis()":"IgbCategoryDateTimeXAxis()","IgbCategoryDateTimeXAxis":"IgbCategoryDateTimeXAxis()","ActualInterval":"ActualInterval","ActualIntervalChanged":"ActualIntervalChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualMinorInterval":"ActualMinorInterval","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","Interval":"Interval","MinorInterval":"MinorInterval","ScrollIntoView(DateTime, DateTime)":"ScrollIntoView(DateTime, DateTime)","ScrollIntoView":"ScrollIntoView(DateTime, DateTime)","ScrollIntoViewAsync(DateTime, DateTime)":"ScrollIntoViewAsync(DateTime, DateTime)","ScrollIntoViewAsync":"ScrollIntoViewAsync(DateTime, DateTime)","Type":"Type","UnevenlySpacedLabels":"UnevenlySpacedLabels"}}],"IgbCategoryDateTimeXAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryDateTimeXAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryDateTimeXAxisModule()":"IgbCategoryDateTimeXAxisModule()","IgbCategoryDateTimeXAxisModule":"IgbCategoryDateTimeXAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryHighlightLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryHighlightLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryHighlightLayer()":"IgbCategoryHighlightLayer()","IgbCategoryHighlightLayer":"IgbCategoryHighlightLayer()","BandHighlightWidth":"BandHighlightWidth","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetAxis":"TargetAxis","TargetAxisName":"TargetAxisName","TargetAxisScript":"TargetAxisScript","Type":"Type","UseInterpolation":"UseInterpolation"}}],"IgbCategoryHighlightLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryHighlightLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryHighlightLayerModule()":"IgbCategoryHighlightLayerModule()","IgbCategoryHighlightLayerModule":"IgbCategoryHighlightLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryItemHighlightLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryItemHighlightLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryItemHighlightLayer()":"IgbCategoryItemHighlightLayer()","IgbCategoryItemHighlightLayer":"IgbCategoryItemHighlightLayer()","BandHighlightWidth":"BandHighlightWidth","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HighlightType":"HighlightType","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerType":"MarkerType","SkipUnknownValues":"SkipUnknownValues","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","Type":"Type","UseInterpolation":"UseInterpolation"}}],"IgbCategoryItemHighlightLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryItemHighlightLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryItemHighlightLayerModule()":"IgbCategoryItemHighlightLayerModule()","IgbCategoryItemHighlightLayerModule":"IgbCategoryItemHighlightLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategorySeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategorySeries","k":"class","s":"classes","m":{"MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategorySeries()":"IgbCategorySeries()","IgbCategorySeries":"IgbCategorySeries()","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","CategoryCollisionMode":"CategoryCollisionMode","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsTransitionInEnabled":"IsTransitionInEnabled","TransitionInMode":"TransitionInMode","Type":"Type","UseHighMarkerFidelity":"UseHighMarkerFidelity"}}],"IgbCategoryToolTipLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryToolTipLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryToolTipLayer()":"IgbCategoryToolTipLayer()","IgbCategoryToolTipLayer":"IgbCategoryToolTipLayer()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","TargetAxis":"TargetAxis","TargetAxisName":"TargetAxisName","TargetAxisScript":"TargetAxisScript","ToolTipBackground":"ToolTipBackground","ToolTipBorderBrush":"ToolTipBorderBrush","ToolTipBorderThickness":"ToolTipBorderThickness","ToolTipPosition":"ToolTipPosition","Type":"Type","UseInterpolation":"UseInterpolation"}}],"IgbCategoryToolTipLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryToolTipLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryToolTipLayerModule()":"IgbCategoryToolTipLayerModule()","IgbCategoryToolTipLayerModule":"IgbCategoryToolTipLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryXAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryXAxis","k":"class","s":"classes","m":{"GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryXAxis()":"IgbCategoryXAxis()","IgbCategoryXAxis":"IgbCategoryXAxis()","ActualInterval":"ActualInterval","ActualIntervalChanged":"ActualIntervalChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualMinorInterval":"ActualMinorInterval","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetWindowZoomFromCategories(double)":"GetWindowZoomFromCategories(double)","GetWindowZoomFromCategories":"GetWindowZoomFromCategories(double)","GetWindowZoomFromCategoriesAsync(double)":"GetWindowZoomFromCategoriesAsync(double)","GetWindowZoomFromCategoriesAsync":"GetWindowZoomFromCategoriesAsync(double)","GetWindowZoomFromItemSpan(double)":"GetWindowZoomFromItemSpan(double)","GetWindowZoomFromItemSpan":"GetWindowZoomFromItemSpan(double)","GetWindowZoomFromItemSpanAsync(double)":"GetWindowZoomFromItemSpanAsync(double)","GetWindowZoomFromItemSpanAsync":"GetWindowZoomFromItemSpanAsync(double)","Interval":"Interval","MinorInterval":"MinorInterval","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollRangeIntoView(double, double)":"ScrollRangeIntoView(double, double)","ScrollRangeIntoView":"ScrollRangeIntoView(double, double)","ScrollRangeIntoViewAsync(double, double)":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoViewAsync":"ScrollRangeIntoViewAsync(double, double)","Type":"Type","ZoomMaximumCategoryRange":"ZoomMaximumCategoryRange","ZoomMaximumItemSpan":"ZoomMaximumItemSpan","ZoomToCategoryRange":"ZoomToCategoryRange","ZoomToCategoryStart":"ZoomToCategoryStart","ZoomToItemSpan":"ZoomToItemSpan"}}],"IgbCategoryXAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryXAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryXAxisModule()":"IgbCategoryXAxisModule()","IgbCategoryXAxisModule":"IgbCategoryXAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCategoryYAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryYAxis","k":"class","s":"classes","m":{"GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryYAxis()":"IgbCategoryYAxis()","IgbCategoryYAxis":"IgbCategoryYAxis()","ActualInterval":"ActualInterval","ActualIntervalChanged":"ActualIntervalChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualMinorInterval":"ActualMinorInterval","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetWindowZoomFromCategories(double)":"GetWindowZoomFromCategories(double)","GetWindowZoomFromCategories":"GetWindowZoomFromCategories(double)","GetWindowZoomFromCategoriesAsync(double)":"GetWindowZoomFromCategoriesAsync(double)","GetWindowZoomFromCategoriesAsync":"GetWindowZoomFromCategoriesAsync(double)","GetWindowZoomFromItemSpan(double)":"GetWindowZoomFromItemSpan(double)","GetWindowZoomFromItemSpan":"GetWindowZoomFromItemSpan(double)","GetWindowZoomFromItemSpanAsync(double)":"GetWindowZoomFromItemSpanAsync(double)","GetWindowZoomFromItemSpanAsync":"GetWindowZoomFromItemSpanAsync(double)","Interval":"Interval","MinorInterval":"MinorInterval","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollRangeIntoView(double, double)":"ScrollRangeIntoView(double, double)","ScrollRangeIntoView":"ScrollRangeIntoView(double, double)","ScrollRangeIntoViewAsync(double, double)":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoViewAsync":"ScrollRangeIntoViewAsync(double, double)","Type":"Type","ZoomMaximumCategoryRange":"ZoomMaximumCategoryRange","ZoomMaximumItemSpan":"ZoomMaximumItemSpan","ZoomToCategoryRange":"ZoomToCategoryRange","ZoomToCategoryStart":"ZoomToCategoryStart","ZoomToItemSpan":"ZoomToItemSpan"}}],"IgbCategoryYAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCategoryYAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCategoryYAxisModule()":"IgbCategoryYAxisModule()","IgbCategoryYAxisModule":"IgbCategoryYAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellInfo()":"IgbCellInfo()","IgbCellInfo":"IgbCellInfo()","ActionManager":"ActionManager","ActivationBorder":"ActivationBorder","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationStatus":"ActivationStatus","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActualBorderBottomWidth":"ActualBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualContentOpacity":"ActualContentOpacity","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","ActualOpacity":"ActualOpacity","ActualPaddingBottom":"ActualPaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingRight":"ActualPaddingRight","ActualPaddingTop":"ActualPaddingTop","ActualTextColor":"ActualTextColor","Background":"Background","Border":"Border","BorderBottomWidth":"BorderBottomWidth","BorderLeftWidth":"BorderLeftWidth","BorderRightWidth":"BorderRightWidth","BorderTopWidth":"BorderTopWidth","ContentOpacity":"ContentOpacity","DataRow":"DataRow","DeletedTextColor":"DeletedTextColor","EditError":"EditError","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","EditID":"EditID","EditOpacity":"EditOpacity","ErrorBorder":"ErrorBorder","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","FilterRowBackground":"FilterRowBackground","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","Height":"Height","HorizontalAlignment":"HorizontalAlignment","HoverBackground":"HoverBackground","HoverStatus":"HoverStatus","HoverTextColor":"HoverTextColor","Indent":"Indent","IsBorderDirty":"IsBorderDirty","IsCollapsable":"IsCollapsable","IsContentDirty":"IsContentDirty","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsDataDirty":"IsDataDirty","IsDeleted":"IsDeleted","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsEdited":"IsEdited","IsExpanded":"IsExpanded","IsFilterRow":"IsFilterRow","IsHitTestVisible":"IsHitTestVisible","IsHoverable":"IsHoverable","IsInEditMode":"IsInEditMode","IsLastStickyRow":"IsLastStickyRow","IsLayerDirty":"IsLayerDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","IsPositionDirty":"IsPositionDirty","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsSelected":"IsSelected","IsSizeDirty":"IsSizeDirty","IsStateDirty":"IsStateDirty","LastStickyRowBackground":"LastStickyRowBackground","LineBreakMode":"LineBreakMode","Opacity":"Opacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","Pinned":"Pinned","PinnedRowBackground":"PinnedRowBackground","PinnedRowOpacity":"PinnedRowOpacity","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RenderValue":"RenderValue","RowItem":"RowItem","RowItemScript":"RowItemScript","SelectedBackground":"SelectedBackground","SelectedStatus":"SelectedStatus","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SnappedX":"SnappedX","SnappedY":"SnappedY","SortDirection":"SortDirection","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","StyleKey":"StyleKey","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconFill":"SuffixIconFill","SuffixIconName":"SuffixIconName","SuffixIconStroke":"SuffixIconStroke","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixMargin":"SuffixMargin","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","TextColor":"TextColor","TextDecoration":"TextDecoration","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UserFormattedValue":"UserFormattedValue","VerticalAlignment":"VerticalAlignment","VirtualizationPercentage":"VirtualizationPercentage","Width":"Width","X":"X","Y":"Y"}}],"IgbCellKey":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellKey","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellKey()":"IgbCellKey()","IgbCellKey":"IgbCellKey()","ColumnUniqueKey":"ColumnUniqueKey","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PrimaryKey":"PrimaryKey","ResolvedColumn":"ResolvedColumn","RowItem":"RowItem","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCellKeyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellKeyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellKeyModule()":"IgbCellKeyModule()","IgbCellKeyModule":"IgbCellKeyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCellPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellPosition","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellPosition()":"IgbCellPosition()","IgbCellPosition":"IgbCellPosition()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","RowIndex":"RowIndex","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","VisibleColumnIndex":"VisibleColumnIndex"}}],"IgbCellRange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellRange()":"IgbCellRange()","IgbCellRange":"IgbCellRange()","EndColumn":"EndColumn","EndRow":"EndRow","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","StartColumn":"StartColumn","StartRow":"StartRow","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCellRangeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellRangeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellRangeModule()":"IgbCellRangeModule()","IgbCellRangeModule":"IgbCellRangeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCellStyleRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellStyleRequestedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellStyleRequestedEventArgs()":"IgbCellStyleRequestedEventArgs()","IgbCellStyleRequestedEventArgs":"IgbCellStyleRequestedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ResolvedValue":"ResolvedValue","ResolvedValueScript":"ResolvedValueScript","RowNumber":"RowNumber","StyleKey":"StyleKey","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCellTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellTemplateContext()":"IgbCellTemplateContext()","IgbCellTemplateContext":"IgbCellTemplateContext()","AdditionalTemplateContext":"AdditionalTemplateContext","Cell":"Cell","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCellType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCellType","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCellType()":"IgbCellType()","IgbCellType":"IgbCellType()","Active":"Active","CalculateSizeToFit(object)":"CalculateSizeToFit(object)","CalculateSizeToFit":"CalculateSizeToFit(object)","CalculateSizeToFitAsync(object)":"CalculateSizeToFitAsync(object)","CalculateSizeToFitAsync":"CalculateSizeToFitAsync(object)","CellID":"CellID","Column":"Column","EditMode":"EditMode","EditValue":"EditValue","Editable":"Editable","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","Id":"Id","Readonly":"Readonly","Selected":"Selected","SetEditMode(bool)":"SetEditMode(bool)","SetEditMode":"SetEditMode(bool)","SetEditModeAsync(bool)":"SetEditModeAsync(bool)","SetEditModeAsync":"SetEditModeAsync(bool)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Title":"Title","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Update(object)":"Update(object)","Update":"Update(object)","UpdateAsync(object)":"UpdateAsync(object)","UpdateAsync":"UpdateAsync(object)","Validation":"Validation","Value":"Value","VisibleColumnIndex":"VisibleColumnIndex","Width":"Width"}}],"IgbChaikinOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChaikinOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChaikinOscillatorIndicator()":"IgbChaikinOscillatorIndicator()","IgbChaikinOscillatorIndicator":"IgbChaikinOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPeriod":"LongPeriod","ShortPeriod":"ShortPeriod","Type":"Type"}}],"IgbChaikinOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChaikinOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChaikinOscillatorIndicatorModule()":"IgbChaikinOscillatorIndicatorModule()","IgbChaikinOscillatorIndicatorModule":"IgbChaikinOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbChaikinVolatilityIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChaikinVolatilityIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChaikinVolatilityIndicator()":"IgbChaikinVolatilityIndicator()","IgbChaikinVolatilityIndicator":"IgbChaikinVolatilityIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbChaikinVolatilityIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChaikinVolatilityIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChaikinVolatilityIndicatorModule()":"IgbChaikinVolatilityIndicatorModule()","IgbChaikinVolatilityIndicatorModule":"IgbChaikinVolatilityIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbChartCursorEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartCursorEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartCursorEventArgs()":"IgbChartCursorEventArgs()","IgbChartCursorEventArgs":"IgbChartCursorEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Series":"Series","SeriesViewer":"SeriesViewer","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartGroupDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartGroupDescription","k":"class","s":"classes","m":{"Field":"Field","SortDirection":"SortDirection","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartGroupDescription()":"IgbChartGroupDescription()","IgbChartGroupDescription":"IgbChartGroupDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartGroupDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartGroupDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbChartGroupDescription)":"InsertItem(int, IgbChartGroupDescription)","InsertItem":"InsertItem(int, IgbChartGroupDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbChartGroupDescription)":"SetItem(int, IgbChartGroupDescription)","SetItem":"SetItem(int, IgbChartGroupDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbChartGroupDescription)":"Add(IgbChartGroupDescription)","Add":"Add(IgbChartGroupDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbChartGroupDescription[], int)":"CopyTo(IgbChartGroupDescription[], int)","CopyTo":"CopyTo(IgbChartGroupDescription[], int)","Contains(IgbChartGroupDescription)":"Contains(IgbChartGroupDescription)","Contains":"Contains(IgbChartGroupDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbChartGroupDescription)":"IndexOf(IgbChartGroupDescription)","IndexOf":"IndexOf(IgbChartGroupDescription)","Insert(int, IgbChartGroupDescription)":"Insert(int, IgbChartGroupDescription)","Insert":"Insert(int, IgbChartGroupDescription)","Remove(IgbChartGroupDescription)":"Remove(IgbChartGroupDescription)","Remove":"Remove(IgbChartGroupDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartGroupDescriptionCollection(object, string)":"IgbChartGroupDescriptionCollection(object, string)","IgbChartGroupDescriptionCollection":"IgbChartGroupDescriptionCollection(object, string)"}}],"IgbChartGroupDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartGroupDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartGroupDescriptionModule()":"IgbChartGroupDescriptionModule()","IgbChartGroupDescriptionModule":"IgbChartGroupDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbChartMouseEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartMouseEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartMouseEventArgs()":"IgbChartMouseEventArgs()","IgbChartMouseEventArgs":"IgbChartMouseEventArgs()","Chart":"Chart","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetPosition(object)":"GetPosition(object)","GetPosition":"GetPosition(object)","GetPositionAsync(object)":"GetPositionAsync(object)","GetPositionAsync":"GetPositionAsync(object)","Item":"Item","OriginalSource":"OriginalSource","OriginalSourceScript":"OriginalSourceScript","PlotAreaPosition":"PlotAreaPosition","Series":"Series","SeriesScript":"SeriesScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WorldPosition":"WorldPosition"}}],"IgbChartResizeIdleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartResizeIdleEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartResizeIdleEventArgs()":"IgbChartResizeIdleEventArgs()","IgbChartResizeIdleEventArgs":"IgbChartResizeIdleEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartSelectedItemCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSelectedItemCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbChartSelection)":"InsertItem(int, IgbChartSelection)","InsertItem":"InsertItem(int, IgbChartSelection)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbChartSelection)":"SetItem(int, IgbChartSelection)","SetItem":"SetItem(int, IgbChartSelection)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbChartSelection)":"Add(IgbChartSelection)","Add":"Add(IgbChartSelection)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbChartSelection[], int)":"CopyTo(IgbChartSelection[], int)","CopyTo":"CopyTo(IgbChartSelection[], int)","Contains(IgbChartSelection)":"Contains(IgbChartSelection)","Contains":"Contains(IgbChartSelection)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbChartSelection)":"IndexOf(IgbChartSelection)","IndexOf":"IndexOf(IgbChartSelection)","Insert(int, IgbChartSelection)":"Insert(int, IgbChartSelection)","Insert":"Insert(int, IgbChartSelection)","Remove(IgbChartSelection)":"Remove(IgbChartSelection)","Remove":"Remove(IgbChartSelection)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSelectedItemCollection(object, string)":"IgbChartSelectedItemCollection(object, string)","IgbChartSelectedItemCollection":"IgbChartSelectedItemCollection(object, string)"}}],"IgbChartSelection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSelection","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSelection()":"IgbChartSelection()","IgbChartSelection":"IgbChartSelection()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","Matcher":"Matcher","Series":"Series","SeriesScript":"SeriesScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartSelectionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSelectionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSelectionModule()":"IgbChartSelectionModule()","IgbChartSelectionModule":"IgbChartSelectionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbChartSeriesEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSeriesEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSeriesEventArgs()":"IgbChartSeriesEventArgs()","IgbChartSeriesEventArgs":"IgbChartSeriesEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Series":"Series","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartSortDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSortDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSortDescription()":"IgbChartSortDescription()","IgbChartSortDescription":"IgbChartSortDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SortDirection":"SortDirection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartSortDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSortDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbChartSortDescription)":"InsertItem(int, IgbChartSortDescription)","InsertItem":"InsertItem(int, IgbChartSortDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbChartSortDescription)":"SetItem(int, IgbChartSortDescription)","SetItem":"SetItem(int, IgbChartSortDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbChartSortDescription)":"Add(IgbChartSortDescription)","Add":"Add(IgbChartSortDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbChartSortDescription[], int)":"CopyTo(IgbChartSortDescription[], int)","CopyTo":"CopyTo(IgbChartSortDescription[], int)","Contains(IgbChartSortDescription)":"Contains(IgbChartSortDescription)","Contains":"Contains(IgbChartSortDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbChartSortDescription)":"IndexOf(IgbChartSortDescription)","IndexOf":"IndexOf(IgbChartSortDescription)","Insert(int, IgbChartSortDescription)":"Insert(int, IgbChartSortDescription)","Insert":"Insert(int, IgbChartSortDescription)","Remove(IgbChartSortDescription)":"Remove(IgbChartSortDescription)","Remove":"Remove(IgbChartSortDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSortDescriptionCollection(object, string)":"IgbChartSortDescriptionCollection(object, string)","IgbChartSortDescriptionCollection":"IgbChartSortDescriptionCollection(object, string)"}}],"IgbChartSortDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSortDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSortDescriptionModule()":"IgbChartSortDescriptionModule()","IgbChartSortDescriptionModule":"IgbChartSortDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbChartSummaryDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSummaryDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSummaryDescription()":"IgbChartSummaryDescription()","IgbChartSummaryDescription":"IgbChartSummaryDescription()","Alias":"Alias","CalculatorDisplayName":"CalculatorDisplayName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operand":"Operand","ProvideCalculator":"ProvideCalculator","ProvideCalculatorScript":"ProvideCalculatorScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChartSummaryDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSummaryDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbChartSummaryDescription)":"InsertItem(int, IgbChartSummaryDescription)","InsertItem":"InsertItem(int, IgbChartSummaryDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbChartSummaryDescription)":"SetItem(int, IgbChartSummaryDescription)","SetItem":"SetItem(int, IgbChartSummaryDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbChartSummaryDescription)":"Add(IgbChartSummaryDescription)","Add":"Add(IgbChartSummaryDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbChartSummaryDescription[], int)":"CopyTo(IgbChartSummaryDescription[], int)","CopyTo":"CopyTo(IgbChartSummaryDescription[], int)","Contains(IgbChartSummaryDescription)":"Contains(IgbChartSummaryDescription)","Contains":"Contains(IgbChartSummaryDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbChartSummaryDescription)":"IndexOf(IgbChartSummaryDescription)","IndexOf":"IndexOf(IgbChartSummaryDescription)","Insert(int, IgbChartSummaryDescription)":"Insert(int, IgbChartSummaryDescription)","Insert":"Insert(int, IgbChartSummaryDescription)","Remove(IgbChartSummaryDescription)":"Remove(IgbChartSummaryDescription)","Remove":"Remove(IgbChartSummaryDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSummaryDescriptionCollection(object, string)":"IgbChartSummaryDescriptionCollection(object, string)","IgbChartSummaryDescriptionCollection":"IgbChartSummaryDescriptionCollection(object, string)"}}],"IgbChartSummaryDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChartSummaryDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChartSummaryDescriptionModule()":"IgbChartSummaryDescriptionModule()","IgbChartSummaryDescriptionModule":"IgbChartSummaryDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCheckbox":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckbox","k":"class","s":"classes","m":{"GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","DefaultEventBehavior":"DefaultEventBehavior","Value":"Value","Checked":"Checked","LabelPosition":"LabelPosition","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","CheckedChanged":"CheckedChanged","ChangeScript":"ChangeScript","Change":"Change","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckbox()":"IgbCheckbox()","IgbCheckbox":"IgbCheckbox()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Indeterminate":"Indeterminate","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCheckbox","k":"class","s":"classes","m":{"GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","DefaultEventBehavior":"DefaultEventBehavior","Value":"Value","Checked":"Checked","LabelPosition":"LabelPosition","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","CheckedChanged":"CheckedChanged","ChangeScript":"ChangeScript","Change":"Change","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckbox()":"IgbCheckbox()","IgbCheckbox":"IgbCheckbox()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Indeterminate":"Indeterminate","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCheckboxBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxBase()":"IgbCheckboxBase()","IgbCheckboxBase":"IgbCheckboxBase()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Checked":"Checked","CheckedChanged":"CheckedChanged","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","Invalid":"Invalid","LabelPosition":"LabelPosition","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCheckboxBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxBase()":"IgbCheckboxBase()","IgbCheckboxBase":"IgbCheckboxBase()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Checked":"Checked","CheckedChanged":"CheckedChanged","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","Invalid":"Invalid","LabelPosition":"LabelPosition","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}}],"IgbCheckboxBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxBaseModule()":"IgbCheckboxBaseModule()","IgbCheckboxBaseModule":"IgbCheckboxBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCheckboxBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxBaseModule()":"IgbCheckboxBaseModule()","IgbCheckboxBaseModule":"IgbCheckboxBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCheckboxChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxChangeEventArgs()":"IgbCheckboxChangeEventArgs()","IgbCheckboxChangeEventArgs":"IgbCheckboxChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCheckboxChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxChangeEventArgs()":"IgbCheckboxChangeEventArgs()","IgbCheckboxChangeEventArgs":"IgbCheckboxChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCheckboxChangeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxChangeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxChangeEventArgsDetail()":"IgbCheckboxChangeEventArgsDetail()","IgbCheckboxChangeEventArgsDetail":"IgbCheckboxChangeEventArgsDetail()","Checked":"Checked","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCheckboxChangeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxChangeEventArgsDetail()":"IgbCheckboxChangeEventArgsDetail()","IgbCheckboxChangeEventArgsDetail":"IgbCheckboxChangeEventArgsDetail()","Checked":"Checked","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbCheckboxList":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxList","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxList()":"IgbCheckboxList()","IgbCheckboxList":"IgbCheckboxList()","ActualSelectAllCaptionTextColor":"ActualSelectAllCaptionTextColor","AddKeyValue(object[])":"AddKeyValue(object[])","AddKeyValue":"AddKeyValue(object[])","AddKeyValueAsync(object[])":"AddKeyValueAsync(object[])","AddKeyValueAsync":"AddKeyValueAsync(object[])","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","CheckboxAlignedRight":"CheckboxAlignedRight","CheckboxCheckedBackgroundColor":"CheckboxCheckedBackgroundColor","CheckboxCheckedBorderColor":"CheckboxCheckedBorderColor","CheckboxCornerRadius":"CheckboxCornerRadius","CheckboxTickColor":"CheckboxTickColor","CheckboxUncheckedBackgroundColor":"CheckboxUncheckedBackgroundColor","CheckboxUncheckedBorderColor":"CheckboxUncheckedBorderColor","CheckedChanged":"CheckedChanged","CheckedChangedScript":"CheckedChangedScript","DataLegendTarget":"DataLegendTarget","DataLegendTargetScript":"DataLegendTargetScript","DataMemberPath":"DataMemberPath","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DeselectAll()":"DeselectAll()","DeselectAll":"DeselectAll()","DeselectAllAsync()":"DeselectAllAsync()","DeselectAllAsync":"DeselectAllAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FilterPlaceholderText":"FilterPlaceholderText","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IndexType":"IndexType","IndexTypeChanged":"IndexTypeChanged","IndexTypeChangedScript":"IndexTypeChangedScript","IsEverythingSelected()":"IsEverythingSelected()","IsEverythingSelected":"IsEverythingSelected()","IsEverythingSelectedAsync()":"IsEverythingSelectedAsync()","IsEverythingSelectedAsync":"IsEverythingSelectedAsync()","IsNothingSelected()":"IsNothingSelected()","IsNothingSelected":"IsNothingSelected()","IsNothingSelectedAsync()":"IsNothingSelectedAsync()","IsNothingSelectedAsync":"IsNothingSelectedAsync()","IsRowHoverEnabled":"IsRowHoverEnabled","Keys":"Keys","KeysCleared":"KeysCleared","KeysClearedScript":"KeysClearedScript","LabelClickTriggersChange":"LabelClickTriggersChange","LabelClicked":"LabelClicked","LabelClickedScript":"LabelClickedScript","NotifyClearItems()":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","PrimaryKey":"PrimaryKey","PropertyTypeMemberPath":"PropertyTypeMemberPath","Refresh()":"Refresh()","Refresh":"Refresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","RemoveKeyValue(object[])":"RemoveKeyValue(object[])","RemoveKeyValue":"RemoveKeyValue(object[])","RemoveKeyValueAsync(object[])":"RemoveKeyValueAsync(object[])","RemoveKeyValueAsync":"RemoveKeyValueAsync(object[])","RowHeight":"RowHeight","RowHoverBackgroundColor":"RowHoverBackgroundColor","ScrollbarBackground":"ScrollbarBackground","ScrollbarStyle":"ScrollbarStyle","SearchBackgroundColor":"SearchBackgroundColor","SearchBorderColor":"SearchBorderColor","SearchFontFamily":"SearchFontFamily","SearchFontSize":"SearchFontSize","SearchFontStyle":"SearchFontStyle","SearchFontWeight":"SearchFontWeight","SearchIconColor":"SearchIconColor","SearchInputType":"SearchInputType","SearchTextColor":"SearchTextColor","SelectAll()":"SelectAll()","SelectAll":"SelectAll()","SelectAllAsync()":"SelectAllAsync()","SelectAllAsync":"SelectAllAsync()","SelectAllCaption":"SelectAllCaption","SelectAllCaptionTextColor":"SelectAllCaptionTextColor","SelectAllCheckboxChanged":"SelectAllCheckboxChanged","SelectAllCheckboxChangedScript":"SelectAllCheckboxChangedScript","SelectedKeyAdded":"SelectedKeyAdded","SelectedKeyAddedScript":"SelectedKeyAddedScript","SelectedKeyRemoved":"SelectedKeyRemoved","SelectedKeyRemovedScript":"SelectedKeyRemovedScript","SelectedMemberPath":"SelectedMemberPath","ShowFilter":"ShowFilter","ShowSelectAll":"ShowSelectAll","SubtitleMemberPath":"SubtitleMemberPath","TextColor":"TextColor","Type":"Type"}}],"IgbCheckboxListIndexTypeChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxListIndexTypeChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxListIndexTypeChangedEventArgs()":"IgbCheckboxListIndexTypeChangedEventArgs()","IgbCheckboxListIndexTypeChangedEventArgs":"IgbCheckboxListIndexTypeChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","OldValue":"OldValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCheckboxListKeysClearedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxListKeysClearedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxListKeysClearedEventArgs()":"IgbCheckboxListKeysClearedEventArgs()","IgbCheckboxListKeysClearedEventArgs":"IgbCheckboxListKeysClearedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbCheckboxListModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxListModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxListModule()":"IgbCheckboxListModule()","IgbCheckboxListModule":"IgbCheckboxListModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCheckboxModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckboxModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxModule()":"IgbCheckboxModule()","IgbCheckboxModule":"IgbCheckboxModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCheckboxModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckboxModule()":"IgbCheckboxModule()","IgbCheckboxModule":"IgbCheckboxModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCheckedChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCheckedChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCheckedChangedEventArgs()":"IgbCheckedChangedEventArgs()","IgbCheckedChangedEventArgs":"IgbCheckedChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","IsChecked":"IsChecked","PrimaryKey":"PrimaryKey","PrimaryKeyScript":"PrimaryKeyScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbChip":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChip","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChip()":"IgbChip()","IgbChip":"IgbChip()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentSelected()":"GetCurrentSelected()","GetCurrentSelected":"GetCurrentSelected()","GetCurrentSelectedAsync()":"GetCurrentSelectedAsync()","GetCurrentSelectedAsync":"GetCurrentSelectedAsync()","Removable":"Removable","Remove":"Remove","RemoveScript":"RemoveScript","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select":"Select","SelectScript":"SelectScript","Selectable":"Selectable","Selected":"Selected","SelectedChanged":"SelectedChanged","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbChip","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChip()":"IgbChip()","IgbChip":"IgbChip()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentSelected()":"GetCurrentSelected()","GetCurrentSelected":"GetCurrentSelected()","GetCurrentSelectedAsync()":"GetCurrentSelectedAsync()","GetCurrentSelectedAsync":"GetCurrentSelectedAsync()","Removable":"Removable","Remove":"Remove","RemoveScript":"RemoveScript","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select":"Select","SelectScript":"SelectScript","Selectable":"Selectable","Selected":"Selected","SelectedChanged":"SelectedChanged","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}}],"IgbChipModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbChipModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChipModule()":"IgbChipModule()","IgbChipModule":"IgbChipModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbChipModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbChipModule()":"IgbChipModule()","IgbChipModule":"IgbChipModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCircularGradient":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCircularGradient","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularGradient()":"IgbCircularGradient()","IgbCircularGradient":"IgbCircularGradient()","Color":"Color","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Offset":"Offset","Opacity":"Opacity","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCircularGradient","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularGradient()":"IgbCircularGradient()","IgbCircularGradient":"IgbCircularGradient()","Color":"Color","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Offset":"Offset","Opacity":"Opacity","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCircularGradientModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCircularGradientModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularGradientModule()":"IgbCircularGradientModule()","IgbCircularGradientModule":"IgbCircularGradientModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCircularGradientModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularGradientModule()":"IgbCircularGradientModule()","IgbCircularGradientModule":"IgbCircularGradientModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCircularProgress":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCircularProgress","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Max":"Max","Value":"Value","Variant":"Variant","AnimationDuration":"AnimationDuration","Indeterminate":"Indeterminate","HideLabel":"HideLabel","LabelFormat":"LabelFormat","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularProgress()":"IgbCircularProgress()","IgbCircularProgress":"IgbCircularProgress()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCircularProgress","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Max":"Max","Value":"Value","Variant":"Variant","AnimationDuration":"AnimationDuration","Indeterminate":"Indeterminate","HideLabel":"HideLabel","LabelFormat":"LabelFormat","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularProgress()":"IgbCircularProgress()","IgbCircularProgress":"IgbCircularProgress()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbCircularProgressModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCircularProgressModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularProgressModule()":"IgbCircularProgressModule()","IgbCircularProgressModule":"IgbCircularProgressModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCircularProgressModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCircularProgressModule()":"IgbCircularProgressModule()","IgbCircularProgressModule":"IgbCircularProgressModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbClipboardOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbClipboardOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbClipboardOptions()":"IgbClipboardOptions()","IgbClipboardOptions":"IgbClipboardOptions()","CopyFormatters":"CopyFormatters","CopyHeaders":"CopyHeaders","Enabled":"Enabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Separator":"Separator","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbColorEditor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditor","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditor()":"IgbColorEditor()","IgbColorEditor":"IgbColorEditor()","AllowTextInput":"AllowTextInput","BaseTheme":"BaseTheme","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GotFocus":"GotFocus","GotFocusScript":"GotFocusScript","IconColor":"IconColor","IsDisabled":"IsDisabled","IsFixed":"IsFixed","Label":"Label","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LostFocus":"LostFocus","LostFocusScript":"LostFocusScript","OpenAsChild":"OpenAsChild","OpenOnFocus":"OpenOnFocus","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","ShowClearButton":"ShowClearButton","TextColor":"TextColor","TextFontFamily":"TextFontFamily","TextFontSize":"TextFontSize","TextFontStyle":"TextFontStyle","TextFontWeight":"TextFontWeight","Type":"Type","UseTopLayer":"UseTopLayer","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript","ValueChanging":"ValueChanging","ValueChangingScript":"ValueChangingScript"}}],"IgbColorEditorGotFocusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorGotFocusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorGotFocusEventArgs()":"IgbColorEditorGotFocusEventArgs()","IgbColorEditorGotFocusEventArgs":"IgbColorEditorGotFocusEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColorEditorLostFocusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorLostFocusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorLostFocusEventArgs()":"IgbColorEditorLostFocusEventArgs()","IgbColorEditorLostFocusEventArgs":"IgbColorEditorLostFocusEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColorEditorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorModule()":"IgbColorEditorModule()","IgbColorEditorModule":"IgbColorEditorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColorEditorPanel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorPanel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorPanel()":"IgbColorEditorPanel()","IgbColorEditorPanel":"IgbColorEditorPanel()","ActualPixelScalingRatio":"ActualPixelScalingRatio","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusColorBorderColor":"FocusColorBorderColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","HoverBackgroundColor":"HoverBackgroundColor","PixelScalingRatio":"PixelScalingRatio","SelectedColorBorderColor":"SelectedColorBorderColor","SelectedFocusDateBackgroundColor":"SelectedFocusDateBackgroundColor","TextColor":"TextColor","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript","ValueChanging":"ValueChanging","ValueChangingScript":"ValueChangingScript"}}],"IgbColorEditorPanelClosedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorPanelClosedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorPanelClosedEventArgs()":"IgbColorEditorPanelClosedEventArgs()","IgbColorEditorPanelClosedEventArgs":"IgbColorEditorPanelClosedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColorEditorPanelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorPanelModule()":"IgbColorEditorPanelModule()","IgbColorEditorPanelModule":"IgbColorEditorPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColorEditorPanelSelectedValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorEditorPanelSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorEditorPanelSelectedValueChangedEventArgs()":"IgbColorEditorPanelSelectedValueChangedEventArgs()","IgbColorEditorPanelSelectedValueChangedEventArgs":"IgbColorEditorPanelSelectedValueChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","OldValue":"OldValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColorScale":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColorScale","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColorScale()":"IgbColorScale()","IgbColorScale":"IgbColorScale()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumn","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumn()":"IgbColumn()","IgbColumn":"IgbColumn()","AdditionalTemplateContext":"AdditionalTemplateContext","Autosize(bool)":"Autosize(bool)","Autosize":"Autosize(bool)","AutosizeAsync(bool)":"AutosizeAsync(bool)","AutosizeAsync":"AutosizeAsync(bool)","AutosizeHeader":"AutosizeHeader","BodyTemplate":"BodyTemplate","BodyTemplateScript":"BodyTemplateScript","CellClasses":"CellClasses","CellClassesScript":"CellClassesScript","CellStyles":"CellStyles","CellStylesScript":"CellStylesScript","ColEnd":"ColEnd","ColStart":"ColStart","ColumnGroupParent":"ColumnGroupParent","DataType":"DataType","DisableHiding":"DisableHiding","DisablePinning":"DisablePinning","DisabledSummaries":"DisabledSummaries","Dispose()":"Dispose()","Dispose":"Dispose()","Editable":"Editable","EditorOptions":"EditorOptions","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ErrorTemplate":"ErrorTemplate","ErrorTemplateScript":"ErrorTemplateScript","ExpandedChange":"ExpandedChange","ExpandedChangeScript":"ExpandedChangeScript","Field":"Field","FilterCellTemplate":"FilterCellTemplate","FilterCellTemplateScript":"FilterCellTemplateScript","Filterable":"Filterable","FilteringIgnoreCase":"FilteringIgnoreCase","Filters":"Filters","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatterScript":"FormatterScript","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetChildColumns()":"GetChildColumns()","GetChildColumns":"GetChildColumns()","GetChildColumnsAsync()":"GetChildColumnsAsync()","GetChildColumnsAsync":"GetChildColumnsAsync()","GetColumnLayoutChild()":"GetColumnLayoutChild()","GetColumnLayoutChild":"GetColumnLayoutChild()","GetColumnLayoutChildAsync()":"GetColumnLayoutChildAsync()","GetColumnLayoutChildAsync":"GetColumnLayoutChildAsync()","GetFilteringExpressionsTree()":"GetFilteringExpressionsTree()","GetFilteringExpressionsTree":"GetFilteringExpressionsTree()","GetFilteringExpressionsTreeAsync()":"GetFilteringExpressionsTreeAsync()","GetFilteringExpressionsTreeAsync":"GetFilteringExpressionsTreeAsync()","GetIndex()":"GetIndex()","GetIndex":"GetIndex()","GetIndexAsync()":"GetIndexAsync()","GetIndexAsync":"GetIndexAsync()","GetLevel()":"GetLevel()","GetLevel":"GetLevel()","GetLevelAsync()":"GetLevelAsync()","GetLevelAsync":"GetLevelAsync()","GetTopLevelParent()":"GetTopLevelParent()","GetTopLevelParent":"GetTopLevelParent()","GetTopLevelParentAsync()":"GetTopLevelParentAsync()","GetTopLevelParentAsync":"GetTopLevelParentAsync()","GetVisibleIndex()":"GetVisibleIndex()","GetVisibleIndex":"GetVisibleIndex()","GetVisibleIndexAsync()":"GetVisibleIndexAsync()","GetVisibleIndexAsync":"GetVisibleIndexAsync()","GridBaseDirectiveParent":"GridBaseDirectiveParent","Groupable":"Groupable","HasSummary":"HasSummary","Header":"Header","HeaderClasses":"HeaderClasses","HeaderGroupClasses":"HeaderGroupClasses","HeaderGroupStyles":"HeaderGroupStyles","HeaderStyles":"HeaderStyles","HeaderTemplate":"HeaderTemplate","HeaderTemplateScript":"HeaderTemplateScript","Hidden":"Hidden","HiddenChange":"HiddenChange","HiddenChangeScript":"HiddenChangeScript","HierarchicalGridParent":"HierarchicalGridParent","InlineEditorTemplate":"InlineEditorTemplate","InlineEditorTemplateScript":"InlineEditorTemplateScript","MaxWidth":"MaxWidth","Merge":"Merge","MinWidth":"MinWidth","Move(double)":"Move(double)","Move":"Move(double)","MoveAsync(double)":"MoveAsync(double)","MoveAsync":"MoveAsync(double)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentColumn":"ParentColumn","Pin(double, ColumnPinningPosition?)":"Pin(double, ColumnPinningPosition?)","Pin":"Pin(double, ColumnPinningPosition?)","PinAsync(double, ColumnPinningPosition?)":"PinAsync(double, ColumnPinningPosition?)","PinAsync":"PinAsync(double, ColumnPinningPosition?)","Pinned":"Pinned","PinnedChange":"PinnedChange","PinnedChangeScript":"PinnedChangeScript","PinningPosition":"PinningPosition","PipeArgs":"PipeArgs","Resizable":"Resizable","RowEnd":"RowEnd","RowIslandParent":"RowIslandParent","RowStart":"RowStart","Searchable":"Searchable","Selectable":"Selectable","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SortStrategy":"SortStrategy","Sortable":"Sortable","SortingIgnoreCase":"SortingIgnoreCase","Summaries":"Summaries","SummariesScript":"SummariesScript","SummaryFormatterScript":"SummaryFormatterScript","SummaryTemplate":"SummaryTemplate","SummaryTemplateScript":"SummaryTemplateScript","Title":"Title","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Unpin(double)":"Unpin(double)","Unpin":"Unpin(double)","UnpinAsync(double)":"UnpinAsync(double)","UnpinAsync":"UnpinAsync(double)","VisibleWhenCollapsed":"VisibleWhenCollapsed","Width":"Width","WidthChange":"WidthChange","WidthChangeScript":"WidthChangeScript"}}],"IgbColumnChooser":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnChooser","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnChooser()":"IgbColumnChooser()","IgbColumnChooser":"IgbColumnChooser()","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterPlaceholderText":"FilterPlaceholderText","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetGrid":"TargetGrid","TargetGridScript":"TargetGridScript","Title":"Title","TitleColor":"TitleColor","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","Type":"Type"}}],"IgbColumnChooserModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnChooserModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnChooserModule()":"IgbColumnChooserModule()","IgbColumnChooserModule":"IgbColumnChooserModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbColumn)":"InsertItem(int, IgbColumn)","InsertItem":"InsertItem(int, IgbColumn)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbColumn)":"SetItem(int, IgbColumn)","SetItem":"SetItem(int, IgbColumn)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbColumn)":"Add(IgbColumn)","Add":"Add(IgbColumn)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbColumn[], int)":"CopyTo(IgbColumn[], int)","CopyTo":"CopyTo(IgbColumn[], int)","Contains(IgbColumn)":"Contains(IgbColumn)","Contains":"Contains(IgbColumn)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbColumn)":"IndexOf(IgbColumn)","IndexOf":"IndexOf(IgbColumn)","Insert(int, IgbColumn)":"Insert(int, IgbColumn)","Insert":"Insert(int, IgbColumn)","Remove(IgbColumn)":"Remove(IgbColumn)","Remove":"Remove(IgbColumn)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnCollection(object, string)":"IgbColumnCollection(object, string)","IgbColumnCollection":"IgbColumnCollection(object, string)"}}],"IgbColumnComparisonFilterCondition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnComparisonFilterCondition","k":"class","s":"classes","m":{"IsGroupAsync()":"IsGroupAsync()","IsGroupAsync":"IsGroupAsync()","IsGroup()":"IsGroup()","IsGroup":"IsGroup()","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnComparisonFilterCondition()":"IgbColumnComparisonFilterCondition()","IgbColumnComparisonFilterCondition":"IgbColumnComparisonFilterCondition()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCaseSensitive":"IsCaseSensitive","Operator":"Operator","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbColumnComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnComponentEventArgs()":"IgbColumnComponentEventArgs()","IgbColumnComponentEventArgs":"IgbColumnComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnCustomFilterCondition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnCustomFilterCondition","k":"class","s":"classes","m":{"IsGroupAsync()":"IsGroupAsync()","IsGroupAsync":"IsGroupAsync()","IsGroup()":"IsGroup()","IsGroup":"IsGroup()","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnCustomFilterCondition()":"IgbColumnCustomFilterCondition()","IgbColumnCustomFilterCondition":"IgbColumnCustomFilterCondition()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Id":"Id","Index":"Index","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbColumnDependenciesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnDependenciesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnDependenciesModule()":"IgbColumnDependenciesModule()","IgbColumnDependenciesModule":"IgbColumnDependenciesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnEditorOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnEditorOptions","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DateTimeFormat":"DateTimeFormat","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnEditorOptions()":"IgbColumnEditorOptions()","IgbColumnEditorOptions":"IgbColumnEditorOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbColumnExchanger":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnExchanger","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnExchanger()":"IgbColumnExchanger()","IgbColumnExchanger":"IgbColumnExchanger()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetIndex":"TargetIndex","Type":"Type"}}],"IgbColumnExchangersCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnExchangersCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbColumnExchanger)":"InsertItem(int, IgbColumnExchanger)","InsertItem":"InsertItem(int, IgbColumnExchanger)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbColumnExchanger)":"SetItem(int, IgbColumnExchanger)","SetItem":"SetItem(int, IgbColumnExchanger)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbColumnExchanger)":"Add(IgbColumnExchanger)","Add":"Add(IgbColumnExchanger)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbColumnExchanger[], int)":"CopyTo(IgbColumnExchanger[], int)","CopyTo":"CopyTo(IgbColumnExchanger[], int)","Contains(IgbColumnExchanger)":"Contains(IgbColumnExchanger)","Contains":"Contains(IgbColumnExchanger)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbColumnExchanger)":"IndexOf(IgbColumnExchanger)","IndexOf":"IndexOf(IgbColumnExchanger)","Insert(int, IgbColumnExchanger)":"Insert(int, IgbColumnExchanger)","Insert":"Insert(int, IgbColumnExchanger)","Remove(IgbColumnExchanger)":"Remove(IgbColumnExchanger)","Remove":"Remove(IgbColumnExchanger)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnExchangersCollection(object, string)":"IgbColumnExchangersCollection(object, string)","IgbColumnExchangersCollection":"IgbColumnExchangersCollection(object, string)"}}],"IgbColumnExportingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnExportingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnExportingEventArgs()":"IgbColumnExportingEventArgs()","IgbColumnExportingEventArgs":"IgbColumnExportingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnExportingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnExportingEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnExportingEventArgsDetail()":"IgbColumnExportingEventArgsDetail()","IgbColumnExportingEventArgsDetail":"IgbColumnExportingEventArgsDetail()","Cancel":"Cancel","ColumnIndex":"ColumnIndex","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","Header":"Header","SkipFormatter":"SkipFormatter","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnFilterCondition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnFilterCondition","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnFilterCondition()":"IgbColumnFilterCondition()","IgbColumnFilterCondition":"IgbColumnFilterCondition()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsGroup()":"IsGroup()","IsGroup":"IsGroup()","IsGroupAsync()":"IsGroupAsync()","IsGroupAsync":"IsGroupAsync()","Type":"Type"}}],"IgbColumnFilterConditionGroup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnFilterConditionGroup","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnFilterConditionGroup()":"IgbColumnFilterConditionGroup()","IgbColumnFilterConditionGroup":"IgbColumnFilterConditionGroup()","Add(IgbColumnFilterCondition)":"Add(IgbColumnFilterCondition)","Add":"Add(IgbColumnFilterCondition)","AddAsync(IgbColumnFilterCondition)":"AddAsync(IgbColumnFilterCondition)","AddAsync":"AddAsync(IgbColumnFilterCondition)","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsGroup()":"IsGroup()","IsGroup":"IsGroup()","IsGroupAsync()":"IsGroupAsync()","IsGroupAsync":"IsGroupAsync()","Item":"Item","Remove(IgbColumnFilterCondition)":"Remove(IgbColumnFilterCondition)","Remove":"Remove(IgbColumnFilterCondition)","RemoveAsync(IgbColumnFilterCondition)":"RemoveAsync(IgbColumnFilterCondition)","RemoveAsync":"RemoveAsync(IgbColumnFilterCondition)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","RemoveAtAsync(int)":"RemoveAtAsync(int)","RemoveAtAsync":"RemoveAtAsync(int)","ToArray()":"ToArray()","ToArray":"ToArray()","ToArrayAsync()":"ToArrayAsync()","ToArrayAsync":"ToArrayAsync()","Type":"Type","UsesOrOperator":"UsesOrOperator"}}],"IgbColumnFragment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnFragment","k":"class","s":"classes","m":{"GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnFragment()":"IgbColumnFragment()","IgbColumnFragment":"IgbColumnFragment()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","RadiusX":"RadiusX","RadiusY":"RadiusY","Type":"Type"}}],"IgbColumnFragmentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnFragmentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnFragmentModule()":"IgbColumnFragmentModule()","IgbColumnFragmentModule":"IgbColumnFragmentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnGroup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGroup","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetIndexAsync()":"GetIndexAsync()","GetIndexAsync":"GetIndexAsync()","GetIndex()":"GetIndex()","GetIndex":"GetIndex()","GetVisibleIndexAsync()":"GetVisibleIndexAsync()","GetVisibleIndexAsync":"GetVisibleIndexAsync()","GetVisibleIndex()":"GetVisibleIndex()","GetVisibleIndex":"GetVisibleIndex()","GetColumnLayoutChildAsync()":"GetColumnLayoutChildAsync()","GetColumnLayoutChildAsync":"GetColumnLayoutChildAsync()","GetColumnLayoutChild()":"GetColumnLayoutChild()","GetColumnLayoutChild":"GetColumnLayoutChild()","GetChildColumnsAsync()":"GetChildColumnsAsync()","GetChildColumnsAsync":"GetChildColumnsAsync()","GetChildColumns()":"GetChildColumns()","GetChildColumns":"GetChildColumns()","GetLevelAsync()":"GetLevelAsync()","GetLevelAsync":"GetLevelAsync()","GetLevel()":"GetLevel()","GetLevel":"GetLevel()","GetFilteringExpressionsTreeAsync()":"GetFilteringExpressionsTreeAsync()","GetFilteringExpressionsTreeAsync":"GetFilteringExpressionsTreeAsync()","GetFilteringExpressionsTree()":"GetFilteringExpressionsTree()","GetFilteringExpressionsTree":"GetFilteringExpressionsTree()","GetTopLevelParentAsync()":"GetTopLevelParentAsync()","GetTopLevelParentAsync":"GetTopLevelParentAsync()","GetTopLevelParent()":"GetTopLevelParent()","GetTopLevelParent":"GetTopLevelParent()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","PinAsync(double, ColumnPinningPosition?)":"PinAsync(double, ColumnPinningPosition?)","PinAsync":"PinAsync(double, ColumnPinningPosition?)","Pin(double, ColumnPinningPosition?)":"Pin(double, ColumnPinningPosition?)","Pin":"Pin(double, ColumnPinningPosition?)","UnpinAsync(double)":"UnpinAsync(double)","UnpinAsync":"UnpinAsync(double)","Unpin(double)":"Unpin(double)","Unpin":"Unpin(double)","MoveAsync(double)":"MoveAsync(double)","MoveAsync":"MoveAsync(double)","Move(double)":"Move(double)","Move":"Move(double)","AutosizeAsync(bool)":"AutosizeAsync(bool)","AutosizeAsync":"AutosizeAsync(bool)","Autosize(bool)":"Autosize(bool)","Autosize":"Autosize(bool)","GridBaseDirectiveParent":"GridBaseDirectiveParent","RowIslandParent":"RowIslandParent","HierarchicalGridParent":"HierarchicalGridParent","ColumnGroupParent":"ColumnGroupParent","Field":"Field","Merge":"Merge","Header":"Header","Title":"Title","Sortable":"Sortable","Selectable":"Selectable","Groupable":"Groupable","Editable":"Editable","Filterable":"Filterable","Resizable":"Resizable","AutosizeHeader":"AutosizeHeader","HasSummary":"HasSummary","Hidden":"Hidden","Selected":"Selected","DisableHiding":"DisableHiding","DisablePinning":"DisablePinning","Width":"Width","MaxWidth":"MaxWidth","HeaderClasses":"HeaderClasses","HeaderStyles":"HeaderStyles","HeaderGroupClasses":"HeaderGroupClasses","HeaderGroupStyles":"HeaderGroupStyles","CellClasses":"CellClasses","CellClassesScript":"CellClassesScript","CellStyles":"CellStyles","CellStylesScript":"CellStylesScript","FormatterScript":"FormatterScript","SummaryFormatterScript":"SummaryFormatterScript","FilteringIgnoreCase":"FilteringIgnoreCase","SortingIgnoreCase":"SortingIgnoreCase","Searchable":"Searchable","DataType":"DataType","RowEnd":"RowEnd","ColEnd":"ColEnd","RowStart":"RowStart","ColStart":"ColStart","AdditionalTemplateContext":"AdditionalTemplateContext","MinWidth":"MinWidth","PinningPosition":"PinningPosition","Pinned":"Pinned","Summaries":"Summaries","SummariesScript":"SummariesScript","DisabledSummaries":"DisabledSummaries","Filters":"Filters","SortStrategy":"SortStrategy","SummaryTemplate":"SummaryTemplate","SummaryTemplateScript":"SummaryTemplateScript","BodyTemplate":"BodyTemplate","BodyTemplateScript":"BodyTemplateScript","HeaderTemplate":"HeaderTemplate","HeaderTemplateScript":"HeaderTemplateScript","InlineEditorTemplate":"InlineEditorTemplate","InlineEditorTemplateScript":"InlineEditorTemplateScript","ErrorTemplate":"ErrorTemplate","ErrorTemplateScript":"ErrorTemplateScript","FilterCellTemplate":"FilterCellTemplate","FilterCellTemplateScript":"FilterCellTemplateScript","VisibleWhenCollapsed":"VisibleWhenCollapsed","PipeArgs":"PipeArgs","EditorOptions":"EditorOptions","ParentColumn":"ParentColumn","HiddenChangeScript":"HiddenChangeScript","HiddenChange":"HiddenChange","ExpandedChangeScript":"ExpandedChangeScript","ExpandedChange":"ExpandedChange","WidthChangeScript":"WidthChangeScript","WidthChange":"WidthChange","PinnedChangeScript":"PinnedChangeScript","PinnedChange":"PinnedChange","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGroup()":"IgbColumnGroup()","IgbColumnGroup":"IgbColumnGroup()","ActualChildren":"ActualChildren","Children":"Children","Collapsible":"Collapsible","CollapsibleIndicatorTemplate":"CollapsibleIndicatorTemplate","CollapsibleIndicatorTemplateScript":"CollapsibleIndicatorTemplateScript","ContentChildren":"ContentChildren","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ParentTypeName":"ParentTypeName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnGroupDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGroupDescription","k":"class","s":"classes","m":{"Field":"Field","SortDirection":"SortDirection","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGroupDescription()":"IgbColumnGroupDescription()","IgbColumnGroupDescription":"IgbColumnGroupDescription()","DisplayFormat":"DisplayFormat","DisplayFormatSpecifiers":"DisplayFormatSpecifiers","DisplayName":"DisplayName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatText":"FormatText","FormatTextScript":"FormatTextScript","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","ValueFormat":"ValueFormat","ValueFormatSpecifiers":"ValueFormatSpecifiers"}}],"IgbColumnGroupDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGroupDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbColumnGroupDescription)":"InsertItem(int, IgbColumnGroupDescription)","InsertItem":"InsertItem(int, IgbColumnGroupDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbColumnGroupDescription)":"SetItem(int, IgbColumnGroupDescription)","SetItem":"SetItem(int, IgbColumnGroupDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbColumnGroupDescription)":"Add(IgbColumnGroupDescription)","Add":"Add(IgbColumnGroupDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbColumnGroupDescription[], int)":"CopyTo(IgbColumnGroupDescription[], int)","CopyTo":"CopyTo(IgbColumnGroupDescription[], int)","Contains(IgbColumnGroupDescription)":"Contains(IgbColumnGroupDescription)","Contains":"Contains(IgbColumnGroupDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbColumnGroupDescription)":"IndexOf(IgbColumnGroupDescription)","IndexOf":"IndexOf(IgbColumnGroupDescription)","Insert(int, IgbColumnGroupDescription)":"Insert(int, IgbColumnGroupDescription)","Insert":"Insert(int, IgbColumnGroupDescription)","Remove(IgbColumnGroupDescription)":"Remove(IgbColumnGroupDescription)","Remove":"Remove(IgbColumnGroupDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGroupDescriptionCollection(object, string)":"IgbColumnGroupDescriptionCollection(object, string)","IgbColumnGroupDescriptionCollection":"IgbColumnGroupDescriptionCollection(object, string)"}}],"IgbColumnGroupDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGroupDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGroupDescriptionModule()":"IgbColumnGroupDescriptionModule()","IgbColumnGroupDescriptionModule":"IgbColumnGroupDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnGrouping":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGrouping","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGrouping()":"IgbColumnGrouping()","IgbColumnGrouping":"IgbColumnGrouping()","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ColumnGroupTitleFontFamily":"ColumnGroupTitleFontFamily","ColumnGroupTitleFontSize":"ColumnGroupTitleFontSize","ColumnGroupTitleFontStyle":"ColumnGroupTitleFontStyle","ColumnGroupTitleFontWeight":"ColumnGroupTitleFontWeight","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IconColor":"IconColor","ItemBackgroundColor":"ItemBackgroundColor","ItemHoverBackgroundColor":"ItemHoverBackgroundColor","TargetGrid":"TargetGrid","TargetGridScript":"TargetGridScript","TextColor":"TextColor","Title":"Title","TitleColor":"TitleColor","Type":"Type"}}],"IgbColumnGroupingModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGroupingModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGroupingModule()":"IgbColumnGroupingModule()","IgbColumnGroupingModule":"IgbColumnGroupingModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnGroupModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnGroupModule()":"IgbColumnGroupModule()","IgbColumnGroupModule":"IgbColumnGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnHiddenChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnHiddenChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnHiddenChangedEventArgs()":"IgbColumnHiddenChangedEventArgs()","IgbColumnHiddenChangedEventArgs":"IgbColumnHiddenChangedEventArgs()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsHidden":"IsHidden","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnLayout":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnLayout","k":"class","s":"classes","m":{"ParentTypeName":"ParentTypeName","ContentChildren":"ContentChildren","ActualChildren":"ActualChildren","Children":"Children","Collapsible":"Collapsible","Expanded":"Expanded","CollapsibleIndicatorTemplate":"CollapsibleIndicatorTemplate","CollapsibleIndicatorTemplateScript":"CollapsibleIndicatorTemplateScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetIndexAsync()":"GetIndexAsync()","GetIndexAsync":"GetIndexAsync()","GetIndex()":"GetIndex()","GetIndex":"GetIndex()","GetVisibleIndexAsync()":"GetVisibleIndexAsync()","GetVisibleIndexAsync":"GetVisibleIndexAsync()","GetVisibleIndex()":"GetVisibleIndex()","GetVisibleIndex":"GetVisibleIndex()","GetColumnLayoutChildAsync()":"GetColumnLayoutChildAsync()","GetColumnLayoutChildAsync":"GetColumnLayoutChildAsync()","GetColumnLayoutChild()":"GetColumnLayoutChild()","GetColumnLayoutChild":"GetColumnLayoutChild()","GetChildColumnsAsync()":"GetChildColumnsAsync()","GetChildColumnsAsync":"GetChildColumnsAsync()","GetChildColumns()":"GetChildColumns()","GetChildColumns":"GetChildColumns()","GetLevelAsync()":"GetLevelAsync()","GetLevelAsync":"GetLevelAsync()","GetLevel()":"GetLevel()","GetLevel":"GetLevel()","GetFilteringExpressionsTreeAsync()":"GetFilteringExpressionsTreeAsync()","GetFilteringExpressionsTreeAsync":"GetFilteringExpressionsTreeAsync()","GetFilteringExpressionsTree()":"GetFilteringExpressionsTree()","GetFilteringExpressionsTree":"GetFilteringExpressionsTree()","GetTopLevelParentAsync()":"GetTopLevelParentAsync()","GetTopLevelParentAsync":"GetTopLevelParentAsync()","GetTopLevelParent()":"GetTopLevelParent()","GetTopLevelParent":"GetTopLevelParent()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","PinAsync(double, ColumnPinningPosition?)":"PinAsync(double, ColumnPinningPosition?)","PinAsync":"PinAsync(double, ColumnPinningPosition?)","Pin(double, ColumnPinningPosition?)":"Pin(double, ColumnPinningPosition?)","Pin":"Pin(double, ColumnPinningPosition?)","UnpinAsync(double)":"UnpinAsync(double)","UnpinAsync":"UnpinAsync(double)","Unpin(double)":"Unpin(double)","Unpin":"Unpin(double)","MoveAsync(double)":"MoveAsync(double)","MoveAsync":"MoveAsync(double)","Move(double)":"Move(double)","Move":"Move(double)","AutosizeAsync(bool)":"AutosizeAsync(bool)","AutosizeAsync":"AutosizeAsync(bool)","Autosize(bool)":"Autosize(bool)","Autosize":"Autosize(bool)","GridBaseDirectiveParent":"GridBaseDirectiveParent","RowIslandParent":"RowIslandParent","HierarchicalGridParent":"HierarchicalGridParent","ColumnGroupParent":"ColumnGroupParent","Field":"Field","Merge":"Merge","Header":"Header","Title":"Title","Sortable":"Sortable","Selectable":"Selectable","Groupable":"Groupable","Editable":"Editable","Filterable":"Filterable","Resizable":"Resizable","AutosizeHeader":"AutosizeHeader","HasSummary":"HasSummary","Hidden":"Hidden","Selected":"Selected","DisableHiding":"DisableHiding","DisablePinning":"DisablePinning","Width":"Width","MaxWidth":"MaxWidth","HeaderClasses":"HeaderClasses","HeaderStyles":"HeaderStyles","HeaderGroupClasses":"HeaderGroupClasses","HeaderGroupStyles":"HeaderGroupStyles","CellClasses":"CellClasses","CellClassesScript":"CellClassesScript","CellStyles":"CellStyles","CellStylesScript":"CellStylesScript","FormatterScript":"FormatterScript","SummaryFormatterScript":"SummaryFormatterScript","FilteringIgnoreCase":"FilteringIgnoreCase","SortingIgnoreCase":"SortingIgnoreCase","Searchable":"Searchable","DataType":"DataType","RowEnd":"RowEnd","ColEnd":"ColEnd","RowStart":"RowStart","ColStart":"ColStart","AdditionalTemplateContext":"AdditionalTemplateContext","MinWidth":"MinWidth","PinningPosition":"PinningPosition","Pinned":"Pinned","Summaries":"Summaries","SummariesScript":"SummariesScript","DisabledSummaries":"DisabledSummaries","Filters":"Filters","SortStrategy":"SortStrategy","SummaryTemplate":"SummaryTemplate","SummaryTemplateScript":"SummaryTemplateScript","BodyTemplate":"BodyTemplate","BodyTemplateScript":"BodyTemplateScript","HeaderTemplate":"HeaderTemplate","HeaderTemplateScript":"HeaderTemplateScript","InlineEditorTemplate":"InlineEditorTemplate","InlineEditorTemplateScript":"InlineEditorTemplateScript","ErrorTemplate":"ErrorTemplate","ErrorTemplateScript":"ErrorTemplateScript","FilterCellTemplate":"FilterCellTemplate","FilterCellTemplateScript":"FilterCellTemplateScript","VisibleWhenCollapsed":"VisibleWhenCollapsed","PipeArgs":"PipeArgs","EditorOptions":"EditorOptions","ParentColumn":"ParentColumn","HiddenChangeScript":"HiddenChangeScript","HiddenChange":"HiddenChange","ExpandedChangeScript":"ExpandedChangeScript","ExpandedChange":"ExpandedChange","WidthChangeScript":"WidthChangeScript","WidthChange":"WidthChange","PinnedChangeScript":"PinnedChangeScript","PinnedChange":"PinnedChange","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnLayout()":"IgbColumnLayout()","IgbColumnLayout":"IgbColumnLayout()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnLayoutModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnLayoutModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnLayoutModule()":"IgbColumnLayoutModule()","IgbColumnLayoutModule":"IgbColumnLayoutModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnModule()":"IgbColumnModule()","IgbColumnModule":"IgbColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnMovingEndEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingEndEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingEndEventArgs()":"IgbColumnMovingEndEventArgs()","IgbColumnMovingEndEventArgs":"IgbColumnMovingEndEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnMovingEndEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingEndEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingEndEventArgsDetail()":"IgbColumnMovingEndEventArgsDetail()","IgbColumnMovingEndEventArgsDetail":"IgbColumnMovingEndEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Source":"Source","Target":"Target","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnMovingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingEventArgs()":"IgbColumnMovingEventArgs()","IgbColumnMovingEventArgs":"IgbColumnMovingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnMovingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingEventArgsDetail()":"IgbColumnMovingEventArgsDetail()","IgbColumnMovingEventArgsDetail":"IgbColumnMovingEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Source":"Source","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnMovingSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingSeparator","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingSeparator()":"IgbColumnMovingSeparator()","IgbColumnMovingSeparator":"IgbColumnMovingSeparator()","ActualOpacity":"ActualOpacity","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Opacity":"Opacity","SeparatorWidth":"SeparatorWidth","Type":"Type"}}],"IgbColumnMovingSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingSeparatorModule()":"IgbColumnMovingSeparatorModule()","IgbColumnMovingSeparatorModule":"IgbColumnMovingSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnMovingStartEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingStartEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingStartEventArgs()":"IgbColumnMovingStartEventArgs()","IgbColumnMovingStartEventArgs":"IgbColumnMovingStartEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnMovingStartEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnMovingStartEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnMovingStartEventArgsDetail()":"IgbColumnMovingStartEventArgsDetail()","IgbColumnMovingStartEventArgsDetail":"IgbColumnMovingStartEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Source":"Source","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnPinnedChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnPinnedChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnPinnedChangedEventArgs()":"IgbColumnPinnedChangedEventArgs()","IgbColumnPinnedChangedEventArgs":"IgbColumnPinnedChangedEventArgs()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Pinned":"Pinned","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnPinning":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnPinning","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnPinning()":"IgbColumnPinning()","IgbColumnPinning":"IgbColumnPinning()","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterPlaceholderText":"FilterPlaceholderText","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetGrid":"TargetGrid","TargetGridScript":"TargetGridScript","Title":"Title","TitleColor":"TitleColor","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","Type":"Type"}}],"IgbColumnPinningModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnPinningModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnPinningModule()":"IgbColumnPinningModule()","IgbColumnPinningModule":"IgbColumnPinningModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnPipeArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnPipeArgs","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Format":"Format","Timezone":"Timezone","DigitsInfo":"DigitsInfo","CurrencyCode":"CurrencyCode","Display":"Display","WeekStart":"WeekStart","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnPipeArgs()":"IgbColumnPipeArgs()","IgbColumnPipeArgs":"IgbColumnPipeArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbColumnPropertySetter":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnPropertySetter","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnPropertySetter()":"IgbColumnPropertySetter()","IgbColumnPropertySetter":"IgbColumnPropertySetter()","ColumnName":"ColumnName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PropertyName":"PropertyName","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbColumnPropertySettersCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnPropertySettersCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbColumnPropertySetter)":"InsertItem(int, IgbColumnPropertySetter)","InsertItem":"InsertItem(int, IgbColumnPropertySetter)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbColumnPropertySetter)":"SetItem(int, IgbColumnPropertySetter)","SetItem":"SetItem(int, IgbColumnPropertySetter)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbColumnPropertySetter)":"Add(IgbColumnPropertySetter)","Add":"Add(IgbColumnPropertySetter)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbColumnPropertySetter[], int)":"CopyTo(IgbColumnPropertySetter[], int)","CopyTo":"CopyTo(IgbColumnPropertySetter[], int)","Contains(IgbColumnPropertySetter)":"Contains(IgbColumnPropertySetter)","Contains":"Contains(IgbColumnPropertySetter)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbColumnPropertySetter)":"IndexOf(IgbColumnPropertySetter)","IndexOf":"IndexOf(IgbColumnPropertySetter)","Insert(int, IgbColumnPropertySetter)":"Insert(int, IgbColumnPropertySetter)","Insert":"Insert(int, IgbColumnPropertySetter)","Remove(IgbColumnPropertySetter)":"Remove(IgbColumnPropertySetter)","Remove":"Remove(IgbColumnPropertySetter)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnPropertySettersCollection(object, string)":"IgbColumnPropertySettersCollection(object, string)","IgbColumnPropertySettersCollection":"IgbColumnPropertySettersCollection(object, string)"}}],"IgbColumnResizeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnResizeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnResizeEventArgs()":"IgbColumnResizeEventArgs()","IgbColumnResizeEventArgs":"IgbColumnResizeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnResizeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnResizeEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnResizeEventArgsDetail()":"IgbColumnResizeEventArgsDetail()","IgbColumnResizeEventArgsDetail":"IgbColumnResizeEventArgsDetail()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewWidth":"NewWidth","PrevWidth":"PrevWidth","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnResizingSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnResizingSeparator","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnResizingSeparator()":"IgbColumnResizingSeparator()","IgbColumnResizingSeparator":"IgbColumnResizingSeparator()","ActualOpacity":"ActualOpacity","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Opacity":"Opacity","Type":"Type"}}],"IgbColumnResizingSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnResizingSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnResizingSeparatorModule()":"IgbColumnResizingSeparatorModule()","IgbColumnResizingSeparatorModule":"IgbColumnResizingSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnsAutoGeneratedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnsAutoGeneratedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnsAutoGeneratedEventArgs()":"IgbColumnsAutoGeneratedEventArgs()","IgbColumnsAutoGeneratedEventArgs":"IgbColumnsAutoGeneratedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnsAutoGeneratedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnsAutoGeneratedEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnsAutoGeneratedEventArgsDetail()":"IgbColumnsAutoGeneratedEventArgsDetail()","IgbColumnsAutoGeneratedEventArgsDetail":"IgbColumnsAutoGeneratedEventArgsDetail()","Columns":"Columns","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnSelectionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSelectionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSelectionEventArgs()":"IgbColumnSelectionEventArgs()","IgbColumnSelectionEventArgs":"IgbColumnSelectionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnSelectionEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSelectionEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSelectionEventArgsDetail()":"IgbColumnSelectionEventArgsDetail()","IgbColumnSelectionEventArgsDetail":"IgbColumnSelectionEventArgsDetail()","Added":"Added","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewSelection":"NewSelection","OldSelection":"OldSelection","Owner":"Owner","Removed":"Removed","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSeries()":"IgbColumnSeries()","IgbColumnSeries":"IgbColumnSeries()","ConsolidatedColumnVerticalPosition":"ConsolidatedColumnVerticalPosition","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","RadiusX":"RadiusX","RadiusY":"RadiusY","Type":"Type"}}],"IgbColumnSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSeriesModule()":"IgbColumnSeriesModule()","IgbColumnSeriesModule":"IgbColumnSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnSortDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSortDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSortDescription()":"IgbColumnSortDescription()","IgbColumnSortDescription":"IgbColumnSortDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SortDirection":"SortDirection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnSortDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSortDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbColumnSortDescription)":"InsertItem(int, IgbColumnSortDescription)","InsertItem":"InsertItem(int, IgbColumnSortDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbColumnSortDescription)":"SetItem(int, IgbColumnSortDescription)","SetItem":"SetItem(int, IgbColumnSortDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbColumnSortDescription)":"Add(IgbColumnSortDescription)","Add":"Add(IgbColumnSortDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbColumnSortDescription[], int)":"CopyTo(IgbColumnSortDescription[], int)","CopyTo":"CopyTo(IgbColumnSortDescription[], int)","Contains(IgbColumnSortDescription)":"Contains(IgbColumnSortDescription)","Contains":"Contains(IgbColumnSortDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbColumnSortDescription)":"IndexOf(IgbColumnSortDescription)","IndexOf":"IndexOf(IgbColumnSortDescription)","Insert(int, IgbColumnSortDescription)":"Insert(int, IgbColumnSortDescription)","Insert":"Insert(int, IgbColumnSortDescription)","Remove(IgbColumnSortDescription)":"Remove(IgbColumnSortDescription)","Remove":"Remove(IgbColumnSortDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSortDescriptionCollection(object, string)":"IgbColumnSortDescriptionCollection(object, string)","IgbColumnSortDescriptionCollection":"IgbColumnSortDescriptionCollection(object, string)"}}],"IgbColumnSortDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSortDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSortDescriptionModule()":"IgbColumnSortDescriptionModule()","IgbColumnSortDescriptionModule":"IgbColumnSortDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnState()":"IgbColumnState()","IgbColumnState":"IgbColumnState()","ColEnd":"ColEnd","ColStart":"ColStart","Collapsible":"Collapsible","ColumnGroup":"ColumnGroup","ColumnLayout":"ColumnLayout","DataType":"DataType","DisableHiding":"DisableHiding","DisablePinning":"DisablePinning","Editable":"Editable","Expanded":"Expanded","Field":"Field","Filterable":"Filterable","FilteringIgnoreCase":"FilteringIgnoreCase","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Groupable":"Groupable","HasSummary":"HasSummary","Header":"Header","HeaderClasses":"HeaderClasses","HeaderGroupClasses":"HeaderGroupClasses","Hidden":"Hidden","Key":"Key","MaxWidth":"MaxWidth","Parent":"Parent","ParentKey":"ParentKey","Pinned":"Pinned","Resizable":"Resizable","RowEnd":"RowEnd","RowStart":"RowStart","Searchable":"Searchable","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Sortable":"Sortable","SortingIgnoreCase":"SortingIgnoreCase","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","VisibleWhenCollapsed":"VisibleWhenCollapsed","Width":"Width"}}],"IgbColumnSummaryDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSummaryDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSummaryDescription()":"IgbColumnSummaryDescription()","IgbColumnSummaryDescription":"IgbColumnSummaryDescription()","CalculatorDisplayName":"CalculatorDisplayName","DisplayFormat":"DisplayFormat","DisplayFormatSpecifiers":"DisplayFormatSpecifiers","DisplayName":"DisplayName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatText":"FormatText","FormatTextScript":"FormatTextScript","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","MaxFractionDigits":"MaxFractionDigits","Operand":"Operand","ProvideCalculator":"ProvideCalculator","ProvideCalculatorScript":"ProvideCalculatorScript","ShouldDisplay":"ShouldDisplay","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","ValueFormat":"ValueFormat","ValueFormatSpecifiers":"ValueFormatSpecifiers"}}],"IgbColumnSummaryDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSummaryDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbColumnSummaryDescription)":"InsertItem(int, IgbColumnSummaryDescription)","InsertItem":"InsertItem(int, IgbColumnSummaryDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbColumnSummaryDescription)":"SetItem(int, IgbColumnSummaryDescription)","SetItem":"SetItem(int, IgbColumnSummaryDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbColumnSummaryDescription)":"Add(IgbColumnSummaryDescription)","Add":"Add(IgbColumnSummaryDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbColumnSummaryDescription[], int)":"CopyTo(IgbColumnSummaryDescription[], int)","CopyTo":"CopyTo(IgbColumnSummaryDescription[], int)","Contains(IgbColumnSummaryDescription)":"Contains(IgbColumnSummaryDescription)","Contains":"Contains(IgbColumnSummaryDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbColumnSummaryDescription)":"IndexOf(IgbColumnSummaryDescription)","IndexOf":"IndexOf(IgbColumnSummaryDescription)","Insert(int, IgbColumnSummaryDescription)":"Insert(int, IgbColumnSummaryDescription)","Insert":"Insert(int, IgbColumnSummaryDescription)","Remove(IgbColumnSummaryDescription)":"Remove(IgbColumnSummaryDescription)","Remove":"Remove(IgbColumnSummaryDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSummaryDescriptionCollection(object, string)":"IgbColumnSummaryDescriptionCollection(object, string)","IgbColumnSummaryDescriptionCollection":"IgbColumnSummaryDescriptionCollection(object, string)"}}],"IgbColumnSummaryDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSummaryDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSummaryDescriptionModule()":"IgbColumnSummaryDescriptionModule()","IgbColumnSummaryDescriptionModule":"IgbColumnSummaryDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbColumnSupportingCalculation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnSupportingCalculation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnSupportingCalculation()":"IgbColumnSupportingCalculation()","IgbColumnSupportingCalculation":"IgbColumnSupportingCalculation()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbColumnTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnTemplateContext()":"IgbColumnTemplateContext()","IgbColumnTemplateContext":"IgbColumnTemplateContext()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnToggledEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnToggledEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnToggledEventArgs()":"IgbColumnToggledEventArgs()","IgbColumnToggledEventArgs":"IgbColumnToggledEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnToggledEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnToggledEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnToggledEventArgsDetail()":"IgbColumnToggledEventArgsDetail()","IgbColumnToggledEventArgsDetail":"IgbColumnToggledEventArgsDetail()","Checked":"Checked","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnVisibilityChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnVisibilityChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnVisibilityChangedEventArgs()":"IgbColumnVisibilityChangedEventArgs()","IgbColumnVisibilityChangedEventArgs":"IgbColumnVisibilityChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnVisibilityChangedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnVisibilityChangedEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnVisibilityChangedEventArgsDetail()":"IgbColumnVisibilityChangedEventArgsDetail()","IgbColumnVisibilityChangedEventArgsDetail":"IgbColumnVisibilityChangedEventArgsDetail()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnVisibilityChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnVisibilityChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnVisibilityChangingEventArgs()":"IgbColumnVisibilityChangingEventArgs()","IgbColumnVisibilityChangingEventArgs":"IgbColumnVisibilityChangingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnVisibilityChangingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnVisibilityChangingEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnVisibilityChangingEventArgsDetail()":"IgbColumnVisibilityChangingEventArgsDetail()","IgbColumnVisibilityChangingEventArgsDetail":"IgbColumnVisibilityChangingEventArgsDetail()","Cancel":"Cancel","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbColumnWidth":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnWidth","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnWidth()":"IgbColumnWidth()","IgbColumnWidth":"IgbColumnWidth()","IgbColumnWidth(double)":"IgbColumnWidth(double)","IgbColumnWidth(double, bool)":"IgbColumnWidth(double, bool)","IgbColumnWidth(double, double, bool)":"IgbColumnWidth(double, double, bool)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsStarSized":"IsStarSized","MinimumWidth":"MinimumWidth","Parse(string)":"Parse(string)","Parse":"Parse(string)","Star(double)":"Star(double)","Star":"Star(double)","Star(double, double)":"Star(double, double)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","WithMinimum(double)":"WithMinimum(double)","WithMinimum":"WithMinimum(double)","implicit operator IgbColumnWidth(double)":"implicit operator IgbColumnWidth(double)","implicit operator IgbColumnWidth":"implicit operator IgbColumnWidth(double)","implicit operator IgbColumnWidth(int)":"implicit operator IgbColumnWidth(int)","implicit operator IgbColumnWidth(string)":"implicit operator IgbColumnWidth(string)"}}],"IgbColumnWidthModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbColumnWidthModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnWidthModule()":"IgbColumnWidthModule()","IgbColumnWidthModule":"IgbColumnWidthModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCombo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCombo","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCombo()":"IgbCombo()","IgbCombo":"IgbCombo()","Autofocus":"Autofocus","AutofocusList":"AutofocusList","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","CaseSensitiveIcon":"CaseSensitiveIcon","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","Data":"Data","DataScript":"DataScript","DefaultEventBehavior":"DefaultEventBehavior","Deselect(object[])":"Deselect(object[])","Deselect":"Deselect(object[])","DeselectAsync(object[])":"DeselectAsync(object[])","DeselectAsync":"DeselectAsync(object[])","DisableClear":"DisableClear","DisableFiltering":"DisableFiltering","Disabled":"Disabled","DisplayKey":"DisplayKey","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilteringOptions":"FilteringOptions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetSelection()":"GetSelection()","GetSelection":"GetSelection()","GetSelectionAsync()":"GetSelectionAsync()","GetSelectionAsync":"GetSelectionAsync()","GroupHeaderTemplate":"GroupHeaderTemplate","GroupHeaderTemplateScript":"GroupHeaderTemplateScript","GroupKey":"GroupKey","GroupSorting":"GroupSorting","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Invalid":"Invalid","ItemTemplate":"ItemTemplate","ItemTemplateScript":"ItemTemplateScript","Label":"Label","Open":"Open","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Outlined":"Outlined","Placeholder":"Placeholder","PlaceholderSearch":"PlaceholderSearch","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select(object[])":"Select(object[])","Select":"Select(object[])","SelectAsync(object[])":"SelectAsync(object[])","SelectAsync":"SelectAsync(object[])","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SingleSelect":"SingleSelect","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","ValueKey":"ValueKey"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCombo","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCombo()":"IgbCombo()","IgbCombo":"IgbCombo()","Autofocus":"Autofocus","AutofocusList":"AutofocusList","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","CaseSensitiveIcon":"CaseSensitiveIcon","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","Data":"Data","DataScript":"DataScript","DefaultEventBehavior":"DefaultEventBehavior","Deselect(object[])":"Deselect(object[])","Deselect":"Deselect(object[])","DeselectAsync(object[])":"DeselectAsync(object[])","DeselectAsync":"DeselectAsync(object[])","DisableFiltering":"DisableFiltering","Disabled":"Disabled","DisplayKey":"DisplayKey","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilteringOptions":"FilteringOptions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetSelection()":"GetSelection()","GetSelection":"GetSelection()","GetSelectionAsync()":"GetSelectionAsync()","GetSelectionAsync":"GetSelectionAsync()","GroupHeaderTemplate":"GroupHeaderTemplate","GroupHeaderTemplateScript":"GroupHeaderTemplateScript","GroupKey":"GroupKey","GroupSorting":"GroupSorting","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Invalid":"Invalid","ItemTemplate":"ItemTemplate","ItemTemplateScript":"ItemTemplateScript","Label":"Label","Open":"Open","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Outlined":"Outlined","Placeholder":"Placeholder","PlaceholderSearch":"PlaceholderSearch","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select(object[])":"Select(object[])","Select":"Select(object[])","SelectAsync(object[])":"SelectAsync(object[])","SelectAsync":"SelectAsync(object[])","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SingleSelect":"SingleSelect","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","ValueKey":"ValueKey"}}],"IgbComboBoxColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboBoxColumn","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","DataGridParent":"DataGridParent","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","Field":"Field","HeaderText":"HeaderText","ActualHeaderText":"ActualHeaderText","SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","RowHoverBackground":"RowHoverBackground","ActualHoverBackground":"ActualHoverBackground","RowHoverTextColor":"RowHoverTextColor","ActualRowHoverTextColor":"ActualRowHoverTextColor","AnimationSettings":"AnimationSettings","Width":"Width","MinWidth":"MinWidth","IsFromMarkup":"IsFromMarkup","IsAutoGenerated":"IsAutoGenerated","Filter":"Filter","FilterExpression":"FilterExpression","Header":"Header","IsFilteringEnabled":"IsFilteringEnabled","IsResizingEnabled":"IsResizingEnabled","IsHidden":"IsHidden","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","Pinned":"Pinned","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ColumnOptionsBackground":"ColumnOptionsBackground","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","IsEditable":"IsEditable","DeletedTextColor":"DeletedTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","EditOpacity":"EditOpacity","ActualEditOpacity":"ActualEditOpacity","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","MergedCellMode":"MergedCellMode","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingBottom":"MergedCellPaddingBottom","FilterComparisonType":"FilterComparisonType","FilterOperands":"FilterOperands","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","FormatCellScript":"FormatCellScript","FormatCell":"FormatCell","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHeaderTextChanged":"ActualHeaderTextChanged","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboBoxColumn()":"IgbComboBoxColumn()","IgbComboBoxColumn":"IgbComboBoxColumn()","ActualDataSource":"ActualDataSource","DataSource":"DataSource","DataSourceScript":"DataSourceScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ParentTypeName":"ParentTypeName","TextField":"TextField","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","ValueField":"ValueField"}}],"IgbComboBoxColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboBoxColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboBoxColumnModule()":"IgbComboBoxColumnModule()","IgbComboBoxColumnModule":"IgbComboBoxColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbComboChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboChangeEventArgs()":"IgbComboChangeEventArgs()","IgbComboChangeEventArgs":"IgbComboChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComboChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboChangeEventArgs()":"IgbComboChangeEventArgs()","IgbComboChangeEventArgs":"IgbComboChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComboChangeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboChangeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboChangeEventArgsDetail()":"IgbComboChangeEventArgsDetail()","IgbComboChangeEventArgsDetail":"IgbComboChangeEventArgsDetail()","ChangeType":"ChangeType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Items":"Items","ItemsScript":"ItemsScript","NewValue":"NewValue","NewValueScript":"NewValueScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComboChangeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboChangeEventArgsDetail()":"IgbComboChangeEventArgsDetail()","IgbComboChangeEventArgsDetail":"IgbComboChangeEventArgsDetail()","ChangeType":"ChangeType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Items":"Items","ItemsScript":"ItemsScript","NewValue":"NewValue","NewValueScript":"NewValueScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComboEditor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboEditor","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboEditor()":"IgbComboEditor()","IgbComboEditor":"IgbComboEditor()","ActualBackgroundColor":"ActualBackgroundColor","ActualBaseTheme":"ActualBaseTheme","ActualBorderColor":"ActualBorderColor","ActualBorderWidth":"ActualBorderWidth","ActualContentPaddingBottom":"ActualContentPaddingBottom","ActualContentPaddingLeft":"ActualContentPaddingLeft","ActualContentPaddingRight":"ActualContentPaddingRight","ActualContentPaddingTop":"ActualContentPaddingTop","ActualCornerRadiusBottomLeft":"ActualCornerRadiusBottomLeft","ActualCornerRadiusBottomRight":"ActualCornerRadiusBottomRight","ActualCornerRadiusTopLeft":"ActualCornerRadiusTopLeft","ActualCornerRadiusTopRight":"ActualCornerRadiusTopRight","ActualDensity":"ActualDensity","ActualFocusBorderColor":"ActualFocusBorderColor","ActualFocusBorderWidth":"ActualFocusBorderWidth","ActualFocusUnderlineColor":"ActualFocusUnderlineColor","ActualFocusUnderlineOpacity":"ActualFocusUnderlineOpacity","ActualFocusUnderlineRippleOpacity":"ActualFocusUnderlineRippleOpacity","ActualHoverUnderlineColor":"ActualHoverUnderlineColor","ActualHoverUnderlineOpacity":"ActualHoverUnderlineOpacity","ActualHoverUnderlineWidth":"ActualHoverUnderlineWidth","ActualLabelTextColor":"ActualLabelTextColor","ActualLabelVisible":"ActualLabelVisible","ActualNoMatchesFoundLabel":"ActualNoMatchesFoundLabel","ActualNoMatchesFoundLabelBackgroundColor":"ActualNoMatchesFoundLabelBackgroundColor","ActualNoMatchesFoundLabelTextColor":"ActualNoMatchesFoundLabelTextColor","ActualTextColor":"ActualTextColor","ActualUnderlineColor":"ActualUnderlineColor","ActualUnderlineOpacity":"ActualUnderlineOpacity","ActualUnderlineRippleColor":"ActualUnderlineRippleColor","ActualUnderlineRippleOpacity":"ActualUnderlineRippleOpacity","ActualUnderlineRippleWidth":"ActualUnderlineRippleWidth","ActualUnderlineWidth":"ActualUnderlineWidth","ActualValueField":"ActualValueField","AllowFilter":"AllowFilter","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","BorderColor":"BorderColor","BorderWidth":"BorderWidth","Change":"Change","ChangeScript":"ChangeScript","Changing":"Changing","ChangingScript":"ChangingScript","CloseUp()":"CloseUp()","CloseUp":"CloseUp()","CloseUpAsync()":"CloseUpAsync()","CloseUpAsync":"CloseUpAsync()","ContentPaddingBottom":"ContentPaddingBottom","ContentPaddingLeft":"ContentPaddingLeft","ContentPaddingRight":"ContentPaddingRight","ContentPaddingTop":"ContentPaddingTop","CornerRadiusBottomLeft":"CornerRadiusBottomLeft","CornerRadiusBottomRight":"CornerRadiusBottomRight","CornerRadiusTopLeft":"CornerRadiusTopLeft","CornerRadiusTopRight":"CornerRadiusTopRight","DataSource":"DataSource","DataSourceDesiredProperties":"DataSourceDesiredProperties","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DropDown()":"DropDown()","DropDown":"DropDown()","DropDownAsync()":"DropDownAsync()","DropDownAsync":"DropDownAsync()","DropDownButtonVisible":"DropDownButtonVisible","EnableDisableFiltering(bool)":"EnableDisableFiltering(bool)","EnableDisableFiltering":"EnableDisableFiltering(bool)","EnableDisableFilteringAsync(bool)":"EnableDisableFilteringAsync(bool)","EnableDisableFilteringAsync":"EnableDisableFilteringAsync(bool)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","Fields":"Fields","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusBorderColor":"FocusBorderColor","FocusBorderWidth":"FocusBorderWidth","FocusUnderlineColor":"FocusUnderlineColor","FocusUnderlineOpacity":"FocusUnderlineOpacity","FocusUnderlineRippleOpacity":"FocusUnderlineRippleOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","GetCurrentText()":"GetCurrentText()","GetCurrentText":"GetCurrentText()","GetCurrentTextAsync()":"GetCurrentTextAsync()","GetCurrentTextAsync":"GetCurrentTextAsync()","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GotFocus":"GotFocus","GotFocusScript":"GotFocusScript","HoverUnderlineColor":"HoverUnderlineColor","HoverUnderlineOpacity":"HoverUnderlineOpacity","HoverUnderlineWidth":"HoverUnderlineWidth","IsFixed":"IsFixed","KeyDown":"KeyDown","KeyDownScript":"KeyDownScript","Label":"Label","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LostFocus":"LostFocus","LostFocusScript":"LostFocusScript","NoMatchesFoundLabel":"NoMatchesFoundLabel","NoMatchesFoundLabelBackgroundColor":"NoMatchesFoundLabelBackgroundColor","NoMatchesFoundLabelFontFamily":"NoMatchesFoundLabelFontFamily","NoMatchesFoundLabelFontSize":"NoMatchesFoundLabelFontSize","NoMatchesFoundLabelFontStyle":"NoMatchesFoundLabelFontStyle","NoMatchesFoundLabelFontWeight":"NoMatchesFoundLabelFontWeight","NoMatchesFoundLabelTextColor":"NoMatchesFoundLabelTextColor","OpenAsChild":"OpenAsChild","Placeholder":"Placeholder","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SelectGridRow(int)":"SelectGridRow(int)","SelectGridRow":"SelectGridRow(int)","SelectGridRowAsync(int)":"SelectGridRowAsync(int)","SelectGridRowAsync":"SelectGridRowAsync(int)","SelectedValueChanged":"SelectedValueChanged","SelectedValueChangedScript":"SelectedValueChangedScript","Text":"Text","TextChanged":"TextChanged","TextChangedScript":"TextChangedScript","TextColor":"TextColor","TextField":"TextField","TextValueChanged":"TextValueChanged","TextValueChangedScript":"TextValueChangedScript","Type":"Type","UnderlineColor":"UnderlineColor","UnderlineOpacity":"UnderlineOpacity","UnderlineRippleColor":"UnderlineRippleColor","UnderlineRippleOpacity":"UnderlineRippleOpacity","UnderlineRippleWidth":"UnderlineRippleWidth","UnderlineWidth":"UnderlineWidth","UseTopLayer":"UseTopLayer","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript","ValueField":"ValueField","VerifyDisplayText()":"VerifyDisplayText()","VerifyDisplayText":"VerifyDisplayText()","VerifyDisplayTextAsync()":"VerifyDisplayTextAsync()","VerifyDisplayTextAsync":"VerifyDisplayTextAsync()"}}],"IgbComboEditorGotFocusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboEditorGotFocusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboEditorGotFocusEventArgs()":"IgbComboEditorGotFocusEventArgs()","IgbComboEditorGotFocusEventArgs":"IgbComboEditorGotFocusEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComboEditorLostFocusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboEditorLostFocusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboEditorLostFocusEventArgs()":"IgbComboEditorLostFocusEventArgs()","IgbComboEditorLostFocusEventArgs":"IgbComboEditorLostFocusEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComboEditorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboEditorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboEditorModule()":"IgbComboEditorModule()","IgbComboEditorModule":"IgbComboEditorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbComboEditorTextChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboEditorTextChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboEditorTextChangedEventArgs()":"IgbComboEditorTextChangedEventArgs()","IgbComboEditorTextChangedEventArgs":"IgbComboEditorTextChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewText":"NewText","OldText":"OldText","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComboEditorValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboEditorValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboEditorValueChangedEventArgs()":"IgbComboEditorValueChangedEventArgs()","IgbComboEditorValueChangedEventArgs":"IgbComboEditorValueChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","NewValueScript":"NewValueScript","OldValue":"OldValue","OldValueScript":"OldValueScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComboModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComboModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboModule()":"IgbComboModule()","IgbComboModule":"IgbComboModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComboModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComboModule()":"IgbComboModule()","IgbComboModule":"IgbComboModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCommodityChannelIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCommodityChannelIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCommodityChannelIndexIndicator()":"IgbCommodityChannelIndexIndicator()","IgbCommodityChannelIndexIndicator":"IgbCommodityChannelIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbCommodityChannelIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCommodityChannelIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCommodityChannelIndexIndicatorModule()":"IgbCommodityChannelIndexIndicatorModule()","IgbCommodityChannelIndexIndicatorModule":"IgbCommodityChannelIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbComponentArrayDataValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComponentArrayDataValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentArrayDataValueChangedEventArgs()":"IgbComponentArrayDataValueChangedEventArgs()","IgbComponentArrayDataValueChangedEventArgs":"IgbComponentArrayDataValueChangedEventArgs()","Detail":"Detail","DetailScript":"DetailScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComponentBoolValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComponentBoolValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentBoolValueChangedEventArgs()":"IgbComponentBoolValueChangedEventArgs()","IgbComponentBoolValueChangedEventArgs":"IgbComponentBoolValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComponentBoolValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentBoolValueChangedEventArgs()":"IgbComponentBoolValueChangedEventArgs()","IgbComponentBoolValueChangedEventArgs":"IgbComponentBoolValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComponentDataValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComponentDataValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentDataValueChangedEventArgs()":"IgbComponentDataValueChangedEventArgs()","IgbComponentDataValueChangedEventArgs":"IgbComponentDataValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComponentDataValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentDataValueChangedEventArgs()":"IgbComponentDataValueChangedEventArgs()","IgbComponentDataValueChangedEventArgs":"IgbComponentDataValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComponentDateValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComponentDateValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentDateValueChangedEventArgs()":"IgbComponentDateValueChangedEventArgs()","IgbComponentDateValueChangedEventArgs":"IgbComponentDateValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComponentDateValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentDateValueChangedEventArgs()":"IgbComponentDateValueChangedEventArgs()","IgbComponentDateValueChangedEventArgs":"IgbComponentDateValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbComponentRendererContainer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComponentRendererContainer","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentRendererContainer()":"IgbComponentRendererContainer()","IgbComponentRendererContainer":"IgbComponentRendererContainer()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ComponentChanged":"ComponentChanged","ComponentType":"ComponentType","RootComponent":"RootComponent"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComponentRendererContainer","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentRendererContainer()":"IgbComponentRendererContainer()","IgbComponentRendererContainer":"IgbComponentRendererContainer()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ComponentChanged":"ComponentChanged","ComponentType":"ComponentType","RootComponent":"RootComponent"}}],"IgbComponentValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbComponentValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentValueChangedEventArgs()":"IgbComponentValueChangedEventArgs()","IgbComponentValueChangedEventArgs":"IgbComponentValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbComponentValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbComponentValueChangedEventArgs()":"IgbComponentValueChangedEventArgs()","IgbComponentValueChangedEventArgs":"IgbComponentValueChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbContentChildCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbContentChildCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, object)":"InsertItem(int, object)","InsertItem":"InsertItem(int, object)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, object)":"SetItem(int, object)","SetItem":"SetItem(int, object)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(object)":"Add(object)","Add":"Add(object)","Clear()":"Clear()","Clear":"Clear()","CopyTo(object[], int)":"CopyTo(object[], int)","CopyTo":"CopyTo(object[], int)","Contains(object)":"Contains(object)","Contains":"Contains(object)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(object)":"IndexOf(object)","IndexOf":"IndexOf(object)","Insert(int, object)":"Insert(int, object)","Insert":"Insert(int, object)","Remove(object)":"Remove(object)","Remove":"Remove(object)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbContentChildCollection(object, string)":"IgbContentChildCollection(object, string)","IgbContentChildCollection":"IgbContentChildCollection(object, string)"}}],"IgbContentPane":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbContentPane","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbContentPane()":"IgbContentPane()","IgbContentPane":"IgbContentPane()","AcceptsInnerDock":"AcceptsInnerDock","AllowClose":"AllowClose","AllowDocking":"AllowDocking","AllowFloating":"AllowFloating","AllowMaximize":"AllowMaximize","AllowPinning":"AllowPinning","ContentId":"ContentId","Disabled":"Disabled","DocumentOnly":"DocumentOnly","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FloatingHeaderId":"FloatingHeaderId","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Header":"Header","HeaderId":"HeaderId","Hidden":"Hidden","Id":"Id","IsMaximized":"IsMaximized","IsPinned":"IsPinned","PaneType":"PaneType","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Size":"Size","TabHeaderId":"TabHeaderId","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UnpinnedHeaderId":"UnpinnedHeaderId","UnpinnedLocation":"UnpinnedLocation","UnpinnedSize":"UnpinnedSize"}}],"IgbContentPaneCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbContentPaneCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbContentPane)":"InsertItem(int, IgbContentPane)","InsertItem":"InsertItem(int, IgbContentPane)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbContentPane)":"SetItem(int, IgbContentPane)","SetItem":"SetItem(int, IgbContentPane)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbContentPane)":"Add(IgbContentPane)","Add":"Add(IgbContentPane)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbContentPane[], int)":"CopyTo(IgbContentPane[], int)","CopyTo":"CopyTo(IgbContentPane[], int)","Contains(IgbContentPane)":"Contains(IgbContentPane)","Contains":"Contains(IgbContentPane)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbContentPane)":"IndexOf(IgbContentPane)","IndexOf":"IndexOf(IgbContentPane)","Insert(int, IgbContentPane)":"Insert(int, IgbContentPane)","Insert":"Insert(int, IgbContentPane)","Remove(IgbContentPane)":"Remove(IgbContentPane)","Remove":"Remove(IgbContentPane)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbContentPaneCollection()":"IgbContentPaneCollection()","IgbContentPaneCollection":"IgbContentPaneCollection()","IgbContentPaneCollection(object, string)":"IgbContentPaneCollection(object, string)"}}],"IgbContentPaneModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbContentPaneModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbContentPaneModule()":"IgbContentPaneModule()","IgbContentPaneModule":"IgbContentPaneModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbContourValueResolver":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbContourValueResolver","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbContourValueResolver()":"IgbContourValueResolver()","IgbContourValueResolver":"IgbContourValueResolver()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbCrosshairLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCrosshairLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCrosshairLayer()":"IgbCrosshairLayer()","IgbCrosshairLayer":"IgbCrosshairLayer()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalLineStroke":"HorizontalLineStroke","HorizontalLineVisibility":"HorizontalLineVisibility","IsAxisAnnotationEnabled":"IsAxisAnnotationEnabled","SkipAxisAnnotationOnInvalidData":"SkipAxisAnnotationOnInvalidData","SkipAxisAnnotationOnZeroValueFragments":"SkipAxisAnnotationOnZeroValueFragments","SkipUnknownValues":"SkipUnknownValues","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","Type":"Type","UseInterpolation":"UseInterpolation","VerticalLineStroke":"VerticalLineStroke","VerticalLineVisibility":"VerticalLineVisibility","XAxisAnnotationBackground":"XAxisAnnotationBackground","XAxisAnnotationBackgroundCornerRadius":"XAxisAnnotationBackgroundCornerRadius","XAxisAnnotationFormatLabelScript":"XAxisAnnotationFormatLabelScript","XAxisAnnotationInterpolatedValuePrecision":"XAxisAnnotationInterpolatedValuePrecision","XAxisAnnotationOutline":"XAxisAnnotationOutline","XAxisAnnotationPaddingBottom":"XAxisAnnotationPaddingBottom","XAxisAnnotationPaddingLeft":"XAxisAnnotationPaddingLeft","XAxisAnnotationPaddingRight":"XAxisAnnotationPaddingRight","XAxisAnnotationPaddingTop":"XAxisAnnotationPaddingTop","XAxisAnnotationStrokeThickness":"XAxisAnnotationStrokeThickness","XAxisAnnotationTextColor":"XAxisAnnotationTextColor","YAxisAnnotationBackground":"YAxisAnnotationBackground","YAxisAnnotationBackgroundCornerRadius":"YAxisAnnotationBackgroundCornerRadius","YAxisAnnotationFormatLabelScript":"YAxisAnnotationFormatLabelScript","YAxisAnnotationInterpolatedValuePrecision":"YAxisAnnotationInterpolatedValuePrecision","YAxisAnnotationOutline":"YAxisAnnotationOutline","YAxisAnnotationPaddingBottom":"YAxisAnnotationPaddingBottom","YAxisAnnotationPaddingLeft":"YAxisAnnotationPaddingLeft","YAxisAnnotationPaddingRight":"YAxisAnnotationPaddingRight","YAxisAnnotationPaddingTop":"YAxisAnnotationPaddingTop","YAxisAnnotationStrokeThickness":"YAxisAnnotationStrokeThickness","YAxisAnnotationTextColor":"YAxisAnnotationTextColor"}}],"IgbCrosshairLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCrosshairLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCrosshairLayerModule()":"IgbCrosshairLayerModule()","IgbCrosshairLayerModule":"IgbCrosshairLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCustomContourValueResolver":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomContourValueResolver","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomContourValueResolver()":"IgbCustomContourValueResolver()","IgbCustomContourValueResolver":"IgbCustomContourValueResolver()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCustomContourValues":"GetCustomContourValues","GetCustomContourValuesScript":"GetCustomContourValuesScript","Type":"Type"}}],"IgbCustomContourValueResolverEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomContourValueResolverEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomContourValueResolverEventArgs()":"IgbCustomContourValueResolverEventArgs()","IgbCustomContourValueResolverEventArgs":"IgbCustomContourValueResolverEventArgs()","ContourValues":"ContourValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Values":"Values"}}],"IgbCustomContourValueResolverModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomContourValueResolverModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomContourValueResolverModule()":"IgbCustomContourValueResolverModule()","IgbCustomContourValueResolverModule":"IgbCustomContourValueResolverModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCustomDateRange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomDateRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomDateRange()":"IgbCustomDateRange()","IgbCustomDateRange":"IgbCustomDateRange()","DateRange":"DateRange","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Label":"Label","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbCustomDateRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomDateRange()":"IgbCustomDateRange()","IgbCustomDateRange":"IgbCustomDateRange()","DateRange":"DateRange","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Label":"Label","Type":"Type"}}],"IgbCustomIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomIndicator()":"IgbCustomIndicator()","IgbCustomIndicator":"IgbCustomIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbCustomIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomIndicatorModule()":"IgbCustomIndicatorModule()","IgbCustomIndicatorModule":"IgbCustomIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCustomIndicatorNameCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomIndicatorNameCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, string)":"InsertItem(int, string)","InsertItem":"InsertItem(int, string)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, string)":"SetItem(int, string)","SetItem":"SetItem(int, string)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(string)":"Add(string)","Add":"Add(string)","Clear()":"Clear()","Clear":"Clear()","CopyTo(string[], int)":"CopyTo(string[], int)","CopyTo":"CopyTo(string[], int)","Contains(string)":"Contains(string)","Contains":"Contains(string)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(string)":"IndexOf(string)","IndexOf":"IndexOf(string)","Insert(int, string)":"Insert(int, string)","Insert":"Insert(int, string)","Remove(string)":"Remove(string)","Remove":"Remove(string)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomIndicatorNameCollection(object, string)":"IgbCustomIndicatorNameCollection(object, string)","IgbCustomIndicatorNameCollection":"IgbCustomIndicatorNameCollection(object, string)"}}],"IgbCustomMapImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomMapImagery","k":"class","s":"classes","m":{"ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","WindowRect":"WindowRect","Referer":"Referer","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","UserAgent":"UserAgent","Opacity":"Opacity","ImageTilesReadyScript":"ImageTilesReadyScript","ImageTilesReady":"ImageTilesReady","ImagesChangedScript":"ImagesChangedScript","ImagesChanged":"ImagesChanged","CancellingImageScript":"CancellingImageScript","CancellingImage":"CancellingImage","DownloadingImageScript":"DownloadingImageScript","DownloadingImage":"DownloadingImage","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomMapImagery()":"IgbCustomMapImagery()","IgbCustomMapImagery":"IgbCustomMapImagery()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetTileImageUri":"GetTileImageUri","GetTileImageUriScript":"GetTileImageUriScript","Type":"Type"}}],"IgbCustomMapImageryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomMapImageryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomMapImageryModule()":"IgbCustomMapImageryModule()","IgbCustomMapImageryModule":"IgbCustomMapImageryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCustomPaletteBrushScale":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomPaletteBrushScale","k":"class","s":"classes","m":{"RegisterSeriesAsync(IgbSeries)":"RegisterSeriesAsync(IgbSeries)","RegisterSeriesAsync":"RegisterSeriesAsync(IgbSeries)","RegisterSeries(IgbSeries)":"RegisterSeries(IgbSeries)","RegisterSeries":"RegisterSeries(IgbSeries)","UnregisterSeriesAsync(IgbSeries)":"UnregisterSeriesAsync(IgbSeries)","UnregisterSeriesAsync":"UnregisterSeriesAsync(IgbSeries)","UnregisterSeries(IgbSeries)":"UnregisterSeries(IgbSeries)","UnregisterSeries":"UnregisterSeries(IgbSeries)","GetBrushAsync(int)":"GetBrushAsync(int)","GetBrushAsync":"GetBrushAsync(int)","GetBrush(int)":"GetBrush(int)","GetBrush":"GetBrush(int)","NotifySeriesAsync()":"NotifySeriesAsync()","NotifySeriesAsync":"NotifySeriesAsync()","NotifySeries()":"NotifySeries()","NotifySeries":"NotifySeries()","Brushes":"Brushes","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomPaletteBrushScale()":"IgbCustomPaletteBrushScale()","IgbCustomPaletteBrushScale":"IgbCustomPaletteBrushScale()","BrushSelectionMode":"BrushSelectionMode","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetBrush1(int, int)":"GetBrush1(int, int)","GetBrush1":"GetBrush1(int, int)","GetBrush1Async(int, int)":"GetBrush1Async(int, int)","GetBrush1Async":"GetBrush1Async(int, int)","Type":"Type"}}],"IgbCustomPaletteBrushScaleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomPaletteBrushScaleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomPaletteBrushScaleModule()":"IgbCustomPaletteBrushScaleModule()","IgbCustomPaletteBrushScaleModule":"IgbCustomPaletteBrushScaleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbCustomPaletteColorScale":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomPaletteColorScale","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomPaletteColorScale()":"IgbCustomPaletteColorScale()","IgbCustomPaletteColorScale":"IgbCustomPaletteColorScale()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","InterpolationMode":"InterpolationMode","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","Palette":"Palette","Type":"Type"}}],"IgbCustomPaletteColorScaleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbCustomPaletteColorScaleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbCustomPaletteColorScaleModule()":"IgbCustomPaletteColorScaleModule()","IgbCustomPaletteColorScaleModule":"IgbCustomPaletteColorScaleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDashboardTile":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTile","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTile()":"IgbDashboardTile()","IgbDashboardTile":"IgbDashboardTile()","ActualBrushes":"ActualBrushes","ActualCustomizations":"ActualCustomizations","ActualOutlines":"ActualOutlines","AutoCalloutsVisible":"AutoCalloutsVisible","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","Brushes":"Brushes","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CategoryAxisMajorStroke":"CategoryAxisMajorStroke","ChangingContent":"ChangingContent","ChangingContentScript":"ChangingContentScript","ClearSettings()":"ClearSettings()","ClearSettings":"ClearSettings()","ClearSettingsAsync()":"ClearSettingsAsync()","ClearSettingsAsync":"ClearSettingsAsync()","ContentCustomizations":"ContentCustomizations","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsDisplayMode":"CrosshairsDisplayMode","Customizations":"Customizations","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExcludedProperties":"ExcludedProperties","FilterExpressions":"FilterExpressions","FilterStringErrorsParsing":"FilterStringErrorsParsing","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetSettingsValue(string)":"GetSettingsValue(string)","GetSettingsValue":"GetSettingsValue(string)","GetSettingsValueAsync(string)":"GetSettingsValueAsync(string)","GetSettingsValueAsync":"GetSettingsValueAsync(string)","GroupDescriptions":"GroupDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupSorts":"GroupSorts","HasModifiedSettings()":"HasModifiedSettings()","HasModifiedSettings":"HasModifiedSettings()","HasModifiedSettingsAsync()":"HasModifiedSettingsAsync()","HasModifiedSettingsAsync":"HasModifiedSettingsAsync()","HighlightFilterExpressions":"HighlightFilterExpressions","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IncludedProperties":"IncludedProperties","InitialFilter":"InitialFilter","InitialFilterExpressions":"InitialFilterExpressions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroups":"InitialGroups","InitialHighlightFilter":"InitialHighlightFilter","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSortDescriptions":"InitialSortDescriptions","InitialSorts":"InitialSorts","InitialSummaries":"InitialSummaries","InitialSummaryDescriptions":"InitialSummaryDescriptions","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","OnUIReady()":"OnUIReady()","OnUIReady":"OnUIReady()","OnUIReadyAsync()":"OnUIReadyAsync()","OnUIReadyAsync":"OnUIReadyAsync()","Outlines":"Outlines","ParentTypeName":"ParentTypeName","RemoveSettingsValue(string)":"RemoveSettingsValue(string)","RemoveSettingsValue":"RemoveSettingsValue(string)","RemoveSettingsValueAsync(string)":"RemoveSettingsValueAsync(string)","RemoveSettingsValueAsync":"RemoveSettingsValueAsync(string)","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SelectedSeriesItems":"SelectedSeriesItems","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","SortDescriptions":"SortDescriptions","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","SummaryDescriptions":"SummaryDescriptions","TileTitle":"TileTitle","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineTypes":"TrendLineTypes","Type":"Type","UpdateSettingsValue(string, object)":"UpdateSettingsValue(string, object)","UpdateSettingsValue":"UpdateSettingsValue(string, object)","UpdateSettingsValueAsync(string, object)":"UpdateSettingsValueAsync(string, object)","UpdateSettingsValueAsync":"UpdateSettingsValueAsync(string, object)","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","ValidVisualizationTypePriorityThreshold":"ValidVisualizationTypePriorityThreshold","ValidVisualizationTypes":"ValidVisualizationTypes","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesGlobalAverageBrush":"ValueLinesGlobalAverageBrush","ValueLinesGlobalMaximumBrush":"ValueLinesGlobalMaximumBrush","ValueLinesGlobalMinimumBrush":"ValueLinesGlobalMinimumBrush","VisualizationType":"VisualizationType","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)"}}],"IgbDashboardTileChangingContentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileChangingContentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileChangingContentEventArgs()":"IgbDashboardTileChangingContentEventArgs()","IgbDashboardTileChangingContentEventArgs":"IgbDashboardTileChangingContentEventArgs()","ContentJson":"ContentJson","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDashboardTileCustomization":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileCustomization","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileCustomization()":"IgbDashboardTileCustomization()","IgbDashboardTileCustomization":"IgbDashboardTileCustomization()","CollectionIndex":"CollectionIndex","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCollectionInsertionAtEnd":"IsCollectionInsertionAtEnd","IsCollectionInsertionAtIndex":"IsCollectionInsertionAtIndex","IsCollectionInsertionAtStart":"IsCollectionInsertionAtStart","IsCollectionRemovaltIndex":"IsCollectionRemovaltIndex","MatchParentIndex":"MatchParentIndex","MatchType":"MatchType","Order":"Order","PropertyName":"PropertyName","PropertyValue":"PropertyValue","PropertyValueScript":"PropertyValueScript","Type":"Type"}}],"IgbDashboardTileCustomizationCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileCustomizationCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDashboardTileCustomization)":"InsertItem(int, IgbDashboardTileCustomization)","InsertItem":"InsertItem(int, IgbDashboardTileCustomization)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDashboardTileCustomization)":"SetItem(int, IgbDashboardTileCustomization)","SetItem":"SetItem(int, IgbDashboardTileCustomization)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDashboardTileCustomization)":"Add(IgbDashboardTileCustomization)","Add":"Add(IgbDashboardTileCustomization)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDashboardTileCustomization[], int)":"CopyTo(IgbDashboardTileCustomization[], int)","CopyTo":"CopyTo(IgbDashboardTileCustomization[], int)","Contains(IgbDashboardTileCustomization)":"Contains(IgbDashboardTileCustomization)","Contains":"Contains(IgbDashboardTileCustomization)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDashboardTileCustomization)":"IndexOf(IgbDashboardTileCustomization)","IndexOf":"IndexOf(IgbDashboardTileCustomization)","Insert(int, IgbDashboardTileCustomization)":"Insert(int, IgbDashboardTileCustomization)","Insert":"Insert(int, IgbDashboardTileCustomization)","Remove(IgbDashboardTileCustomization)":"Remove(IgbDashboardTileCustomization)","Remove":"Remove(IgbDashboardTileCustomization)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileCustomizationCollection(object, string)":"IgbDashboardTileCustomizationCollection(object, string)","IgbDashboardTileCustomizationCollection":"IgbDashboardTileCustomizationCollection(object, string)"}}],"IgbDashboardTileCustomizationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileCustomizationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileCustomizationModule()":"IgbDashboardTileCustomizationModule()","IgbDashboardTileCustomizationModule":"IgbDashboardTileCustomizationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDashboardTileFilterStringErrorsParsingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileFilterStringErrorsParsingEventArgs()":"IgbDashboardTileFilterStringErrorsParsingEventArgs()","IgbDashboardTileFilterStringErrorsParsingEventArgs":"IgbDashboardTileFilterStringErrorsParsingEventArgs()","Errors":"Errors","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PropertyName":"PropertyName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDashboardTileGroupDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileGroupDescription","k":"class","s":"classes","m":{"Field":"Field","SortDirection":"SortDirection","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileGroupDescription()":"IgbDashboardTileGroupDescription()","IgbDashboardTileGroupDescription":"IgbDashboardTileGroupDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDashboardTileGroupDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileGroupDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDashboardTileGroupDescription)":"InsertItem(int, IgbDashboardTileGroupDescription)","InsertItem":"InsertItem(int, IgbDashboardTileGroupDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDashboardTileGroupDescription)":"SetItem(int, IgbDashboardTileGroupDescription)","SetItem":"SetItem(int, IgbDashboardTileGroupDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDashboardTileGroupDescription)":"Add(IgbDashboardTileGroupDescription)","Add":"Add(IgbDashboardTileGroupDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDashboardTileGroupDescription[], int)":"CopyTo(IgbDashboardTileGroupDescription[], int)","CopyTo":"CopyTo(IgbDashboardTileGroupDescription[], int)","Contains(IgbDashboardTileGroupDescription)":"Contains(IgbDashboardTileGroupDescription)","Contains":"Contains(IgbDashboardTileGroupDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDashboardTileGroupDescription)":"IndexOf(IgbDashboardTileGroupDescription)","IndexOf":"IndexOf(IgbDashboardTileGroupDescription)","Insert(int, IgbDashboardTileGroupDescription)":"Insert(int, IgbDashboardTileGroupDescription)","Insert":"Insert(int, IgbDashboardTileGroupDescription)","Remove(IgbDashboardTileGroupDescription)":"Remove(IgbDashboardTileGroupDescription)","Remove":"Remove(IgbDashboardTileGroupDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileGroupDescriptionCollection(object, string)":"IgbDashboardTileGroupDescriptionCollection(object, string)","IgbDashboardTileGroupDescriptionCollection":"IgbDashboardTileGroupDescriptionCollection(object, string)"}}],"IgbDashboardTileGroupDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileGroupDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileGroupDescriptionModule()":"IgbDashboardTileGroupDescriptionModule()","IgbDashboardTileGroupDescriptionModule":"IgbDashboardTileGroupDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDashboardTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileModule()":"IgbDashboardTileModule()","IgbDashboardTileModule":"IgbDashboardTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDashboardTileSortDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileSortDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileSortDescription()":"IgbDashboardTileSortDescription()","IgbDashboardTileSortDescription":"IgbDashboardTileSortDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SortDirection":"SortDirection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDashboardTileSortDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileSortDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDashboardTileSortDescription)":"InsertItem(int, IgbDashboardTileSortDescription)","InsertItem":"InsertItem(int, IgbDashboardTileSortDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDashboardTileSortDescription)":"SetItem(int, IgbDashboardTileSortDescription)","SetItem":"SetItem(int, IgbDashboardTileSortDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDashboardTileSortDescription)":"Add(IgbDashboardTileSortDescription)","Add":"Add(IgbDashboardTileSortDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDashboardTileSortDescription[], int)":"CopyTo(IgbDashboardTileSortDescription[], int)","CopyTo":"CopyTo(IgbDashboardTileSortDescription[], int)","Contains(IgbDashboardTileSortDescription)":"Contains(IgbDashboardTileSortDescription)","Contains":"Contains(IgbDashboardTileSortDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDashboardTileSortDescription)":"IndexOf(IgbDashboardTileSortDescription)","IndexOf":"IndexOf(IgbDashboardTileSortDescription)","Insert(int, IgbDashboardTileSortDescription)":"Insert(int, IgbDashboardTileSortDescription)","Insert":"Insert(int, IgbDashboardTileSortDescription)","Remove(IgbDashboardTileSortDescription)":"Remove(IgbDashboardTileSortDescription)","Remove":"Remove(IgbDashboardTileSortDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileSortDescriptionCollection(object, string)":"IgbDashboardTileSortDescriptionCollection(object, string)","IgbDashboardTileSortDescriptionCollection":"IgbDashboardTileSortDescriptionCollection(object, string)"}}],"IgbDashboardTileSortDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileSortDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileSortDescriptionModule()":"IgbDashboardTileSortDescriptionModule()","IgbDashboardTileSortDescriptionModule":"IgbDashboardTileSortDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDashboardTileSummaryDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileSummaryDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileSummaryDescription()":"IgbDashboardTileSummaryDescription()","IgbDashboardTileSummaryDescription":"IgbDashboardTileSummaryDescription()","Alias":"Alias","CalculatorDisplayName":"CalculatorDisplayName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operand":"Operand","ProvideCalculator":"ProvideCalculator","ProvideCalculatorScript":"ProvideCalculatorScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDashboardTileSummaryDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileSummaryDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDashboardTileSummaryDescription)":"InsertItem(int, IgbDashboardTileSummaryDescription)","InsertItem":"InsertItem(int, IgbDashboardTileSummaryDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDashboardTileSummaryDescription)":"SetItem(int, IgbDashboardTileSummaryDescription)","SetItem":"SetItem(int, IgbDashboardTileSummaryDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDashboardTileSummaryDescription)":"Add(IgbDashboardTileSummaryDescription)","Add":"Add(IgbDashboardTileSummaryDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDashboardTileSummaryDescription[], int)":"CopyTo(IgbDashboardTileSummaryDescription[], int)","CopyTo":"CopyTo(IgbDashboardTileSummaryDescription[], int)","Contains(IgbDashboardTileSummaryDescription)":"Contains(IgbDashboardTileSummaryDescription)","Contains":"Contains(IgbDashboardTileSummaryDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDashboardTileSummaryDescription)":"IndexOf(IgbDashboardTileSummaryDescription)","IndexOf":"IndexOf(IgbDashboardTileSummaryDescription)","Insert(int, IgbDashboardTileSummaryDescription)":"Insert(int, IgbDashboardTileSummaryDescription)","Insert":"Insert(int, IgbDashboardTileSummaryDescription)","Remove(IgbDashboardTileSummaryDescription)":"Remove(IgbDashboardTileSummaryDescription)","Remove":"Remove(IgbDashboardTileSummaryDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileSummaryDescriptionCollection(object, string)":"IgbDashboardTileSummaryDescriptionCollection(object, string)","IgbDashboardTileSummaryDescriptionCollection":"IgbDashboardTileSummaryDescriptionCollection(object, string)"}}],"IgbDashboardTileSummaryDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDashboardTileSummaryDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDashboardTileSummaryDescriptionModule()":"IgbDashboardTileSummaryDescriptionModule()","IgbDashboardTileSummaryDescriptionModule":"IgbDashboardTileSummaryDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataAnnotationAxisLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationAxisLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationAxisLayer()":"IgbDataAnnotationAxisLayer()","IgbDataAnnotationAxisLayer":"IgbDataAnnotationAxisLayer()","AnnotationBackground":"AnnotationBackground","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeMargin":"AnnotationBadgeMargin","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBorderShift":"AnnotationBorderShift","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetAxis":"TargetAxis","TargetAxisName":"TargetAxisName","TargetAxisScript":"TargetAxisScript","TargetMode":"TargetMode","Type":"Type"}}],"IgbDataAnnotationBandLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationBandLayer","k":"class","s":"classes","m":{"StartValueXMemberPath":"StartValueXMemberPath","StartValueYMemberPath":"StartValueYMemberPath","StartLabelXMemberPath":"StartLabelXMemberPath","StartLabelYMemberPath":"StartLabelYMemberPath","StartLabelXDisplayMode":"StartLabelXDisplayMode","StartLabelYDisplayMode":"StartLabelYDisplayMode","EndValueXMemberPath":"EndValueXMemberPath","EndValueYMemberPath":"EndValueYMemberPath","EndLabelXMemberPath":"EndLabelXMemberPath","EndLabelYMemberPath":"EndLabelYMemberPath","EndLabelXDisplayMode":"EndLabelXDisplayMode","EndLabelYDisplayMode":"EndLabelYDisplayMode","CenterLabelXMemberPath":"CenterLabelXMemberPath","CenterLabelYMemberPath":"CenterLabelYMemberPath","CenterLabelXDisplayMode":"CenterLabelXDisplayMode","CenterLabelYDisplayMode":"CenterLabelYDisplayMode","AnnotationBadgeEnabledXMemberPath":"AnnotationBadgeEnabledXMemberPath","AnnotationBadgeEnabledYMemberPath":"AnnotationBadgeEnabledYMemberPath","AnnotationBadgeBackgroundXMemberPath":"AnnotationBadgeBackgroundXMemberPath","AnnotationBadgeBackgroundYMemberPath":"AnnotationBadgeBackgroundYMemberPath","AnnotationBadgeOutlineXMemberPath":"AnnotationBadgeOutlineXMemberPath","AnnotationBadgeOutlineYMemberPath":"AnnotationBadgeOutlineYMemberPath","AnnotationBadgeImageXMemberPath":"AnnotationBadgeImageXMemberPath","AnnotationBadgeImageYMemberPath":"AnnotationBadgeImageYMemberPath","StartLabelTextColor":"StartLabelTextColor","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","EndLabelTextColor":"EndLabelTextColor","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","CenterLabelTextColor":"CenterLabelTextColor","CenterLabelBackground":"CenterLabelBackground","CenterLabelBorderColor":"CenterLabelBorderColor","FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationBandLayer()":"IgbDataAnnotationBandLayer()","IgbDataAnnotationBandLayer":"IgbDataAnnotationBandLayer()","AnnotationBreadthMemberPath":"AnnotationBreadthMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataAnnotationBandLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationBandLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationBandLayerModule()":"IgbDataAnnotationBandLayerModule()","IgbDataAnnotationBandLayerModule":"IgbDataAnnotationBandLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataAnnotationInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationInfo()":"IgbDataAnnotationInfo()","IgbDataAnnotationInfo":"IgbDataAnnotationInfo()","Background":"Background","BorderColor":"BorderColor","BorderRadius":"BorderRadius","BorderThickness":"BorderThickness","DataIndex":"DataIndex","DataLabelX":"DataLabelX","DataLabelY":"DataLabelY","DataValueX":"DataValueX","DataValueY":"DataValueY","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCenterLabel":"IsCenterLabel","IsEndLabel":"IsEndLabel","IsStartLabel":"IsStartLabel","IsXAxisBadgeEnabled":"IsXAxisBadgeEnabled","IsYAxisBadgeEnabled":"IsYAxisBadgeEnabled","TextColor":"TextColor","Type":"Type","XAxisBadgeBackground":"XAxisBadgeBackground","XAxisBadgeImagePath":"XAxisBadgeImagePath","XAxisBadgeMargin":"XAxisBadgeMargin","XAxisBadgeOutline":"XAxisBadgeOutline","XAxisBadgeOutlineThickness":"XAxisBadgeOutlineThickness","XAxisBadgeRadius":"XAxisBadgeRadius","XAxisBadgeSize":"XAxisBadgeSize","XAxisLabel":"XAxisLabel","XAxisPixel":"XAxisPixel","XAxisUserAnnotation":"XAxisUserAnnotation","XAxisValue":"XAxisValue","XAxisWindow":"XAxisWindow","YAxisBadgeBackground":"YAxisBadgeBackground","YAxisBadgeImagePath":"YAxisBadgeImagePath","YAxisBadgeMargin":"YAxisBadgeMargin","YAxisBadgeOutline":"YAxisBadgeOutline","YAxisBadgeOutlineThickness":"YAxisBadgeOutlineThickness","YAxisBadgeRadius":"YAxisBadgeRadius","YAxisBadgeSize":"YAxisBadgeSize","YAxisLabel":"YAxisLabel","YAxisPixel":"YAxisPixel","YAxisUserAnnotation":"YAxisUserAnnotation","YAxisValue":"YAxisValue","YAxisWindow":"YAxisWindow"}}],"IgbDataAnnotationItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationItem","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationItem()":"IgbDataAnnotationItem()","IgbDataAnnotationItem":"IgbDataAnnotationItem()","CenterLabelX":"CenterLabelX","CenterLabelY":"CenterLabelY","DataIndex":"DataIndex","EndLabelX":"EndLabelX","EndLabelY":"EndLabelY","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ShapeBrush":"ShapeBrush","ShapeCenterX":"ShapeCenterX","ShapeCenterY":"ShapeCenterY","ShapeEndX":"ShapeEndX","ShapeEndY":"ShapeEndY","ShapeOutline":"ShapeOutline","ShapeStartX":"ShapeStartX","ShapeStartY":"ShapeStartY","ShapeThickness":"ShapeThickness","StartLabelX":"StartLabelX","StartLabelY":"StartLabelY","Type":"Type"}}],"IgbDataAnnotationLineLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationLineLayer","k":"class","s":"classes","m":{"StartValueXMemberPath":"StartValueXMemberPath","StartValueYMemberPath":"StartValueYMemberPath","StartLabelXMemberPath":"StartLabelXMemberPath","StartLabelYMemberPath":"StartLabelYMemberPath","StartLabelXDisplayMode":"StartLabelXDisplayMode","StartLabelYDisplayMode":"StartLabelYDisplayMode","EndValueXMemberPath":"EndValueXMemberPath","EndValueYMemberPath":"EndValueYMemberPath","EndLabelXMemberPath":"EndLabelXMemberPath","EndLabelYMemberPath":"EndLabelYMemberPath","EndLabelXDisplayMode":"EndLabelXDisplayMode","EndLabelYDisplayMode":"EndLabelYDisplayMode","CenterLabelXMemberPath":"CenterLabelXMemberPath","CenterLabelYMemberPath":"CenterLabelYMemberPath","CenterLabelXDisplayMode":"CenterLabelXDisplayMode","CenterLabelYDisplayMode":"CenterLabelYDisplayMode","AnnotationBadgeEnabledXMemberPath":"AnnotationBadgeEnabledXMemberPath","AnnotationBadgeEnabledYMemberPath":"AnnotationBadgeEnabledYMemberPath","AnnotationBadgeBackgroundXMemberPath":"AnnotationBadgeBackgroundXMemberPath","AnnotationBadgeBackgroundYMemberPath":"AnnotationBadgeBackgroundYMemberPath","AnnotationBadgeOutlineXMemberPath":"AnnotationBadgeOutlineXMemberPath","AnnotationBadgeOutlineYMemberPath":"AnnotationBadgeOutlineYMemberPath","AnnotationBadgeImageXMemberPath":"AnnotationBadgeImageXMemberPath","AnnotationBadgeImageYMemberPath":"AnnotationBadgeImageYMemberPath","StartLabelTextColor":"StartLabelTextColor","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","EndLabelTextColor":"EndLabelTextColor","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","CenterLabelTextColor":"CenterLabelTextColor","CenterLabelBackground":"CenterLabelBackground","CenterLabelBorderColor":"CenterLabelBorderColor","FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationLineLayer()":"IgbDataAnnotationLineLayer()","IgbDataAnnotationLineLayer":"IgbDataAnnotationLineLayer()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataAnnotationLineLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationLineLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationLineLayerModule()":"IgbDataAnnotationLineLayerModule()","IgbDataAnnotationLineLayerModule":"IgbDataAnnotationLineLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataAnnotationPointLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationPointLayer","k":"class","s":"classes","m":{"StartLabelTextColor":"StartLabelTextColor","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","EndLabelTextColor":"EndLabelTextColor","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","CenterLabelTextColor":"CenterLabelTextColor","CenterLabelBackground":"CenterLabelBackground","CenterLabelBorderColor":"CenterLabelBorderColor","FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationPointLayer()":"IgbDataAnnotationPointLayer()","IgbDataAnnotationPointLayer":"IgbDataAnnotationPointLayer()","AnnotationBadgeBackgroundXMemberPath":"AnnotationBadgeBackgroundXMemberPath","AnnotationBadgeBackgroundYMemberPath":"AnnotationBadgeBackgroundYMemberPath","AnnotationBadgeEnabledXMemberPath":"AnnotationBadgeEnabledXMemberPath","AnnotationBadgeEnabledYMemberPath":"AnnotationBadgeEnabledYMemberPath","AnnotationBadgeImageXMemberPath":"AnnotationBadgeImageXMemberPath","AnnotationBadgeImageYMemberPath":"AnnotationBadgeImageYMemberPath","AnnotationBadgeOutlineXMemberPath":"AnnotationBadgeOutlineXMemberPath","AnnotationBadgeOutlineYMemberPath":"AnnotationBadgeOutlineYMemberPath","CenterLabelXDisplayMode":"CenterLabelXDisplayMode","CenterLabelXMemberPath":"CenterLabelXMemberPath","CenterLabelYDisplayMode":"CenterLabelYDisplayMode","CenterLabelYMemberPath":"CenterLabelYMemberPath","EndLabelXDisplayMode":"EndLabelXDisplayMode","EndLabelXMemberPath":"EndLabelXMemberPath","EndLabelYDisplayMode":"EndLabelYDisplayMode","EndLabelYMemberPath":"EndLabelYMemberPath","EndValueXMemberPath":"EndValueXMemberPath","EndValueYMemberPath":"EndValueYMemberPath","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","StartLabelXDisplayMode":"StartLabelXDisplayMode","StartLabelXMemberPath":"StartLabelXMemberPath","StartLabelYDisplayMode":"StartLabelYDisplayMode","StartLabelYMemberPath":"StartLabelYMemberPath","StartValueXMemberPath":"StartValueXMemberPath","StartValueYMemberPath":"StartValueYMemberPath","Type":"Type"}}],"IgbDataAnnotationRangeLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationRangeLayer","k":"class","s":"classes","m":{"FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationRangeLayer()":"IgbDataAnnotationRangeLayer()","IgbDataAnnotationRangeLayer":"IgbDataAnnotationRangeLayer()","CenterLabelBackground":"CenterLabelBackground","CenterLabelBorderColor":"CenterLabelBorderColor","CenterLabelTextColor":"CenterLabelTextColor","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","EndLabelTextColor":"EndLabelTextColor","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","StartLabelTextColor":"StartLabelTextColor","Type":"Type"}}],"IgbDataAnnotationRectLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationRectLayer","k":"class","s":"classes","m":{"StartValueXMemberPath":"StartValueXMemberPath","StartValueYMemberPath":"StartValueYMemberPath","StartLabelXMemberPath":"StartLabelXMemberPath","StartLabelYMemberPath":"StartLabelYMemberPath","StartLabelXDisplayMode":"StartLabelXDisplayMode","StartLabelYDisplayMode":"StartLabelYDisplayMode","EndValueXMemberPath":"EndValueXMemberPath","EndValueYMemberPath":"EndValueYMemberPath","EndLabelXMemberPath":"EndLabelXMemberPath","EndLabelYMemberPath":"EndLabelYMemberPath","EndLabelXDisplayMode":"EndLabelXDisplayMode","EndLabelYDisplayMode":"EndLabelYDisplayMode","CenterLabelXMemberPath":"CenterLabelXMemberPath","CenterLabelYMemberPath":"CenterLabelYMemberPath","CenterLabelXDisplayMode":"CenterLabelXDisplayMode","CenterLabelYDisplayMode":"CenterLabelYDisplayMode","AnnotationBadgeEnabledXMemberPath":"AnnotationBadgeEnabledXMemberPath","AnnotationBadgeEnabledYMemberPath":"AnnotationBadgeEnabledYMemberPath","AnnotationBadgeBackgroundXMemberPath":"AnnotationBadgeBackgroundXMemberPath","AnnotationBadgeBackgroundYMemberPath":"AnnotationBadgeBackgroundYMemberPath","AnnotationBadgeOutlineXMemberPath":"AnnotationBadgeOutlineXMemberPath","AnnotationBadgeOutlineYMemberPath":"AnnotationBadgeOutlineYMemberPath","AnnotationBadgeImageXMemberPath":"AnnotationBadgeImageXMemberPath","AnnotationBadgeImageYMemberPath":"AnnotationBadgeImageYMemberPath","StartLabelTextColor":"StartLabelTextColor","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","EndLabelTextColor":"EndLabelTextColor","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","CenterLabelTextColor":"CenterLabelTextColor","CenterLabelBackground":"CenterLabelBackground","CenterLabelBorderColor":"CenterLabelBorderColor","FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationRectLayer()":"IgbDataAnnotationRectLayer()","IgbDataAnnotationRectLayer":"IgbDataAnnotationRectLayer()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataAnnotationRectLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationRectLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationRectLayerModule()":"IgbDataAnnotationRectLayerModule()","IgbDataAnnotationRectLayerModule":"IgbDataAnnotationRectLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataAnnotationShapeLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationShapeLayer","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationShapeLayer()":"IgbDataAnnotationShapeLayer()","IgbDataAnnotationShapeLayer":"IgbDataAnnotationShapeLayer()","AnnotationShapeVisible":"AnnotationShapeVisible","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayText":"OverlayText","OverlayTextAngle":"OverlayTextAngle","OverlayTextBackground":"OverlayTextBackground","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextColor":"OverlayTextColor","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextLocation":"OverlayTextLocation","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextVisible":"OverlayTextVisible","StylingAxisAnnotation":"StylingAxisAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingOverlayText":"StylingOverlayText","StylingOverlayTextScript":"StylingOverlayTextScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","Type":"Type"}}],"IgbDataAnnotationSliceLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationSliceLayer","k":"class","s":"classes","m":{"FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationSliceLayer()":"IgbDataAnnotationSliceLayer()","IgbDataAnnotationSliceLayer":"IgbDataAnnotationSliceLayer()","AnnotationBadgeBackgroundMemberPath":"AnnotationBadgeBackgroundMemberPath","AnnotationBadgeEnabledMemberPath":"AnnotationBadgeEnabledMemberPath","AnnotationBadgeImageMemberPath":"AnnotationBadgeImageMemberPath","AnnotationBadgeOutlineMemberPath":"AnnotationBadgeOutlineMemberPath","AnnotationLabelMemberPath":"AnnotationLabelMemberPath","AnnotationValueMemberPath":"AnnotationValueMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataAnnotationSliceLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationSliceLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationSliceLayerModule()":"IgbDataAnnotationSliceLayerModule()","IgbDataAnnotationSliceLayerModule":"IgbDataAnnotationSliceLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataAnnotationStripLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationStripLayer","k":"class","s":"classes","m":{"StartLabelTextColor":"StartLabelTextColor","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","EndLabelTextColor":"EndLabelTextColor","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","CenterLabelTextColor":"CenterLabelTextColor","CenterLabelBackground":"CenterLabelBackground","CenterLabelBorderColor":"CenterLabelBorderColor","FromWorldAsync(Point)":"FromWorldAsync(Point)","FromWorldAsync":"FromWorldAsync(Point)","FromWorld(Point)":"FromWorld(Point)","FromWorld":"FromWorld(Point)","FromWorldXAsync(double)":"FromWorldXAsync(double)","FromWorldXAsync":"FromWorldXAsync(double)","FromWorldX(double)":"FromWorldX(double)","FromWorldX":"FromWorldX(double)","FromWorldYAsync(double)":"FromWorldYAsync(double)","FromWorldYAsync":"FromWorldYAsync(double)","FromWorldY(double)":"FromWorldY(double)","FromWorldY":"FromWorldY(double)","ToWorldAsync(Point)":"ToWorldAsync(Point)","ToWorldAsync":"ToWorldAsync(Point)","ToWorld(Point)":"ToWorld(Point)","ToWorld":"ToWorld(Point)","ToWorldXAsync(double)":"ToWorldXAsync(double)","ToWorldXAsync":"ToWorldXAsync(double)","ToWorldX(double)":"ToWorldX(double)","ToWorldX":"ToWorldX(double)","ToWorldYAsync(double)":"ToWorldYAsync(double)","ToWorldYAsync":"ToWorldYAsync(double)","ToWorldY(double)":"ToWorldY(double)","ToWorldY":"ToWorldY(double)","AnnotationShapeVisible":"AnnotationShapeVisible","ItemsUseWorldCoordinates":"ItemsUseWorldCoordinates","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextBackground":"OverlayTextBackground","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextVisible":"OverlayTextVisible","OverlayTextMemberPath":"OverlayTextMemberPath","OverlayText":"OverlayText","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","IsTargetingHorizontalAxis":"IsTargetingHorizontalAxis","StylingOverlayTextScript":"StylingOverlayTextScript","StylingOverlayText":"StylingOverlayText","StylingShapeAnnotationScript":"StylingShapeAnnotationScript","StylingShapeAnnotation":"StylingShapeAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingAxisAnnotation":"StylingAxisAnnotation","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","AnnotationLabelDisplayMode":"AnnotationLabelDisplayMode","AnnotationLabelVisible":"AnnotationLabelVisible","AnnotationTextColor":"AnnotationTextColor","AnnotationTextColorMode":"AnnotationTextColorMode","AnnotationTextColorShift":"AnnotationTextColorShift","AnnotationTextColorMatchLayer":"AnnotationTextColorMatchLayer","AnnotationBackground":"AnnotationBackground","AnnotationBorderRadius":"AnnotationBorderRadius","AnnotationBackgroundMode":"AnnotationBackgroundMode","AnnotationBackgroundShift":"AnnotationBackgroundShift","AnnotationBackgroundMatchLayer":"AnnotationBackgroundMatchLayer","AnnotationBorderMatchLayer":"AnnotationBorderMatchLayer","AnnotationBorderColor":"AnnotationBorderColor","AnnotationBorderMode":"AnnotationBorderMode","AnnotationBorderShift":"AnnotationBorderShift","AnnotationPaddingBottom":"AnnotationPaddingBottom","AnnotationPaddingLeft":"AnnotationPaddingLeft","AnnotationPaddingRight":"AnnotationPaddingRight","AnnotationPaddingTop":"AnnotationPaddingTop","AnnotationBorderThickness":"AnnotationBorderThickness","AnnotationValueMaxPrecision":"AnnotationValueMaxPrecision","AnnotationValueMinPrecision":"AnnotationValueMinPrecision","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetMode":"TargetMode","AnnotationBadgeEnabled":"AnnotationBadgeEnabled","AnnotationBadgeBackground":"AnnotationBadgeBackground","AnnotationBadgeOutline":"AnnotationBadgeOutline","AnnotationBadgeOutlineThickness":"AnnotationBadgeOutlineThickness","AnnotationBadgeCornerRadius":"AnnotationBadgeCornerRadius","AnnotationBadgeImagePath":"AnnotationBadgeImagePath","AnnotationBadgeSize":"AnnotationBadgeSize","AnnotationBadgeMargin":"AnnotationBadgeMargin","UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationStripLayer()":"IgbDataAnnotationStripLayer()","IgbDataAnnotationStripLayer":"IgbDataAnnotationStripLayer()","AnnotationBadgeBackgroundMemberPath":"AnnotationBadgeBackgroundMemberPath","AnnotationBadgeEnabledMemberPath":"AnnotationBadgeEnabledMemberPath","AnnotationBadgeImageMemberPath":"AnnotationBadgeImageMemberPath","AnnotationBadgeOutlineMemberPath":"AnnotationBadgeOutlineMemberPath","CenterLabelDisplayMode":"CenterLabelDisplayMode","CenterLabelMemberPath":"CenterLabelMemberPath","EndLabelDisplayMode":"EndLabelDisplayMode","EndLabelMemberPath":"EndLabelMemberPath","EndValueMemberPath":"EndValueMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","StartLabelDisplayMode":"StartLabelDisplayMode","StartLabelMemberPath":"StartLabelMemberPath","StartValueMemberPath":"StartValueMemberPath","Type":"Type"}}],"IgbDataAnnotationStripLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataAnnotationStripLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataAnnotationStripLayerModule()":"IgbDataAnnotationStripLayerModule()","IgbDataAnnotationStripLayerModule":"IgbDataAnnotationStripLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataBindingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataBindingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataBindingEventArgs()":"IgbDataBindingEventArgs()","IgbDataBindingEventArgs":"IgbDataBindingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ResolvedValue":"ResolvedValue","ResolvedValueScript":"ResolvedValueScript","RowObject":"RowObject","RowObjectScript":"RowObjectScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChart","k":"class","s":"classes","m":{"GetAllSeries()":"GetAllSeries()","GetAllSeries":"GetAllSeries()","GetCurrentViewportRectAsync()":"GetCurrentViewportRectAsync()","GetCurrentViewportRectAsync":"GetCurrentViewportRectAsync()","GetCurrentViewportRect()":"GetCurrentViewportRect()","GetCurrentViewportRect":"GetCurrentViewportRect()","GetCurrentWindowRectAsync()":"GetCurrentWindowRectAsync()","GetCurrentWindowRectAsync":"GetCurrentWindowRectAsync()","GetCurrentWindowRect()":"GetCurrentWindowRect()","GetCurrentWindowRect":"GetCurrentWindowRect()","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","GetCurrentActualWindowRectAsync()":"GetCurrentActualWindowRectAsync()","GetCurrentActualWindowRectAsync":"GetCurrentActualWindowRectAsync()","GetCurrentActualWindowRect()":"GetCurrentActualWindowRect()","GetCurrentActualWindowRect":"GetCurrentActualWindowRect()","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","GetAnimationIdleVersionNumberAsync()":"GetAnimationIdleVersionNumberAsync()","GetAnimationIdleVersionNumberAsync":"GetAnimationIdleVersionNumberAsync()","GetAnimationIdleVersionNumber()":"GetAnimationIdleVersionNumber()","GetAnimationIdleVersionNumber":"GetAnimationIdleVersionNumber()","IsAnimationActiveAsync()":"IsAnimationActiveAsync()","IsAnimationActiveAsync":"IsAnimationActiveAsync()","IsAnimationActive()":"IsAnimationActive()","IsAnimationActive":"IsAnimationActive()","StartTiledZoomingIfNecessaryAsync()":"StartTiledZoomingIfNecessaryAsync()","StartTiledZoomingIfNecessaryAsync":"StartTiledZoomingIfNecessaryAsync()","StartTiledZoomingIfNecessary()":"StartTiledZoomingIfNecessary()","StartTiledZoomingIfNecessary":"StartTiledZoomingIfNecessary()","EndTiledZoomingIfRunningAsync()":"EndTiledZoomingIfRunningAsync()","EndTiledZoomingIfRunningAsync":"EndTiledZoomingIfRunningAsync()","EndTiledZoomingIfRunning()":"EndTiledZoomingIfRunning()","EndTiledZoomingIfRunning":"EndTiledZoomingIfRunning()","ClearTileZoomCacheAsync()":"ClearTileZoomCacheAsync()","ClearTileZoomCacheAsync":"ClearTileZoomCacheAsync()","ClearTileZoomCache()":"ClearTileZoomCache()","ClearTileZoomCache":"ClearTileZoomCache()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","CancelManipulationAsync()":"CancelManipulationAsync()","CancelManipulationAsync":"CancelManipulationAsync()","CancelManipulation()":"CancelManipulation()","CancelManipulation":"CancelManipulation()","GetActualWindowScaleHorizontalAsync()":"GetActualWindowScaleHorizontalAsync()","GetActualWindowScaleHorizontalAsync":"GetActualWindowScaleHorizontalAsync()","GetActualWindowScaleHorizontal()":"GetActualWindowScaleHorizontal()","GetActualWindowScaleHorizontal":"GetActualWindowScaleHorizontal()","GetActualWindowScaleVerticalAsync()":"GetActualWindowScaleVerticalAsync()","GetActualWindowScaleVerticalAsync":"GetActualWindowScaleVerticalAsync()","GetActualWindowScaleVertical()":"GetActualWindowScaleVertical()","GetActualWindowScaleVertical":"GetActualWindowScaleVertical()","NotifyContainerResizedAsync()":"NotifyContainerResizedAsync()","NotifyContainerResizedAsync":"NotifyContainerResizedAsync()","NotifyContainerResized()":"NotifyContainerResized()","NotifyContainerResized":"NotifyContainerResized()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","RenderToImageAsync(double, double)":"RenderToImageAsync(double, double)","RenderToImageAsync":"RenderToImageAsync(double, double)","RenderToImage(double, double)":"RenderToImage(double, double)","RenderToImage":"RenderToImage(double, double)","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","CaptureImageAsync(IgbCaptureImageSettings)":"CaptureImageAsync(IgbCaptureImageSettings)","CaptureImageAsync":"CaptureImageAsync(IgbCaptureImageSettings)","CaptureImage(IgbCaptureImageSettings)":"CaptureImage(IgbCaptureImageSettings)","CaptureImage":"CaptureImage(IgbCaptureImageSettings)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","CancelCreatingAnnotationAsync()":"CancelCreatingAnnotationAsync()","CancelCreatingAnnotationAsync":"CancelCreatingAnnotationAsync()","CancelCreatingAnnotation()":"CancelCreatingAnnotation()","CancelCreatingAnnotation":"CancelCreatingAnnotation()","CancelDeletingAnnotationAsync()":"CancelDeletingAnnotationAsync()","CancelDeletingAnnotationAsync":"CancelDeletingAnnotationAsync()","CancelDeletingAnnotation()":"CancelDeletingAnnotation()","CancelDeletingAnnotation":"CancelDeletingAnnotation()","FinishCreatingAnnotationAsync()":"FinishCreatingAnnotationAsync()","FinishCreatingAnnotationAsync":"FinishCreatingAnnotationAsync()","FinishCreatingAnnotation()":"FinishCreatingAnnotation()","FinishCreatingAnnotation":"FinishCreatingAnnotation()","FinishDeletingAnnotationAsync()":"FinishDeletingAnnotationAsync()","FinishDeletingAnnotationAsync":"FinishDeletingAnnotationAsync()","FinishDeletingAnnotation()":"FinishDeletingAnnotation()","FinishDeletingAnnotation":"FinishDeletingAnnotation()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","DefaultEventBehavior":"DefaultEventBehavior","Series":"Series","FullSeries":"FullSeries","Brushes":"Brushes","Outlines":"Outlines","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","CrosshairPoint":"CrosshairPoint","Legend":"Legend","LegendScript":"LegendScript","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","IsWindowSyncedToVisibleRange":"IsWindowSyncedToVisibleRange","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightingMode":"HighlightingMode","HighlightingFadeOpacity":"HighlightingFadeOpacity","SelectionMode":"SelectionMode","SelectionBehavior":"SelectionBehavior","FocusMode":"FocusMode","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","HighlightingBehavior":"HighlightingBehavior","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","FireMouseLeaveOnManipulationStart":"FireMouseLeaveOnManipulationStart","ViewportRect":"ViewportRect","EffectiveViewport":"EffectiveViewport","WindowRect":"WindowRect","UseTiledZooming":"UseTiledZooming","PreferHigherResolutionTiles":"PreferHigherResolutionTiles","ZoomTileCacheSize":"ZoomTileCacheSize","HighlightingTransitionDuration":"HighlightingTransitionDuration","ResizeIdleMilliseconds":"ResizeIdleMilliseconds","SelectionTransitionDuration":"SelectionTransitionDuration","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","FocusTransitionDuration":"FocusTransitionDuration","ScrollbarsAnimationDuration":"ScrollbarsAnimationDuration","IsPagePanningAllowed":"IsPagePanningAllowed","ContentHitTestMode":"ContentHitTestMode","ActualContentHitTestMode":"ActualContentHitTestMode","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","WindowResponse":"WindowResponse","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","ActualWindowRectMinWidth":"ActualWindowRectMinWidth","ActualWindowRectMinHeight":"ActualWindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","SyncChannel":"SyncChannel","CrosshairVisibility":"CrosshairVisibility","HorizontalCrosshairBrush":"HorizontalCrosshairBrush","VerticalCrosshairBrush":"VerticalCrosshairBrush","ZoomCoercionMode":"ZoomCoercionMode","PlotAreaBackground":"PlotAreaBackground","ShouldMatchZOrderToSeriesOrder":"ShouldMatchZOrderToSeriesOrder","DefaultInteraction":"DefaultInteraction","InteractionOverride":"InteractionOverride","RightButtonDefaultInteraction":"RightButtonDefaultInteraction","DragModifier":"DragModifier","PanModifier":"PanModifier","SelectionModifier":"SelectionModifier","PreviewRect":"PreviewRect","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","WindowPositionHorizontal":"WindowPositionHorizontal","WindowPositionVertical":"WindowPositionVertical","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ChartTitle":"ChartTitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","SubtitleHorizontalAlignment":"SubtitleHorizontalAlignment","TitleTextStyle":"TitleTextStyle","SubtitleTextStyle":"SubtitleTextStyle","TitleTextColor":"TitleTextColor","SubtitleTextColor":"SubtitleTextColor","TitleTopMargin":"TitleTopMargin","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","Subtitle":"Subtitle","TopMargin":"TopMargin","LeftMargin":"LeftMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","AutoMarginWidth":"AutoMarginWidth","AutoMarginHeight":"AutoMarginHeight","IsAntiAliasingEnabledDuringInteraction":"IsAntiAliasingEnabledDuringInteraction","PixelScalingRatio":"PixelScalingRatio","InteractionPixelScalingRatio":"InteractionPixelScalingRatio","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualInteractionPixelScalingRatio":"ActualInteractionPixelScalingRatio","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","ActualWindowRect":"ActualWindowRect","ActualWindowPositionHorizontal":"ActualWindowPositionHorizontal","ActualWindowPositionVertical":"ActualWindowPositionVertical","PreviewPathStroke":"PreviewPathStroke","PreviewPathFill":"PreviewPathFill","PreviewPathOpacity":"PreviewPathOpacity","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","PlotAreaMouseLeftButtonDownScript":"PlotAreaMouseLeftButtonDownScript","PlotAreaMouseLeftButtonDown":"PlotAreaMouseLeftButtonDown","PlotAreaMouseLeftButtonUpScript":"PlotAreaMouseLeftButtonUpScript","PlotAreaMouseLeftButtonUp":"PlotAreaMouseLeftButtonUp","PlotAreaClickedScript":"PlotAreaClickedScript","PlotAreaClicked":"PlotAreaClicked","PlotAreaMouseEnterScript":"PlotAreaMouseEnterScript","PlotAreaMouseEnter":"PlotAreaMouseEnter","PlotAreaMouseLeaveScript":"PlotAreaMouseLeaveScript","PlotAreaMouseLeave":"PlotAreaMouseLeave","PlotAreaMouseOverScript":"PlotAreaMouseOverScript","PlotAreaMouseOver":"PlotAreaMouseOver","AxisLabelMouseDownScript":"AxisLabelMouseDownScript","AxisLabelMouseDown":"AxisLabelMouseDown","AxisLabelMouseUpScript":"AxisLabelMouseUpScript","AxisLabelMouseUp":"AxisLabelMouseUp","AxisLabelMouseEnterScript":"AxisLabelMouseEnterScript","AxisLabelMouseEnter":"AxisLabelMouseEnter","AxisLabelMouseLeaveScript":"AxisLabelMouseLeaveScript","AxisLabelMouseLeave":"AxisLabelMouseLeave","AxisLabelMouseOverScript":"AxisLabelMouseOverScript","AxisLabelMouseOver":"AxisLabelMouseOver","AxisLabelMouseClickScript":"AxisLabelMouseClickScript","AxisLabelMouseClick":"AxisLabelMouseClick","AxisPanelMouseDownScript":"AxisPanelMouseDownScript","AxisPanelMouseDown":"AxisPanelMouseDown","AxisPanelMouseUpScript":"AxisPanelMouseUpScript","AxisPanelMouseUp":"AxisPanelMouseUp","AxisPanelMouseEnterScript":"AxisPanelMouseEnterScript","AxisPanelMouseEnter":"AxisPanelMouseEnter","AxisPanelMouseLeaveScript":"AxisPanelMouseLeaveScript","AxisPanelMouseLeave":"AxisPanelMouseLeave","AxisPanelMouseOverScript":"AxisPanelMouseOverScript","AxisPanelMouseOver":"AxisPanelMouseOver","AxisPanelMouseClickScript":"AxisPanelMouseClickScript","AxisPanelMouseClick":"AxisPanelMouseClick","SeriesCursorMouseMoveScript":"SeriesCursorMouseMoveScript","SeriesCursorMouseMove":"SeriesCursorMouseMove","SeriesMouseLeftButtonDownScript":"SeriesMouseLeftButtonDownScript","SeriesMouseLeftButtonDown":"SeriesMouseLeftButtonDown","SeriesMouseLeftButtonUpScript":"SeriesMouseLeftButtonUpScript","SeriesMouseLeftButtonUp":"SeriesMouseLeftButtonUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","SeriesMouseMoveScript":"SeriesMouseMoveScript","SeriesMouseMove":"SeriesMouseMove","SeriesMouseEnterScript":"SeriesMouseEnterScript","SeriesMouseEnter":"SeriesMouseEnter","SeriesMouseLeaveScript":"SeriesMouseLeaveScript","SeriesMouseLeave":"SeriesMouseLeave","ResizeIdleScript":"ResizeIdleScript","ResizeIdle":"ResizeIdle","ViewerManipulationStartingScript":"ViewerManipulationStartingScript","ViewerManipulationStarting":"ViewerManipulationStarting","ViewerManipulationEndingScript":"ViewerManipulationEndingScript","ViewerManipulationEnding":"ViewerManipulationEnding","WindowRectChangedScript":"WindowRectChangedScript","WindowRectChanged":"WindowRectChanged","SizeChangedScript":"SizeChangedScript","SizeChanged":"SizeChanged","ActualWindowRectChangedScript":"ActualWindowRectChangedScript","ActualWindowRectChanged":"ActualWindowRectChanged","GridAreaRectChangedScript":"GridAreaRectChangedScript","GridAreaRectChanged":"GridAreaRectChanged","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","RefreshCompletedScript":"RefreshCompletedScript","RefreshCompleted":"RefreshCompleted","ImageCapturedScript":"ImageCapturedScript","ImageCaptured":"ImageCaptured","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChart()":"IgbDataChart()","IgbDataChart":"IgbDataChart()","ActualAxes":"ActualAxes","ActualPlotAreaMarginBottom":"ActualPlotAreaMarginBottom","ActualPlotAreaMarginLeft":"ActualPlotAreaMarginLeft","ActualPlotAreaMarginRight":"ActualPlotAreaMarginRight","ActualPlotAreaMarginTop":"ActualPlotAreaMarginTop","ActualWindowScaleHorizontal":"ActualWindowScaleHorizontal","ActualWindowScaleVertical":"ActualWindowScaleVertical","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","AutoExpandMarginExtraPadding":"AutoExpandMarginExtraPadding","AutoExpandMarginMaximumValue":"AutoExpandMarginMaximumValue","AutoMarginAndAngleUpdateMode":"AutoMarginAndAngleUpdateMode","Axes":"Axes","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","ContentAxes":"ContentAxes","DefaultAxisMajorStroke":"DefaultAxisMajorStroke","DefaultAxisMinorStroke":"DefaultAxisMinorStroke","DefaultAxisStroke":"DefaultAxisStroke","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FullAxes":"FullAxes","GetAllAxes()":"GetAllAxes()","GetAllAxes":"GetAllAxes()","GridMode":"GridMode","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsSquare":"IsSquare","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","NeedsDynamicContent":"NeedsDynamicContent","PlotAreaMarginBottom":"PlotAreaMarginBottom","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginTop":"PlotAreaMarginTop","RecalculateAutoLabelsAngle()":"RecalculateAutoLabelsAngle()","RecalculateAutoLabelsAngle":"RecalculateAutoLabelsAngle()","RecalculateAutoLabelsAngleAsync()":"RecalculateAutoLabelsAngleAsync()","RecalculateAutoLabelsAngleAsync":"RecalculateAutoLabelsAngleAsync()","RecalculateMarginAutoExpansion()":"RecalculateMarginAutoExpansion()","RecalculateMarginAutoExpansion":"RecalculateMarginAutoExpansion()","RecalculateMarginAutoExpansionAsync()":"RecalculateMarginAutoExpansionAsync()","RecalculateMarginAutoExpansionAsync":"RecalculateMarginAutoExpansionAsync()","RefreshComputedPlotAreaMargin()":"RefreshComputedPlotAreaMargin()","RefreshComputedPlotAreaMargin":"RefreshComputedPlotAreaMargin()","RefreshComputedPlotAreaMarginAsync()":"RefreshComputedPlotAreaMarginAsync()","RefreshComputedPlotAreaMarginAsync":"RefreshComputedPlotAreaMarginAsync()","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","ShouldAutoExpandMarginForInitialLabels":"ShouldAutoExpandMarginForInitialLabels","ShouldConsiderAutoRotationForInitialLabels":"ShouldConsiderAutoRotationForInitialLabels","ShouldSuppressAxisLabelTruncation":"ShouldSuppressAxisLabelTruncation","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","SuppressAutoMarginAndAngleRecalculation":"SuppressAutoMarginAndAngleRecalculation","Type":"Type","WindowScaleHorizontal":"WindowScaleHorizontal","WindowScaleVertical":"WindowScaleVertical"}}],"IgbDataChartAnnotationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartAnnotationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartAnnotationModule()":"IgbDataChartAnnotationModule()","IgbDataChartAnnotationModule":"IgbDataChartAnnotationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartCategoryCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartCategoryCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartCategoryCoreModule()":"IgbDataChartCategoryCoreModule()","IgbDataChartCategoryCoreModule":"IgbDataChartCategoryCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartCategoryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartCategoryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartCategoryModule()":"IgbDataChartCategoryModule()","IgbDataChartCategoryModule":"IgbDataChartCategoryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartCategoryTrendLineModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartCategoryTrendLineModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartCategoryTrendLineModule()":"IgbDataChartCategoryTrendLineModule()","IgbDataChartCategoryTrendLineModule":"IgbDataChartCategoryTrendLineModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartCoreModule()":"IgbDataChartCoreModule()","IgbDataChartCoreModule":"IgbDataChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartDashboardTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartDashboardTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartDashboardTileModule()":"IgbDataChartDashboardTileModule()","IgbDataChartDashboardTileModule":"IgbDataChartDashboardTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartExtendedAxesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartExtendedAxesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartExtendedAxesModule()":"IgbDataChartExtendedAxesModule()","IgbDataChartExtendedAxesModule":"IgbDataChartExtendedAxesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartFinancialCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartFinancialCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartFinancialCoreModule()":"IgbDataChartFinancialCoreModule()","IgbDataChartFinancialCoreModule":"IgbDataChartFinancialCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartFinancialIndicatorsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartFinancialIndicatorsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartFinancialIndicatorsModule()":"IgbDataChartFinancialIndicatorsModule()","IgbDataChartFinancialIndicatorsModule":"IgbDataChartFinancialIndicatorsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartFinancialModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartFinancialModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartFinancialModule()":"IgbDataChartFinancialModule()","IgbDataChartFinancialModule":"IgbDataChartFinancialModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartFinancialOverlaysModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartFinancialOverlaysModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartFinancialOverlaysModule()":"IgbDataChartFinancialOverlaysModule()","IgbDataChartFinancialOverlaysModule":"IgbDataChartFinancialOverlaysModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartInteractivityModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartInteractivityModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartInteractivityModule()":"IgbDataChartInteractivityModule()","IgbDataChartInteractivityModule":"IgbDataChartInteractivityModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartMouseButtonEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartMouseButtonEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartMouseButtonEventArgs()":"IgbDataChartMouseButtonEventArgs()","IgbDataChartMouseButtonEventArgs":"IgbDataChartMouseButtonEventArgs()","Chart":"Chart","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetPosition(object)":"GetPosition(object)","GetPosition":"GetPosition(object)","GetPositionAsync(object)":"GetPositionAsync(object)","GetPositionAsync":"GetPositionAsync(object)","Handled":"Handled","Item":"Item","ItemScript":"ItemScript","OriginalSource":"OriginalSource","OriginalSourceScript":"OriginalSourceScript","PlotAreaPosition":"PlotAreaPosition","Series":"Series","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WorldPosition":"WorldPosition"}}],"IgbDataChartPolarCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartPolarCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartPolarCoreModule()":"IgbDataChartPolarCoreModule()","IgbDataChartPolarCoreModule":"IgbDataChartPolarCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartPolarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartPolarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartPolarModule()":"IgbDataChartPolarModule()","IgbDataChartPolarModule":"IgbDataChartPolarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartRadialCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartRadialCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartRadialCoreModule()":"IgbDataChartRadialCoreModule()","IgbDataChartRadialCoreModule":"IgbDataChartRadialCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartRadialModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartRadialModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartRadialModule()":"IgbDataChartRadialModule()","IgbDataChartRadialModule":"IgbDataChartRadialModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartScatterCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartScatterCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartScatterCoreModule()":"IgbDataChartScatterCoreModule()","IgbDataChartScatterCoreModule":"IgbDataChartScatterCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartScatterModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartScatterModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartScatterModule()":"IgbDataChartScatterModule()","IgbDataChartScatterModule":"IgbDataChartScatterModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartShapeCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartShapeCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartShapeCoreModule()":"IgbDataChartShapeCoreModule()","IgbDataChartShapeCoreModule":"IgbDataChartShapeCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartShapeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartShapeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartShapeModule()":"IgbDataChartShapeModule()","IgbDataChartShapeModule":"IgbDataChartShapeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartStackedModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartStackedModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartStackedModule()":"IgbDataChartStackedModule()","IgbDataChartStackedModule":"IgbDataChartStackedModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartToolbarIconsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartToolbarIconsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartToolbarIconsModule()":"IgbDataChartToolbarIconsModule()","IgbDataChartToolbarIconsModule":"IgbDataChartToolbarIconsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartToolbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartToolbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartToolbarModule()":"IgbDataChartToolbarModule()","IgbDataChartToolbarModule":"IgbDataChartToolbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartVerticalCategoryCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartVerticalCategoryCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartVerticalCategoryCoreModule()":"IgbDataChartVerticalCategoryCoreModule()","IgbDataChartVerticalCategoryCoreModule":"IgbDataChartVerticalCategoryCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartVerticalCategoryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartVerticalCategoryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartVerticalCategoryModule()":"IgbDataChartVerticalCategoryModule()","IgbDataChartVerticalCategoryModule":"IgbDataChartVerticalCategoryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataChartVisualDataModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataChartVisualDataModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataChartVisualDataModule()":"IgbDataChartVisualDataModule()","IgbDataChartVisualDataModule":"IgbDataChartVisualDataModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataCloneStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataCloneStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataCloneStrategy()":"IgbDataCloneStrategy()","IgbDataCloneStrategy":"IgbDataCloneStrategy()","Clone(object)":"Clone(object)","Clone":"Clone(object)","CloneAsync(object)":"CloneAsync(object)","CloneAsync":"CloneAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbDataContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataContext()":"IgbDataContext()","IgbDataContext":"IgbDataContext()","ActualItemBrush":"ActualItemBrush","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemBrush":"ItemBrush","ItemLabel":"ItemLabel","ItemLabelScript":"ItemLabelScript","ItemScript":"ItemScript","LegendLabel":"LegendLabel","LegendLabelScript":"LegendLabelScript","Outline":"Outline","Thickness":"Thickness","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataGrid":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGrid","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGrid()":"IgbDataGrid()","IgbDataGrid":"IgbDataGrid()","AcceptCommit(int)":"AcceptCommit(int)","AcceptCommit":"AcceptCommit(int)","AcceptCommitAsync(int)":"AcceptCommitAsync(int)","AcceptCommitAsync":"AcceptCommitAsync(int)","AcceptEdit(int)":"AcceptEdit(int)","AcceptEdit":"AcceptEdit(int)","AcceptEditAsync(int)":"AcceptEditAsync(int)","AcceptEditAsync":"AcceptEditAsync(int)","ActivationMode":"ActivationMode","ActiveCell":"ActiveCell","ActiveCellChanged":"ActiveCellChanged","ActiveCellChangedScript":"ActiveCellChangedScript","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActualColumns":"ActualColumns","ActualColumnsChanged":"ActualColumnsChanged","ActualColumnsChangedScript":"ActualColumnsChangedScript","ActualDataSource":"ActualDataSource","ActualHeaderHeight":"ActualHeaderHeight","ActualPrimaryKey":"ActualPrimaryKey","ActualPrimaryKeyChanged":"ActualPrimaryKeyChanged","ActualPrimaryKeyChangedScript":"ActualPrimaryKeyChangedScript","ActualRowHeight":"ActualRowHeight","AllowCopyOperation":"AllowCopyOperation","AnimationSettings":"AnimationSettings","AutoAcceptEdits":"AutoAcceptEdits","AutoGenerateColumns":"AutoGenerateColumns","AutoGenerateDesiredProperties":"AutoGenerateDesiredProperties","Background":"Background","Border":"Border","BorderWidthBottom":"BorderWidthBottom","BorderWidthLeft":"BorderWidthLeft","BorderWidthRight":"BorderWidthRight","BorderWidthTop":"BorderWidthTop","CanCommit()":"CanCommit()","CanCommit":"CanCommit()","CanCommitAsync()":"CanCommitAsync()","CanCommitAsync":"CanCommitAsync()","CanMoveColumnLeft(int)":"CanMoveColumnLeft(int)","CanMoveColumnLeft":"CanMoveColumnLeft(int)","CanMoveColumnLeftAsync(int)":"CanMoveColumnLeftAsync(int)","CanMoveColumnLeftAsync":"CanMoveColumnLeftAsync(int)","CanMoveColumnRight(int)":"CanMoveColumnRight(int)","CanMoveColumnRight":"CanMoveColumnRight(int)","CanMoveColumnRightAsync(int)":"CanMoveColumnRightAsync(int)","CanMoveColumnRightAsync":"CanMoveColumnRightAsync(int)","CanRedo()":"CanRedo()","CanRedo":"CanRedo()","CanRedoAsync()":"CanRedoAsync()","CanRedoAsync":"CanRedoAsync()","CanUndo()":"CanUndo()","CanUndo":"CanUndo()","CanUndoAsync()":"CanUndoAsync()","CanUndoAsync":"CanUndoAsync()","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","CellBackground":"CellBackground","CellClicked":"CellClicked","CellClickedScript":"CellClickedScript","CellDataLoadedAnimationMode":"CellDataLoadedAnimationMode","CellEditEnded":"CellEditEnded","CellEditEndedScript":"CellEditEndedScript","CellEditStarted":"CellEditStarted","CellEditStartedScript":"CellEditStartedScript","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","CellPointerDown":"CellPointerDown","CellPointerDownScript":"CellPointerDownScript","CellPointerUp":"CellPointerUp","CellPointerUpScript":"CellPointerUpScript","CellPreviewPointerDown":"CellPreviewPointerDown","CellPreviewPointerDownScript":"CellPreviewPointerDownScript","CellPreviewPointerUp":"CellPreviewPointerUp","CellPreviewPointerUpScript":"CellPreviewPointerUpScript","CellSelectedBackground":"CellSelectedBackground","CellSelectionAnimationMode":"CellSelectionAnimationMode","CellTextColor":"CellTextColor","CellValueChanging":"CellValueChanging","CellValueChangingScript":"CellValueChangingScript","ClearSelectionOnEscape":"ClearSelectionOnEscape","ColumnAddingAnimationMode":"ColumnAddingAnimationMode","ColumnExchangingAnimationMode":"ColumnExchangingAnimationMode","ColumnHiddenChanged":"ColumnHiddenChanged","ColumnHiddenChangedScript":"ColumnHiddenChangedScript","ColumnHidingAnimationMode":"ColumnHidingAnimationMode","ColumnMovingAnimationMode":"ColumnMovingAnimationMode","ColumnMovingMode":"ColumnMovingMode","ColumnMovingSeparator":"ColumnMovingSeparator","ColumnMovingSeparatorBackground":"ColumnMovingSeparatorBackground","ColumnMovingSeparatorOpacity":"ColumnMovingSeparatorOpacity","ColumnMovingSeparatorWidth":"ColumnMovingSeparatorWidth","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","ColumnOptionsBackground":"ColumnOptionsBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ColumnPinnedChanged":"ColumnPinnedChanged","ColumnPinnedChangedScript":"ColumnPinnedChangedScript","ColumnPropertyUpdatingAnimationMode":"ColumnPropertyUpdatingAnimationMode","ColumnResizingAnimationMode":"ColumnResizingAnimationMode","ColumnResizingMode":"ColumnResizingMode","ColumnResizingSeparator":"ColumnResizingSeparator","ColumnResizingSeparatorBackground":"ColumnResizingSeparatorBackground","ColumnResizingSeparatorOpacity":"ColumnResizingSeparatorOpacity","ColumnResizingSeparatorWidth":"ColumnResizingSeparatorWidth","ColumnShowingAnimationMode":"ColumnShowingAnimationMode","ColumnWidthChanged":"ColumnWidthChanged","ColumnWidthChangedScript":"ColumnWidthChangedScript","Columns":"Columns","ColumnsAutoGenerated":"ColumnsAutoGenerated","ColumnsAutoGeneratedScript":"ColumnsAutoGeneratedScript","CommitEdits()":"CommitEdits()","CommitEdits":"CommitEdits()","CommitEditsAsync()":"CommitEditsAsync()","CommitEditsAsync":"CommitEditsAsync()","ContentColumns":"ContentColumns","CornerRadiusBottomLeft":"CornerRadiusBottomLeft","CornerRadiusBottomRight":"CornerRadiusBottomRight","CornerRadiusTopLeft":"CornerRadiusTopLeft","CornerRadiusTopRight":"CornerRadiusTopRight","CustomFilterRequested":"CustomFilterRequested","DataCommitted":"DataCommitted","DataCommittedScript":"DataCommittedScript","DataCommitting":"DataCommitting","DataIndexOfItem(object)":"DataIndexOfItem(object)","DataIndexOfItem":"DataIndexOfItem(object)","DataIndexOfItemAsync(object)":"DataIndexOfItemAsync(object)","DataIndexOfItemAsync":"DataIndexOfItemAsync(object)","DataSource":"DataSource","DataSourceDesiredProperties":"DataSourceDesiredProperties","DataSourceScript":"DataSourceScript","DefaultColumnMinWidth":"DefaultColumnMinWidth","DefaultEventBehavior":"DefaultEventBehavior","DeferEventForRowDragSelection":"DeferEventForRowDragSelection","DeletedTextColor":"DeletedTextColor","Density":"Density","DeselectAllRows()":"DeselectAllRows()","DeselectAllRows":"DeselectAllRows()","DeselectAllRowsAsync()":"DeselectAllRowsAsync()","DeselectAllRowsAsync":"DeselectAllRowsAsync()","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","EditMode":"EditMode","EditModeClickAction":"EditModeClickAction","EditOnKeyPress":"EditOnKeyPress","EditOpacity":"EditOpacity","EditRowBorder":"EditRowBorder","EditRowBorderWidthBottom":"EditRowBorderWidthBottom","EditRowBorderWidthLeft":"EditRowBorderWidthLeft","EditRowBorderWidthRight":"EditRowBorderWidthRight","EditRowBorderWidthTop":"EditRowBorderWidthTop","EndEditMode(bool)":"EndEditMode(bool)","EndEditMode":"EndEditMode(bool)","EndEditModeAsync(bool)":"EndEditModeAsync(bool)","EndEditModeAsync":"EndEditModeAsync(bool)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","EnterBehavior":"EnterBehavior","EnterBehaviorAfterEdit":"EnterBehaviorAfterEdit","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FilterComparisonType":"FilterComparisonType","FilterExpressions":"FilterExpressions","FilterExpressionsChanged":"FilterExpressionsChanged","FilterExpressionsChangedScript":"FilterExpressionsChangedScript","FilterExpressionsChanging":"FilterExpressionsChanging","FilterExpressionsChangingScript":"FilterExpressionsChangingScript","FilterLogicalOperator":"FilterLogicalOperator","FilterUIType":"FilterUIType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","GetColumnAtRenderedIndex(int)":"GetColumnAtRenderedIndex(int)","GetColumnAtRenderedIndex":"GetColumnAtRenderedIndex(int)","GetColumnAtRenderedIndexAsync(int)":"GetColumnAtRenderedIndexAsync(int)","GetColumnAtRenderedIndexAsync":"GetColumnAtRenderedIndexAsync(int)","GetCurrentActiveCell()":"GetCurrentActiveCell()","GetCurrentActiveCell":"GetCurrentActiveCell()","GetCurrentActiveCellAsync()":"GetCurrentActiveCellAsync()","GetCurrentActiveCellAsync":"GetCurrentActiveCellAsync()","GetCurrentActualColumns()":"GetCurrentActualColumns()","GetCurrentActualColumns":"GetCurrentActualColumns()","GetCurrentActualColumnsAsync()":"GetCurrentActualColumnsAsync()","GetCurrentActualColumnsAsync":"GetCurrentActualColumnsAsync()","GetCurrentActualPrimaryKey()":"GetCurrentActualPrimaryKey()","GetCurrentActualPrimaryKey":"GetCurrentActualPrimaryKey()","GetCurrentActualPrimaryKeyAsync()":"GetCurrentActualPrimaryKeyAsync()","GetCurrentActualPrimaryKeyAsync":"GetCurrentActualPrimaryKeyAsync()","GetCurrentFilterExpressions()":"GetCurrentFilterExpressions()","GetCurrentFilterExpressions":"GetCurrentFilterExpressions()","GetCurrentFilterExpressionsAsync()":"GetCurrentFilterExpressionsAsync()","GetCurrentFilterExpressionsAsync":"GetCurrentFilterExpressionsAsync()","GetCurrentGroupDescriptions()":"GetCurrentGroupDescriptions()","GetCurrentGroupDescriptions":"GetCurrentGroupDescriptions()","GetCurrentGroupDescriptionsAsync()":"GetCurrentGroupDescriptionsAsync()","GetCurrentGroupDescriptionsAsync":"GetCurrentGroupDescriptionsAsync()","GetCurrentSelectedCellRanges()":"GetCurrentSelectedCellRanges()","GetCurrentSelectedCellRanges":"GetCurrentSelectedCellRanges()","GetCurrentSelectedCellRangesAsync()":"GetCurrentSelectedCellRangesAsync()","GetCurrentSelectedCellRangesAsync":"GetCurrentSelectedCellRangesAsync()","GetCurrentSelectedCells()":"GetCurrentSelectedCells()","GetCurrentSelectedCells":"GetCurrentSelectedCells()","GetCurrentSelectedCellsAsync()":"GetCurrentSelectedCellsAsync()","GetCurrentSelectedCellsAsync":"GetCurrentSelectedCellsAsync()","GetCurrentSelectedItems()":"GetCurrentSelectedItems()","GetCurrentSelectedItems":"GetCurrentSelectedItems()","GetCurrentSelectedItemsAsync()":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedItemsAsync":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedKeys()":"GetCurrentSelectedKeys()","GetCurrentSelectedKeys":"GetCurrentSelectedKeys()","GetCurrentSelectedKeysAsync()":"GetCurrentSelectedKeysAsync()","GetCurrentSelectedKeysAsync":"GetCurrentSelectedKeysAsync()","GetCurrentSortDescriptions()":"GetCurrentSortDescriptions()","GetCurrentSortDescriptions":"GetCurrentSortDescriptions()","GetCurrentSortDescriptionsAsync()":"GetCurrentSortDescriptionsAsync()","GetCurrentSortDescriptionsAsync":"GetCurrentSortDescriptionsAsync()","GetCurrentSummaryDescriptions()":"GetCurrentSummaryDescriptions()","GetCurrentSummaryDescriptions":"GetCurrentSummaryDescriptions()","GetCurrentSummaryDescriptionsAsync()":"GetCurrentSummaryDescriptionsAsync()","GetCurrentSummaryDescriptionsAsync":"GetCurrentSummaryDescriptionsAsync()","GetDataURLFromCache(string, string)":"GetDataURLFromCache(string, string)","GetDataURLFromCache":"GetDataURLFromCache(string, string)","GetDataURLFromCacheAsync(string, string)":"GetDataURLFromCacheAsync(string, string)","GetDataURLFromCacheAsync":"GetDataURLFromCacheAsync(string, string)","GetFirstVisibleIndex()":"GetFirstVisibleIndex()","GetFirstVisibleIndex":"GetFirstVisibleIndex()","GetFirstVisibleIndexAsync()":"GetFirstVisibleIndexAsync()","GetFirstVisibleIndexAsync":"GetFirstVisibleIndexAsync()","GetHitCell(double, double)":"GetHitCell(double, double)","GetHitCell":"GetHitCell(double, double)","GetHitCellAsync(double, double)":"GetHitCellAsync(double, double)","GetHitCellAsync":"GetHitCellAsync(double, double)","GetIconFromCache(string, string)":"GetIconFromCache(string, string)","GetIconFromCache":"GetIconFromCache(string, string)","GetIconFromCacheAsync(string, string)":"GetIconFromCacheAsync(string, string)","GetIconFromCacheAsync":"GetIconFromCacheAsync(string, string)","GetIconSource(string, string)":"GetIconSource(string, string)","GetIconSource":"GetIconSource(string, string)","GetIconSourceAsync(string, string)":"GetIconSourceAsync(string, string)","GetIconSourceAsync":"GetIconSourceAsync(string, string)","GetLastVisibleIndex()":"GetLastVisibleIndex()","GetLastVisibleIndex":"GetLastVisibleIndex()","GetLastVisibleIndexAsync()":"GetLastVisibleIndexAsync()","GetLastVisibleIndexAsync":"GetLastVisibleIndexAsync()","GetMultiPathSVGFromCache(string, string)":"GetMultiPathSVGFromCache(string, string)","GetMultiPathSVGFromCache":"GetMultiPathSVGFromCache(string, string)","GetMultiPathSVGFromCacheAsync(string, string)":"GetMultiPathSVGFromCacheAsync(string, string)","GetMultiPathSVGFromCacheAsync":"GetMultiPathSVGFromCacheAsync(string, string)","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GroupDescriptions":"GroupDescriptions","GroupDescriptionsChanged":"GroupDescriptionsChanged","GroupDescriptionsChangedScript":"GroupDescriptionsChangedScript","GroupHeaderDisplayMode":"GroupHeaderDisplayMode","GroupSummaryDisplayMode":"GroupSummaryDisplayMode","HeaderBackground":"HeaderBackground","HeaderClickAction":"HeaderClickAction","HeaderFontFamily":"HeaderFontFamily","HeaderFontSize":"HeaderFontSize","HeaderFontStyle":"HeaderFontStyle","HeaderFontWeight":"HeaderFontWeight","HeaderHeight":"HeaderHeight","HeaderRowSeparator":"HeaderRowSeparator","HeaderRowSeparatorBackground":"HeaderRowSeparatorBackground","HeaderSeparator":"HeaderSeparator","HeaderSeparatorBackground":"HeaderSeparatorBackground","HeaderSeparatorWidth":"HeaderSeparatorWidth","HeaderSortIndicatorColor":"HeaderSortIndicatorColor","HeaderSortIndicatorStyle":"HeaderSortIndicatorStyle","HeaderTextColor":"HeaderTextColor","InitialGroupDescriptions":"InitialGroupDescriptions","InitialGroups":"InitialGroups","InitialSortDescriptions":"InitialSortDescriptions","InitialSorts":"InitialSorts","InitialSummaries":"InitialSummaries","InitialSummaryDescriptions":"InitialSummaryDescriptions","InvalidateVisibleRows()":"InvalidateVisibleRows()","InvalidateVisibleRows":"InvalidateVisibleRows()","InvalidateVisibleRowsAsync()":"InvalidateVisibleRowsAsync()","InvalidateVisibleRowsAsync":"InvalidateVisibleRowsAsync()","IsActiveCellStyleEnabled":"IsActiveCellStyleEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","IsGroupByAreaVisible":"IsGroupByAreaVisible","IsGroupCollapsable":"IsGroupCollapsable","IsGroupExpandedDefault":"IsGroupExpandedDefault","IsGroupRowSticky":"IsGroupRowSticky","IsHeaderSeparatorVisible":"IsHeaderSeparatorVisible","IsPagerVisible":"IsPagerVisible","IsPlaceholderRenderingEnabled":"IsPlaceholderRenderingEnabled","IsRowHoverEnabled":"IsRowHoverEnabled","IsToolbarColumnChooserVisible":"IsToolbarColumnChooserVisible","IsToolbarColumnPinningVisible":"IsToolbarColumnPinningVisible","IsToolbarVisible":"IsToolbarVisible","LastStickyRowBackground":"LastStickyRowBackground","LoadLayout(string)":"LoadLayout(string)","LoadLayout":"LoadLayout(string)","LoadLayoutAsync(string)":"LoadLayoutAsync(string)","LoadLayoutAsync":"LoadLayoutAsync(string)","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellMode":"MergedCellMode","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MouseDragSelectionEnabled":"MouseDragSelectionEnabled","MoveColumn(int, int)":"MoveColumn(int, int)","MoveColumn":"MoveColumn(int, int)","MoveColumnAsync(int, int)":"MoveColumnAsync(int, int)","MoveColumnAsync":"MoveColumnAsync(int, int)","MoveColumnLeft(int)":"MoveColumnLeft(int)","MoveColumnLeft":"MoveColumnLeft(int)","MoveColumnLeftAsync(int)":"MoveColumnLeftAsync(int)","MoveColumnLeftAsync":"MoveColumnLeftAsync(int)","MoveColumnRight(int)":"MoveColumnRight(int)","MoveColumnRight":"MoveColumnRight(int)","MoveColumnRightAsync(int)":"MoveColumnRightAsync(int)","MoveColumnRightAsync":"MoveColumnRightAsync(int)","NeedsDynamicContent":"NeedsDynamicContent","NotifyOnAllSelectionChanges":"NotifyOnAllSelectionChanges","NotifyScrollStart()":"NotifyScrollStart()","NotifyScrollStart":"NotifyScrollStart()","NotifyScrollStartAsync()":"NotifyScrollStartAsync()","NotifyScrollStartAsync":"NotifyScrollStartAsync()","NotifyScrollStop()":"NotifyScrollStop()","NotifyScrollStop":"NotifyScrollStop()","NotifyScrollStopAsync()":"NotifyScrollStopAsync()","NotifyScrollStopAsync":"NotifyScrollStopAsync()","PageSize":"PageSize","ParentTypeName":"ParentTypeName","PinColumn(IgbDataGridColumn, PinnedPositions)":"PinColumn(IgbDataGridColumn, PinnedPositions)","PinColumn":"PinColumn(IgbDataGridColumn, PinnedPositions)","PinColumnAsync(IgbDataGridColumn, PinnedPositions)":"PinColumnAsync(IgbDataGridColumn, PinnedPositions)","PinColumnAsync":"PinColumnAsync(IgbDataGridColumn, PinnedPositions)","PinnedAreaSeparator":"PinnedAreaSeparator","PinnedAreaSeparatorWidth":"PinnedAreaSeparatorWidth","PinnedItems":"PinnedItems","PinnedKeys":"PinnedKeys","PinnedRowBackground":"PinnedRowBackground","PinnedRowOpacity":"PinnedRowOpacity","PrimaryKey":"PrimaryKey","ReactsToFilterChanges":"ReactsToFilterChanges","ReactsToGroupChanges":"ReactsToGroupChanges","ReactsToSortChanges":"ReactsToSortChanges","Redo()":"Redo()","Redo":"Redo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","RegisterIconFromDataURL(string, string, string)":"RegisterIconFromDataURL(string, string, string)","RegisterIconFromDataURL":"RegisterIconFromDataURL(string, string, string)","RegisterIconFromDataURLAsync(string, string, string)":"RegisterIconFromDataURLAsync(string, string, string)","RegisterIconFromDataURLAsync":"RegisterIconFromDataURLAsync(string, string, string)","RegisterIconFromText(string, string, string)":"RegisterIconFromText(string, string, string)","RegisterIconFromText":"RegisterIconFromText(string, string, string)","RegisterIconFromTextAsync(string, string, string)":"RegisterIconFromTextAsync(string, string, string)","RegisterIconFromTextAsync":"RegisterIconFromTextAsync(string, string, string)","RegisterIconSource(string, string, object)":"RegisterIconSource(string, string, object)","RegisterIconSource":"RegisterIconSource(string, string, object)","RegisterIconSourceAsync(string, string, object)":"RegisterIconSourceAsync(string, string, object)","RegisterIconSourceAsync":"RegisterIconSourceAsync(string, string, object)","RegisterMultiPathSVG(string, string, string[])":"RegisterMultiPathSVG(string, string, string[])","RegisterMultiPathSVG":"RegisterMultiPathSVG(string, string, string[])","RegisterMultiPathSVGAsync(string, string, string[])":"RegisterMultiPathSVGAsync(string, string, string[])","RegisterMultiPathSVGAsync":"RegisterMultiPathSVGAsync(string, string, string[])","RejectCommit(int)":"RejectCommit(int)","RejectCommit":"RejectCommit(int)","RejectCommitAsync(int)":"RejectCommitAsync(int)","RejectCommitAsync":"RejectCommitAsync(int)","RejectEdit(int)":"RejectEdit(int)","RejectEdit":"RejectEdit(int)","RejectEditAsync(int)":"RejectEditAsync(int)","RejectEditAsync":"RejectEditAsync(int)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","ResolveCellValue(IgbCellKey)":"ResolveCellValue(IgbCellKey)","ResolveCellValue":"ResolveCellValue(IgbCellKey)","ResolveCellValueAsync(IgbCellKey)":"ResolveCellValueAsync(IgbCellKey)","ResolveCellValueAsync":"ResolveCellValueAsync(IgbCellKey)","ResolveCellValueFromPosition(int, int)":"ResolveCellValueFromPosition(int, int)","ResolveCellValueFromPosition":"ResolveCellValueFromPosition(int, int)","ResolveCellValueFromPositionAsync(int, int)":"ResolveCellValueFromPositionAsync(int, int)","ResolveCellValueFromPositionAsync":"ResolveCellValueFromPositionAsync(int, int)","ResponsiveStates":"ResponsiveStates","RootSummariesChanged":"RootSummariesChanged","RootSummariesChangedScript":"RootSummariesChangedScript","RowEditEnded":"RowEditEnded","RowEditStarted":"RowEditStarted","RowEditStartedScript":"RowEditStartedScript","RowHeight":"RowHeight","RowHoverAnimationMode":"RowHoverAnimationMode","RowHoverBackground":"RowHoverBackground","RowHoverTextColor":"RowHoverTextColor","RowSelectionAnimationMode":"RowSelectionAnimationMode","RowSeparator":"RowSeparator","RowSeparatorBackground":"RowSeparatorBackground","RowSeparatorHeight":"RowSeparatorHeight","RowSeparatorLastStickyRowBackground":"RowSeparatorLastStickyRowBackground","RowSeparatorPinnedRowBackground":"RowSeparatorPinnedRowBackground","RowSeparatorStickyRowBackground":"RowSeparatorStickyRowBackground","SaveLayout()":"SaveLayout()","SaveLayout":"SaveLayout()","SaveLayoutAsync()":"SaveLayoutAsync()","SaveLayoutAsync":"SaveLayoutAsync()","ScrollToColumnByIndex(double)":"ScrollToColumnByIndex(double)","ScrollToColumnByIndex":"ScrollToColumnByIndex(double)","ScrollToColumnByIndexAsync(double)":"ScrollToColumnByIndexAsync(double)","ScrollToColumnByIndexAsync":"ScrollToColumnByIndexAsync(double)","ScrollToItem(object)":"ScrollToItem(object)","ScrollToItem":"ScrollToItem(object)","ScrollToItemAsync(object)":"ScrollToItemAsync(object)","ScrollToItemAsync":"ScrollToItemAsync(object)","ScrollToLastRowByIndex(double)":"ScrollToLastRowByIndex(double)","ScrollToLastRowByIndex":"ScrollToLastRowByIndex(double)","ScrollToLastRowByIndexAsync(double)":"ScrollToLastRowByIndexAsync(double)","ScrollToLastRowByIndexAsync":"ScrollToLastRowByIndexAsync(double)","ScrollToPrimaryKey(object[])":"ScrollToPrimaryKey(object[])","ScrollToPrimaryKey":"ScrollToPrimaryKey(object[])","ScrollToPrimaryKeyAsync(object[])":"ScrollToPrimaryKeyAsync(object[])","ScrollToPrimaryKeyAsync":"ScrollToPrimaryKeyAsync(object[])","ScrollToRowByIndex(double)":"ScrollToRowByIndex(double)","ScrollToRowByIndex":"ScrollToRowByIndex(double)","ScrollToRowByIndexAsync(double)":"ScrollToRowByIndexAsync(double)","ScrollToRowByIndexAsync":"ScrollToRowByIndexAsync(double)","ScrollbarBackground":"ScrollbarBackground","ScrollbarStyle":"ScrollbarStyle","SectionHeader":"SectionHeader","SectionHeaderBackground":"SectionHeaderBackground","SectionHeaderFontFamily":"SectionHeaderFontFamily","SectionHeaderFontSize":"SectionHeaderFontSize","SectionHeaderFontStyle":"SectionHeaderFontStyle","SectionHeaderFontWeight":"SectionHeaderFontWeight","SectionHeaderSelectedBackground":"SectionHeaderSelectedBackground","SectionHeaderTextColor":"SectionHeaderTextColor","SelectAllRows()":"SelectAllRows()","SelectAllRows":"SelectAllRows()","SelectAllRowsAsync()":"SelectAllRowsAsync()","SelectAllRowsAsync":"SelectAllRowsAsync()","SelectedCellRanges":"SelectedCellRanges","SelectedCellRangesChanged":"SelectedCellRangesChanged","SelectedCellRangesChangedScript":"SelectedCellRangesChangedScript","SelectedCells":"SelectedCells","SelectedCellsChanged":"SelectedCellsChanged","SelectedCellsChangedScript":"SelectedCellsChangedScript","SelectedItems":"SelectedItems","SelectedItemsChanged":"SelectedItemsChanged","SelectedItemsChangedScript":"SelectedItemsChangedScript","SelectedKeys":"SelectedKeys","SelectedKeysChanged":"SelectedKeysChanged","SelectedKeysChangedScript":"SelectedKeysChangedScript","SelectionBehavior":"SelectionBehavior","SelectionChanged":"SelectionChanged","SelectionChangedScript":"SelectionChangedScript","SelectionMode":"SelectionMode","SetActiveResponsiveState(string)":"SetActiveResponsiveState(string)","SetActiveResponsiveState":"SetActiveResponsiveState(string)","SetActiveResponsiveStateAsync(string)":"SetActiveResponsiveStateAsync(string)","SetActiveResponsiveStateAsync":"SetActiveResponsiveStateAsync(string)","SetCustomizedStringAsync(string, Dictionary)":"SetCustomizedStringAsync(string, Dictionary)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, Dictionary)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","SetEditError(int, string)":"SetEditError(int, string)","SetEditError":"SetEditError(int, string)","SetEditErrorAsync(int, string)":"SetEditErrorAsync(int, string)","SetEditErrorAsync":"SetEditErrorAsync(int, string)","ShiftSectionContent":"ShiftSectionContent","SizeChanged":"SizeChanged","SizeChangedScript":"SizeChangedScript","SortDescriptions":"SortDescriptions","SortDescriptionsChanged":"SortDescriptionsChanged","SortDescriptionsChangedScript":"SortDescriptionsChangedScript","StartEditMode()":"StartEditMode()","StartEditMode":"StartEditMode()","StartEditModeAsync()":"StartEditModeAsync()","StartEditModeAsync":"StartEditModeAsync()","StickyRowBackground":"StickyRowBackground","StopPropagation":"StopPropagation","SummaryDescriptions":"SummaryDescriptions","SummaryDescriptionsChanged":"SummaryDescriptionsChanged","SummaryDescriptionsChangedScript":"SummaryDescriptionsChangedScript","SummaryRootBackground":"SummaryRootBackground","SummaryRootLabelFontFamily":"SummaryRootLabelFontFamily","SummaryRootLabelFontSize":"SummaryRootLabelFontSize","SummaryRootLabelFontStyle":"SummaryRootLabelFontStyle","SummaryRootLabelFontWeight":"SummaryRootLabelFontWeight","SummaryRootLabelTextColor":"SummaryRootLabelTextColor","SummaryRootSelectedBackground":"SummaryRootSelectedBackground","SummaryRootValueFontFamily":"SummaryRootValueFontFamily","SummaryRootValueFontSize":"SummaryRootValueFontSize","SummaryRootValueFontStyle":"SummaryRootValueFontStyle","SummaryRootValueFontWeight":"SummaryRootValueFontWeight","SummaryRootValueTextColor":"SummaryRootValueTextColor","SummaryRowRoot":"SummaryRowRoot","SummaryRowSection":"SummaryRowSection","SummaryScope":"SummaryScope","SummarySectionBackground":"SummarySectionBackground","SummarySectionLabelFontFamily":"SummarySectionLabelFontFamily","SummarySectionLabelFontSize":"SummarySectionLabelFontSize","SummarySectionLabelFontStyle":"SummarySectionLabelFontStyle","SummarySectionLabelFontWeight":"SummarySectionLabelFontWeight","SummarySectionLabelTextColor":"SummarySectionLabelTextColor","SummarySectionSelectedBackground":"SummarySectionSelectedBackground","SummarySectionValueFontFamily":"SummarySectionValueFontFamily","SummarySectionValueFontSize":"SummarySectionValueFontSize","SummarySectionValueFontStyle":"SummarySectionValueFontStyle","SummarySectionValueFontWeight":"SummarySectionValueFontWeight","SummarySectionValueTextColor":"SummarySectionValueTextColor","Theme":"Theme","TodayOverride":"TodayOverride","ToolbarColumnChooserText":"ToolbarColumnChooserText","ToolbarColumnChooserTitle":"ToolbarColumnChooserTitle","ToolbarColumnPinningText":"ToolbarColumnPinningText","ToolbarColumnPinningTitle":"ToolbarColumnPinningTitle","ToolbarTitle":"ToolbarTitle","Type":"Type","Undo()":"Undo()","Undo":"Undo()","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","UpdatePropertyAtKey(object[], string, object)":"UpdatePropertyAtKey(object[], string, object)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object)","UpdatePropertyAtKeyAsync(object[], string, object)":"UpdatePropertyAtKeyAsync(object[], string, object)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object)"}}],"IgbDataGridAllColumnsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridAllColumnsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridAllColumnsModule()":"IgbDataGridAllColumnsModule()","IgbDataGridAllColumnsModule":"IgbDataGridAllColumnsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataGridCellEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridCellEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridCellEventArgs()":"IgbDataGridCellEventArgs()","IgbDataGridCellEventArgs":"IgbDataGridCellEventArgs()","Button":"Button","CellInfo":"CellInfo","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","IsDoubleClick":"IsDoubleClick","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataGridColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridColumn","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridColumn()":"IgbDataGridColumn()","IgbDataGridColumn":"IgbDataGridColumn()","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","ActualEditOpacity":"ActualEditOpacity","ActualHeaderText":"ActualHeaderText","ActualHeaderTextChanged":"ActualHeaderTextChanged","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHoverBackground":"ActualHoverBackground","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","ActualRowHoverTextColor":"ActualRowHoverTextColor","ActualSelectedBackground":"ActualSelectedBackground","AnimationSettings":"AnimationSettings","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","ColumnOptionsBackground":"ColumnOptionsBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","DataGridParent":"DataGridParent","DeletedTextColor":"DeletedTextColor","Dispose()":"Dispose()","Dispose":"Dispose()","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","EditOpacity":"EditOpacity","Field":"Field","Filter":"Filter","FilterComparisonType":"FilterComparisonType","FilterExpression":"FilterExpression","FilterOperands":"FilterOperands","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatCell":"FormatCell","FormatCellScript":"FormatCellScript","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","Header":"Header","HeaderText":"HeaderText","IsAutoGenerated":"IsAutoGenerated","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","IsEditable":"IsEditable","IsFilteringEnabled":"IsFilteringEnabled","IsFromMarkup":"IsFromMarkup","IsHidden":"IsHidden","IsResizingEnabled":"IsResizingEnabled","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellMode":"MergedCellMode","MergedCellPaddingBottom":"MergedCellPaddingBottom","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MinWidth":"MinWidth","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","Pinned":"Pinned","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RowHoverBackground":"RowHoverBackground","RowHoverTextColor":"RowHoverTextColor","SelectedBackground":"SelectedBackground","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconFill":"SuffixIconFill","SuffixIconName":"SuffixIconName","SuffixIconStroke":"SuffixIconStroke","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixMargin":"SuffixMargin","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","TextDecoration":"TextDecoration","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width"}}],"IgbDataGridComparisonOperatorSelector":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridComparisonOperatorSelector","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridComparisonOperatorSelector()":"IgbDataGridComparisonOperatorSelector()","IgbDataGridComparisonOperatorSelector":"IgbDataGridComparisonOperatorSelector()","AddCustomOperator(string, string, string, int)":"AddCustomOperator(string, string, string, int)","AddCustomOperator":"AddCustomOperator(string, string, string, int)","AddCustomOperatorAsync(string, string, string, int)":"AddCustomOperatorAsync(string, string, string, int)","AddCustomOperatorAsync":"AddCustomOperatorAsync(string, string, string, int)","Background":"Background","ClearCustomOperators()":"ClearCustomOperators()","ClearCustomOperators":"ClearCustomOperators()","ClearCustomOperatorsAsync()":"ClearCustomOperatorsAsync()","ClearCustomOperatorsAsync":"ClearCustomOperatorsAsync()","Close()":"Close()","Close":"Close()","CloseAsync()":"CloseAsync()","CloseAsync":"CloseAsync()","Closing":"Closing","ClosingScript":"ClosingScript","CustomFilterID":"CustomFilterID","CustomFilterIndex":"CustomFilterIndex","DataType":"DataType","DefaultEventBehavior":"DefaultEventBehavior","Dispose()":"Dispose()","DisposeAsync()":"DisposeAsync()","DisposeAsync":"DisposeAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetDropdownHeight()":"GetDropdownHeight()","GetDropdownHeight":"GetDropdownHeight()","GetDropdownHeightAsync()":"GetDropdownHeightAsync()","GetDropdownHeightAsync":"GetDropdownHeightAsync()","MaxHeight":"MaxHeight","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","SelectCustomFilter(string, int)":"SelectCustomFilter(string, int)","SelectCustomFilter":"SelectCustomFilter(string, int)","SelectCustomFilterAsync(string, int)":"SelectCustomFilterAsync(string, int)","SelectCustomFilterAsync":"SelectCustomFilterAsync(string, int)","TextColor":"TextColor","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript"}}],"IgbDataGridCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridCoreModule()":"IgbDataGridCoreModule()","IgbDataGridCoreModule":"IgbDataGridCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataGridExpansionIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridExpansionIndicator","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridExpansionIndicator()":"IgbDataGridExpansionIndicator()","IgbDataGridExpansionIndicator":"IgbDataGridExpansionIndicator()","ActualPixelScalingRatio":"ActualPixelScalingRatio","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IconColor":"IconColor","IsAnimationEnabled":"IsAnimationEnabled","IsExpanded":"IsExpanded","NotifySizeChanged(double, double)":"NotifySizeChanged(double, double)","NotifySizeChanged":"NotifySizeChanged(double, double)","NotifySizeChangedAsync(double, double)":"NotifySizeChangedAsync(double, double)","NotifySizeChangedAsync":"NotifySizeChangedAsync(double, double)","PixelScalingRatio":"PixelScalingRatio","Type":"Type"}}],"IgbDataGridFilterDialog":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridFilterDialog","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridFilterDialog()":"IgbDataGridFilterDialog()","IgbDataGridFilterDialog":"IgbDataGridFilterDialog()","ActualPixelScalingRatio":"ActualPixelScalingRatio","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","ColumnOptionsBackground":"ColumnOptionsBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","CommandCompleted":"CommandCompleted","CommandCompletedScript":"CommandCompletedScript","DefaultEventBehavior":"DefaultEventBehavior","DialogOpening":"DialogOpening","DialogOpeningScript":"DialogOpeningScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterChanged":"FilterChanged","FilterChangedScript":"FilterChangedScript","FilterChanging":"FilterChanging","FilterChangingScript":"FilterChangingScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetDesiredToolbarActions()":"GetDesiredToolbarActions()","GetDesiredToolbarActions":"GetDesiredToolbarActions()","GetDesiredToolbarActionsAsync()":"GetDesiredToolbarActionsAsync()","GetDesiredToolbarActionsAsync":"GetDesiredToolbarActionsAsync()","HideIcon()":"HideIcon()","HideIcon":"HideIcon()","HideIconAsync()":"HideIconAsync()","HideIconAsync":"HideIconAsync()","IconColor":"IconColor","InvalidateActions":"InvalidateActions","InvalidateActionsScript":"InvalidateActionsScript","IsAnimationEnabled":"IsAnimationEnabled","NotifyCellSizeChanged()":"NotifyCellSizeChanged()","NotifyCellSizeChanged":"NotifyCellSizeChanged()","NotifyCellSizeChangedAsync()":"NotifyCellSizeChangedAsync()","NotifyCellSizeChangedAsync":"NotifyCellSizeChangedAsync()","NotifySizeChanged(double, double)":"NotifySizeChanged(double, double)","NotifySizeChanged":"NotifySizeChanged(double, double)","NotifySizeChangedAsync(double, double)":"NotifySizeChangedAsync(double, double)","NotifySizeChangedAsync":"NotifySizeChangedAsync(double, double)","PixelScalingRatio":"PixelScalingRatio","RenderCompleted":"RenderCompleted","RenderCompletedScript":"RenderCompletedScript","ShowIcon()":"ShowIcon()","ShowIcon":"ShowIcon()","ShowIconAsync()":"ShowIconAsync()","ShowIconAsync":"ShowIconAsync()","Type":"Type","ViewSize":"ViewSize"}}],"IgbDataGridLocaleEnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridLocaleEnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridLocaleEnModule()":"IgbDataGridLocaleEnModule()","IgbDataGridLocaleEnModule":"IgbDataGridLocaleEnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataGridModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridModule()":"IgbDataGridModule()","IgbDataGridModule":"IgbDataGridModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataGridPager":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridPager","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridPager()":"IgbDataGridPager()","IgbDataGridPager":"IgbDataGridPager()","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","Background":"Background","Border":"Border","CurrentPage":"CurrentPage","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FirstPage()":"FirstPage()","FirstPage":"FirstPage()","FirstPageAsync()":"FirstPageAsync()","FirstPageAsync":"FirstPageAsync()","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","LastPage()":"LastPage()","LastPage":"LastPage()","LastPageAsync()":"LastPageAsync()","LastPageAsync":"LastPageAsync()","NextPage()":"NextPage()","NextPage":"NextPage()","NextPageAsync()":"NextPageAsync()","NextPageAsync":"NextPageAsync()","PageChanged":"PageChanged","PageChangedScript":"PageChangedScript","PageCount":"PageCount","PageSize":"PageSize","PagerText":"PagerText","PreviousPage()":"PreviousPage()","PreviousPage":"PreviousPage()","PreviousPageAsync()":"PreviousPageAsync()","PreviousPageAsync":"PreviousPageAsync()","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","Type":"Type"}}],"IgbDataGridPagerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridPagerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridPagerModule()":"IgbDataGridPagerModule()","IgbDataGridPagerModule":"IgbDataGridPagerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataGridSortIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridSortIndicator","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridSortIndicator()":"IgbDataGridSortIndicator()","IgbDataGridSortIndicator":"IgbDataGridSortIndicator()","ActualPixelScalingRatio":"ActualPixelScalingRatio","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetDesiredScale()":"GetDesiredScale()","GetDesiredScale":"GetDesiredScale()","GetDesiredScaleAsync()":"GetDesiredScaleAsync()","GetDesiredScaleAsync":"GetDesiredScaleAsync()","IconColor":"IconColor","IsAnimationEnabled":"IsAnimationEnabled","IsHitTestVisible":"IsHitTestVisible","NotifyCellSizeChanged()":"NotifyCellSizeChanged()","NotifyCellSizeChanged":"NotifyCellSizeChanged()","NotifyCellSizeChangedAsync()":"NotifyCellSizeChangedAsync()","NotifyCellSizeChangedAsync":"NotifyCellSizeChangedAsync()","NotifySizeChanged(double, double)":"NotifySizeChanged(double, double)","NotifySizeChanged":"NotifySizeChanged(double, double)","NotifySizeChangedAsync(double, double)":"NotifySizeChangedAsync(double, double)","NotifySizeChangedAsync":"NotifySizeChangedAsync(double, double)","PixelScalingRatio":"PixelScalingRatio","RenderCompleted":"RenderCompleted","RenderCompletedScript":"RenderCompletedScript","SortDirection":"SortDirection","SortIndicatorStyle":"SortIndicatorStyle","Type":"Type"}}],"IgbDataGridSummaryResult":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridSummaryResult","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridSummaryResult()":"IgbDataGridSummaryResult()","IgbDataGridSummaryResult":"IgbDataGridSummaryResult()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupKey":"GroupKey","GroupKeyScript":"GroupKeyScript","Operand":"Operand","PropertyName":"PropertyName","ShouldDisplay":"ShouldDisplay","SummaryIndex":"SummaryIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbDataGridToolbar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridToolbar","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridToolbar()":"IgbDataGridToolbar()","IgbDataGridToolbar":"IgbDataGridToolbar()","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","BorderWidthBottom":"BorderWidthBottom","BorderWidthLeft":"BorderWidthLeft","BorderWidthRight":"BorderWidthRight","BorderWidthTop":"BorderWidthTop","ColumnChooser":"ColumnChooser","ColumnChooserText":"ColumnChooserText","ColumnChooserTitle":"ColumnChooserTitle","ColumnPinning":"ColumnPinning","ColumnPinningText":"ColumnPinningText","ColumnPinningTitle":"ColumnPinningTitle","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DialogBackgroundColor":"DialogBackgroundColor","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetGrid":"TargetGrid","TargetGridScript":"TargetGridScript","ToolbarTitle":"ToolbarTitle","ToolbarTitleColor":"ToolbarTitleColor","ToolbarTitleFontFamily":"ToolbarTitleFontFamily","ToolbarTitleFontSize":"ToolbarTitleFontSize","ToolbarTitleFontStyle":"ToolbarTitleFontStyle","ToolbarTitleFontWeight":"ToolbarTitleFontWeight","Type":"Type"}}],"IgbDataGridToolbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataGridToolbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataGridToolbarModule()":"IgbDataGridToolbarModule()","IgbDataGridToolbarModule":"IgbDataGridToolbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataLegend":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegend","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegend()":"IgbDataLegend()","IgbDataLegend":"IgbDataLegend()","ActualBackground":"ActualBackground","ActualBadgesVisible":"ActualBadgesVisible","ActualBorderBrush":"ActualBorderBrush","ActualBorderThicknessBottom":"ActualBorderThicknessBottom","ActualBorderThicknessLeft":"ActualBorderThicknessLeft","ActualBorderThicknessRight":"ActualBorderThicknessRight","ActualBorderThicknessTop":"ActualBorderThicknessTop","ActualPixelScalingRatio":"ActualPixelScalingRatio","BadgeMarginBottom":"BadgeMarginBottom","BadgeMarginLeft":"BadgeMarginLeft","BadgeMarginRight":"BadgeMarginRight","BadgeMarginTop":"BadgeMarginTop","BadgeShape":"BadgeShape","CalculateColumnSummary":"CalculateColumnSummary","CalculateColumnSummaryScript":"CalculateColumnSummaryScript","ContentBackground":"ContentBackground","ContentBorderBrush":"ContentBorderBrush","ContentBorderThickness":"ContentBorderThickness","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExcludedColumns":"ExcludedColumns","ExcludedSeries":"ExcludedSeries","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)":"GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)","GetAbbreviatedNumber":"GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)","GetAbbreviatedNumberAsync(double, DataAbbreviationMode, int, int)":"GetAbbreviatedNumberAsync(double, DataAbbreviationMode, int, int)","GetAbbreviatedNumberAsync":"GetAbbreviatedNumberAsync(double, DataAbbreviationMode, int, int)","GetAbbreviatedString(double, DataAbbreviationMode, int, int)":"GetAbbreviatedString(double, DataAbbreviationMode, int, int)","GetAbbreviatedString":"GetAbbreviatedString(double, DataAbbreviationMode, int, int)","GetAbbreviatedStringAsync(double, DataAbbreviationMode, int, int)":"GetAbbreviatedStringAsync(double, DataAbbreviationMode, int, int)","GetAbbreviatedStringAsync":"GetAbbreviatedStringAsync(double, DataAbbreviationMode, int, int)","GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)":"GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)","GetAbbreviatedSymbol":"GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)","GetAbbreviatedSymbolAsync(double, DataAbbreviationMode, int, int)":"GetAbbreviatedSymbolAsync(double, DataAbbreviationMode, int, int)","GetAbbreviatedSymbolAsync":"GetAbbreviatedSymbolAsync(double, DataAbbreviationMode, int, int)","GroupRowMarginBottom":"GroupRowMarginBottom","GroupRowMarginLeft":"GroupRowMarginLeft","GroupRowMarginRight":"GroupRowMarginRight","GroupRowMarginTop":"GroupRowMarginTop","GroupRowVisible":"GroupRowVisible","GroupTextColor":"GroupTextColor","GroupTextFontFamily":"GroupTextFontFamily","GroupTextFontSize":"GroupTextFontSize","GroupTextFontStyle":"GroupTextFontStyle","GroupTextFontWeight":"GroupTextFontWeight","GroupTextMarginBottom":"GroupTextMarginBottom","GroupTextMarginLeft":"GroupTextMarginLeft","GroupTextMarginRight":"GroupTextMarginRight","GroupTextMarginTop":"GroupTextMarginTop","HeaderFormatCulture":"HeaderFormatCulture","HeaderFormatDate":"HeaderFormatDate","HeaderFormatSpecifiers":"HeaderFormatSpecifiers","HeaderFormatString":"HeaderFormatString","HeaderFormatTime":"HeaderFormatTime","HeaderRowMarginBottom":"HeaderRowMarginBottom","HeaderRowMarginLeft":"HeaderRowMarginLeft","HeaderRowMarginRight":"HeaderRowMarginRight","HeaderRowMarginTop":"HeaderRowMarginTop","HeaderRowVisible":"HeaderRowVisible","HeaderText":"HeaderText","HeaderTextColor":"HeaderTextColor","HeaderTextFontFamily":"HeaderTextFontFamily","HeaderTextFontSize":"HeaderTextFontSize","HeaderTextFontStyle":"HeaderTextFontStyle","HeaderTextFontWeight":"HeaderTextFontWeight","HeaderTextMarginBottom":"HeaderTextMarginBottom","HeaderTextMarginLeft":"HeaderTextMarginLeft","HeaderTextMarginRight":"HeaderTextMarginRight","HeaderTextMarginTop":"HeaderTextMarginTop","IncludedColumns":"IncludedColumns","IncludedSeries":"IncludedSeries","IsEmbeddedInDataTooltip":"IsEmbeddedInDataTooltip","LabelDisplayMode":"LabelDisplayMode","LabelTextColor":"LabelTextColor","LabelTextFontFamily":"LabelTextFontFamily","LabelTextFontSize":"LabelTextFontSize","LabelTextFontStyle":"LabelTextFontStyle","LabelTextFontWeight":"LabelTextFontWeight","LabelTextMarginBottom":"LabelTextMarginBottom","LabelTextMarginLeft":"LabelTextMarginLeft","LabelTextMarginRight":"LabelTextMarginRight","LabelTextMarginTop":"LabelTextMarginTop","LayoutMode":"LayoutMode","NotifySizeChanged()":"NotifySizeChanged()","NotifySizeChanged":"NotifySizeChanged()","NotifySizeChangedAsync()":"NotifySizeChangedAsync()","NotifySizeChangedAsync":"NotifySizeChangedAsync()","PixelScalingRatio":"PixelScalingRatio","ShouldUpdateWhenSeriesDataChanges":"ShouldUpdateWhenSeriesDataChanges","StyleGroupRow":"StyleGroupRow","StyleGroupRowScript":"StyleGroupRowScript","StyleHeaderRow":"StyleHeaderRow","StyleHeaderRowScript":"StyleHeaderRowScript","StyleSeriesColumn":"StyleSeriesColumn","StyleSeriesColumnScript":"StyleSeriesColumnScript","StyleSeriesRow":"StyleSeriesRow","StyleSeriesRowScript":"StyleSeriesRowScript","StyleSummaryColumn":"StyleSummaryColumn","StyleSummaryColumnScript":"StyleSummaryColumnScript","StyleSummaryRow":"StyleSummaryRow","StyleSummaryRowScript":"StyleSummaryRowScript","SummaryLabelText":"SummaryLabelText","SummaryLabelTextColor":"SummaryLabelTextColor","SummaryLabelTextFontFamily":"SummaryLabelTextFontFamily","SummaryLabelTextFontSize":"SummaryLabelTextFontSize","SummaryLabelTextFontStyle":"SummaryLabelTextFontStyle","SummaryLabelTextFontWeight":"SummaryLabelTextFontWeight","SummaryRowMarginBottom":"SummaryRowMarginBottom","SummaryRowMarginLeft":"SummaryRowMarginLeft","SummaryRowMarginRight":"SummaryRowMarginRight","SummaryRowMarginTop":"SummaryRowMarginTop","SummaryTitleText":"SummaryTitleText","SummaryTitleTextColor":"SummaryTitleTextColor","SummaryTitleTextFontFamily":"SummaryTitleTextFontFamily","SummaryTitleTextFontSize":"SummaryTitleTextFontSize","SummaryTitleTextFontStyle":"SummaryTitleTextFontStyle","SummaryTitleTextFontWeight":"SummaryTitleTextFontWeight","SummaryTitleTextMarginBottom":"SummaryTitleTextMarginBottom","SummaryTitleTextMarginLeft":"SummaryTitleTextMarginLeft","SummaryTitleTextMarginRight":"SummaryTitleTextMarginRight","SummaryTitleTextMarginTop":"SummaryTitleTextMarginTop","SummaryType":"SummaryType","SummaryUnitsText":"SummaryUnitsText","SummaryUnitsTextColor":"SummaryUnitsTextColor","SummaryUnitsTextFontFamily":"SummaryUnitsTextFontFamily","SummaryUnitsTextFontSize":"SummaryUnitsTextFontSize","SummaryUnitsTextFontStyle":"SummaryUnitsTextFontStyle","SummaryUnitsTextFontWeight":"SummaryUnitsTextFontWeight","SummaryValueTextColor":"SummaryValueTextColor","SummaryValueTextFontFamily":"SummaryValueTextFontFamily","SummaryValueTextFontSize":"SummaryValueTextFontSize","SummaryValueTextFontStyle":"SummaryValueTextFontStyle","SummaryValueTextFontWeight":"SummaryValueTextFontWeight","Target":"Target","TargetCursorPositionX":"TargetCursorPositionX","TargetCursorPositionY":"TargetCursorPositionY","TargetScript":"TargetScript","TitleTextColor":"TitleTextColor","TitleTextFontFamily":"TitleTextFontFamily","TitleTextFontSize":"TitleTextFontSize","TitleTextFontStyle":"TitleTextFontStyle","TitleTextFontWeight":"TitleTextFontWeight","TitleTextMarginBottom":"TitleTextMarginBottom","TitleTextMarginLeft":"TitleTextMarginLeft","TitleTextMarginRight":"TitleTextMarginRight","TitleTextMarginTop":"TitleTextMarginTop","Type":"Type","UnitsDisplayMode":"UnitsDisplayMode","UnitsText":"UnitsText","UnitsTextColor":"UnitsTextColor","UnitsTextFontFamily":"UnitsTextFontFamily","UnitsTextFontSize":"UnitsTextFontSize","UnitsTextFontStyle":"UnitsTextFontStyle","UnitsTextFontWeight":"UnitsTextFontWeight","UnitsTextMarginBottom":"UnitsTextMarginBottom","UnitsTextMarginLeft":"UnitsTextMarginLeft","UnitsTextMarginRight":"UnitsTextMarginRight","UnitsTextMarginTop":"UnitsTextMarginTop","ValueFormatAbbreviation":"ValueFormatAbbreviation","ValueFormatCulture":"ValueFormatCulture","ValueFormatCurrencyCode":"ValueFormatCurrencyCode","ValueFormatMaxFractions":"ValueFormatMaxFractions","ValueFormatMinFractions":"ValueFormatMinFractions","ValueFormatMode":"ValueFormatMode","ValueFormatSpecifiers":"ValueFormatSpecifiers","ValueFormatString":"ValueFormatString","ValueFormatUseGrouping":"ValueFormatUseGrouping","ValueRowMarginBottom":"ValueRowMarginBottom","ValueRowMarginLeft":"ValueRowMarginLeft","ValueRowMarginRight":"ValueRowMarginRight","ValueRowMarginTop":"ValueRowMarginTop","ValueRowVisible":"ValueRowVisible","ValueTextColor":"ValueTextColor","ValueTextFontFamily":"ValueTextFontFamily","ValueTextFontSize":"ValueTextFontSize","ValueTextFontStyle":"ValueTextFontStyle","ValueTextFontWeight":"ValueTextFontWeight","ValueTextMarginBottom":"ValueTextMarginBottom","ValueTextMarginLeft":"ValueTextMarginLeft","ValueTextMarginRight":"ValueTextMarginRight","ValueTextMarginTop":"ValueTextMarginTop","ValueTextUseSeriesColors":"ValueTextUseSeriesColors","ValueTextWhenMissingData":"ValueTextWhenMissingData"}}],"IgbDataLegendModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendModule()":"IgbDataLegendModule()","IgbDataLegendModule":"IgbDataLegendModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataLegendSeriesContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendSeriesContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendSeriesContext()":"IgbDataLegendSeriesContext()","IgbDataLegendSeriesContext":"IgbDataLegendSeriesContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSeriesValue(DataLegendSeriesValueType)":"GetSeriesValue(DataLegendSeriesValueType)","GetSeriesValue":"GetSeriesValue(DataLegendSeriesValueType)","GetSeriesValueAsync(DataLegendSeriesValueType)":"GetSeriesValueAsync(DataLegendSeriesValueType)","GetSeriesValueAsync":"GetSeriesValueAsync(DataLegendSeriesValueType)","GetSeriesValueInfo(DataLegendSeriesValueType)":"GetSeriesValueInfo(DataLegendSeriesValueType)","GetSeriesValueInfo":"GetSeriesValueInfo(DataLegendSeriesValueType)","GetSeriesValueInfoAsync(DataLegendSeriesValueType)":"GetSeriesValueInfoAsync(DataLegendSeriesValueType)","GetSeriesValueInfoAsync":"GetSeriesValueInfoAsync(DataLegendSeriesValueType)","GetSeriesValues()":"GetSeriesValues()","GetSeriesValues":"GetSeriesValues()","GetSeriesValuesAsync()":"GetSeriesValuesAsync()","GetSeriesValuesAsync":"GetSeriesValuesAsync()","SeriesFamily":"SeriesFamily","SetSeriesValue(DataLegendSeriesValueType, double)":"SetSeriesValue(DataLegendSeriesValueType, double)","SetSeriesValue":"SetSeriesValue(DataLegendSeriesValueType, double)","SetSeriesValueAsync(DataLegendSeriesValueType, double)":"SetSeriesValueAsync(DataLegendSeriesValueType, double)","SetSeriesValueAsync":"SetSeriesValueAsync(DataLegendSeriesValueType, double)","SetSeriesValueInfo(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)":"SetSeriesValueInfo(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)","SetSeriesValueInfo":"SetSeriesValueInfo(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)","SetSeriesValueInfoAsync(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)":"SetSeriesValueInfoAsync(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)","SetSeriesValueInfoAsync":"SetSeriesValueInfoAsync(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)","Type":"Type"}}],"IgbDataLegendSeriesGroupInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendSeriesGroupInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendSeriesGroupInfo()":"IgbDataLegendSeriesGroupInfo()","IgbDataLegendSeriesGroupInfo":"IgbDataLegendSeriesGroupInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataLegendSeriesValueInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendSeriesValueInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendSeriesValueInfo()":"IgbDataLegendSeriesValueInfo()","IgbDataLegendSeriesValueInfo":"IgbDataLegendSeriesValueInfo()","AllowLabels":"AllowLabels","AllowUnits":"AllowUnits","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatAllowAbbreviation":"FormatAllowAbbreviation","FormatAllowCurrency":"FormatAllowCurrency","FormatAllowDecimal":"FormatAllowDecimal","FormatAllowInteger":"FormatAllowInteger","FormatAllowPercent":"FormatAllowPercent","FormatMaxFractions":"FormatMaxFractions","FormatMinFractions":"FormatMinFractions","FormatUseNegativeColor":"FormatUseNegativeColor","FormatUsePositiveColor":"FormatUsePositiveColor","FormatWithSeriesColor":"FormatWithSeriesColor","Index":"Index","IsExcludeByDefault":"IsExcludeByDefault","MemberLabel":"MemberLabel","MemberPath":"MemberPath","MemberSymbol":"MemberSymbol","MemberUnit":"MemberUnit","OrderIndex":"OrderIndex","Type":"Type","Value":"Value","ValueNegativePrefix":"ValueNegativePrefix","ValueNegativeSuffix":"ValueNegativeSuffix","ValuePositivePrefix":"ValuePositivePrefix","ValuePositiveSuffix":"ValuePositiveSuffix","ValueType":"ValueType"}}],"IgbDataLegendStylingColumnEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendStylingColumnEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendStylingColumnEventArgs()":"IgbDataLegendStylingColumnEventArgs()","IgbDataLegendStylingColumnEventArgs":"IgbDataLegendStylingColumnEventArgs()","ColumnIndex":"ColumnIndex","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupName":"GroupName","LabelText":"LabelText","LabelTextColor":"LabelTextColor","SeriesIndex":"SeriesIndex","SeriesTitle":"SeriesTitle","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UnitsText":"UnitsText","UnitsTextColor":"UnitsTextColor","ValueAbbreviation":"ValueAbbreviation","ValueMemberLabel":"ValueMemberLabel","ValueMemberPath":"ValueMemberPath","ValueOriginal":"ValueOriginal","ValueText":"ValueText","ValueTextColor":"ValueTextColor"}}],"IgbDataLegendStylingRowEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendStylingRowEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendStylingRowEventArgs()":"IgbDataLegendStylingRowEventArgs()","IgbDataLegendStylingRowEventArgs":"IgbDataLegendStylingRowEventArgs()","BadgeShape":"BadgeShape","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupName":"GroupName","IsBadgeVisible":"IsBadgeVisible","IsRowVisible":"IsRowVisible","SeriesIndex":"SeriesIndex","SeriesTitle":"SeriesTitle","TitleText":"TitleText","TitleTextColor":"TitleTextColor","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataLegendSummaryColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendSummaryColumn","k":"class","s":"classes","m":{"Value":"Value","ValueNegativePrefix":"ValueNegativePrefix","ValueNegativeSuffix":"ValueNegativeSuffix","ValuePositivePrefix":"ValuePositivePrefix","ValuePositiveSuffix":"ValuePositiveSuffix","FormatWithSeriesColor":"FormatWithSeriesColor","FormatMinFractions":"FormatMinFractions","FormatMaxFractions":"FormatMaxFractions","FormatUsePositiveColor":"FormatUsePositiveColor","FormatUseNegativeColor":"FormatUseNegativeColor","FormatAllowCurrency":"FormatAllowCurrency","FormatAllowPercent":"FormatAllowPercent","FormatAllowDecimal":"FormatAllowDecimal","FormatAllowInteger":"FormatAllowInteger","FormatAllowAbbreviation":"FormatAllowAbbreviation","ValueType":"ValueType","Index":"Index","OrderIndex":"OrderIndex","IsExcludeByDefault":"IsExcludeByDefault","AllowUnits":"AllowUnits","AllowLabels":"AllowLabels","MemberPath":"MemberPath","MemberLabel":"MemberLabel","MemberSymbol":"MemberSymbol","MemberUnit":"MemberUnit","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendSummaryColumn()":"IgbDataLegendSummaryColumn()","IgbDataLegendSummaryColumn":"IgbDataLegendSummaryColumn()","AddLabel(string)":"AddLabel(string)","AddLabel":"AddLabel(string)","AddLabelAsync(string)":"AddLabelAsync(string)","AddLabelAsync":"AddLabelAsync(string)","AddUnits(string)":"AddUnits(string)","AddUnits":"AddUnits(string)","AddUnitsAsync(string)":"AddUnitsAsync(string)","AddUnitsAsync":"AddUnitsAsync(string)","AddValue(double)":"AddValue(double)","AddValue":"AddValue(double)","AddValueAsync(double)":"AddValueAsync(double)","AddValueAsync":"AddValueAsync(double)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataLegendSummaryEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataLegendSummaryEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataLegendSummaryEventArgs()":"IgbDataLegendSummaryEventArgs()","IgbDataLegendSummaryEventArgs":"IgbDataLegendSummaryEventArgs()","ColumnMemberPath":"ColumnMemberPath","ColumnValues":"ColumnValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SummaryLabel":"SummaryLabel","SummaryUnits":"SummaryUnits","SummaryValue":"SummaryValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataPieBaseChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataPieBaseChart","k":"class","s":"classes","m":{"ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","GetScaledAngleAsync(double)":"GetScaledAngleAsync(double)","GetScaledAngleAsync":"GetScaledAngleAsync(double)","GetScaledAngle(double)":"GetScaledAngle(double)","GetScaledAngle":"GetScaledAngle(double)","GetUnscaledAngleAsync(double)":"GetUnscaledAngleAsync(double)","GetUnscaledAngleAsync":"GetUnscaledAngleAsync(double)","GetUnscaledAngle(double)":"GetUnscaledAngle(double)","GetUnscaledAngle":"GetUnscaledAngle(double)","GetScaledValueAsync(double)":"GetScaledValueAsync(double)","GetScaledValueAsync":"GetScaledValueAsync(double)","GetScaledValue(double)":"GetScaledValue(double)","GetScaledValue":"GetScaledValue(double)","GetUnscaledValueAsync(double)":"GetUnscaledValueAsync(double)","GetUnscaledValueAsync":"GetUnscaledValueAsync(double)","GetUnscaledValue(double)":"GetUnscaledValue(double)","GetUnscaledValue":"GetUnscaledValue(double)","AngleAxisFormatLabel":"AngleAxisFormatLabel","AngleAxisFormatLabelScript":"AngleAxisFormatLabelScript","ValueAxisFormatLabel":"ValueAxisFormatLabel","ValueAxisFormatLabelScript":"ValueAxisFormatLabelScript","AngleAxisLabelLeftMargin":"AngleAxisLabelLeftMargin","AngleAxisLabelTopMargin":"AngleAxisLabelTopMargin","AngleAxisLabelRightMargin":"AngleAxisLabelRightMargin","AngleAxisLabelBottomMargin":"AngleAxisLabelBottomMargin","ValueAxisLabelLeftMargin":"ValueAxisLabelLeftMargin","ValueAxisLabelTopMargin":"ValueAxisLabelTopMargin","ValueAxisLabelRightMargin":"ValueAxisLabelRightMargin","ValueAxisLabelBottomMargin":"ValueAxisLabelBottomMargin","AngleAxisLabelTextColor":"AngleAxisLabelTextColor","ValueAxisLabelTextColor":"ValueAxisLabelTextColor","ActualAngleAxisLabelTextColor":"ActualAngleAxisLabelTextColor","ActualValueAxisLabelTextColor":"ActualValueAxisLabelTextColor","AngleAxisTitleMargin":"AngleAxisTitleMargin","ValueAxisTitleMargin":"ValueAxisTitleMargin","AngleAxisTitleLeftMargin":"AngleAxisTitleLeftMargin","ValueAxisTitleLeftMargin":"ValueAxisTitleLeftMargin","AngleAxisTitleTopMargin":"AngleAxisTitleTopMargin","ValueAxisTitleTopMargin":"ValueAxisTitleTopMargin","AngleAxisTitleRightMargin":"AngleAxisTitleRightMargin","ValueAxisTitleRightMargin":"ValueAxisTitleRightMargin","AngleAxisTitleBottomMargin":"AngleAxisTitleBottomMargin","ValueAxisTitleBottomMargin":"ValueAxisTitleBottomMargin","AngleAxisTitleTextColor":"AngleAxisTitleTextColor","ValueAxisTitleTextColor":"ValueAxisTitleTextColor","AngleAxisLabelTextStyle":"AngleAxisLabelTextStyle","ValueAxisLabelTextStyle":"ValueAxisLabelTextStyle","AngleAxisTitleTextStyle":"AngleAxisTitleTextStyle","ValueAxisTitleTextStyle":"ValueAxisTitleTextStyle","AngleAxisLabel":"AngleAxisLabel","AngleAxisLabelScript":"AngleAxisLabelScript","ValueAxisLabel":"ValueAxisLabel","ValueAxisLabelScript":"ValueAxisLabelScript","AngleAxisMajorStroke":"AngleAxisMajorStroke","ValueAxisMajorStroke":"ValueAxisMajorStroke","AngleAxisMajorStrokeThickness":"AngleAxisMajorStrokeThickness","ValueAxisMajorStrokeThickness":"ValueAxisMajorStrokeThickness","AngleAxisMinorStrokeThickness":"AngleAxisMinorStrokeThickness","ValueAxisMinorStrokeThickness":"ValueAxisMinorStrokeThickness","AngleAxisStrip":"AngleAxisStrip","ValueAxisStrip":"ValueAxisStrip","AngleAxisStroke":"AngleAxisStroke","ValueAxisStroke":"ValueAxisStroke","AngleAxisStrokeThickness":"AngleAxisStrokeThickness","ValueAxisStrokeThickness":"ValueAxisStrokeThickness","AngleAxisTickLength":"AngleAxisTickLength","ValueAxisTickLength":"ValueAxisTickLength","AngleAxisTickStroke":"AngleAxisTickStroke","ValueAxisTickStroke":"ValueAxisTickStroke","AngleAxisTickStrokeThickness":"AngleAxisTickStrokeThickness","ValueAxisTickStrokeThickness":"ValueAxisTickStrokeThickness","AngleAxisTitle":"AngleAxisTitle","ValueAxisTitle":"ValueAxisTitle","AngleAxisMinorStroke":"AngleAxisMinorStroke","ValueAxisMinorStroke":"ValueAxisMinorStroke","AngleAxisLabelAngle":"AngleAxisLabelAngle","ValueAxisLabelAngle":"ValueAxisLabelAngle","AngleAxisExtent":"AngleAxisExtent","AngleAxisMaximumExtent":"AngleAxisMaximumExtent","AngleAxisMaximumExtentPercentage":"AngleAxisMaximumExtentPercentage","ValueAxisExtent":"ValueAxisExtent","ValueAxisMaximumExtent":"ValueAxisMaximumExtent","ValueAxisMaximumExtentPercentage":"ValueAxisMaximumExtentPercentage","AngleAxisTitleAngle":"AngleAxisTitleAngle","ValueAxisTitleAngle":"ValueAxisTitleAngle","AngleAxisInverted":"AngleAxisInverted","ValueAxisInverted":"ValueAxisInverted","AngleAxisTitleAlignment":"AngleAxisTitleAlignment","ValueAxisTitleAlignment":"ValueAxisTitleAlignment","AngleAxisLabelHorizontalAlignment":"AngleAxisLabelHorizontalAlignment","ValueAxisLabelHorizontalAlignment":"ValueAxisLabelHorizontalAlignment","AngleAxisLabelVerticalAlignment":"AngleAxisLabelVerticalAlignment","ValueAxisLabelVerticalAlignment":"ValueAxisLabelVerticalAlignment","AngleAxisLabelVisibility":"AngleAxisLabelVisibility","ValueAxisLabelVisibility":"ValueAxisLabelVisibility","ValueAxisLabelLocation":"ValueAxisLabelLocation","AngleAxisLabelLocation":"AngleAxisLabelLocation","AngleAxisLabelFormat":"AngleAxisLabelFormat","AngleAxisLabelFormatSpecifiers":"AngleAxisLabelFormatSpecifiers","ValueAxisLabelFormat":"ValueAxisLabelFormat","ValueAxisLabelFormatSpecifiers":"ValueAxisLabelFormatSpecifiers","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","DefaultEventBehavior":"DefaultEventBehavior","PixelScalingRatio":"PixelScalingRatio","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleTextColor":"SubtitleTextColor","TitleTextColor":"TitleTextColor","LeftMargin":"LeftMargin","TopMargin":"TopMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","HighlightingTransitionDuration":"HighlightingTransitionDuration","SelectionTransitionDuration":"SelectionTransitionDuration","FocusTransitionDuration":"FocusTransitionDuration","SubtitleTextStyle":"SubtitleTextStyle","TitleTextStyle":"TitleTextStyle","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","SortDescriptions":"SortDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupDescriptions":"GroupDescriptions","FilterExpressions":"FilterExpressions","HighlightFilterExpressions":"HighlightFilterExpressions","SummaryDescriptions":"SummaryDescriptions","SelectionMode":"SelectionMode","FocusMode":"FocusMode","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","SelectionBehavior":"SelectionBehavior","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","InitialSortDescriptions":"InitialSortDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialFilterExpressions":"InitialFilterExpressions","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSummaryDescriptions":"InitialSummaryDescriptions","InitialSorts":"InitialSorts","GroupSorts":"GroupSorts","InitialGroups":"InitialGroups","InitialFilter":"InitialFilter","InitialHighlightFilter":"InitialHighlightFilter","InitialSummaries":"InitialSummaries","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","IncludedProperties":"IncludedProperties","ExcludedProperties":"ExcludedProperties","Brushes":"Brushes","Outlines":"Outlines","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","Legend":"Legend","LegendScript":"LegendScript","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","LegendItemVisibility":"LegendItemVisibility","WindowRect":"WindowRect","ChartTitle":"ChartTitle","Subtitle":"Subtitle","TitleAlignment":"TitleAlignment","SubtitleAlignment":"SubtitleAlignment","UnknownValuePlotting":"UnknownValuePlotting","Resolution":"Resolution","Thickness":"Thickness","OutlineMode":"OutlineMode","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerMaxCount":"MarkerMaxCount","AreaFillOpacity":"AreaFillOpacity","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineThickness":"TrendLineThickness","TrendLineTypes":"TrendLineTypes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginBottom":"PlotAreaMarginBottom","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","HighlightingMode":"HighlightingMode","HighlightingBehavior":"HighlightingBehavior","HighlightingFadeOpacity":"HighlightingFadeOpacity","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","TrendLinePeriod":"TrendLinePeriod","ToolTipType":"ToolTipType","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsSnapToData":"CrosshairsSnapToData","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","AutoCalloutsVisible":"AutoCalloutsVisible","CalloutsVisible":"CalloutsVisible","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","CalloutCollisionMode":"CalloutCollisionMode","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsBackground":"CalloutsBackground","CalloutsOutline":"CalloutsOutline","CalloutsTextColor":"CalloutsTextColor","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","SeriesAddedScript":"SeriesAddedScript","SeriesAdded":"SeriesAdded","SeriesRemovedScript":"SeriesRemovedScript","SeriesRemoved":"SeriesRemoved","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerDown":"SeriesPointerDown","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesPointerUp":"SeriesPointerUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","PlotAreaPointerUp":"PlotAreaPointerUp","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLabelUpdating":"CalloutLabelUpdating","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataPieBaseChart()":"IgbDataPieBaseChart()","IgbDataPieBaseChart":"IgbDataPieBaseChart()","AngleAxisFavorLabellingScaleEnd":"AngleAxisFavorLabellingScaleEnd","AngleAxisInterval":"AngleAxisInterval","AngleAxisMinorInterval":"AngleAxisMinorInterval","DarkSliceLabelColor":"DarkSliceLabelColor","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FireMouseLeaveOnManipulationStart":"FireMouseLeaveOnManipulationStart","GetOthersContext()":"GetOthersContext()","GetOthersContext":"GetOthersContext()","GetOthersContextAsync()":"GetOthersContextAsync()","GetOthersContextAsync":"GetOthersContextAsync()","InnerExtent":"InnerExtent","LabelMemberPath":"LabelMemberPath","LegendEmptyValuesMode":"LegendEmptyValuesMode","LegendLabelMemberPath":"LegendLabelMemberPath","LegendOthersSliceLabelFormat":"LegendOthersSliceLabelFormat","LegendOthersSliceLabelFormatSpecifiers":"LegendOthersSliceLabelFormatSpecifiers","LegendSliceLabelContentMode":"LegendSliceLabelContentMode","LegendSliceLabelFormat":"LegendSliceLabelFormat","LegendSliceLabelFormatSpecifiers":"LegendSliceLabelFormatSpecifiers","LightSliceLabelColor":"LightSliceLabelColor","MarkerCollision":"MarkerCollision","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersCategoryText":"OthersCategoryText","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","OthersSliceLabelFormat":"OthersSliceLabelFormat","OthersSliceLabelFormatSpecifiers":"OthersSliceLabelFormatSpecifiers","RadiusExtent":"RadiusExtent","RadiusX":"RadiusX","RadiusY":"RadiusY","SelectionThickness":"SelectionThickness","SliceLabelContentMode":"SliceLabelContentMode","SliceLabelContentSeparator":"SliceLabelContentSeparator","SliceLabelFormat":"SliceLabelFormat","SliceLabelFormatSpecifiers":"SliceLabelFormatSpecifiers","SliceLabelPositionMode":"SliceLabelPositionMode","StartAngle":"StartAngle","SweepDirection":"SweepDirection","Type":"Type","UseInsetOutlines":"UseInsetOutlines","ValueAxisAbbreviateLargeNumbers":"ValueAxisAbbreviateLargeNumbers","ValueAxisAutoRangeBufferMode":"ValueAxisAutoRangeBufferMode","ValueAxisFavorLabellingScaleEnd":"ValueAxisFavorLabellingScaleEnd","ValueAxisInterval":"ValueAxisInterval","ValueAxisIsLogarithmic":"ValueAxisIsLogarithmic","ValueAxisLogarithmBase":"ValueAxisLogarithmBase","ValueAxisMaximumValue":"ValueAxisMaximumValue","ValueAxisMinimumValue":"ValueAxisMinimumValue","ValueAxisMinorInterval":"ValueAxisMinorInterval","ValueMemberPath":"ValueMemberPath"}}],"IgbDataPieChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataPieChart","k":"class","s":"classes","m":{"GetOthersContextAsync()":"GetOthersContextAsync()","GetOthersContextAsync":"GetOthersContextAsync()","GetOthersContext()":"GetOthersContext()","GetOthersContext":"GetOthersContext()","SliceLabelFormat":"SliceLabelFormat","SliceLabelFormatSpecifiers":"SliceLabelFormatSpecifiers","LegendSliceLabelFormat":"LegendSliceLabelFormat","LegendSliceLabelFormatSpecifiers":"LegendSliceLabelFormatSpecifiers","OthersSliceLabelFormat":"OthersSliceLabelFormat","OthersSliceLabelFormatSpecifiers":"OthersSliceLabelFormatSpecifiers","LegendOthersSliceLabelFormat":"LegendOthersSliceLabelFormat","LegendOthersSliceLabelFormatSpecifiers":"LegendOthersSliceLabelFormatSpecifiers","InnerExtent":"InnerExtent","SweepDirection":"SweepDirection","SliceLabelPositionMode":"SliceLabelPositionMode","LightSliceLabelColor":"LightSliceLabelColor","DarkSliceLabelColor":"DarkSliceLabelColor","ValueMemberPath":"ValueMemberPath","LegendLabelMemberPath":"LegendLabelMemberPath","LegendEmptyValuesMode":"LegendEmptyValuesMode","OthersCategoryType":"OthersCategoryType","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryText":"OthersCategoryText","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","LabelMemberPath":"LabelMemberPath","ValueAxisFavorLabellingScaleEnd":"ValueAxisFavorLabellingScaleEnd","ValueAxisAutoRangeBufferMode":"ValueAxisAutoRangeBufferMode","AngleAxisInterval":"AngleAxisInterval","AngleAxisMinorInterval":"AngleAxisMinorInterval","ValueAxisInterval":"ValueAxisInterval","ValueAxisIsLogarithmic":"ValueAxisIsLogarithmic","ValueAxisLogarithmBase":"ValueAxisLogarithmBase","ValueAxisMinimumValue":"ValueAxisMinimumValue","ValueAxisMaximumValue":"ValueAxisMaximumValue","ValueAxisMinorInterval":"ValueAxisMinorInterval","RadiusExtent":"RadiusExtent","StartAngle":"StartAngle","SliceLabelContentSeparator":"SliceLabelContentSeparator","SliceLabelContentMode":"SliceLabelContentMode","LegendSliceLabelContentMode":"LegendSliceLabelContentMode","RadiusX":"RadiusX","RadiusY":"RadiusY","SelectionThickness":"SelectionThickness","UseInsetOutlines":"UseInsetOutlines","AngleAxisFavorLabellingScaleEnd":"AngleAxisFavorLabellingScaleEnd","ValueAxisAbbreviateLargeNumbers":"ValueAxisAbbreviateLargeNumbers","MarkerCollision":"MarkerCollision","FireMouseLeaveOnManipulationStart":"FireMouseLeaveOnManipulationStart","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","GetScaledAngleAsync(double)":"GetScaledAngleAsync(double)","GetScaledAngleAsync":"GetScaledAngleAsync(double)","GetScaledAngle(double)":"GetScaledAngle(double)","GetScaledAngle":"GetScaledAngle(double)","GetUnscaledAngleAsync(double)":"GetUnscaledAngleAsync(double)","GetUnscaledAngleAsync":"GetUnscaledAngleAsync(double)","GetUnscaledAngle(double)":"GetUnscaledAngle(double)","GetUnscaledAngle":"GetUnscaledAngle(double)","GetScaledValueAsync(double)":"GetScaledValueAsync(double)","GetScaledValueAsync":"GetScaledValueAsync(double)","GetScaledValue(double)":"GetScaledValue(double)","GetScaledValue":"GetScaledValue(double)","GetUnscaledValueAsync(double)":"GetUnscaledValueAsync(double)","GetUnscaledValueAsync":"GetUnscaledValueAsync(double)","GetUnscaledValue(double)":"GetUnscaledValue(double)","GetUnscaledValue":"GetUnscaledValue(double)","AngleAxisFormatLabel":"AngleAxisFormatLabel","AngleAxisFormatLabelScript":"AngleAxisFormatLabelScript","ValueAxisFormatLabel":"ValueAxisFormatLabel","ValueAxisFormatLabelScript":"ValueAxisFormatLabelScript","AngleAxisLabelLeftMargin":"AngleAxisLabelLeftMargin","AngleAxisLabelTopMargin":"AngleAxisLabelTopMargin","AngleAxisLabelRightMargin":"AngleAxisLabelRightMargin","AngleAxisLabelBottomMargin":"AngleAxisLabelBottomMargin","ValueAxisLabelLeftMargin":"ValueAxisLabelLeftMargin","ValueAxisLabelTopMargin":"ValueAxisLabelTopMargin","ValueAxisLabelRightMargin":"ValueAxisLabelRightMargin","ValueAxisLabelBottomMargin":"ValueAxisLabelBottomMargin","AngleAxisLabelTextColor":"AngleAxisLabelTextColor","ValueAxisLabelTextColor":"ValueAxisLabelTextColor","ActualAngleAxisLabelTextColor":"ActualAngleAxisLabelTextColor","ActualValueAxisLabelTextColor":"ActualValueAxisLabelTextColor","AngleAxisTitleMargin":"AngleAxisTitleMargin","ValueAxisTitleMargin":"ValueAxisTitleMargin","AngleAxisTitleLeftMargin":"AngleAxisTitleLeftMargin","ValueAxisTitleLeftMargin":"ValueAxisTitleLeftMargin","AngleAxisTitleTopMargin":"AngleAxisTitleTopMargin","ValueAxisTitleTopMargin":"ValueAxisTitleTopMargin","AngleAxisTitleRightMargin":"AngleAxisTitleRightMargin","ValueAxisTitleRightMargin":"ValueAxisTitleRightMargin","AngleAxisTitleBottomMargin":"AngleAxisTitleBottomMargin","ValueAxisTitleBottomMargin":"ValueAxisTitleBottomMargin","AngleAxisTitleTextColor":"AngleAxisTitleTextColor","ValueAxisTitleTextColor":"ValueAxisTitleTextColor","AngleAxisLabelTextStyle":"AngleAxisLabelTextStyle","ValueAxisLabelTextStyle":"ValueAxisLabelTextStyle","AngleAxisTitleTextStyle":"AngleAxisTitleTextStyle","ValueAxisTitleTextStyle":"ValueAxisTitleTextStyle","AngleAxisLabel":"AngleAxisLabel","AngleAxisLabelScript":"AngleAxisLabelScript","ValueAxisLabel":"ValueAxisLabel","ValueAxisLabelScript":"ValueAxisLabelScript","AngleAxisMajorStroke":"AngleAxisMajorStroke","ValueAxisMajorStroke":"ValueAxisMajorStroke","AngleAxisMajorStrokeThickness":"AngleAxisMajorStrokeThickness","ValueAxisMajorStrokeThickness":"ValueAxisMajorStrokeThickness","AngleAxisMinorStrokeThickness":"AngleAxisMinorStrokeThickness","ValueAxisMinorStrokeThickness":"ValueAxisMinorStrokeThickness","AngleAxisStrip":"AngleAxisStrip","ValueAxisStrip":"ValueAxisStrip","AngleAxisStroke":"AngleAxisStroke","ValueAxisStroke":"ValueAxisStroke","AngleAxisStrokeThickness":"AngleAxisStrokeThickness","ValueAxisStrokeThickness":"ValueAxisStrokeThickness","AngleAxisTickLength":"AngleAxisTickLength","ValueAxisTickLength":"ValueAxisTickLength","AngleAxisTickStroke":"AngleAxisTickStroke","ValueAxisTickStroke":"ValueAxisTickStroke","AngleAxisTickStrokeThickness":"AngleAxisTickStrokeThickness","ValueAxisTickStrokeThickness":"ValueAxisTickStrokeThickness","AngleAxisTitle":"AngleAxisTitle","ValueAxisTitle":"ValueAxisTitle","AngleAxisMinorStroke":"AngleAxisMinorStroke","ValueAxisMinorStroke":"ValueAxisMinorStroke","AngleAxisLabelAngle":"AngleAxisLabelAngle","ValueAxisLabelAngle":"ValueAxisLabelAngle","AngleAxisExtent":"AngleAxisExtent","AngleAxisMaximumExtent":"AngleAxisMaximumExtent","AngleAxisMaximumExtentPercentage":"AngleAxisMaximumExtentPercentage","ValueAxisExtent":"ValueAxisExtent","ValueAxisMaximumExtent":"ValueAxisMaximumExtent","ValueAxisMaximumExtentPercentage":"ValueAxisMaximumExtentPercentage","AngleAxisTitleAngle":"AngleAxisTitleAngle","ValueAxisTitleAngle":"ValueAxisTitleAngle","AngleAxisInverted":"AngleAxisInverted","ValueAxisInverted":"ValueAxisInverted","AngleAxisTitleAlignment":"AngleAxisTitleAlignment","ValueAxisTitleAlignment":"ValueAxisTitleAlignment","AngleAxisLabelHorizontalAlignment":"AngleAxisLabelHorizontalAlignment","ValueAxisLabelHorizontalAlignment":"ValueAxisLabelHorizontalAlignment","AngleAxisLabelVerticalAlignment":"AngleAxisLabelVerticalAlignment","ValueAxisLabelVerticalAlignment":"ValueAxisLabelVerticalAlignment","AngleAxisLabelVisibility":"AngleAxisLabelVisibility","ValueAxisLabelVisibility":"ValueAxisLabelVisibility","ValueAxisLabelLocation":"ValueAxisLabelLocation","AngleAxisLabelLocation":"AngleAxisLabelLocation","AngleAxisLabelFormat":"AngleAxisLabelFormat","AngleAxisLabelFormatSpecifiers":"AngleAxisLabelFormatSpecifiers","ValueAxisLabelFormat":"ValueAxisLabelFormat","ValueAxisLabelFormatSpecifiers":"ValueAxisLabelFormatSpecifiers","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","DefaultEventBehavior":"DefaultEventBehavior","PixelScalingRatio":"PixelScalingRatio","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleTextColor":"SubtitleTextColor","TitleTextColor":"TitleTextColor","LeftMargin":"LeftMargin","TopMargin":"TopMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","HighlightingTransitionDuration":"HighlightingTransitionDuration","SelectionTransitionDuration":"SelectionTransitionDuration","FocusTransitionDuration":"FocusTransitionDuration","SubtitleTextStyle":"SubtitleTextStyle","TitleTextStyle":"TitleTextStyle","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","SortDescriptions":"SortDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupDescriptions":"GroupDescriptions","FilterExpressions":"FilterExpressions","HighlightFilterExpressions":"HighlightFilterExpressions","SummaryDescriptions":"SummaryDescriptions","SelectionMode":"SelectionMode","FocusMode":"FocusMode","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","SelectionBehavior":"SelectionBehavior","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","InitialSortDescriptions":"InitialSortDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialFilterExpressions":"InitialFilterExpressions","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSummaryDescriptions":"InitialSummaryDescriptions","InitialSorts":"InitialSorts","GroupSorts":"GroupSorts","InitialGroups":"InitialGroups","InitialFilter":"InitialFilter","InitialHighlightFilter":"InitialHighlightFilter","InitialSummaries":"InitialSummaries","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","IncludedProperties":"IncludedProperties","ExcludedProperties":"ExcludedProperties","Brushes":"Brushes","Outlines":"Outlines","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","Legend":"Legend","LegendScript":"LegendScript","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","LegendItemVisibility":"LegendItemVisibility","WindowRect":"WindowRect","ChartTitle":"ChartTitle","Subtitle":"Subtitle","TitleAlignment":"TitleAlignment","SubtitleAlignment":"SubtitleAlignment","UnknownValuePlotting":"UnknownValuePlotting","Resolution":"Resolution","Thickness":"Thickness","OutlineMode":"OutlineMode","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerMaxCount":"MarkerMaxCount","AreaFillOpacity":"AreaFillOpacity","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineThickness":"TrendLineThickness","TrendLineTypes":"TrendLineTypes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginBottom":"PlotAreaMarginBottom","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","HighlightingMode":"HighlightingMode","HighlightingBehavior":"HighlightingBehavior","HighlightingFadeOpacity":"HighlightingFadeOpacity","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","TrendLinePeriod":"TrendLinePeriod","ToolTipType":"ToolTipType","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsSnapToData":"CrosshairsSnapToData","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","AutoCalloutsVisible":"AutoCalloutsVisible","CalloutsVisible":"CalloutsVisible","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","CalloutCollisionMode":"CalloutCollisionMode","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsBackground":"CalloutsBackground","CalloutsOutline":"CalloutsOutline","CalloutsTextColor":"CalloutsTextColor","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","SeriesAddedScript":"SeriesAddedScript","SeriesAdded":"SeriesAdded","SeriesRemovedScript":"SeriesRemovedScript","SeriesRemoved":"SeriesRemoved","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerDown":"SeriesPointerDown","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesPointerUp":"SeriesPointerUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","PlotAreaPointerUp":"PlotAreaPointerUp","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLabelUpdating":"CalloutLabelUpdating","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataPieChart()":"IgbDataPieChart()","IgbDataPieChart":"IgbDataPieChart()","ChartType":"ChartType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsTransitionInEnabled":"IsTransitionInEnabled","TransitionInDuration":"TransitionInDuration","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionInMode":"TransitionInMode","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutDuration":"TransitionOutDuration","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","Type":"Type"}}],"IgbDataPieChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataPieChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataPieChartCoreModule()":"IgbDataPieChartCoreModule()","IgbDataPieChartCoreModule":"IgbDataPieChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataPieChartModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataPieChartModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataPieChartModule()":"IgbDataPieChartModule()","IgbDataPieChartModule":"IgbDataPieChartModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataPieChartToolbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataPieChartToolbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataPieChartToolbarModule()":"IgbDataPieChartToolbarModule()","IgbDataPieChartToolbarModule":"IgbDataPieChartToolbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataSourceAggregatedResult":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceAggregatedResult","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceAggregatedResult()":"IgbDataSourceAggregatedResult()","IgbDataSourceAggregatedResult":"IgbDataSourceAggregatedResult()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","Keys":"Keys","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TransactionType":"TransactionType","Type":"Type","Values":"Values","ValuesScript":"ValuesScript"}}],"IgbDataSourceDataProviderSchemaChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceDataProviderSchemaChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceDataProviderSchemaChangedEventArgs()":"IgbDataSourceDataProviderSchemaChangedEventArgs()","IgbDataSourceDataProviderSchemaChangedEventArgs":"IgbDataSourceDataProviderSchemaChangedEventArgs()","Count":"Count","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Schema":"Schema","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceGroupDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceGroupDescription","k":"class","s":"classes","m":{"Field":"Field","SortDirection":"SortDirection","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceGroupDescription()":"IgbDataSourceGroupDescription()","IgbDataSourceGroupDescription":"IgbDataSourceGroupDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceGroupDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceGroupDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDataSourceGroupDescription)":"InsertItem(int, IgbDataSourceGroupDescription)","InsertItem":"InsertItem(int, IgbDataSourceGroupDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDataSourceGroupDescription)":"SetItem(int, IgbDataSourceGroupDescription)","SetItem":"SetItem(int, IgbDataSourceGroupDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDataSourceGroupDescription)":"Add(IgbDataSourceGroupDescription)","Add":"Add(IgbDataSourceGroupDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDataSourceGroupDescription[], int)":"CopyTo(IgbDataSourceGroupDescription[], int)","CopyTo":"CopyTo(IgbDataSourceGroupDescription[], int)","Contains(IgbDataSourceGroupDescription)":"Contains(IgbDataSourceGroupDescription)","Contains":"Contains(IgbDataSourceGroupDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDataSourceGroupDescription)":"IndexOf(IgbDataSourceGroupDescription)","IndexOf":"IndexOf(IgbDataSourceGroupDescription)","Insert(int, IgbDataSourceGroupDescription)":"Insert(int, IgbDataSourceGroupDescription)","Insert":"Insert(int, IgbDataSourceGroupDescription)","Remove(IgbDataSourceGroupDescription)":"Remove(IgbDataSourceGroupDescription)","Remove":"Remove(IgbDataSourceGroupDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceGroupDescriptionCollection(object, string)":"IgbDataSourceGroupDescriptionCollection(object, string)","IgbDataSourceGroupDescriptionCollection":"IgbDataSourceGroupDescriptionCollection(object, string)"}}],"IgbDataSourceGroupDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceGroupDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceGroupDescriptionModule()":"IgbDataSourceGroupDescriptionModule()","IgbDataSourceGroupDescriptionModule":"IgbDataSourceGroupDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataSourcePropertiesRequestedChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourcePropertiesRequestedChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourcePropertiesRequestedChangedEventArgs()":"IgbDataSourcePropertiesRequestedChangedEventArgs()","IgbDataSourcePropertiesRequestedChangedEventArgs":"IgbDataSourcePropertiesRequestedChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceRootSummariesChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceRootSummariesChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceRootSummariesChangedEventArgs()":"IgbDataSourceRootSummariesChangedEventArgs()","IgbDataSourceRootSummariesChangedEventArgs":"IgbDataSourceRootSummariesChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceRowExpansionChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceRowExpansionChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceRowExpansionChangedEventArgs()":"IgbDataSourceRowExpansionChangedEventArgs()","IgbDataSourceRowExpansionChangedEventArgs":"IgbDataSourceRowExpansionChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewState":"NewState","OldState":"OldState","RowIndex":"RowIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceSchemaChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSchemaChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSchemaChangedEventArgs()":"IgbDataSourceSchemaChangedEventArgs()","IgbDataSourceSchemaChangedEventArgs":"IgbDataSourceSchemaChangedEventArgs()","Count":"Count","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Schema":"Schema","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceSortDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSortDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSortDescription()":"IgbDataSourceSortDescription()","IgbDataSourceSortDescription":"IgbDataSourceSortDescription()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SortDirection":"SortDirection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceSortDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSortDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDataSourceSortDescription)":"InsertItem(int, IgbDataSourceSortDescription)","InsertItem":"InsertItem(int, IgbDataSourceSortDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDataSourceSortDescription)":"SetItem(int, IgbDataSourceSortDescription)","SetItem":"SetItem(int, IgbDataSourceSortDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDataSourceSortDescription)":"Add(IgbDataSourceSortDescription)","Add":"Add(IgbDataSourceSortDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDataSourceSortDescription[], int)":"CopyTo(IgbDataSourceSortDescription[], int)","CopyTo":"CopyTo(IgbDataSourceSortDescription[], int)","Contains(IgbDataSourceSortDescription)":"Contains(IgbDataSourceSortDescription)","Contains":"Contains(IgbDataSourceSortDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDataSourceSortDescription)":"IndexOf(IgbDataSourceSortDescription)","IndexOf":"IndexOf(IgbDataSourceSortDescription)","Insert(int, IgbDataSourceSortDescription)":"Insert(int, IgbDataSourceSortDescription)","Insert":"Insert(int, IgbDataSourceSortDescription)","Remove(IgbDataSourceSortDescription)":"Remove(IgbDataSourceSortDescription)","Remove":"Remove(IgbDataSourceSortDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSortDescriptionCollection(object, string)":"IgbDataSourceSortDescriptionCollection(object, string)","IgbDataSourceSortDescriptionCollection":"IgbDataSourceSortDescriptionCollection(object, string)"}}],"IgbDataSourceSortDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSortDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSortDescriptionModule()":"IgbDataSourceSortDescriptionModule()","IgbDataSourceSortDescriptionModule":"IgbDataSourceSortDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataSourceSpecialRow":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSpecialRow","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSpecialRow()":"IgbDataSourceSpecialRow()","IgbDataSourceSpecialRow":"IgbDataSourceSpecialRow()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Keys":"Keys","Level":"Level","RowType":"RowType","SectionKeys":"SectionKeys","SectionValues":"SectionValues","SectionValuesScript":"SectionValuesScript","SummaryResults":"SummaryResults","TargetRow":"TargetRow","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Values":"Values","ValuesScript":"ValuesScript"}}],"IgbDataSourceSummaryDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSummaryDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSummaryDescription()":"IgbDataSourceSummaryDescription()","IgbDataSourceSummaryDescription":"IgbDataSourceSummaryDescription()","Alias":"Alias","CalculatorDisplayName":"CalculatorDisplayName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operand":"Operand","ProvideCalculator":"ProvideCalculator","ProvideCalculatorScript":"ProvideCalculatorScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDataSourceSummaryDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSummaryDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDataSourceSummaryDescription)":"InsertItem(int, IgbDataSourceSummaryDescription)","InsertItem":"InsertItem(int, IgbDataSourceSummaryDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDataSourceSummaryDescription)":"SetItem(int, IgbDataSourceSummaryDescription)","SetItem":"SetItem(int, IgbDataSourceSummaryDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDataSourceSummaryDescription)":"Add(IgbDataSourceSummaryDescription)","Add":"Add(IgbDataSourceSummaryDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDataSourceSummaryDescription[], int)":"CopyTo(IgbDataSourceSummaryDescription[], int)","CopyTo":"CopyTo(IgbDataSourceSummaryDescription[], int)","Contains(IgbDataSourceSummaryDescription)":"Contains(IgbDataSourceSummaryDescription)","Contains":"Contains(IgbDataSourceSummaryDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDataSourceSummaryDescription)":"IndexOf(IgbDataSourceSummaryDescription)","IndexOf":"IndexOf(IgbDataSourceSummaryDescription)","Insert(int, IgbDataSourceSummaryDescription)":"Insert(int, IgbDataSourceSummaryDescription)","Insert":"Insert(int, IgbDataSourceSummaryDescription)","Remove(IgbDataSourceSummaryDescription)":"Remove(IgbDataSourceSummaryDescription)","Remove":"Remove(IgbDataSourceSummaryDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSummaryDescriptionCollection(object, string)":"IgbDataSourceSummaryDescriptionCollection(object, string)","IgbDataSourceSummaryDescriptionCollection":"IgbDataSourceSummaryDescriptionCollection(object, string)"}}],"IgbDataSourceSummaryDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSummaryDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSummaryDescriptionModule()":"IgbDataSourceSummaryDescriptionModule()","IgbDataSourceSummaryDescriptionModule":"IgbDataSourceSummaryDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataSourceSupportingCalculation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataSourceSupportingCalculation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataSourceSupportingCalculation()":"IgbDataSourceSupportingCalculation()","IgbDataSourceSupportingCalculation":"IgbDataSourceSupportingCalculation()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDataToolTipLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataToolTipLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataToolTipLayer()":"IgbDataToolTipLayer()","IgbDataToolTipLayer":"IgbDataToolTipLayer()","ActualGroupedPositionModeX":"ActualGroupedPositionModeX","ActualGroupedPositionModeY":"ActualGroupedPositionModeY","ActualGroupingMode":"ActualGroupingMode","BadgeMarginBottom":"BadgeMarginBottom","BadgeMarginLeft":"BadgeMarginLeft","BadgeMarginRight":"BadgeMarginRight","BadgeMarginTop":"BadgeMarginTop","BadgeShape":"BadgeShape","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","DefaultPositionOffsetX":"DefaultPositionOffsetX","DefaultPositionOffsetY":"DefaultPositionOffsetY","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExcludedColumns":"ExcludedColumns","ExcludedSeries":"ExcludedSeries","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GroupRowMarginBottom":"GroupRowMarginBottom","GroupRowMarginLeft":"GroupRowMarginLeft","GroupRowMarginRight":"GroupRowMarginRight","GroupRowMarginTop":"GroupRowMarginTop","GroupRowVisible":"GroupRowVisible","GroupTextColor":"GroupTextColor","GroupTextFontFamily":"GroupTextFontFamily","GroupTextFontSize":"GroupTextFontSize","GroupTextFontStyle":"GroupTextFontStyle","GroupTextFontWeight":"GroupTextFontWeight","GroupTextMarginBottom":"GroupTextMarginBottom","GroupTextMarginLeft":"GroupTextMarginLeft","GroupTextMarginRight":"GroupTextMarginRight","GroupTextMarginTop":"GroupTextMarginTop","GroupedPositionModeX":"GroupedPositionModeX","GroupedPositionModeY":"GroupedPositionModeY","GroupingMode":"GroupingMode","HeaderFormatCulture":"HeaderFormatCulture","HeaderFormatDate":"HeaderFormatDate","HeaderFormatSpecifiers":"HeaderFormatSpecifiers","HeaderFormatString":"HeaderFormatString","HeaderFormatTime":"HeaderFormatTime","HeaderRowMarginBottom":"HeaderRowMarginBottom","HeaderRowMarginLeft":"HeaderRowMarginLeft","HeaderRowMarginRight":"HeaderRowMarginRight","HeaderRowMarginTop":"HeaderRowMarginTop","HeaderRowVisible":"HeaderRowVisible","HeaderText":"HeaderText","HeaderTextColor":"HeaderTextColor","HeaderTextFontFamily":"HeaderTextFontFamily","HeaderTextFontSize":"HeaderTextFontSize","HeaderTextFontStyle":"HeaderTextFontStyle","HeaderTextFontWeight":"HeaderTextFontWeight","HeaderTextMarginBottom":"HeaderTextMarginBottom","HeaderTextMarginLeft":"HeaderTextMarginLeft","HeaderTextMarginRight":"HeaderTextMarginRight","HeaderTextMarginTop":"HeaderTextMarginTop","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","IncludedColumns":"IncludedColumns","IncludedSeries":"IncludedSeries","LabelDisplayMode":"LabelDisplayMode","LabelTextColor":"LabelTextColor","LabelTextFontFamily":"LabelTextFontFamily","LabelTextFontSize":"LabelTextFontSize","LabelTextFontStyle":"LabelTextFontStyle","LabelTextFontWeight":"LabelTextFontWeight","LabelTextMarginBottom":"LabelTextMarginBottom","LabelTextMarginLeft":"LabelTextMarginLeft","LabelTextMarginRight":"LabelTextMarginRight","LabelTextMarginTop":"LabelTextMarginTop","LayoutMode":"LayoutMode","PositionOffsetX":"PositionOffsetX","PositionOffsetY":"PositionOffsetY","ShouldUpdateWhenSeriesDataChanges":"ShouldUpdateWhenSeriesDataChanges","SummaryLabelText":"SummaryLabelText","SummaryLabelTextColor":"SummaryLabelTextColor","SummaryLabelTextFontFamily":"SummaryLabelTextFontFamily","SummaryLabelTextFontSize":"SummaryLabelTextFontSize","SummaryLabelTextFontStyle":"SummaryLabelTextFontStyle","SummaryLabelTextFontWeight":"SummaryLabelTextFontWeight","SummaryRowMarginBottom":"SummaryRowMarginBottom","SummaryRowMarginLeft":"SummaryRowMarginLeft","SummaryRowMarginRight":"SummaryRowMarginRight","SummaryRowMarginTop":"SummaryRowMarginTop","SummaryTitleText":"SummaryTitleText","SummaryTitleTextColor":"SummaryTitleTextColor","SummaryTitleTextFontFamily":"SummaryTitleTextFontFamily","SummaryTitleTextFontSize":"SummaryTitleTextFontSize","SummaryTitleTextFontStyle":"SummaryTitleTextFontStyle","SummaryTitleTextFontWeight":"SummaryTitleTextFontWeight","SummaryTitleTextMarginBottom":"SummaryTitleTextMarginBottom","SummaryTitleTextMarginLeft":"SummaryTitleTextMarginLeft","SummaryTitleTextMarginRight":"SummaryTitleTextMarginRight","SummaryTitleTextMarginTop":"SummaryTitleTextMarginTop","SummaryType":"SummaryType","SummaryUnitsText":"SummaryUnitsText","SummaryUnitsTextColor":"SummaryUnitsTextColor","SummaryUnitsTextFontFamily":"SummaryUnitsTextFontFamily","SummaryUnitsTextFontSize":"SummaryUnitsTextFontSize","SummaryUnitsTextFontStyle":"SummaryUnitsTextFontStyle","SummaryUnitsTextFontWeight":"SummaryUnitsTextFontWeight","SummaryValueTextColor":"SummaryValueTextColor","SummaryValueTextFontFamily":"SummaryValueTextFontFamily","SummaryValueTextFontSize":"SummaryValueTextFontSize","SummaryValueTextFontStyle":"SummaryValueTextFontStyle","SummaryValueTextFontWeight":"SummaryValueTextFontWeight","TargetAxis":"TargetAxis","TargetAxisName":"TargetAxisName","TargetAxisScript":"TargetAxisScript","TitleTextColor":"TitleTextColor","TitleTextFontFamily":"TitleTextFontFamily","TitleTextFontSize":"TitleTextFontSize","TitleTextFontStyle":"TitleTextFontStyle","TitleTextFontWeight":"TitleTextFontWeight","TitleTextMarginBottom":"TitleTextMarginBottom","TitleTextMarginLeft":"TitleTextMarginLeft","TitleTextMarginRight":"TitleTextMarginRight","TitleTextMarginTop":"TitleTextMarginTop","ToolTipBackground":"ToolTipBackground","ToolTipBorderBrush":"ToolTipBorderBrush","ToolTipBorderThickness":"ToolTipBorderThickness","Type":"Type","UnitsDisplayMode":"UnitsDisplayMode","UnitsText":"UnitsText","UnitsTextColor":"UnitsTextColor","UnitsTextFontFamily":"UnitsTextFontFamily","UnitsTextFontSize":"UnitsTextFontSize","UnitsTextFontStyle":"UnitsTextFontStyle","UnitsTextFontWeight":"UnitsTextFontWeight","UnitsTextMarginBottom":"UnitsTextMarginBottom","UnitsTextMarginLeft":"UnitsTextMarginLeft","UnitsTextMarginRight":"UnitsTextMarginRight","UnitsTextMarginTop":"UnitsTextMarginTop","UseInterpolation":"UseInterpolation","ValueFormatAbbreviation":"ValueFormatAbbreviation","ValueFormatCulture":"ValueFormatCulture","ValueFormatMaxFractions":"ValueFormatMaxFractions","ValueFormatMinFractions":"ValueFormatMinFractions","ValueFormatMode":"ValueFormatMode","ValueFormatSpecifiers":"ValueFormatSpecifiers","ValueFormatString":"ValueFormatString","ValueFormatUseGrouping":"ValueFormatUseGrouping","ValueRowMarginBottom":"ValueRowMarginBottom","ValueRowMarginLeft":"ValueRowMarginLeft","ValueRowMarginRight":"ValueRowMarginRight","ValueRowMarginTop":"ValueRowMarginTop","ValueRowVisible":"ValueRowVisible","ValueTextColor":"ValueTextColor","ValueTextFontFamily":"ValueTextFontFamily","ValueTextFontSize":"ValueTextFontSize","ValueTextFontStyle":"ValueTextFontStyle","ValueTextFontWeight":"ValueTextFontWeight","ValueTextMarginBottom":"ValueTextMarginBottom","ValueTextMarginLeft":"ValueTextMarginLeft","ValueTextMarginRight":"ValueTextMarginRight","ValueTextMarginTop":"ValueTextMarginTop","ValueTextUseSeriesColors":"ValueTextUseSeriesColors","ValueTextWhenMissingData":"ValueTextWhenMissingData"}}],"IgbDataToolTipLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataToolTipLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataToolTipLayerModule()":"IgbDataToolTipLayerModule()","IgbDataToolTipLayerModule":"IgbDataToolTipLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleCsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleCsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleCsModule()":"IgbDataVisualizationLocaleCsModule()","IgbDataVisualizationLocaleCsModule":"IgbDataVisualizationLocaleCsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleDaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleDaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleDaModule()":"IgbDataVisualizationLocaleDaModule()","IgbDataVisualizationLocaleDaModule":"IgbDataVisualizationLocaleDaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleDeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleDeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleDeModule()":"IgbDataVisualizationLocaleDeModule()","IgbDataVisualizationLocaleDeModule":"IgbDataVisualizationLocaleDeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleEnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleEnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleEnModule()":"IgbDataVisualizationLocaleEnModule()","IgbDataVisualizationLocaleEnModule":"IgbDataVisualizationLocaleEnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleEsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleEsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleEsModule()":"IgbDataVisualizationLocaleEsModule()","IgbDataVisualizationLocaleEsModule":"IgbDataVisualizationLocaleEsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleFrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleFrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleFrModule()":"IgbDataVisualizationLocaleFrModule()","IgbDataVisualizationLocaleFrModule":"IgbDataVisualizationLocaleFrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleHuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleHuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleHuModule()":"IgbDataVisualizationLocaleHuModule()","IgbDataVisualizationLocaleHuModule":"IgbDataVisualizationLocaleHuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleItModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleItModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleItModule()":"IgbDataVisualizationLocaleItModule()","IgbDataVisualizationLocaleItModule":"IgbDataVisualizationLocaleItModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleJaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleJaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleJaModule()":"IgbDataVisualizationLocaleJaModule()","IgbDataVisualizationLocaleJaModule":"IgbDataVisualizationLocaleJaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleKoModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleKoModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleKoModule()":"IgbDataVisualizationLocaleKoModule()","IgbDataVisualizationLocaleKoModule":"IgbDataVisualizationLocaleKoModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleNbModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleNbModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleNbModule()":"IgbDataVisualizationLocaleNbModule()","IgbDataVisualizationLocaleNbModule":"IgbDataVisualizationLocaleNbModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleNlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleNlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleNlModule()":"IgbDataVisualizationLocaleNlModule()","IgbDataVisualizationLocaleNlModule":"IgbDataVisualizationLocaleNlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocalePlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocalePlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocalePlModule()":"IgbDataVisualizationLocalePlModule()","IgbDataVisualizationLocalePlModule":"IgbDataVisualizationLocalePlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocalePtModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocalePtModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocalePtModule()":"IgbDataVisualizationLocalePtModule()","IgbDataVisualizationLocalePtModule":"IgbDataVisualizationLocalePtModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleRoModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleRoModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleRoModule()":"IgbDataVisualizationLocaleRoModule()","IgbDataVisualizationLocaleRoModule":"IgbDataVisualizationLocaleRoModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleSvModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleSvModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleSvModule()":"IgbDataVisualizationLocaleSvModule()","IgbDataVisualizationLocaleSvModule":"IgbDataVisualizationLocaleSvModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleTrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleTrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleTrModule()":"IgbDataVisualizationLocaleTrModule()","IgbDataVisualizationLocaleTrModule":"IgbDataVisualizationLocaleTrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleZhHansModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleZhHansModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleZhHansModule()":"IgbDataVisualizationLocaleZhHansModule()","IgbDataVisualizationLocaleZhHansModule":"IgbDataVisualizationLocaleZhHansModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDataVisualizationLocaleZhHantModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDataVisualizationLocaleZhHantModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDataVisualizationLocaleZhHantModule()":"IgbDataVisualizationLocaleZhHantModule()","IgbDataVisualizationLocaleZhHantModule":"IgbDataVisualizationLocaleZhHantModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDatePartDeltas":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDatePartDeltas","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDatePartDeltas()":"IgbDatePartDeltas()","IgbDatePartDeltas":"IgbDatePartDeltas()","Date":"Date","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hours":"Hours","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Type":"Type","Year":"Year"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDatePartDeltas","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDatePartDeltas()":"IgbDatePartDeltas()","IgbDatePartDeltas":"IgbDatePartDeltas()","Date":"Date","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hours":"Hours","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Type":"Type","Year":"Year"}}],"IgbDatePicker":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDatePicker","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDatePicker()":"IgbDatePicker()","IgbDatePicker":"IgbDatePicker()","ActiveDate":"ActiveDate","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","Disabled":"Disabled","DisabledDates":"DisabledDates","DisplayFormat":"DisplayFormat","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","HeaderOrientation":"HeaderOrientation","HideHeader":"HideHeader","HideOutsideDays":"HideOutsideDays","Input":"Input","InputFormat":"InputFormat","InputScript":"InputScript","Invalid":"Invalid","Label":"Label","Locale":"Locale","Max":"Max","Min":"Min","Mode":"Mode","NonEditable":"NonEditable","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Orientation":"Orientation","Outlined":"Outlined","Placeholder":"Placeholder","Prompt":"Prompt","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResourceStrings":"ResourceStrings","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","ShowWeekNumbers":"ShowWeekNumbers","SpecialDates":"SpecialDates","StepDown(DatePart?, double)":"StepDown(DatePart?, double)","StepDown":"StepDown(DatePart?, double)","StepDownAsync(DatePart?, double)":"StepDownAsync(DatePart?, double)","StepDownAsync":"StepDownAsync(DatePart?, double)","StepUp(DatePart?, double)":"StepUp(DatePart?, double)","StepUp":"StepUp(DatePart?, double)","StepUpAsync(DatePart?, double)":"StepUpAsync(DatePart?, double)","StepUpAsync":"StepUpAsync(DatePart?, double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","VisibleMonths":"VisibleMonths","WeekStart":"WeekStart"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDatePicker","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDatePicker()":"IgbDatePicker()","IgbDatePicker":"IgbDatePicker()","ActiveDate":"ActiveDate","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","Disabled":"Disabled","DisabledDates":"DisabledDates","DisplayFormat":"DisplayFormat","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","HeaderOrientation":"HeaderOrientation","HideHeader":"HideHeader","HideOutsideDays":"HideOutsideDays","Input":"Input","InputFormat":"InputFormat","InputScript":"InputScript","Invalid":"Invalid","Label":"Label","Locale":"Locale","Max":"Max","Min":"Min","Mode":"Mode","NonEditable":"NonEditable","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Orientation":"Orientation","Outlined":"Outlined","Placeholder":"Placeholder","Prompt":"Prompt","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResourceStrings":"ResourceStrings","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","ShowWeekNumbers":"ShowWeekNumbers","SpecialDates":"SpecialDates","StepDown(DatePart, double)":"StepDown(DatePart, double)","StepDown":"StepDown(DatePart, double)","StepDownAsync(DatePart, double)":"StepDownAsync(DatePart, double)","StepDownAsync":"StepDownAsync(DatePart, double)","StepUp(DatePart, double)":"StepUp(DatePart, double)","StepUp":"StepUp(DatePart, double)","StepUpAsync(DatePart, double)":"StepUpAsync(DatePart, double)","StepUpAsync":"StepUpAsync(DatePart, double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","VisibleMonths":"VisibleMonths","WeekStart":"WeekStart"}}],"IgbDatePickerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDatePickerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDatePickerModule()":"IgbDatePickerModule()","IgbDatePickerModule":"IgbDatePickerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDatePickerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDatePickerModule()":"IgbDatePickerModule()","IgbDatePickerModule":"IgbDatePickerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDateRangeDescriptor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangeDescriptor","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeDescriptor()":"IgbDateRangeDescriptor()","IgbDateRangeDescriptor":"IgbDateRangeDescriptor()","DateRange":"DateRange","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","RangeType":"RangeType","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangeDescriptor","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeDescriptor()":"IgbDateRangeDescriptor()","IgbDateRangeDescriptor":"IgbDateRangeDescriptor()","DateRange":"DateRange","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","RangeType":"RangeType","Type":"Type"}}],"IgbDateRangePicker":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangePicker","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangePicker()":"IgbDateRangePicker()","IgbDateRangePicker":"IgbDateRangePicker()","ActiveDate":"ActiveDate","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","CustomRanges":"CustomRanges","Disabled":"Disabled","DisabledDates":"DisabledDates","DisplayFormat":"DisplayFormat","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","HeaderOrientation":"HeaderOrientation","HideHeader":"HideHeader","HideOutsideDays":"HideOutsideDays","Input":"Input","InputFormat":"InputFormat","InputScript":"InputScript","Invalid":"Invalid","Label":"Label","LabelEnd":"LabelEnd","LabelStart":"LabelStart","Locale":"Locale","Max":"Max","Min":"Min","Mode":"Mode","NonEditable":"NonEditable","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Orientation":"Orientation","Outlined":"Outlined","Placeholder":"Placeholder","PlaceholderEnd":"PlaceholderEnd","PlaceholderStart":"PlaceholderStart","Prompt":"Prompt","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResourceStrings":"ResourceStrings","Select(IgbDateRangeValue)":"Select(IgbDateRangeValue)","Select":"Select(IgbDateRangeValue)","SelectAsync(IgbDateRangeValue)":"SelectAsync(IgbDateRangeValue)","SelectAsync":"SelectAsync(IgbDateRangeValue)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","ShowWeekNumbers":"ShowWeekNumbers","SpecialDates":"SpecialDates","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UsePredefinedRanges":"UsePredefinedRanges","UseTwoInputs":"UseTwoInputs","Value":"Value","ValueChanged":"ValueChanged","VisibleMonths":"VisibleMonths","WeekStart":"WeekStart"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangePicker","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangePicker()":"IgbDateRangePicker()","IgbDateRangePicker":"IgbDateRangePicker()","ActiveDate":"ActiveDate","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","CustomRanges":"CustomRanges","Disabled":"Disabled","DisabledDates":"DisabledDates","DisplayFormat":"DisplayFormat","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","HeaderOrientation":"HeaderOrientation","HideHeader":"HideHeader","HideOutsideDays":"HideOutsideDays","Input":"Input","InputFormat":"InputFormat","InputScript":"InputScript","Invalid":"Invalid","Label":"Label","LabelEnd":"LabelEnd","LabelStart":"LabelStart","Locale":"Locale","Max":"Max","Min":"Min","Mode":"Mode","NonEditable":"NonEditable","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Orientation":"Orientation","Outlined":"Outlined","Placeholder":"Placeholder","PlaceholderEnd":"PlaceholderEnd","PlaceholderStart":"PlaceholderStart","Prompt":"Prompt","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ResourceStrings":"ResourceStrings","Select(IgbDateRangeValue)":"Select(IgbDateRangeValue)","Select":"Select(IgbDateRangeValue)","SelectAsync(IgbDateRangeValue)":"SelectAsync(IgbDateRangeValue)","SelectAsync":"SelectAsync(IgbDateRangeValue)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","ShowWeekNumbers":"ShowWeekNumbers","SpecialDates":"SpecialDates","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UsePredefinedRanges":"UsePredefinedRanges","UseTwoInputs":"UseTwoInputs","Value":"Value","ValueChanged":"ValueChanged","VisibleMonths":"VisibleMonths","WeekStart":"WeekStart"}}],"IgbDateRangePickerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangePickerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangePickerModule()":"IgbDateRangePickerModule()","IgbDateRangePickerModule":"IgbDateRangePickerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangePickerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangePickerModule()":"IgbDateRangePickerModule()","IgbDateRangePickerModule":"IgbDateRangePickerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDateRangePickerResourceStrings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangePickerResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangePickerResourceStrings()":"IgbDateRangePickerResourceStrings()","IgbDateRangePickerResourceStrings":"IgbDateRangePickerResourceStrings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangePickerResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangePickerResourceStrings()":"IgbDateRangePickerResourceStrings()","IgbDateRangePickerResourceStrings":"IgbDateRangePickerResourceStrings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDateRangeValue":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangeValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeValue()":"IgbDateRangeValue()","IgbDateRangeValue":"IgbDateRangeValue()","End":"End","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Start":"Start","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangeValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeValue()":"IgbDateRangeValue()","IgbDateRangeValue":"IgbDateRangeValue()","End":"End","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Start":"Start","Type":"Type"}}],"IgbDateRangeValueDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangeValueDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeValueDetail()":"IgbDateRangeValueDetail()","IgbDateRangeValueDetail":"IgbDateRangeValueDetail()","End":"End","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Start":"Start","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangeValueDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeValueDetail()":"IgbDateRangeValueDetail()","IgbDateRangeValueDetail":"IgbDateRangeValueDetail()","End":"End","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Start":"Start","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDateRangeValueEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateRangeValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeValueEventArgs()":"IgbDateRangeValueEventArgs()","IgbDateRangeValueEventArgs":"IgbDateRangeValueEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateRangeValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateRangeValueEventArgs()":"IgbDateRangeValueEventArgs()","IgbDateRangeValueEventArgs":"IgbDateRangeValueEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDateTimeCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeCellInfo()":"IgbDateTimeCellInfo()","IgbDateTimeCellInfo":"IgbDateTimeCellInfo()","DateTimeFormat":"DateTimeFormat","DateTimeValue":"DateTimeValue","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatOverride":"FormatOverride","FormatOverrideScript":"FormatOverrideScript","FormatSpecifiers":"FormatSpecifiers","FormatStringOverride":"FormatStringOverride","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsOffsetValue":"IsOffsetValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDateTimeColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeColumn","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","DataGridParent":"DataGridParent","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","Field":"Field","HeaderText":"HeaderText","ActualHeaderText":"ActualHeaderText","SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","RowHoverBackground":"RowHoverBackground","ActualHoverBackground":"ActualHoverBackground","RowHoverTextColor":"RowHoverTextColor","ActualRowHoverTextColor":"ActualRowHoverTextColor","AnimationSettings":"AnimationSettings","Width":"Width","MinWidth":"MinWidth","IsFromMarkup":"IsFromMarkup","IsAutoGenerated":"IsAutoGenerated","Filter":"Filter","FilterExpression":"FilterExpression","Header":"Header","IsFilteringEnabled":"IsFilteringEnabled","IsResizingEnabled":"IsResizingEnabled","IsHidden":"IsHidden","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","Pinned":"Pinned","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ColumnOptionsBackground":"ColumnOptionsBackground","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","IsEditable":"IsEditable","DeletedTextColor":"DeletedTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","EditOpacity":"EditOpacity","ActualEditOpacity":"ActualEditOpacity","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","MergedCellMode":"MergedCellMode","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingBottom":"MergedCellPaddingBottom","FilterComparisonType":"FilterComparisonType","FilterOperands":"FilterOperands","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","FormatCellScript":"FormatCellScript","FormatCell":"FormatCell","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHeaderTextChanged":"ActualHeaderTextChanged","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeColumn()":"IgbDateTimeColumn()","IgbDateTimeColumn":"IgbDateTimeColumn()","ActualEditorDataSource":"ActualEditorDataSource","ActualFormatSpecifiers":"ActualFormatSpecifiers","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ContentFormatSpecifiers":"ContentFormatSpecifiers","DateTimeFormat":"DateTimeFormat","EditorDataSource":"EditorDataSource","EditorDataSourceScript":"EditorDataSourceScript","EditorFormatString":"EditorFormatString","EditorTextField":"EditorTextField","EditorType":"EditorType","EditorValueField":"EditorValueField","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatOverride":"FormatOverride","FormatOverrideScript":"FormatOverrideScript","FormatSpecifiers":"FormatSpecifiers","FormatString":"FormatString","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ParentTypeName":"ParentTypeName","ShowTodayButton":"ShowTodayButton","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDateTimeColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeColumnModule()":"IgbDateTimeColumnModule()","IgbDateTimeColumnModule":"IgbDateTimeColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDateTimeFormatSpecifier":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeFormatSpecifier","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetLocalCultureAsync()":"GetLocalCultureAsync()","GetLocalCultureAsync":"GetLocalCultureAsync()","GetLocalCulture()":"GetLocalCulture()","GetLocalCulture":"GetLocalCulture()","AxisParent":"AxisParent","PieChartBaseParent":"PieChartBaseParent","RingSeriesBaseParent":"RingSeriesBaseParent","OthersLabelFormatSpecifiersParent":"OthersLabelFormatSpecifiersParent","LegendLabelFormatSpecifiersParent":"LegendLabelFormatSpecifiersParent","LegendOthersLabelFormatSpecifiersParent":"LegendOthersLabelFormatSpecifiersParent","NumericColumnParent":"NumericColumnParent","DateTimeColumnParent":"DateTimeColumnParent","RadialGaugeParent":"RadialGaugeParent","LinearGraphParent":"LinearGraphParent","HorizontalLabelFormatSpecifiersParent":"HorizontalLabelFormatSpecifiersParent","VerticalLabelFormatSpecifiersParent":"VerticalLabelFormatSpecifiersParent","XAxisLabelFormatSpecifiersParent":"XAxisLabelFormatSpecifiersParent","YAxisLabelFormatSpecifiersParent":"YAxisLabelFormatSpecifiersParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeFormatSpecifier()":"IgbDateTimeFormatSpecifier()","IgbDateTimeFormatSpecifier":"IgbDateTimeFormatSpecifier()","Calendar":"Calendar","DateStyle":"DateStyle","Day":"Day","DayPeriod":"DayPeriod","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Era":"Era","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatMatcher":"FormatMatcher","FractionalSecondDigits":"FractionalSecondDigits","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Hour":"Hour","Hour12":"Hour12","HourCycle":"HourCycle","Locale":"Locale","LocaleMatcher":"LocaleMatcher","Minute":"Minute","Month":"Month","NumberingSystem":"NumberingSystem","Second":"Second","TimeStyle":"TimeStyle","TimeZone":"TimeZone","TimeZoneName":"TimeZoneName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WeekDay":"WeekDay","Year":"Year"}}],"IgbDateTimeFormatSpecifierModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeFormatSpecifierModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeFormatSpecifierModule()":"IgbDateTimeFormatSpecifierModule()","IgbDateTimeFormatSpecifierModule":"IgbDateTimeFormatSpecifierModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDateTimeInput":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeInput","k":"class","s":"classes","m":{"ReadOnly":"ReadOnly","Mask":"Mask","Prompt":"Prompt","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Select()":"Select()","Select":"Select()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","ValueChanging":"ValueChanging","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeInput()":"IgbDateTimeInput()","IgbDateTimeInput":"IgbDateTimeInput()","Change":"Change","ChangeScript":"ChangeScript","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","DirectRenderElementName":"DirectRenderElementName","DisplayFormat":"DisplayFormat","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","InputFormat":"InputFormat","Locale":"Locale","Max":"Max","Min":"Min","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SpinDelta":"SpinDelta","SpinLoop":"SpinLoop","StepDown()":"StepDown()","StepDown":"StepDown()","StepDown(DatePart)":"StepDown(DatePart)","StepDown(DatePart?, double)":"StepDown(DatePart?, double)","StepDownAsync()":"StepDownAsync()","StepDownAsync":"StepDownAsync()","StepDownAsync(DatePart)":"StepDownAsync(DatePart)","StepDownAsync(DatePart?, double)":"StepDownAsync(DatePart?, double)","StepUp()":"StepUp()","StepUp":"StepUp()","StepUp(DatePart)":"StepUp(DatePart)","StepUp(DatePart?, double)":"StepUp(DatePart?, double)","StepUpAsync()":"StepUpAsync()","StepUpAsync":"StepUpAsync()","StepUpAsync(DatePart)":"StepUpAsync(DatePart)","StepUpAsync(DatePart?, double)":"StepUpAsync(DatePart?, double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateTimeInput","k":"class","s":"classes","m":{"SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Select()":"Select()","Select":"Select()","Prompt":"Prompt","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","ReadOnly":"ReadOnly","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","ValueChanging":"ValueChanging","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeInput()":"IgbDateTimeInput()","IgbDateTimeInput":"IgbDateTimeInput()","Change":"Change","ChangeScript":"ChangeScript","Clear()":"Clear()","Clear":"Clear()","ClearAsync()":"ClearAsync()","ClearAsync":"ClearAsync()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DirectRenderElementName":"DirectRenderElementName","DisplayFormat":"DisplayFormat","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","InputFormat":"InputFormat","Locale":"Locale","Max":"Max","Min":"Min","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SpinDelta":"SpinDelta","SpinLoop":"SpinLoop","StepDown()":"StepDown()","StepDown":"StepDown()","StepDown(DatePart)":"StepDown(DatePart)","StepDown(DatePart, double)":"StepDown(DatePart, double)","StepDownAsync()":"StepDownAsync()","StepDownAsync":"StepDownAsync()","StepDownAsync(DatePart)":"StepDownAsync(DatePart)","StepDownAsync(DatePart, double)":"StepDownAsync(DatePart, double)","StepUp()":"StepUp()","StepUp":"StepUp()","StepUp(DatePart)":"StepUp(DatePart)","StepUp(DatePart, double)":"StepUp(DatePart, double)","StepUpAsync()":"StepUpAsync()","StepUpAsync":"StepUpAsync()","StepUpAsync(DatePart)":"StepUpAsync(DatePart)","StepUpAsync(DatePart, double)":"StepUpAsync(DatePart, double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}}],"IgbDateTimeInputModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateTimeInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeInputModule()":"IgbDateTimeInputModule()","IgbDateTimeInputModule":"IgbDateTimeInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDateTimeInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateTimeInputModule()":"IgbDateTimeInputModule()","IgbDateTimeInputModule":"IgbDateTimeInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDateValidationContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDateValidationContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDateValidationContext()":"IgbDateValidationContext()","IgbDateValidationContext":"IgbDateValidationContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDefaultMergeStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDefaultMergeStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDefaultMergeStrategy()":"IgbDefaultMergeStrategy()","IgbDefaultMergeStrategy":"IgbDefaultMergeStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Instance()":"Instance()","Instance":"Instance()","InstanceAsync()":"InstanceAsync()","InstanceAsync":"InstanceAsync()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbDefaultTreeGridMergeStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDefaultTreeGridMergeStrategy","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","InstanceAsync()":"InstanceAsync()","InstanceAsync":"InstanceAsync()","Instance()":"Instance()","Instance":"Instance()","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDefaultTreeGridMergeStrategy()":"IgbDefaultTreeGridMergeStrategy()","IgbDefaultTreeGridMergeStrategy":"IgbDefaultTreeGridMergeStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbDefinitionBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDefinitionBase","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDefinitionBase()":"IgbDefinitionBase()","IgbDefinitionBase":"IgbDefinitionBase()","ActivationBorder":"ActivationBorder","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActualActivationBorder":"ActualActivationBorder","ActualBackground":"ActualBackground","ActualBarBackground":"ActualBarBackground","ActualBarCornerRadius":"ActualBarCornerRadius","ActualBarOutline":"ActualBarOutline","ActualBarStrokeThickness":"ActualBarStrokeThickness","ActualBorder":"ActualBorder","ActualConditionalStyles":"ActualConditionalStyles","ActualErrorBorder":"ActualErrorBorder","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ActualLineBreakMode":"ActualLineBreakMode","ActualPinnedRowBackground":"ActualPinnedRowBackground","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","ActualStickyRowBackground":"ActualStickyRowBackground","ActualTextColor":"ActualTextColor","Background":"Background","BarBackground":"BarBackground","BarCornerRadius":"BarCornerRadius","BarOutline":"BarOutline","BarStrokeThickness":"BarStrokeThickness","Border":"Border","BorderBottomWidth":"BorderBottomWidth","BorderLeftWidth":"BorderLeftWidth","BorderRightWidth":"BorderRightWidth","BorderTopWidth":"BorderTopWidth","CellStyleKeyRequested":"CellStyleKeyRequested","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","ConditionalStyles":"ConditionalStyles","ContentConditionalStyles":"ContentConditionalStyles","ContentOpacity":"ContentOpacity","DataBinding":"DataBinding","DataBindingScript":"DataBindingScript","DataBound":"DataBound","DataBoundScript":"DataBoundScript","ErrorBorder":"ErrorBorder","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HorizontalAlignment":"HorizontalAlignment","IsBarSupported":"IsBarSupported","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","LastStickyRowBackground":"LastStickyRowBackground","LineBreakMode":"LineBreakMode","ParentTypeName":"ParentTypeName","PinnedRowBackground":"PinnedRowBackground","PinnedRowOpacity":"PinnedRowOpacity","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","StickyRowBackground":"StickyRowBackground","TextColor":"TextColor","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","Type":"Type","VerticalAlignment":"VerticalAlignment"}}],"IgbDetrendedPriceOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDetrendedPriceOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDetrendedPriceOscillatorIndicator()":"IgbDetrendedPriceOscillatorIndicator()","IgbDetrendedPriceOscillatorIndicator":"IgbDetrendedPriceOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbDetrendedPriceOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDetrendedPriceOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDetrendedPriceOscillatorIndicatorModule()":"IgbDetrendedPriceOscillatorIndicatorModule()","IgbDetrendedPriceOscillatorIndicatorModule":"IgbDetrendedPriceOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDialog":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDialog","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDialog()":"IgbDialog()","IgbDialog":"IgbDialog()","CloseOnOutsideClick":"CloseOnOutsideClick","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","HideDefaultAction":"HideDefaultAction","KeepOpenOnEscape":"KeepOpenOnEscape","Open":"Open","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ReturnValue":"ReturnValue","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Title":"Title","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDialog","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDialog()":"IgbDialog()","IgbDialog":"IgbDialog()","CloseOnOutsideClick":"CloseOnOutsideClick","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","HideDefaultAction":"HideDefaultAction","KeepOpenOnEscape":"KeepOpenOnEscape","Open":"Open","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ReturnValue":"ReturnValue","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Title":"Title","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbDialogModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDialogModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDialogModule()":"IgbDialogModule()","IgbDialogModule":"IgbDialogModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDialogModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDialogModule()":"IgbDialogModule()","IgbDialogModule":"IgbDialogModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDimensionsChange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDimensionsChange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDimensionsChange()":"IgbDimensionsChange()","IgbDimensionsChange":"IgbDimensionsChange()","DimensionCollectionType":"DimensionCollectionType","Dimensions":"Dimensions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbDimensionsChangeDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDimensionsChangeDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDimensionsChangeDetail()":"IgbDimensionsChangeDetail()","IgbDimensionsChangeDetail":"IgbDimensionsChangeDetail()","DimensionCollectionType":"DimensionCollectionType","Dimensions":"Dimensions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDimensionsChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDimensionsChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDimensionsChangeEventArgs()":"IgbDimensionsChangeEventArgs()","IgbDimensionsChangeEventArgs":"IgbDimensionsChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDivider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDivider","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDivider()":"IgbDivider()","IgbDivider":"IgbDivider()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LineType":"LineType","Middle":"Middle","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Vertical":"Vertical"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDivider","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDivider()":"IgbDivider()","IgbDivider":"IgbDivider()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LineType":"LineType","Middle":"Middle","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Vertical":"Vertical"}}],"IgbDividerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDividerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDividerModule()":"IgbDividerModule()","IgbDividerModule":"IgbDividerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDividerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDividerModule()":"IgbDividerModule()","IgbDividerModule":"IgbDividerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDockingIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockingIndicator","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockingIndicator()":"IgbDockingIndicator()","IgbDockingIndicator":"IgbDockingIndicator()","Direction":"Direction","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsRoot":"IsRoot","Position":"Position","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbDockingIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockingIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockingIndicatorModule()":"IgbDockingIndicatorModule()","IgbDockingIndicatorModule":"IgbDockingIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDockManager":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManager","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManager()":"IgbDockManager()","IgbDockManager":"IgbDockManager()","ActivePane":"ActivePane","AllowFloatingPanesResize":"AllowFloatingPanesResize","AllowInnerDock":"AllowInnerDock","AllowMaximize":"AllowMaximize","AllowSplitterDock":"AllowSplitterDock","CloseBehavior":"CloseBehavior","ContainedInBoundaries":"ContainedInBoundaries","DefaultEventBehavior":"DefaultEventBehavior","DisableKeyboardNavigation":"DisableKeyboardNavigation","DraggedPane":"DraggedPane","DropPosition":"DropPosition","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusPane(string)":"FocusPane(string)","FocusPane":"FocusPane(string)","FocusPaneAsync(string)":"FocusPaneAsync(string)","FocusPaneAsync":"FocusPaneAsync(string)","GetCurrentLayout()":"GetCurrentLayout()","GetCurrentLayout":"GetCurrentLayout()","GetCurrentLayoutAsync()":"GetCurrentLayoutAsync()","GetCurrentLayoutAsync":"GetCurrentLayoutAsync()","Layout":"Layout","LayoutChange":"LayoutChange","LayoutChangeScript":"LayoutChangeScript","LayoutChanged":"LayoutChanged","MaximizedPane":"MaximizedPane","ProximityDock":"ProximityDock","ResourceStrings":"ResourceStrings","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowHeaderIconOnHover":"ShowHeaderIconOnHover","ShowPaneHeaders":"ShowPaneHeaders","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UnpinBehavior":"UnpinBehavior"}}],"IgbDockManagerLayout":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerLayout","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerLayout()":"IgbDockManagerLayout()","IgbDockManagerLayout":"IgbDockManagerLayout()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FloatingPanes":"FloatingPanes","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RootPane":"RootPane","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WithFloatingPanes(params IgbSplitPane[])":"WithFloatingPanes(params IgbSplitPane[])","WithFloatingPanes":"WithFloatingPanes(params IgbSplitPane[])"}}],"IgbDockManagerLayoutModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerLayoutModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerLayoutModule()":"IgbDockManagerLayoutModule()","IgbDockManagerLayoutModule":"IgbDockManagerLayoutModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDockManagerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerModule()":"IgbDockManagerModule()","IgbDockManagerModule":"IgbDockManagerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDockManagerPane":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerPane","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerPane()":"IgbDockManagerPane()","IgbDockManagerPane":"IgbDockManagerPane()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDockManagerPaneCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerPaneCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDockManagerPane)":"InsertItem(int, IgbDockManagerPane)","InsertItem":"InsertItem(int, IgbDockManagerPane)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDockManagerPane)":"SetItem(int, IgbDockManagerPane)","SetItem":"SetItem(int, IgbDockManagerPane)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDockManagerPane)":"Add(IgbDockManagerPane)","Add":"Add(IgbDockManagerPane)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDockManagerPane[], int)":"CopyTo(IgbDockManagerPane[], int)","CopyTo":"CopyTo(IgbDockManagerPane[], int)","Contains(IgbDockManagerPane)":"Contains(IgbDockManagerPane)","Contains":"Contains(IgbDockManagerPane)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDockManagerPane)":"IndexOf(IgbDockManagerPane)","IndexOf":"IndexOf(IgbDockManagerPane)","Insert(int, IgbDockManagerPane)":"Insert(int, IgbDockManagerPane)","Insert":"Insert(int, IgbDockManagerPane)","Remove(IgbDockManagerPane)":"Remove(IgbDockManagerPane)","Remove":"Remove(IgbDockManagerPane)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerPaneCollection()":"IgbDockManagerPaneCollection()","IgbDockManagerPaneCollection":"IgbDockManagerPaneCollection()","IgbDockManagerPaneCollection(object, string)":"IgbDockManagerPaneCollection(object, string)"}}],"IgbDockManagerPoint":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerPoint","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerPoint()":"IgbDockManagerPoint()","IgbDockManagerPoint":"IgbDockManagerPoint()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","X":"X","Y":"Y"}}],"IgbDockManagerPointModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerPointModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerPointModule()":"IgbDockManagerPointModule()","IgbDockManagerPointModule":"IgbDockManagerPointModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDockManagerResourceStrings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerResourceStrings()":"IgbDockManagerResourceStrings()","IgbDockManagerResourceStrings":"IgbDockManagerResourceStrings()","Close":"Close","Documents":"Documents","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Maximize":"Maximize","Minimize":"Minimize","MoreOptions":"MoreOptions","MoreTabs":"MoreTabs","Panes":"Panes","Pin":"Pin","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Unpin":"Unpin"}}],"IgbDockManagerResourceStringsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockManagerResourceStringsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockManagerResourceStringsModule()":"IgbDockManagerResourceStringsModule()","IgbDockManagerResourceStringsModule":"IgbDockManagerResourceStringsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDockPaneAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockPaneAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockPaneAction()":"IgbDockPaneAction()","IgbDockPaneAction":"IgbDockPaneAction()","ActionType":"ActionType","DockingIndicator":"DockingIndicator","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","TargetPane":"TargetPane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDockPaneActionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDockPaneActionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDockPaneActionModule()":"IgbDockPaneActionModule()","IgbDockPaneActionModule":"IgbDockPaneActionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentHost":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentHost","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentHost()":"IgbDocumentHost()","IgbDocumentHost":"IgbDocumentHost()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Id":"Id","PaneType":"PaneType","RootPane":"RootPane","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Size":"Size","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDocumentHostModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentHostModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentHostModule()":"IgbDocumentHostModule()","IgbDocumentHostModule":"IgbDocumentHostModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleBgModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleBgModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleBgModule()":"IgbDocumentsCoreLocaleBgModule()","IgbDocumentsCoreLocaleBgModule":"IgbDocumentsCoreLocaleBgModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleCsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleCsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleCsModule()":"IgbDocumentsCoreLocaleCsModule()","IgbDocumentsCoreLocaleCsModule":"IgbDocumentsCoreLocaleCsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleDaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleDaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleDaModule()":"IgbDocumentsCoreLocaleDaModule()","IgbDocumentsCoreLocaleDaModule":"IgbDocumentsCoreLocaleDaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleDeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleDeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleDeModule()":"IgbDocumentsCoreLocaleDeModule()","IgbDocumentsCoreLocaleDeModule":"IgbDocumentsCoreLocaleDeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleEnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleEnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleEnModule()":"IgbDocumentsCoreLocaleEnModule()","IgbDocumentsCoreLocaleEnModule":"IgbDocumentsCoreLocaleEnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleEsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleEsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleEsModule()":"IgbDocumentsCoreLocaleEsModule()","IgbDocumentsCoreLocaleEsModule":"IgbDocumentsCoreLocaleEsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleFrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleFrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleFrModule()":"IgbDocumentsCoreLocaleFrModule()","IgbDocumentsCoreLocaleFrModule":"IgbDocumentsCoreLocaleFrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleHuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleHuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleHuModule()":"IgbDocumentsCoreLocaleHuModule()","IgbDocumentsCoreLocaleHuModule":"IgbDocumentsCoreLocaleHuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleItModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleItModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleItModule()":"IgbDocumentsCoreLocaleItModule()","IgbDocumentsCoreLocaleItModule":"IgbDocumentsCoreLocaleItModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleJaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleJaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleJaModule()":"IgbDocumentsCoreLocaleJaModule()","IgbDocumentsCoreLocaleJaModule":"IgbDocumentsCoreLocaleJaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleNbModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleNbModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleNbModule()":"IgbDocumentsCoreLocaleNbModule()","IgbDocumentsCoreLocaleNbModule":"IgbDocumentsCoreLocaleNbModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleNlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleNlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleNlModule()":"IgbDocumentsCoreLocaleNlModule()","IgbDocumentsCoreLocaleNlModule":"IgbDocumentsCoreLocaleNlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocalePlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocalePlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocalePlModule()":"IgbDocumentsCoreLocalePlModule()","IgbDocumentsCoreLocalePlModule":"IgbDocumentsCoreLocalePlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocalePtModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocalePtModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocalePtModule()":"IgbDocumentsCoreLocalePtModule()","IgbDocumentsCoreLocalePtModule":"IgbDocumentsCoreLocalePtModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleRoModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleRoModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleRoModule()":"IgbDocumentsCoreLocaleRoModule()","IgbDocumentsCoreLocaleRoModule":"IgbDocumentsCoreLocaleRoModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleRuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleRuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleRuModule()":"IgbDocumentsCoreLocaleRuModule()","IgbDocumentsCoreLocaleRuModule":"IgbDocumentsCoreLocaleRuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleSvModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleSvModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleSvModule()":"IgbDocumentsCoreLocaleSvModule()","IgbDocumentsCoreLocaleSvModule":"IgbDocumentsCoreLocaleSvModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleTrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleTrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleTrModule()":"IgbDocumentsCoreLocaleTrModule()","IgbDocumentsCoreLocaleTrModule":"IgbDocumentsCoreLocaleTrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleZhHansModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleZhHansModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleZhHansModule()":"IgbDocumentsCoreLocaleZhHansModule()","IgbDocumentsCoreLocaleZhHansModule":"IgbDocumentsCoreLocaleZhHansModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDocumentsCoreLocaleZhHantModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDocumentsCoreLocaleZhHantModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDocumentsCoreLocaleZhHantModule()":"IgbDocumentsCoreLocaleZhHantModule()","IgbDocumentsCoreLocaleZhHantModule":"IgbDocumentsCoreLocaleZhHantModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDomainChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDomainChart","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDomainChart()":"IgbDomainChart()","IgbDomainChart":"IgbDomainChart()","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","AreaFillOpacity":"AreaFillOpacity","AutoCalloutsVisible":"AutoCalloutsVisible","BottomMargin":"BottomMargin","Brushes":"Brushes","CalloutCollisionMode":"CalloutCollisionMode","CalloutLabelUpdating":"CalloutLabelUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsBackground":"CalloutsBackground","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsOutline":"CalloutsOutline","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsTextColor":"CalloutsTextColor","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsVisible":"CalloutsVisible","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","ChartTitle":"ChartTitle","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSnapToData":"CrosshairsSnapToData","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DefaultEventBehavior":"DefaultEventBehavior","Destroy()":"Destroy()","Destroy":"Destroy()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","ExcludedProperties":"ExcludedProperties","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","FilterExpressions":"FilterExpressions","FilterStringErrorsParsing":"FilterStringErrorsParsing","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","FocusBrush":"FocusBrush","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","FocusMode":"FocusMode","FocusTransitionDuration":"FocusTransitionDuration","FocusedSeriesItems":"FocusedSeriesItems","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GroupDescriptions":"GroupDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupSorts":"GroupSorts","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HighlightFilterExpressions":"HighlightFilterExpressions","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","HighlightingBehavior":"HighlightingBehavior","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","HighlightingFadeOpacity":"HighlightingFadeOpacity","HighlightingMode":"HighlightingMode","HighlightingTransitionDuration":"HighlightingTransitionDuration","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","IncludedProperties":"IncludedProperties","InitialFilter":"InitialFilter","InitialFilterExpressions":"InitialFilterExpressions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroups":"InitialGroups","InitialHighlightFilter":"InitialHighlightFilter","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSortDescriptions":"InitialSortDescriptions","InitialSorts":"InitialSorts","InitialSummaries":"InitialSummaries","InitialSummaryDescriptions":"InitialSummaryDescriptions","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","LeftMargin":"LeftMargin","Legend":"Legend","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemVisibility":"LegendItemVisibility","LegendScript":"LegendScript","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerMaxCount":"MarkerMaxCount","MarkerOutlineMode":"MarkerOutlineMode","MarkerOutlines":"MarkerOutlines","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OutlineMode":"OutlineMode","Outlines":"Outlines","PixelScalingRatio":"PixelScalingRatio","PlotAreaMarginBottom":"PlotAreaMarginBottom","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerUp":"PlotAreaPointerUp","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","Resolution":"Resolution","RightMargin":"RightMargin","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SelectedSeriesItems":"SelectedSeriesItems","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectionBehavior":"SelectionBehavior","SelectionBrush":"SelectionBrush","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","SelectionMode":"SelectionMode","SelectionTransitionDuration":"SelectionTransitionDuration","SeriesAdded":"SeriesAdded","SeriesAddedScript":"SeriesAddedScript","SeriesClick":"SeriesClick","SeriesClickScript":"SeriesClickScript","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","SeriesPointerDown":"SeriesPointerDown","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerUp":"SeriesPointerUp","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesRemoved":"SeriesRemoved","SeriesRemovedScript":"SeriesRemovedScript","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SortDescriptions":"SortDescriptions","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","Subtitle":"Subtitle","SubtitleAlignment":"SubtitleAlignment","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleTextColor":"SubtitleTextColor","SubtitleTextStyle":"SubtitleTextStyle","SubtitleTopMargin":"SubtitleTopMargin","SummaryDescriptions":"SummaryDescriptions","Thickness":"Thickness","TitleAlignment":"TitleAlignment","TitleBottomMargin":"TitleBottomMargin","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTextColor":"TitleTextColor","TitleTextStyle":"TitleTextStyle","TitleTopMargin":"TitleTopMargin","ToolTipType":"ToolTipType","TopMargin":"TopMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TrendLineBrushes":"TrendLineBrushes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","TrendLineTypes":"TrendLineTypes","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","WindowRect":"WindowRect","WindowRectMinHeight":"WindowRectMinHeight","WindowRectMinWidth":"WindowRectMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)"}}],"IgbDomainChartPlotAreaPointerEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDomainChartPlotAreaPointerEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDomainChartPlotAreaPointerEventArgs()":"IgbDomainChartPlotAreaPointerEventArgs()","IgbDomainChartPlotAreaPointerEventArgs":"IgbDomainChartPlotAreaPointerEventArgs()","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PlotAreaPosition":"PlotAreaPosition","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDomainChartSeriesPointerEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDomainChartSeriesPointerEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDomainChartSeriesPointerEventArgs()":"IgbDomainChartSeriesPointerEventArgs()","IgbDomainChartSeriesPointerEventArgs":"IgbDomainChartSeriesPointerEventArgs()","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","PlotAreaPosition":"PlotAreaPosition","Series":"Series","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WorldPosition":"WorldPosition"}}],"IgbDomainChartTestingInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDomainChartTestingInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDomainChartTestingInfo()":"IgbDomainChartTestingInfo()","IgbDomainChartTestingInfo":"IgbDomainChartTestingInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MainDataChart":"MainDataChart","Type":"Type"}}],"IgbDoubleValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDoubleValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDoubleValueChangedEventArgs()":"IgbDoubleValueChangedEventArgs()","IgbDoubleValueChangedEventArgs":"IgbDoubleValueChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","OldValue":"OldValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDoughnutChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDoughnutChart","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDoughnutChart()":"IgbDoughnutChart()","IgbDoughnutChart":"IgbDoughnutChart()","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualSeries":"ActualSeries","AllowSliceExplosion":"AllowSliceExplosion","AllowSliceSelection":"AllowSliceSelection","ContentSeries":"ContentSeries","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","GetCenterCoordinates()":"GetCenterCoordinates()","GetCenterCoordinates":"GetCenterCoordinates()","GetCenterCoordinatesAsync()":"GetCenterCoordinatesAsync()","GetCenterCoordinatesAsync":"GetCenterCoordinatesAsync()","GetContainerID()":"GetContainerID()","GetContainerID":"GetContainerID()","GetContainerIDAsync()":"GetContainerIDAsync()","GetContainerIDAsync":"GetContainerIDAsync()","GetHoleRadius()":"GetHoleRadius()","GetHoleRadius":"GetHoleRadius()","GetHoleRadiusAsync()":"GetHoleRadiusAsync()","GetHoleRadiusAsync":"GetHoleRadiusAsync()","HoleDimensionsChanged":"HoleDimensionsChanged","HoleDimensionsChangedScript":"HoleDimensionsChangedScript","InnerExtent":"InnerExtent","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","SelectedSliceFill":"SelectedSliceFill","SelectedSliceOpacity":"SelectedSliceOpacity","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","Series":"Series","SliceClick":"SliceClick","SliceClickScript":"SliceClickScript","Type":"Type"}}],"IgbDoughnutChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDoughnutChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDoughnutChartCoreModule()":"IgbDoughnutChartCoreModule()","IgbDoughnutChartCoreModule":"IgbDoughnutChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDoughnutChartInteractivityModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDoughnutChartInteractivityModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDoughnutChartInteractivityModule()":"IgbDoughnutChartInteractivityModule()","IgbDoughnutChartInteractivityModule":"IgbDoughnutChartInteractivityModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDoughnutChartModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDoughnutChartModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDoughnutChartModule()":"IgbDoughnutChartModule()","IgbDoughnutChartModule":"IgbDoughnutChartModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDownloadingMultiScaleImageEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDownloadingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDownloadingMultiScaleImageEventArgs()":"IgbDownloadingMultiScaleImageEventArgs()","IgbDownloadingMultiScaleImageEventArgs":"IgbDownloadingMultiScaleImageEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Uri":"Uri"}}],"IgbDragService":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDragService","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDragService()":"IgbDragService()","IgbDragService":"IgbDragService()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDragService","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDragService()":"IgbDragService()","IgbDragService":"IgbDragService()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbDragServiceModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDragServiceModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDragServiceModule()":"IgbDragServiceModule()","IgbDragServiceModule":"IgbDragServiceModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDragServiceModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDragServiceModule()":"IgbDragServiceModule()","IgbDragServiceModule":"IgbDragServiceModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDropdown":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdown","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdown()":"IgbDropdown()","IgbDropdown":"IgbDropdown()","Change":"Change","ChangeScript":"ChangeScript","ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","ClearSelectionAsync()":"ClearSelectionAsync()","ClearSelectionAsync":"ClearSelectionAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","ContentItems":"ContentItems","DirectRenderElementName":"DirectRenderElementName","DisconnectedCallback()":"DisconnectedCallback()","DisconnectedCallback":"DisconnectedCallback()","DisconnectedCallbackAsync()":"DisconnectedCallbackAsync()","DisconnectedCallbackAsync":"DisconnectedCallbackAsync()","Distance":"Distance","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flip":"Flip","GetGroups()":"GetGroups()","GetGroups":"GetGroups()","GetGroupsAsync()":"GetGroupsAsync()","GetGroupsAsync":"GetGroupsAsync()","GetItems()":"GetItems()","GetItems":"GetItems()","GetItemsAsync()":"GetItemsAsync()","GetItemsAsync":"GetItemsAsync()","GetSelectedItem()":"GetSelectedItem()","GetSelectedItem":"GetSelectedItem()","GetSelectedItemAsync()":"GetSelectedItemAsync()","GetSelectedItemAsync":"GetSelectedItemAsync()","NavigateTo(object)":"NavigateTo(object)","NavigateTo":"NavigateTo(object)","NavigateToAsync(object)":"NavigateToAsync(object)","NavigateToAsync":"NavigateToAsync(object)","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ParentTypeName":"ParentTypeName","Placement":"Placement","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SameWidth":"SameWidth","ScrollStrategy":"ScrollStrategy","Select(object)":"Select(object)","Select":"Select(object)","SelectAsync(object)":"SelectAsync(object)","SelectAsync":"SelectAsync(object)","Show(object)":"Show(object)","ShowAsync(object)":"ShowAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Toggle(object)":"Toggle(object)","ToggleAsync(object)":"ToggleAsync(object)","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdown","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdown()":"IgbDropdown()","IgbDropdown":"IgbDropdown()","Change":"Change","ChangeScript":"ChangeScript","ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","ClearSelectionAsync()":"ClearSelectionAsync()","ClearSelectionAsync":"ClearSelectionAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","ContentItems":"ContentItems","DirectRenderElementName":"DirectRenderElementName","DisconnectedCallback()":"DisconnectedCallback()","DisconnectedCallback":"DisconnectedCallback()","DisconnectedCallbackAsync()":"DisconnectedCallbackAsync()","DisconnectedCallbackAsync":"DisconnectedCallbackAsync()","Distance":"Distance","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flip":"Flip","GetGroups()":"GetGroups()","GetGroups":"GetGroups()","GetGroupsAsync()":"GetGroupsAsync()","GetGroupsAsync":"GetGroupsAsync()","GetItems()":"GetItems()","GetItems":"GetItems()","GetItemsAsync()":"GetItemsAsync()","GetItemsAsync":"GetItemsAsync()","GetSelectedItem()":"GetSelectedItem()","GetSelectedItem":"GetSelectedItem()","GetSelectedItemAsync()":"GetSelectedItemAsync()","GetSelectedItemAsync":"GetSelectedItemAsync()","NavigateTo(object)":"NavigateTo(object)","NavigateTo":"NavigateTo(object)","NavigateToAsync(object)":"NavigateToAsync(object)","NavigateToAsync":"NavigateToAsync(object)","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ParentTypeName":"ParentTypeName","Placement":"Placement","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SameWidth":"SameWidth","ScrollStrategy":"ScrollStrategy","Select(object)":"Select(object)","Select":"Select(object)","SelectAsync(object)":"SelectAsync(object)","SelectAsync":"SelectAsync(object)","Show(object)":"Show(object)","ShowAsync(object)":"ShowAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Toggle(object)":"Toggle(object)","ToggleAsync(object)":"ToggleAsync(object)","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbDropdownGroup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownGroup()":"IgbDropdownGroup()","IgbDropdownGroup":"IgbDropdownGroup()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownGroup()":"IgbDropdownGroup()","IgbDropdownGroup":"IgbDropdownGroup()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbDropdownGroupModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownGroupModule()":"IgbDropdownGroupModule()","IgbDropdownGroupModule":"IgbDropdownGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownGroupModule()":"IgbDropdownGroupModule()","IgbDropdownGroupModule":"IgbDropdownGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDropdownHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownHeader()":"IgbDropdownHeader()","IgbDropdownHeader":"IgbDropdownHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownHeader()":"IgbDropdownHeader()","IgbDropdownHeader":"IgbDropdownHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbDropdownHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownHeaderModule()":"IgbDropdownHeaderModule()","IgbDropdownHeaderModule":"IgbDropdownHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownHeaderModule()":"IgbDropdownHeaderModule()","IgbDropdownHeaderModule":"IgbDropdownHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDropdownItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownItem","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Active":"Active","Disabled":"Disabled","Selected":"Selected","Value":"Value","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItem()":"IgbDropdownItem()","IgbDropdownItem":"IgbDropdownItem()","DirectRenderElementName":"DirectRenderElementName","Dispose()":"Dispose()","DropdownParent":"DropdownParent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownItem","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Active":"Active","Disabled":"Disabled","Selected":"Selected","Value":"Value","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItem()":"IgbDropdownItem()","IgbDropdownItem":"IgbDropdownItem()","DirectRenderElementName":"DirectRenderElementName","Dispose()":"Dispose()","DropdownParent":"DropdownParent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbDropdownItemCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownItemCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDropdownItem)":"InsertItem(int, IgbDropdownItem)","InsertItem":"InsertItem(int, IgbDropdownItem)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDropdownItem)":"SetItem(int, IgbDropdownItem)","SetItem":"SetItem(int, IgbDropdownItem)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDropdownItem)":"Add(IgbDropdownItem)","Add":"Add(IgbDropdownItem)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDropdownItem[], int)":"CopyTo(IgbDropdownItem[], int)","CopyTo":"CopyTo(IgbDropdownItem[], int)","Contains(IgbDropdownItem)":"Contains(IgbDropdownItem)","Contains":"Contains(IgbDropdownItem)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDropdownItem)":"IndexOf(IgbDropdownItem)","IndexOf":"IndexOf(IgbDropdownItem)","Insert(int, IgbDropdownItem)":"Insert(int, IgbDropdownItem)","Insert":"Insert(int, IgbDropdownItem)","Remove(IgbDropdownItem)":"Remove(IgbDropdownItem)","Remove":"Remove(IgbDropdownItem)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItemCollection(object, string)":"IgbDropdownItemCollection(object, string)","IgbDropdownItemCollection":"IgbDropdownItemCollection(object, string)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownItemCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDropdownItem)":"InsertItem(int, IgbDropdownItem)","InsertItem":"InsertItem(int, IgbDropdownItem)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDropdownItem)":"SetItem(int, IgbDropdownItem)","SetItem":"SetItem(int, IgbDropdownItem)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDropdownItem)":"Add(IgbDropdownItem)","Add":"Add(IgbDropdownItem)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDropdownItem[], int)":"CopyTo(IgbDropdownItem[], int)","CopyTo":"CopyTo(IgbDropdownItem[], int)","Contains(IgbDropdownItem)":"Contains(IgbDropdownItem)","Contains":"Contains(IgbDropdownItem)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDropdownItem)":"IndexOf(IgbDropdownItem)","IndexOf":"IndexOf(IgbDropdownItem)","Insert(int, IgbDropdownItem)":"Insert(int, IgbDropdownItem)","Insert":"Insert(int, IgbDropdownItem)","Remove(IgbDropdownItem)":"Remove(IgbDropdownItem)","Remove":"Remove(IgbDropdownItem)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItemCollection(object, string)":"IgbDropdownItemCollection(object, string)","IgbDropdownItemCollection":"IgbDropdownItemCollection(object, string)"}}],"IgbDropdownItemComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownItemComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItemComponentEventArgs()":"IgbDropdownItemComponentEventArgs()","IgbDropdownItemComponentEventArgs":"IgbDropdownItemComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownItemComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItemComponentEventArgs()":"IgbDropdownItemComponentEventArgs()","IgbDropdownItemComponentEventArgs":"IgbDropdownItemComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbDropdownItemModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItemModule()":"IgbDropdownItemModule()","IgbDropdownItemModule":"IgbDropdownItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownItemModule()":"IgbDropdownItemModule()","IgbDropdownItemModule":"IgbDropdownItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDropdownModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDropdownModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownModule()":"IgbDropdownModule()","IgbDropdownModule":"IgbDropdownModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbDropdownModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDropdownModule()":"IgbDropdownModule()","IgbDropdownModule":"IgbDropdownModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbDVInteractivityModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbDVInteractivityModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbDVInteractivityModule()":"IgbDVInteractivityModule()","IgbDVInteractivityModule":"IgbDVInteractivityModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbEaseOfMovementIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEaseOfMovementIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEaseOfMovementIndicator()":"IgbEaseOfMovementIndicator()","IgbEaseOfMovementIndicator":"IgbEaseOfMovementIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbEaseOfMovementIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEaseOfMovementIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEaseOfMovementIndicatorModule()":"IgbEaseOfMovementIndicatorModule()","IgbEaseOfMovementIndicatorModule":"IgbEaseOfMovementIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbEditorCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEditorCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEditorCellInfo()":"IgbEditorCellInfo()","IgbEditorCellInfo":"IgbEditorCellInfo()","DataType":"DataType","DateFormatString":"DateFormatString","EditTarget":"EditTarget","EditValue":"EditValue","EditValueScript":"EditValueScript","EditorDataSource":"EditorDataSource","EditorDataSourceScript":"EditorDataSourceScript","EditorTextField":"EditorTextField","EditorType":"EditorType","EditorValueField":"EditorValueField","ErrorMessage":"ErrorMessage","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsHidden":"IsHidden","ShowTodayButton":"ShowTodayButton","TargetColumn":"TargetColumn","TargetRow":"TargetRow","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbEditorDefinition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEditorDefinition","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEditorDefinition()":"IgbEditorDefinition()","IgbEditorDefinition":"IgbEditorDefinition()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbEditorDefinitionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEditorDefinitionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEditorDefinitionModule()":"IgbEditorDefinitionModule()","IgbEditorDefinitionModule":"IgbEditorDefinitionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbEditorRowCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEditorRowCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEditorRowCellInfo()":"IgbEditorRowCellInfo()","IgbEditorRowCellInfo":"IgbEditorRowCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbEditRowDefinition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEditRowDefinition","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEditRowDefinition()":"IgbEditRowDefinition()","IgbEditRowDefinition":"IgbEditRowDefinition()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbEditRowDefinitionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEditRowDefinitionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEditRowDefinitionModule()":"IgbEditRowDefinitionModule()","IgbEditRowDefinitionModule":"IgbEditRowDefinitionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbEntityType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbEntityType","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbEntityType()":"IgbEntityType()","IgbEntityType":"IgbEntityType()","ChildEntities":"ChildEntities","Fields":"Fields","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbExcelLocaleBgModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleBgModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleBgModule()":"IgbExcelLocaleBgModule()","IgbExcelLocaleBgModule":"IgbExcelLocaleBgModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleCsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleCsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleCsModule()":"IgbExcelLocaleCsModule()","IgbExcelLocaleCsModule":"IgbExcelLocaleCsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleDaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleDaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleDaModule()":"IgbExcelLocaleDaModule()","IgbExcelLocaleDaModule":"IgbExcelLocaleDaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleDeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleDeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleDeModule()":"IgbExcelLocaleDeModule()","IgbExcelLocaleDeModule":"IgbExcelLocaleDeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleEnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleEnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleEnModule()":"IgbExcelLocaleEnModule()","IgbExcelLocaleEnModule":"IgbExcelLocaleEnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleEsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleEsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleEsModule()":"IgbExcelLocaleEsModule()","IgbExcelLocaleEsModule":"IgbExcelLocaleEsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleFrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleFrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleFrModule()":"IgbExcelLocaleFrModule()","IgbExcelLocaleFrModule":"IgbExcelLocaleFrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleHuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleHuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleHuModule()":"IgbExcelLocaleHuModule()","IgbExcelLocaleHuModule":"IgbExcelLocaleHuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleItModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleItModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleItModule()":"IgbExcelLocaleItModule()","IgbExcelLocaleItModule":"IgbExcelLocaleItModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleJaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleJaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleJaModule()":"IgbExcelLocaleJaModule()","IgbExcelLocaleJaModule":"IgbExcelLocaleJaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleNbModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleNbModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleNbModule()":"IgbExcelLocaleNbModule()","IgbExcelLocaleNbModule":"IgbExcelLocaleNbModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleNlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleNlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleNlModule()":"IgbExcelLocaleNlModule()","IgbExcelLocaleNlModule":"IgbExcelLocaleNlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocalePlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocalePlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocalePlModule()":"IgbExcelLocalePlModule()","IgbExcelLocalePlModule":"IgbExcelLocalePlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocalePtModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocalePtModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocalePtModule()":"IgbExcelLocalePtModule()","IgbExcelLocalePtModule":"IgbExcelLocalePtModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleRoModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleRoModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleRoModule()":"IgbExcelLocaleRoModule()","IgbExcelLocaleRoModule":"IgbExcelLocaleRoModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleRuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleRuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleRuModule()":"IgbExcelLocaleRuModule()","IgbExcelLocaleRuModule":"IgbExcelLocaleRuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleSvModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleSvModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleSvModule()":"IgbExcelLocaleSvModule()","IgbExcelLocaleSvModule":"IgbExcelLocaleSvModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleTrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleTrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleTrModule()":"IgbExcelLocaleTrModule()","IgbExcelLocaleTrModule":"IgbExcelLocaleTrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleZhHansModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleZhHansModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleZhHansModule()":"IgbExcelLocaleZhHansModule()","IgbExcelLocaleZhHansModule":"IgbExcelLocaleZhHansModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExcelLocaleZhHantModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExcelLocaleZhHantModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExcelLocaleZhHantModule()":"IgbExcelLocaleZhHantModule()","IgbExcelLocaleZhHantModule":"IgbExcelLocaleZhHantModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExpansionPanel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpansionPanel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpansionPanel()":"IgbExpansionPanel()","IgbExpansionPanel":"IgbExpansionPanel()","AccordionParent":"AccordionParent","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","IndicatorPosition":"IndicatorPosition","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Open":"Open","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbExpansionPanel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpansionPanel()":"IgbExpansionPanel()","IgbExpansionPanel":"IgbExpansionPanel()","AccordionParent":"AccordionParent","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","IndicatorPosition":"IndicatorPosition","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Open":"Open","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbExpansionPanelComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpansionPanelComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpansionPanelComponentEventArgs()":"IgbExpansionPanelComponentEventArgs()","IgbExpansionPanelComponentEventArgs":"IgbExpansionPanelComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbExpansionPanelComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpansionPanelComponentEventArgs()":"IgbExpansionPanelComponentEventArgs()","IgbExpansionPanelComponentEventArgs":"IgbExpansionPanelComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbExpansionPanelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpansionPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpansionPanelModule()":"IgbExpansionPanelModule()","IgbExpansionPanelModule":"IgbExpansionPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbExpansionPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpansionPanelModule()":"IgbExpansionPanelModule()","IgbExpansionPanelModule":"IgbExpansionPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbExporterEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExporterEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExporterEventArgs()":"IgbExporterEventArgs()","IgbExporterEventArgs":"IgbExporterEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbExporterEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExporterEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExporterEventArgsDetail()":"IgbExporterEventArgsDetail()","IgbExporterEventArgsDetail":"IgbExporterEventArgsDetail()","Cancel":"Cancel","Exporter":"Exporter","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","Options":"Options","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbExporterOptionsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExporterOptionsBase","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExporterOptionsBase()":"IgbExporterOptionsBase()","IgbExporterOptionsBase":"IgbExporterOptionsBase()","AlwaysExportHeaders":"AlwaysExportHeaders","ExportSummaries":"ExportSummaries","FileName":"FileName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FreezeHeaders":"FreezeHeaders","IgnoreColumnsOrder":"IgnoreColumnsOrder","IgnoreColumnsVisibility":"IgnoreColumnsVisibility","IgnoreFiltering":"IgnoreFiltering","IgnoreGrouping":"IgnoreGrouping","IgnoreMultiColumnHeaders":"IgnoreMultiColumnHeaders","IgnoreSorting":"IgnoreSorting","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbExpressionTree":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpressionTree","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpressionTree()":"IgbExpressionTree()","IgbExpressionTree":"IgbExpressionTree()","Entity":"Entity","FieldName":"FieldName","FilteringOperands":"FilteringOperands","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operator":"Operator","ReturnFields":"ReturnFields","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbExpressionTreeDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpressionTreeDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpressionTreeDetail()":"IgbExpressionTreeDetail()","IgbExpressionTreeDetail":"IgbExpressionTreeDetail()","Entity":"Entity","FieldName":"FieldName","FilteringOperands":"FilteringOperands","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operator":"Operator","ReturnFields":"ReturnFields","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbExpressionTreeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpressionTreeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpressionTreeEventArgs()":"IgbExpressionTreeEventArgs()","IgbExpressionTreeEventArgs":"IgbExpressionTreeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbExpressionTreeOrFilteringExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbExpressionTreeOrFilteringExpression","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbExpressionTreeOrFilteringExpression()":"IgbExpressionTreeOrFilteringExpression()","IgbExpressionTreeOrFilteringExpression":"IgbExpressionTreeOrFilteringExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbFastStochasticOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFastStochasticOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFastStochasticOscillatorIndicator()":"IgbFastStochasticOscillatorIndicator()","IgbFastStochasticOscillatorIndicator":"IgbFastStochasticOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbFastStochasticOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFastStochasticOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFastStochasticOscillatorIndicatorModule()":"IgbFastStochasticOscillatorIndicatorModule()","IgbFastStochasticOscillatorIndicatorModule":"IgbFastStochasticOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFieldEditorOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFieldEditorOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFieldEditorOptions()":"IgbFieldEditorOptions()","IgbFieldEditorOptions":"IgbFieldEditorOptions()","DateTimeFormat":"DateTimeFormat","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbFieldPipeArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFieldPipeArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFieldPipeArgs()":"IgbFieldPipeArgs()","IgbFieldPipeArgs":"IgbFieldPipeArgs()","CurrencyCode":"CurrencyCode","DigitsInfo":"DigitsInfo","Display":"Display","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Format":"Format","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Timezone":"Timezone","Type":"Type","WeekStart":"WeekStart"}}],"IgbFieldType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFieldType","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFieldType()":"IgbFieldType()","IgbFieldType":"IgbFieldType()","DataType":"DataType","DefaultDateTimeFormat":"DefaultDateTimeFormat","DefaultTimeFormat":"DefaultTimeFormat","EditorOptions":"EditorOptions","Field":"Field","Filters":"Filters","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Formatter(object, object)":"Formatter(object, object)","Formatter":"Formatter(object, object)","FormatterAsync(object, object)":"FormatterAsync(object, object)","FormatterAsync":"FormatterAsync(object, object)","Header":"Header","Label":"Label","PipeArgs":"PipeArgs","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbFilterCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterCellInfo()":"IgbFilterCellInfo()","IgbFilterCellInfo":"IgbFilterCellInfo()","ClearIconLeft":"ClearIconLeft","ClearIconTop":"ClearIconTop","DataType":"DataType","EditorLeft":"EditorLeft","EditorTop":"EditorTop","Filter":"Filter","FilterExpression":"FilterExpression","FilterOperands":"FilterOperands","FilterValue":"FilterValue","FilterValueScript":"FilterValueScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","OperatorType":"OperatorType","SelectorLeft":"SelectorLeft","SelectorTop":"SelectorTop","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilterDialogRenderCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterDialogRenderCompletedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterDialogRenderCompletedEventArgs()":"IgbFilterDialogRenderCompletedEventArgs()","IgbFilterDialogRenderCompletedEventArgs":"IgbFilterDialogRenderCompletedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterExpression","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterExpression()":"IgbFilterExpression()","IgbFilterExpression":"IgbFilterExpression()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Date()":"Date()","Date":"Date()","Day()":"Day()","Day":"Day()","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Env(string)":"Env(string)","Env":"Env(string)","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Floor()":"Floor()","Floor":"Floor()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Group()":"Group()","Group":"Group()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","IsAutoGenerated":"IsAutoGenerated","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsFunction":"IsFunction","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","IsLiteral":"IsLiteral","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","IsNull":"IsNull","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","IsOperation":"IsOperation","IsPropertyReference":"IsPropertyReference","IsWrapper":"IsWrapper","Length()":"Length()","Length":"Length()","Literal(object)":"Literal(object)","Literal":"Literal(object)","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Minute()":"Minute()","Minute":"Minute()","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Month()":"Month()","Month":"Month()","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Not()":"Not()","Not":"Not()","Now()":"Now()","Now":"Now()","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int)":"Substring(int)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(int, int)":"Substring(int, int)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Time()":"Time()","Time":"Time()","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Type":"Type","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Year()":"Year()","Year":"Year()"}}],"IgbFilterExpressionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterExpressionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbFilterExpression)":"InsertItem(int, IgbFilterExpression)","InsertItem":"InsertItem(int, IgbFilterExpression)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbFilterExpression)":"SetItem(int, IgbFilterExpression)","SetItem":"SetItem(int, IgbFilterExpression)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbFilterExpression[], int)":"CopyTo(IgbFilterExpression[], int)","CopyTo":"CopyTo(IgbFilterExpression[], int)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","Insert(int, IgbFilterExpression)":"Insert(int, IgbFilterExpression)","Insert":"Insert(int, IgbFilterExpression)","Remove(IgbFilterExpression)":"Remove(IgbFilterExpression)","Remove":"Remove(IgbFilterExpression)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterExpressionCollection(object, string)":"IgbFilterExpressionCollection(object, string)","IgbFilterExpressionCollection":"IgbFilterExpressionCollection(object, string)"}}],"IgbFilteringEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringEventArgs()":"IgbFilteringEventArgs()","IgbFilteringEventArgs":"IgbFilteringEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilteringEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringEventArgsDetail()":"IgbFilteringEventArgsDetail()","IgbFilteringEventArgsDetail":"IgbFilteringEventArgsDetail()","Cancel":"Cancel","FilteringExpressions":"FilteringExpressions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Owner":"Owner","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilteringExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringExpression","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringExpression()":"IgbFilteringExpression()","IgbFilteringExpression":"IgbFilteringExpression()","Condition":"Condition","ConditionName":"ConditionName","FieldName":"FieldName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IgnoreCase":"IgnoreCase","SearchTree":"SearchTree","SearchVal":"SearchVal","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilteringExpressionsTree":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringExpressionsTree","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringExpressionsTree()":"IgbFilteringExpressionsTree()","IgbFilteringExpressionsTree":"IgbFilteringExpressionsTree()","Entity":"Entity","FieldName":"FieldName","FilteringOperands":"FilteringOperands","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operator":"Operator","Owner":"Owner","ReturnFields":"ReturnFields","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TreeType":"TreeType","Type":"Type"}}],"IgbFilteringExpressionsTreeDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringExpressionsTreeDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringExpressionsTreeDetail()":"IgbFilteringExpressionsTreeDetail()","IgbFilteringExpressionsTreeDetail":"IgbFilteringExpressionsTreeDetail()","Entity":"Entity","FieldName":"FieldName","FilteringOperands":"FilteringOperands","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Operator":"Operator","Owner":"Owner","ReturnFields":"ReturnFields","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TreeType":"TreeType","Type":"Type"}}],"IgbFilteringExpressionsTreeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringExpressionsTreeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringExpressionsTreeEventArgs()":"IgbFilteringExpressionsTreeEventArgs()","IgbFilteringExpressionsTreeEventArgs":"IgbFilteringExpressionsTreeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilteringExpressionsTreeOrFilteringExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringExpressionsTreeOrFilteringExpression","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringExpressionsTreeOrFilteringExpression()":"IgbFilteringExpressionsTreeOrFilteringExpression()","IgbFilteringExpressionsTreeOrFilteringExpression":"IgbFilteringExpressionsTreeOrFilteringExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbFilteringExpressionsTreeOrFilteringOperation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringExpressionsTreeOrFilteringOperation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringExpressionsTreeOrFilteringOperation()":"IgbFilteringExpressionsTreeOrFilteringOperation()","IgbFilteringExpressionsTreeOrFilteringOperation":"IgbFilteringExpressionsTreeOrFilteringOperation()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbFilteringOperand":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringOperand","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringOperand()":"IgbFilteringOperand()","IgbFilteringOperand":"IgbFilteringOperand()","Append(IgbFilteringOperation)":"Append(IgbFilteringOperation)","Append":"Append(IgbFilteringOperation)","AppendAsync(IgbFilteringOperation)":"AppendAsync(IgbFilteringOperation)","AppendAsync":"AppendAsync(IgbFilteringOperation)","Condition(string)":"Condition(string)","Condition":"Condition(string)","ConditionAsync(string)":"ConditionAsync(string)","ConditionAsync":"ConditionAsync(string)","ConditionList()":"ConditionList()","ConditionList":"ConditionList()","ConditionListAsync()":"ConditionListAsync()","ConditionListAsync":"ConditionListAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Instance()":"Instance()","Instance":"Instance()","InstanceAsync()":"InstanceAsync()","InstanceAsync":"InstanceAsync()","Operations":"Operations","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbFilteringOperation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringOperation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringOperation()":"IgbFilteringOperation()","IgbFilteringOperation":"IgbFilteringOperation()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Hidden":"Hidden","IconName":"IconName","IsNestedQuery":"IsNestedQuery","IsUnary":"IsUnary","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilteringOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringOptions()":"IgbFilteringOptions()","IgbFilteringOptions":"IgbFilteringOptions()","CaseSensitive":"CaseSensitive","FilterKey":"FilterKey","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MatchDiacritics":"MatchDiacritics","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbFilteringOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringOptions()":"IgbFilteringOptions()","IgbFilteringOptions":"IgbFilteringOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbFilteringStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilteringStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilteringStrategy()":"IgbFilteringStrategy()","IgbFilteringStrategy":"IgbFilteringStrategy()","Filter(object[], IgbFilteringExpressionsTree, IgbFilteringExpressionsTree, IgbGridBaseDirective)":"Filter(object[], IgbFilteringExpressionsTree, IgbFilteringExpressionsTree, IgbGridBaseDirective)","Filter":"Filter(object[], IgbFilteringExpressionsTree, IgbFilteringExpressionsTree, IgbGridBaseDirective)","FilterAsync(object[], IgbFilteringExpressionsTree, IgbFilteringExpressionsTree, IgbGridBaseDirective)":"FilterAsync(object[], IgbFilteringExpressionsTree, IgbFilteringExpressionsTree, IgbGridBaseDirective)","FilterAsync":"FilterAsync(object[], IgbFilteringExpressionsTree, IgbFilteringExpressionsTree, IgbGridBaseDirective)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbFilterOperand":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterOperand","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterOperand()":"IgbFilterOperand()","IgbFilterOperand":"IgbFilterOperand()","ComboColumnParent":"ComboColumnParent","DateTimeColumnParent":"DateTimeColumnParent","DisplayName":"DisplayName","Dispose()":"Dispose()","Dispose":"Dispose()","EditorType":"EditorType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterFactory":"FilterFactory","FilterRequested":"FilterRequested","FilteringExpression(object)":"FilteringExpression(object)","FilteringExpression":"FilteringExpression(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ID":"ID","Icon":"Icon","ImageColumnParent":"ImageColumnParent","IsInputRequired":"IsInputRequired","NumericColumnParent":"NumericColumnParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","TemplateColumnParent":"TemplateColumnParent","TextColumnParent":"TextColumnParent","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilterOperandModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterOperandModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterOperandModule()":"IgbFilterOperandModule()","IgbFilterOperandModule":"IgbFilterOperandModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFilterRowDefinition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterRowDefinition","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterRowDefinition()":"IgbFilterRowDefinition()","IgbFilterRowDefinition":"IgbFilterRowDefinition()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFilterRowDefinitionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterRowDefinitionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterRowDefinitionModule()":"IgbFilterRowDefinitionModule()","IgbFilterRowDefinitionModule":"IgbFilterRowDefinitionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFilterStringErrorsParsingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFilterStringErrorsParsingEventArgs()":"IgbFilterStringErrorsParsingEventArgs()","IgbFilterStringErrorsParsingEventArgs":"IgbFilterStringErrorsParsingEventArgs()","Errors":"Errors","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PropertyName":"PropertyName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFinalValueLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinalValueLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinalValueLayer()":"IgbFinalValueLayer()","IgbFinalValueLayer":"IgbFinalValueLayer()","AxisAnnotationBackground":"AxisAnnotationBackground","AxisAnnotationBackgroundCornerRadius":"AxisAnnotationBackgroundCornerRadius","AxisAnnotationFormatLabelScript":"AxisAnnotationFormatLabelScript","AxisAnnotationInterpolatedValuePrecision":"AxisAnnotationInterpolatedValuePrecision","AxisAnnotationOutline":"AxisAnnotationOutline","AxisAnnotationPaddingBottom":"AxisAnnotationPaddingBottom","AxisAnnotationPaddingLeft":"AxisAnnotationPaddingLeft","AxisAnnotationPaddingRight":"AxisAnnotationPaddingRight","AxisAnnotationPaddingTop":"AxisAnnotationPaddingTop","AxisAnnotationStrokeThickness":"AxisAnnotationStrokeThickness","AxisAnnotationTextColor":"AxisAnnotationTextColor","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FinalValueSelectionMode":"FinalValueSelectionMode","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","Type":"Type"}}],"IgbFinalValueLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinalValueLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinalValueLayerModule()":"IgbFinalValueLayerModule()","IgbFinalValueLayerModule":"IgbFinalValueLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFinancialCalculationDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialCalculationDataSource","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialCalculationDataSource()":"IgbFinancialCalculationDataSource()","IgbFinancialCalculationDataSource":"IgbFinancialCalculationDataSource()","CalculateCount":"CalculateCount","CalculateFrom":"CalculateFrom","Count":"Count","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPeriod":"LongPeriod","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","Multiplier":"Multiplier","Period":"Period","ShortPeriod":"ShortPeriod","SpecifiesRange":"SpecifiesRange","TrueLow":"TrueLow","TrueRange":"TrueRange","Type":"Type","TypicalColumn":"TypicalColumn"}}],"IgbFinancialCalculationSupportingCalculations":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialCalculationSupportingCalculations","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialCalculationSupportingCalculations()":"IgbFinancialCalculationSupportingCalculations()","IgbFinancialCalculationSupportingCalculations":"IgbFinancialCalculationSupportingCalculations()","EMA":"EMA","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPriceOscillatorAverage":"LongPriceOscillatorAverage","LongVolumeOscillatorAverage":"LongVolumeOscillatorAverage","MakeSafe":"MakeSafe","MakeSafeScript":"MakeSafeScript","MovingSum":"MovingSum","SMA":"SMA","STDEV":"STDEV","ShortPriceOscillatorAverage":"ShortPriceOscillatorAverage","ShortVolumeOscillatorAverage":"ShortVolumeOscillatorAverage","Type":"Type"}}],"IgbFinancialChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialChart","k":"class","s":"classes","m":{"GetScaledValueXAsync(double)":"GetScaledValueXAsync(double)","GetScaledValueXAsync":"GetScaledValueXAsync(double)","GetScaledValueX(double)":"GetScaledValueX(double)","GetScaledValueX":"GetScaledValueX(double)","GetUnscaledValueXAsync(double)":"GetUnscaledValueXAsync(double)","GetUnscaledValueXAsync":"GetUnscaledValueXAsync(double)","GetUnscaledValueX(double)":"GetUnscaledValueX(double)","GetUnscaledValueX":"GetUnscaledValueX(double)","GetScaledValueYAsync(double)":"GetScaledValueYAsync(double)","GetScaledValueYAsync":"GetScaledValueYAsync(double)","GetScaledValueY(double)":"GetScaledValueY(double)","GetScaledValueY":"GetScaledValueY(double)","GetUnscaledValueYAsync(double)":"GetUnscaledValueYAsync(double)","GetUnscaledValueYAsync":"GetUnscaledValueYAsync(double)","GetUnscaledValueY(double)":"GetUnscaledValueY(double)","GetUnscaledValueY":"GetUnscaledValueY(double)","ParentTypeName":"ParentTypeName","ContentXAxisLabelFormatSpecifiers":"ContentXAxisLabelFormatSpecifiers","ActualXAxisLabelFormatSpecifiers":"ActualXAxisLabelFormatSpecifiers","ContentYAxisLabelFormatSpecifiers":"ContentYAxisLabelFormatSpecifiers","ActualYAxisLabelFormatSpecifiers":"ActualYAxisLabelFormatSpecifiers","XAxisFormatLabel":"XAxisFormatLabel","XAxisFormatLabelScript":"XAxisFormatLabelScript","YAxisFormatLabel":"YAxisFormatLabel","YAxisFormatLabelScript":"YAxisFormatLabelScript","XAxisLabelLeftMargin":"XAxisLabelLeftMargin","XAxisLabelTopMargin":"XAxisLabelTopMargin","XAxisLabelRightMargin":"XAxisLabelRightMargin","XAxisLabelBottomMargin":"XAxisLabelBottomMargin","YAxisLabelLeftMargin":"YAxisLabelLeftMargin","YAxisLabelTopMargin":"YAxisLabelTopMargin","YAxisLabelRightMargin":"YAxisLabelRightMargin","YAxisLabelBottomMargin":"YAxisLabelBottomMargin","XAxisLabelTextColor":"XAxisLabelTextColor","YAxisLabelTextColor":"YAxisLabelTextColor","ActualXAxisLabelTextColor":"ActualXAxisLabelTextColor","ActualYAxisLabelTextColor":"ActualYAxisLabelTextColor","XAxisTitleMargin":"XAxisTitleMargin","YAxisTitleMargin":"YAxisTitleMargin","XAxisTitleLeftMargin":"XAxisTitleLeftMargin","YAxisTitleLeftMargin":"YAxisTitleLeftMargin","XAxisTitleTopMargin":"XAxisTitleTopMargin","YAxisTitleTopMargin":"YAxisTitleTopMargin","XAxisTitleRightMargin":"XAxisTitleRightMargin","YAxisTitleRightMargin":"YAxisTitleRightMargin","XAxisTitleBottomMargin":"XAxisTitleBottomMargin","YAxisTitleBottomMargin":"YAxisTitleBottomMargin","XAxisTitleTextColor":"XAxisTitleTextColor","YAxisTitleTextColor":"YAxisTitleTextColor","XAxisLabelTextStyle":"XAxisLabelTextStyle","YAxisLabelTextStyle":"YAxisLabelTextStyle","XAxisTitleTextStyle":"XAxisTitleTextStyle","YAxisTitleTextStyle":"YAxisTitleTextStyle","XAxisLabel":"XAxisLabel","XAxisLabelScript":"XAxisLabelScript","YAxisLabel":"YAxisLabel","YAxisLabelScript":"YAxisLabelScript","XAxisMajorStroke":"XAxisMajorStroke","YAxisMajorStroke":"YAxisMajorStroke","XAxisMajorStrokeThickness":"XAxisMajorStrokeThickness","YAxisMajorStrokeThickness":"YAxisMajorStrokeThickness","XAxisMinorStrokeThickness":"XAxisMinorStrokeThickness","YAxisMinorStrokeThickness":"YAxisMinorStrokeThickness","XAxisStrip":"XAxisStrip","YAxisStrip":"YAxisStrip","XAxisStroke":"XAxisStroke","YAxisStroke":"YAxisStroke","XAxisStrokeThickness":"XAxisStrokeThickness","YAxisStrokeThickness":"YAxisStrokeThickness","XAxisTickLength":"XAxisTickLength","YAxisTickLength":"YAxisTickLength","XAxisTickStroke":"XAxisTickStroke","YAxisTickStroke":"YAxisTickStroke","XAxisTickStrokeThickness":"XAxisTickStrokeThickness","YAxisTickStrokeThickness":"YAxisTickStrokeThickness","XAxisTitle":"XAxisTitle","YAxisTitle":"YAxisTitle","XAxisMinorStroke":"XAxisMinorStroke","YAxisMinorStroke":"YAxisMinorStroke","XAxisLabelAngle":"XAxisLabelAngle","YAxisLabelAngle":"YAxisLabelAngle","XAxisExtent":"XAxisExtent","YAxisExtent":"YAxisExtent","XAxisMaximumExtent":"XAxisMaximumExtent","YAxisMaximumExtent":"YAxisMaximumExtent","XAxisMaximumExtentPercentage":"XAxisMaximumExtentPercentage","YAxisMaximumExtentPercentage":"YAxisMaximumExtentPercentage","XAxisTitleAngle":"XAxisTitleAngle","YAxisTitleAngle":"YAxisTitleAngle","XAxisInverted":"XAxisInverted","YAxisInverted":"YAxisInverted","XAxisTitleAlignment":"XAxisTitleAlignment","YAxisTitleAlignment":"YAxisTitleAlignment","XAxisLabelHorizontalAlignment":"XAxisLabelHorizontalAlignment","XAxisLabelVerticalAlignment":"XAxisLabelVerticalAlignment","YAxisLabelVerticalAlignment":"YAxisLabelVerticalAlignment","XAxisLabelVisibility":"XAxisLabelVisibility","YAxisLabelVisibility":"YAxisLabelVisibility","YAxisLabelLocation":"YAxisLabelLocation","XAxisLabelLocation":"XAxisLabelLocation","XAxisLabelFormat":"XAxisLabelFormat","XAxisLabelFormatSpecifiers":"XAxisLabelFormatSpecifiers","YAxisLabelFormat":"YAxisLabelFormat","YAxisLabelFormatSpecifiers":"YAxisLabelFormatSpecifiers","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","DefaultEventBehavior":"DefaultEventBehavior","PixelScalingRatio":"PixelScalingRatio","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleTextColor":"SubtitleTextColor","TitleTextColor":"TitleTextColor","TopMargin":"TopMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","HighlightingTransitionDuration":"HighlightingTransitionDuration","SelectionTransitionDuration":"SelectionTransitionDuration","FocusTransitionDuration":"FocusTransitionDuration","SubtitleTextStyle":"SubtitleTextStyle","TitleTextStyle":"TitleTextStyle","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","SortDescriptions":"SortDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupDescriptions":"GroupDescriptions","FilterExpressions":"FilterExpressions","HighlightFilterExpressions":"HighlightFilterExpressions","SummaryDescriptions":"SummaryDescriptions","SelectionMode":"SelectionMode","FocusMode":"FocusMode","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","SelectionBehavior":"SelectionBehavior","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","InitialSortDescriptions":"InitialSortDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialFilterExpressions":"InitialFilterExpressions","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSummaryDescriptions":"InitialSummaryDescriptions","InitialSorts":"InitialSorts","GroupSorts":"GroupSorts","InitialGroups":"InitialGroups","InitialFilter":"InitialFilter","InitialHighlightFilter":"InitialHighlightFilter","InitialSummaries":"InitialSummaries","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","IncludedProperties":"IncludedProperties","ExcludedProperties":"ExcludedProperties","Brushes":"Brushes","Outlines":"Outlines","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","Legend":"Legend","LegendScript":"LegendScript","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","LegendItemVisibility":"LegendItemVisibility","WindowRect":"WindowRect","ChartTitle":"ChartTitle","Subtitle":"Subtitle","TitleAlignment":"TitleAlignment","SubtitleAlignment":"SubtitleAlignment","UnknownValuePlotting":"UnknownValuePlotting","Thickness":"Thickness","OutlineMode":"OutlineMode","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerMaxCount":"MarkerMaxCount","AreaFillOpacity":"AreaFillOpacity","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineThickness":"TrendLineThickness","TrendLineTypes":"TrendLineTypes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginBottom":"PlotAreaMarginBottom","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","HighlightingMode":"HighlightingMode","HighlightingBehavior":"HighlightingBehavior","HighlightingFadeOpacity":"HighlightingFadeOpacity","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","TrendLinePeriod":"TrendLinePeriod","ToolTipType":"ToolTipType","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsSnapToData":"CrosshairsSnapToData","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","AutoCalloutsVisible":"AutoCalloutsVisible","CalloutsVisible":"CalloutsVisible","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","CalloutCollisionMode":"CalloutCollisionMode","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsBackground":"CalloutsBackground","CalloutsOutline":"CalloutsOutline","CalloutsTextColor":"CalloutsTextColor","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","SeriesAddedScript":"SeriesAddedScript","SeriesAdded":"SeriesAdded","SeriesRemovedScript":"SeriesRemovedScript","SeriesRemoved":"SeriesRemoved","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerDown":"SeriesPointerDown","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesPointerUp":"SeriesPointerUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","PlotAreaPointerUp":"PlotAreaPointerUp","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLabelUpdating":"CalloutLabelUpdating","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialChart()":"IgbFinancialChart()","IgbFinancialChart":"IgbFinancialChart()","ApplyCustomIndicatorsScript":"ApplyCustomIndicatorsScript","ChartType":"ChartType","CustomIndicatorNames":"CustomIndicatorNames","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IndicatorBrushes":"IndicatorBrushes","IndicatorDisplayTypes":"IndicatorDisplayTypes","IndicatorLongPeriod":"IndicatorLongPeriod","IndicatorMultiplier":"IndicatorMultiplier","IndicatorNegativeBrushes":"IndicatorNegativeBrushes","IndicatorPeriod":"IndicatorPeriod","IndicatorShortPeriod":"IndicatorShortPeriod","IndicatorSignalPeriod":"IndicatorSignalPeriod","IndicatorSmoothingPeriod":"IndicatorSmoothingPeriod","IndicatorThickness":"IndicatorThickness","IndicatorTypes":"IndicatorTypes","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsLegendVisible":"IsLegendVisible","IsToolbarVisible":"IsToolbarVisible","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","IsWindowSyncedToVisibleRange":"IsWindowSyncedToVisibleRange","LeftMargin":"LeftMargin","NeedsDynamicContent":"NeedsDynamicContent","NegativeBrushes":"NegativeBrushes","NegativeOutlines":"NegativeOutlines","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","OverlayBrushes":"OverlayBrushes","OverlayMultiplier":"OverlayMultiplier","OverlayOutlines":"OverlayOutlines","OverlayThickness":"OverlayThickness","OverlayTypes":"OverlayTypes","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RangeSelectorOptions":"RangeSelectorOptions","Resolution":"Resolution","ToolbarHeight":"ToolbarHeight","TooltipTemplate":"TooltipTemplate","Type":"Type","VolumeBrushes":"VolumeBrushes","VolumeOutlines":"VolumeOutlines","VolumeThickness":"VolumeThickness","VolumeType":"VolumeType","XAxisBreaks":"XAxisBreaks","XAxisEnhancedIntervalPreferMoreCategoryLabels":"XAxisEnhancedIntervalPreferMoreCategoryLabels","XAxisMaximumValue":"XAxisMaximumValue","XAxisMinimumValue":"XAxisMinimumValue","XAxisMode":"XAxisMode","XAxisZoomMaximumCategoryRange":"XAxisZoomMaximumCategoryRange","XAxisZoomMaximumItemSpan":"XAxisZoomMaximumItemSpan","XAxisZoomToCategoryRange":"XAxisZoomToCategoryRange","XAxisZoomToCategoryStart":"XAxisZoomToCategoryStart","XAxisZoomToItemSpan":"XAxisZoomToItemSpan","YAxisAbbreviateLargeNumbers":"YAxisAbbreviateLargeNumbers","YAxisEnhancedIntervalPreferMoreCategoryLabels":"YAxisEnhancedIntervalPreferMoreCategoryLabels","YAxisInterval":"YAxisInterval","YAxisIsLogarithmic":"YAxisIsLogarithmic","YAxisLabelHorizontalAlignment":"YAxisLabelHorizontalAlignment","YAxisLogarithmBase":"YAxisLogarithmBase","YAxisMaximumValue":"YAxisMaximumValue","YAxisMinimumValue":"YAxisMinimumValue","YAxisMinorInterval":"YAxisMinorInterval","YAxisMode":"YAxisMode","ZoomSliderType":"ZoomSliderType","ZoomSliderXAxisMajorStroke":"ZoomSliderXAxisMajorStroke","ZoomSliderXAxisMajorStrokeThickness":"ZoomSliderXAxisMajorStrokeThickness"}}],"IgbFinancialChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialChartCoreModule()":"IgbFinancialChartCoreModule()","IgbFinancialChartCoreModule":"IgbFinancialChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFinancialChartCustomIndicatorArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialChartCustomIndicatorArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialChartCustomIndicatorArgs()":"IgbFinancialChartCustomIndicatorArgs()","IgbFinancialChartCustomIndicatorArgs":"IgbFinancialChartCustomIndicatorArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","Series":"Series","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFinancialChartModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialChartModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialChartModule()":"IgbFinancialChartModule()","IgbFinancialChartModule":"IgbFinancialChartModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFinancialChartRangeSelectorOptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialChartRangeSelectorOptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, FinancialChartRangeSelectorOption)":"InsertItem(int, FinancialChartRangeSelectorOption)","InsertItem":"InsertItem(int, FinancialChartRangeSelectorOption)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, FinancialChartRangeSelectorOption)":"SetItem(int, FinancialChartRangeSelectorOption)","SetItem":"SetItem(int, FinancialChartRangeSelectorOption)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(FinancialChartRangeSelectorOption)":"Add(FinancialChartRangeSelectorOption)","Add":"Add(FinancialChartRangeSelectorOption)","Clear()":"Clear()","Clear":"Clear()","CopyTo(FinancialChartRangeSelectorOption[], int)":"CopyTo(FinancialChartRangeSelectorOption[], int)","CopyTo":"CopyTo(FinancialChartRangeSelectorOption[], int)","Contains(FinancialChartRangeSelectorOption)":"Contains(FinancialChartRangeSelectorOption)","Contains":"Contains(FinancialChartRangeSelectorOption)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(FinancialChartRangeSelectorOption)":"IndexOf(FinancialChartRangeSelectorOption)","IndexOf":"IndexOf(FinancialChartRangeSelectorOption)","Insert(int, FinancialChartRangeSelectorOption)":"Insert(int, FinancialChartRangeSelectorOption)","Insert":"Insert(int, FinancialChartRangeSelectorOption)","Remove(FinancialChartRangeSelectorOption)":"Remove(FinancialChartRangeSelectorOption)","Remove":"Remove(FinancialChartRangeSelectorOption)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialChartRangeSelectorOptionCollection(object, string)":"IgbFinancialChartRangeSelectorOptionCollection(object, string)","IgbFinancialChartRangeSelectorOptionCollection":"IgbFinancialChartRangeSelectorOptionCollection(object, string)"}}],"IgbFinancialEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialEventArgs()":"IgbFinancialEventArgs()","IgbFinancialEventArgs":"IgbFinancialEventArgs()","Count":"Count","DataSource":"DataSource","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Position":"Position","SupportingCalculations":"SupportingCalculations","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFinancialIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialIndicator","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialIndicator()":"IgbFinancialIndicator()","IgbFinancialIndicator":"IgbFinancialIndicator()","ActualTrendLineBrush":"ActualTrendLineBrush","DisplayType":"DisplayType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","IgnoreFirst":"IgnoreFirst","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","TrendLineBrush":"TrendLineBrush","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","Type":"Type"}}],"IgbFinancialIndicatorTypeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialIndicatorTypeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, FinancialIndicatorType)":"InsertItem(int, FinancialIndicatorType)","InsertItem":"InsertItem(int, FinancialIndicatorType)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, FinancialIndicatorType)":"SetItem(int, FinancialIndicatorType)","SetItem":"SetItem(int, FinancialIndicatorType)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(FinancialIndicatorType)":"Add(FinancialIndicatorType)","Add":"Add(FinancialIndicatorType)","Clear()":"Clear()","Clear":"Clear()","CopyTo(FinancialIndicatorType[], int)":"CopyTo(FinancialIndicatorType[], int)","CopyTo":"CopyTo(FinancialIndicatorType[], int)","Contains(FinancialIndicatorType)":"Contains(FinancialIndicatorType)","Contains":"Contains(FinancialIndicatorType)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(FinancialIndicatorType)":"IndexOf(FinancialIndicatorType)","IndexOf":"IndexOf(FinancialIndicatorType)","Insert(int, FinancialIndicatorType)":"Insert(int, FinancialIndicatorType)","Insert":"Insert(int, FinancialIndicatorType)","Remove(FinancialIndicatorType)":"Remove(FinancialIndicatorType)","Remove":"Remove(FinancialIndicatorType)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialIndicatorTypeCollection(object, string)":"IgbFinancialIndicatorTypeCollection(object, string)","IgbFinancialIndicatorTypeCollection":"IgbFinancialIndicatorTypeCollection(object, string)"}}],"IgbFinancialLegend":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialLegend","k":"class","s":"classes","m":{"FlushTextContentChangedCheckAsync()":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheckAsync":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheck()":"FlushTextContentChangedCheck()","FlushTextContentChangedCheck":"FlushTextContentChangedCheck()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","DefaultEventBehavior":"DefaultEventBehavior","LegendItemMouseLeftButtonDownScript":"LegendItemMouseLeftButtonDownScript","LegendItemMouseLeftButtonDown":"LegendItemMouseLeftButtonDown","LegendItemMouseLeftButtonUpScript":"LegendItemMouseLeftButtonUpScript","LegendItemMouseLeftButtonUp":"LegendItemMouseLeftButtonUp","LegendItemMouseEnterScript":"LegendItemMouseEnterScript","LegendItemMouseEnter":"LegendItemMouseEnter","LegendItemMouseLeaveScript":"LegendItemMouseLeaveScript","LegendItemMouseLeave":"LegendItemMouseLeave","LegendItemMouseMoveScript":"LegendItemMouseMoveScript","LegendItemMouseMove":"LegendItemMouseMove","LegendTextContentChangedScript":"LegendTextContentChangedScript","LegendTextContentChanged":"LegendTextContentChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialLegend()":"IgbFinancialLegend()","IgbFinancialLegend":"IgbFinancialLegend()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbFinancialLegendModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialLegendModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialLegendModule()":"IgbFinancialLegendModule()","IgbFinancialLegendModule":"IgbFinancialLegendModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFinancialOverlay":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialOverlay","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialOverlay()":"IgbFinancialOverlay()","IgbFinancialOverlay":"IgbFinancialOverlay()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IgnoreFirst":"IgnoreFirst","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","Type":"Type"}}],"IgbFinancialOverlayTypeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialOverlayTypeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, FinancialOverlayType)":"InsertItem(int, FinancialOverlayType)","InsertItem":"InsertItem(int, FinancialOverlayType)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, FinancialOverlayType)":"SetItem(int, FinancialOverlayType)","SetItem":"SetItem(int, FinancialOverlayType)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(FinancialOverlayType)":"Add(FinancialOverlayType)","Add":"Add(FinancialOverlayType)","Clear()":"Clear()","Clear":"Clear()","CopyTo(FinancialOverlayType[], int)":"CopyTo(FinancialOverlayType[], int)","CopyTo":"CopyTo(FinancialOverlayType[], int)","Contains(FinancialOverlayType)":"Contains(FinancialOverlayType)","Contains":"Contains(FinancialOverlayType)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(FinancialOverlayType)":"IndexOf(FinancialOverlayType)","IndexOf":"IndexOf(FinancialOverlayType)","Insert(int, FinancialOverlayType)":"Insert(int, FinancialOverlayType)","Insert":"Insert(int, FinancialOverlayType)","Remove(FinancialOverlayType)":"Remove(FinancialOverlayType)","Remove":"Remove(FinancialOverlayType)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialOverlayTypeCollection(object, string)":"IgbFinancialOverlayTypeCollection(object, string)","IgbFinancialOverlayTypeCollection":"IgbFinancialOverlayTypeCollection(object, string)"}}],"IgbFinancialPriceSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialPriceSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialPriceSeries()":"IgbFinancialPriceSeries()","IgbFinancialPriceSeries":"IgbFinancialPriceSeries()","ActualTrendLineBrush":"ActualTrendLineBrush","CategoryCollisionMode":"CategoryCollisionMode","CloseMemberAsLegendLabel":"CloseMemberAsLegendLabel","CloseMemberAsLegendUnit":"CloseMemberAsLegendUnit","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","HighMemberAsLegendLabel":"HighMemberAsLegendLabel","HighMemberAsLegendUnit":"HighMemberAsLegendUnit","LowMemberAsLegendLabel":"LowMemberAsLegendLabel","LowMemberAsLegendUnit":"LowMemberAsLegendUnit","NegativeOutline":"NegativeOutline","OpenMemberAsLegendLabel":"OpenMemberAsLegendLabel","OpenMemberAsLegendUnit":"OpenMemberAsLegendUnit","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","TrendLineBrush":"TrendLineBrush","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","Type":"Type"}}],"IgbFinancialPriceSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialPriceSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialPriceSeriesModule()":"IgbFinancialPriceSeriesModule()","IgbFinancialPriceSeriesModule":"IgbFinancialPriceSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFinancialSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFinancialSeries","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFinancialSeries()":"IgbFinancialSeries()","IgbFinancialSeries":"IgbFinancialSeries()","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CloseMemberPath":"CloseMemberPath","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","HighMemberPath":"HighMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsTransitionInEnabled":"IsTransitionInEnabled","LowMemberPath":"LowMemberPath","NegativeBrush":"NegativeBrush","OpenMemberPath":"OpenMemberPath","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","TransitionInMode":"TransitionInMode","Type":"Type","Typical":"Typical","TypicalBasedOn":"TypicalBasedOn","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalScript":"TypicalScript","VolumeMemberPath":"VolumeMemberPath","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbFloatingPaneResizeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFloatingPaneResizeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFloatingPaneResizeEventArgs()":"IgbFloatingPaneResizeEventArgs()","IgbFloatingPaneResizeEventArgs":"IgbFloatingPaneResizeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFloatingPaneResizeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFloatingPaneResizeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFloatingPaneResizeEventArgsDetail()":"IgbFloatingPaneResizeEventArgsDetail()","IgbFloatingPaneResizeEventArgsDetail":"IgbFloatingPaneResizeEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ResizerLocation":"ResizerLocation","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SourcePane":"SourcePane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFloatingPaneResizeMoveEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFloatingPaneResizeMoveEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFloatingPaneResizeMoveEventArgs()":"IgbFloatingPaneResizeMoveEventArgs()","IgbFloatingPaneResizeMoveEventArgs":"IgbFloatingPaneResizeMoveEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFloatingPaneResizeMoveEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFloatingPaneResizeMoveEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SourcePane":"SourcePane","ResizerLocation":"ResizerLocation","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFloatingPaneResizeMoveEventArgsDetail()":"IgbFloatingPaneResizeMoveEventArgsDetail()","IgbFloatingPaneResizeMoveEventArgsDetail":"IgbFloatingPaneResizeMoveEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewHeight":"NewHeight","NewLocation":"NewLocation","NewWidth":"NewWidth","OldHeight":"OldHeight","OldLocation":"OldLocation","OldWidth":"OldWidth","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFloatPaneAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFloatPaneAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFloatPaneAction()":"IgbFloatPaneAction()","IgbFloatPaneAction":"IgbFloatPaneAction()","ActionType":"ActionType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Height":"Height","Location":"Location","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width"}}],"IgbFloatPaneActionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFloatPaneActionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFloatPaneActionModule()":"IgbFloatPaneActionModule()","IgbFloatPaneActionModule":"IgbFloatPaneActionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFocusOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFocusOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFocusOptions()":"IgbFocusOptions()","IgbFocusOptions":"IgbFocusOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PreventScroll":"PreventScroll","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbFocusOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFocusOptions()":"IgbFocusOptions()","IgbFocusOptions":"IgbFocusOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PreventScroll":"PreventScroll","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForceIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForceIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForceIndexIndicator()":"IgbForceIndexIndicator()","IgbForceIndexIndicator":"IgbForceIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbForceIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForceIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForceIndexIndicatorModule()":"IgbForceIndexIndicatorModule()","IgbForceIndexIndicatorModule":"IgbForceIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFormatCellEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatCellEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatCellEventArgs()":"IgbFormatCellEventArgs()","IgbFormatCellEventArgs":"IgbFormatCellEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsGroup":"IsGroup","IsSummary":"IsSummary","Item":"Item","ItemScript":"ItemScript","Row":"Row","Text":"Text","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbFormatGroupTextEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatGroupTextEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatGroupTextEventArgs()":"IgbFormatGroupTextEventArgs()","IgbFormatGroupTextEventArgs":"IgbFormatGroupTextEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormattedText":"FormattedText","FormattedValue":"FormattedValue","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupName":"GroupName","GroupValue":"GroupValue","GroupValueScript":"GroupValueScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFormatLinearGraphLabelEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatLinearGraphLabelEventArgs()":"IgbFormatLinearGraphLabelEventArgs()","IgbFormatLinearGraphLabelEventArgs":"IgbFormatLinearGraphLabelEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFormatRadialGaugeLabelEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatRadialGaugeLabelEventArgs()":"IgbFormatRadialGaugeLabelEventArgs()","IgbFormatRadialGaugeLabelEventArgs":"IgbFormatRadialGaugeLabelEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFormatSpecifier":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatSpecifier","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatSpecifier()":"IgbFormatSpecifier()","IgbFormatSpecifier":"IgbFormatSpecifier()","AxisParent":"AxisParent","DateTimeColumnParent":"DateTimeColumnParent","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetLocalCulture()":"GetLocalCulture()","GetLocalCulture":"GetLocalCulture()","GetLocalCultureAsync()":"GetLocalCultureAsync()","GetLocalCultureAsync":"GetLocalCultureAsync()","HorizontalLabelFormatSpecifiersParent":"HorizontalLabelFormatSpecifiersParent","LegendLabelFormatSpecifiersParent":"LegendLabelFormatSpecifiersParent","LegendOthersLabelFormatSpecifiersParent":"LegendOthersLabelFormatSpecifiersParent","LinearGraphParent":"LinearGraphParent","NumericColumnParent":"NumericColumnParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OthersLabelFormatSpecifiersParent":"OthersLabelFormatSpecifiersParent","PieChartBaseParent":"PieChartBaseParent","RadialGaugeParent":"RadialGaugeParent","RingSeriesBaseParent":"RingSeriesBaseParent","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","VerticalLabelFormatSpecifiersParent":"VerticalLabelFormatSpecifiersParent","XAxisLabelFormatSpecifiersParent":"XAxisLabelFormatSpecifiersParent","YAxisLabelFormatSpecifiersParent":"YAxisLabelFormatSpecifiersParent"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbFormatSpecifier","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatSpecifier()":"IgbFormatSpecifier()","IgbFormatSpecifier":"IgbFormatSpecifier()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GetLocalCulture()":"GetLocalCulture()","GetLocalCulture":"GetLocalCulture()","GetLocalCultureAsync()":"GetLocalCultureAsync()","GetLocalCultureAsync":"GetLocalCultureAsync()","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFormatSpecifierCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatSpecifierCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbFormatSpecifier)":"InsertItem(int, IgbFormatSpecifier)","InsertItem":"InsertItem(int, IgbFormatSpecifier)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbFormatSpecifier)":"SetItem(int, IgbFormatSpecifier)","SetItem":"SetItem(int, IgbFormatSpecifier)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbFormatSpecifier)":"Add(IgbFormatSpecifier)","Add":"Add(IgbFormatSpecifier)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbFormatSpecifier[], int)":"CopyTo(IgbFormatSpecifier[], int)","CopyTo":"CopyTo(IgbFormatSpecifier[], int)","Contains(IgbFormatSpecifier)":"Contains(IgbFormatSpecifier)","Contains":"Contains(IgbFormatSpecifier)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbFormatSpecifier)":"IndexOf(IgbFormatSpecifier)","IndexOf":"IndexOf(IgbFormatSpecifier)","Insert(int, IgbFormatSpecifier)":"Insert(int, IgbFormatSpecifier)","Insert":"Insert(int, IgbFormatSpecifier)","Remove(IgbFormatSpecifier)":"Remove(IgbFormatSpecifier)","Remove":"Remove(IgbFormatSpecifier)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatSpecifierCollection(object, string)":"IgbFormatSpecifierCollection(object, string)","IgbFormatSpecifierCollection":"IgbFormatSpecifierCollection(object, string)"}}],"IgbFormatSpecifierModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatSpecifierModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatSpecifierModule()":"IgbFormatSpecifierModule()","IgbFormatSpecifierModule":"IgbFormatSpecifierModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbFormatSpecifierModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatSpecifierModule()":"IgbFormatSpecifierModule()","IgbFormatSpecifierModule":"IgbFormatSpecifierModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFormatSummaryTextEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFormatSummaryTextEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFormatSummaryTextEventArgs()":"IgbFormatSummaryTextEventArgs()","IgbFormatSummaryTextEventArgs":"IgbFormatSummaryTextEventArgs()","DisplayName":"DisplayName","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormattedResult":"FormattedResult","FormattedText":"FormattedText","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SummaryResult":"SummaryResult","SummaryResultScript":"SummaryResultScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfDataChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfDataChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfDataChangeEventArgs()":"IgbForOfDataChangeEventArgs()","IgbForOfDataChangeEventArgs":"IgbForOfDataChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfDataChangeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfDataChangeEventArgsDetail","k":"class","s":"classes","m":{"ContainerSize":"ContainerSize","State":"State","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfDataChangeEventArgsDetail()":"IgbForOfDataChangeEventArgsDetail()","IgbForOfDataChangeEventArgsDetail":"IgbForOfDataChangeEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfDataChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfDataChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfDataChangingEventArgs()":"IgbForOfDataChangingEventArgs()","IgbForOfDataChangingEventArgs":"IgbForOfDataChangingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfDataChangingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfDataChangingEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfDataChangingEventArgsDetail()":"IgbForOfDataChangingEventArgsDetail()","IgbForOfDataChangingEventArgsDetail":"IgbForOfDataChangingEventArgsDetail()","ContainerSize":"ContainerSize","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","State":"State","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfState","k":"class","s":"classes","m":{"Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfState()":"IgbForOfState()","IgbForOfState":"IgbForOfState()","ChunkSize":"ChunkSize","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","StartIndex":"StartIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfStateDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfStateDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfStateDetail()":"IgbForOfStateDetail()","IgbForOfStateDetail":"IgbForOfStateDetail()","ChunkSize":"ChunkSize","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","StartIndex":"StartIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbForOfStateEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbForOfStateEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbForOfStateEventArgs()":"IgbForOfStateEventArgs()","IgbForOfStateEventArgs":"IgbForOfStateEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFragmentBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFragmentBase","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFragmentBase()":"IgbFragmentBase()","IgbFragmentBase":"IgbFragmentBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","Type":"Type"}}],"IgbFullStochasticOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFullStochasticOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFullStochasticOscillatorIndicator()":"IgbFullStochasticOscillatorIndicator()","IgbFullStochasticOscillatorIndicator":"IgbFullStochasticOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","SmoothingPeriod":"SmoothingPeriod","TriggerPeriod":"TriggerPeriod","Type":"Type"}}],"IgbFullStochasticOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFullStochasticOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFullStochasticOscillatorIndicatorModule()":"IgbFullStochasticOscillatorIndicatorModule()","IgbFullStochasticOscillatorIndicatorModule":"IgbFullStochasticOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFunctionFilterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunctionFilterExpression","k":"class","s":"classes","m":{"Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsLiteral":"IsLiteral","IsNull":"IsNull","IsWrapper":"IsWrapper","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunctionFilterExpression()":"IgbFunctionFilterExpression()","IgbFunctionFilterExpression":"IgbFunctionFilterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","FunctionArguments":"FunctionArguments","FunctionType":"FunctionType","HasFunctionArguments":"HasFunctionArguments","IsFunction":"IsFunction","Precedence":"Precedence","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFunnelChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelChart","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelChart()":"IgbFunnelChart()","IgbFunnelChart":"IgbFunnelChart()","ActualHighlightValueDisplayMode":"ActualHighlightValueDisplayMode","ActualHighlightValueOpacity":"ActualHighlightValueOpacity","AllowSliceSelection":"AllowSliceSelection","BottomEdgeWidth":"BottomEdgeWidth","Brushes":"Brushes","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","FormatInnerLabel":"FormatInnerLabel","FormatInnerLabelScript":"FormatInnerLabelScript","FormatOuterLabel":"FormatOuterLabel","FormatOuterLabelScript":"FormatOuterLabelScript","FunnelSliceDisplay":"FunnelSliceDisplay","GetCurrentSelectedItems()":"GetCurrentSelectedItems()","GetCurrentSelectedItems":"GetCurrentSelectedItems()","GetCurrentSelectedItemsAsync()":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedItemsAsync":"GetCurrentSelectedItemsAsync()","HighlightValueDisplayMode":"HighlightValueDisplayMode","HighlightValueOpacity":"HighlightValueOpacity","HighlightedValueMemberPath":"HighlightedValueMemberPath","InnerLabelMemberPath":"InnerLabelMemberPath","InnerLabelVisibility":"InnerLabelVisibility","IsInverted":"IsInverted","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","OuterLabelAlignment":"OuterLabelAlignment","OuterLabelMemberPath":"OuterLabelMemberPath","OuterLabelTextColor":"OuterLabelTextColor","OuterLabelTextStyle":"OuterLabelTextStyle","OuterLabelVisibility":"OuterLabelVisibility","OutlineThickness":"OutlineThickness","Outlines":"Outlines","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","SelectedItems":"SelectedItems","SelectedItemsChanged":"SelectedItemsChanged","SelectedItemsChangedScript":"SelectedItemsChangedScript","SelectedSliceFill":"SelectedSliceFill","SelectedSliceOpacity":"SelectedSliceOpacity","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","SliceClicked":"SliceClicked","SliceClickedScript":"SliceClickedScript","SliceEnter":"SliceEnter","SliceEnterScript":"SliceEnterScript","SliceHover":"SliceHover","SliceHoverScript":"SliceHoverScript","SliceLeave":"SliceLeave","SliceLeaveScript":"SliceLeaveScript","TextColor":"TextColor","TextStyle":"TextStyle","ToggleSelection(int)":"ToggleSelection(int)","ToggleSelection":"ToggleSelection(int)","ToggleSelectionAsync(int)":"ToggleSelectionAsync(int)","ToggleSelectionAsync":"ToggleSelectionAsync(int)","TransitionDuration":"TransitionDuration","Type":"Type","UnselectedSliceFill":"UnselectedSliceFill","UnselectedSliceOpacity":"UnselectedSliceOpacity","UnselectedSliceStroke":"UnselectedSliceStroke","UnselectedSliceStrokeThickness":"UnselectedSliceStrokeThickness","UseBezierCurve":"UseBezierCurve","UseOuterLabelsForLegend":"UseOuterLabelsForLegend","UseUnselectedStyle":"UseUnselectedStyle","ValueMemberPath":"ValueMemberPath"}}],"IgbFunnelChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelChartCoreModule()":"IgbFunnelChartCoreModule()","IgbFunnelChartCoreModule":"IgbFunnelChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFunnelChartModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelChartModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelChartModule()":"IgbFunnelChartModule()","IgbFunnelChartModule":"IgbFunnelChartModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbFunnelChartSelectedItemsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelChartSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelChartSelectedItemsChangedEventArgs()":"IgbFunnelChartSelectedItemsChangedEventArgs()","IgbFunnelChartSelectedItemsChangedEventArgs":"IgbFunnelChartSelectedItemsChangedEventArgs()","CurrentItems":"CurrentItems","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewItems":"NewItems","OldItems":"OldItems","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFunnelChartSelectedItemsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelChartSelectedItemsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, object)":"InsertItem(int, object)","InsertItem":"InsertItem(int, object)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, object)":"SetItem(int, object)","SetItem":"SetItem(int, object)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(object)":"Add(object)","Add":"Add(object)","Clear()":"Clear()","Clear":"Clear()","CopyTo(object[], int)":"CopyTo(object[], int)","CopyTo":"CopyTo(object[], int)","Contains(object)":"Contains(object)","Contains":"Contains(object)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(object)":"IndexOf(object)","IndexOf":"IndexOf(object)","Insert(int, object)":"Insert(int, object)","Insert":"Insert(int, object)","Remove(object)":"Remove(object)","Remove":"Remove(object)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelChartSelectedItemsCollection(object, string)":"IgbFunnelChartSelectedItemsCollection(object, string)","IgbFunnelChartSelectedItemsCollection":"IgbFunnelChartSelectedItemsCollection(object, string)"}}],"IgbFunnelDataContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelDataContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelDataContext()":"IgbFunnelDataContext()","IgbFunnelDataContext":"IgbFunnelDataContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Index":"Index","Item":"Item","ItemScript":"ItemScript","Type":"Type"}}],"IgbFunnelSliceClickedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelSliceClickedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelSliceClickedEventArgs()":"IgbFunnelSliceClickedEventArgs()","IgbFunnelSliceClickedEventArgs":"IgbFunnelSliceClickedEventArgs()","Bounds":"Bounds","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","Item":"Item","ItemScript":"ItemScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFunnelSliceDataContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelSliceDataContext","k":"class","s":"classes","m":{"Item":"Item","ItemScript":"ItemScript","ActualItemBrush":"ActualItemBrush","Outline":"Outline","ItemLabel":"ItemLabel","ItemLabelScript":"ItemLabelScript","ItemBrush":"ItemBrush","Thickness":"Thickness","LegendLabel":"LegendLabel","LegendLabelScript":"LegendLabelScript","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelSliceDataContext()":"IgbFunnelSliceDataContext()","IgbFunnelSliceDataContext":"IgbFunnelSliceDataContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ItemOutline":"ItemOutline","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbFunnelSliceEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbFunnelSliceEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbFunnelSliceEventArgs()":"IgbFunnelSliceEventArgs()","IgbFunnelSliceEventArgs":"IgbFunnelSliceEventArgs()","Bounds":"Bounds","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","Item":"Item","ItemScript":"ItemScript","Position":"Position","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGenericInternalVirtualDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGenericInternalVirtualDataSource","k":"class","s":"classes","m":{"IsPlaceholderItemAsync(int)":"IsPlaceholderItemAsync(int)","IsPlaceholderItemAsync":"IsPlaceholderItemAsync(int)","IsPlaceholderItem(int)":"IsPlaceholderItem(int)","IsPlaceholderItem":"IsPlaceholderItem(int)","GetItemAtIndexAsync(int)":"GetItemAtIndexAsync(int)","GetItemAtIndexAsync":"GetItemAtIndexAsync(int)","GetItemAtIndex(int)":"GetItemAtIndex(int)","GetItemAtIndex":"GetItemAtIndex(int)","GetItemFromKeyAsync(object[])":"GetItemFromKeyAsync(object[])","GetItemFromKeyAsync":"GetItemFromKeyAsync(object[])","GetItemFromKey(object[])":"GetItemFromKey(object[])","GetItemFromKey":"GetItemFromKey(object[])","GetItemPropertyAtIndexAsync(int, string)":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndexAsync":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndex(int, string)":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndex":"GetItemPropertyAtIndex(int, string)","TransformPageAsync(int)":"TransformPageAsync(int)","TransformPageAsync":"TransformPageAsync(int)","TransformPage(int)":"TransformPage(int)","TransformPage":"TransformPage(int)","GetUnrealizedCountAsync()":"GetUnrealizedCountAsync()","GetUnrealizedCountAsync":"GetUnrealizedCountAsync()","GetUnrealizedCount()":"GetUnrealizedCount()","GetUnrealizedCount":"GetUnrealizedCount()","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","GetStickyRowPriorityAsync(int)":"GetStickyRowPriorityAsync(int)","GetStickyRowPriorityAsync":"GetStickyRowPriorityAsync(int)","GetStickyRowPriority(int)":"GetStickyRowPriority(int)","GetStickyRowPriority":"GetStickyRowPriority(int)","UnpinRowAsync(object[])":"UnpinRowAsync(object[])","UnpinRowAsync":"UnpinRowAsync(object[])","UnpinRow(object[])":"UnpinRow(object[])","UnpinRow":"UnpinRow(object[])","PinRowAsync(object[])":"PinRowAsync(object[])","PinRowAsync":"PinRowAsync(object[])","PinRow(object[])":"PinRow(object[])","PinRow":"PinRow(object[])","IsRowPinnedAsync(int)":"IsRowPinnedAsync(int)","IsRowPinnedAsync":"IsRowPinnedAsync(int)","IsRowPinned(int)":"IsRowPinned(int)","IsRowPinned":"IsRowPinned(int)","IsExclusivelyStickyAsync(int)":"IsExclusivelyStickyAsync(int)","IsExclusivelyStickyAsync":"IsExclusivelyStickyAsync(int)","IsExclusivelySticky(int)":"IsExclusivelySticky(int)","IsExclusivelySticky":"IsExclusivelySticky(int)","GetRowTypeAsync(int)":"GetRowTypeAsync(int)","GetRowTypeAsync":"GetRowTypeAsync(int)","GetRowType(int)":"GetRowType(int)","GetRowType":"GetRowType(int)","GetIsRowExpandedAtIndexAsync(int)":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndexAsync":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndex(int)":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndex":"GetIsRowExpandedAtIndex(int)","SetIsRowExpandedAtIndexAsync(int, bool)":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndexAsync":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndex(int, bool)":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndex":"SetIsRowExpandedAtIndex(int, bool)","GetRowLevelAsync(int)":"GetRowLevelAsync(int)","GetRowLevelAsync":"GetRowLevelAsync(int)","GetRowLevel(int)":"GetRowLevel(int)","GetRowLevel":"GetRowLevel(int)","GetRootSummaryRowCountAsync()":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCountAsync":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCount()":"GetRootSummaryRowCount()","GetRootSummaryRowCount":"GetRootSummaryRowCount()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","ClonePropertiesAsync(DataSource)":"ClonePropertiesAsync(DataSource)","ClonePropertiesAsync":"ClonePropertiesAsync(DataSource)","CloneProperties(DataSource)":"CloneProperties(DataSource)","CloneProperties":"CloneProperties(DataSource)","UpdatePropertyAtKeyAsync(object[], string, object, bool)":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKey(object[], string, object, bool)":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object, bool)","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","IsSectionCollapsable":"IsSectionCollapsable","IsSectionExpandedDefault":"IsSectionExpandedDefault","PageSizeRequested":"PageSizeRequested","MaxCachedPages":"MaxCachedPages","ActualPageSize":"ActualPageSize","ConcurrencyTag":"ConcurrencyTag","IsBatchingEnabled":"IsBatchingEnabled","AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","AcceptPendingTransactionAsync(int)":"AcceptPendingTransactionAsync(int)","AcceptPendingTransactionAsync":"AcceptPendingTransactionAsync(int)","AcceptPendingTransaction(int)":"AcceptPendingTransaction(int)","AcceptPendingTransaction":"AcceptPendingTransaction(int)","RejectPendingTransactionAsync(int)":"RejectPendingTransactionAsync(int)","RejectPendingTransactionAsync":"RejectPendingTransactionAsync(int)","RejectPendingTransaction(int)":"RejectPendingTransaction(int)","RejectPendingTransaction":"RejectPendingTransaction(int)","CommitEditsAsync(bool)":"CommitEditsAsync(bool)","CommitEditsAsync":"CommitEditsAsync(bool)","CommitEdits(bool)":"CommitEdits(bool)","CommitEdits":"CommitEdits(bool)","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","AcceptPendingCommitAsync(int)":"AcceptPendingCommitAsync(int)","AcceptPendingCommitAsync":"AcceptPendingCommitAsync(int)","AcceptPendingCommit(int)":"AcceptPendingCommit(int)","AcceptPendingCommit":"AcceptPendingCommit(int)","RejectPendingCommitAsync(int)":"RejectPendingCommitAsync(int)","RejectPendingCommitAsync":"RejectPendingCommitAsync(int)","RejectPendingCommit(int)":"RejectPendingCommit(int)","RejectPendingCommit":"RejectPendingCommit(int)","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","Undo()":"Undo()","Undo":"Undo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","Redo()":"Redo()","Redo":"Redo()","HasEditAsync(object[], string)":"HasEditAsync(object[], string)","HasEditAsync":"HasEditAsync(object[], string)","HasEdit(object[], string)":"HasEdit(object[], string)","HasEdit":"HasEdit(object[], string)","HasDeleteAsync(object[])":"HasDeleteAsync(object[])","HasDeleteAsync":"HasDeleteAsync(object[])","HasDelete(object[])":"HasDelete(object[])","HasDelete":"HasDelete(object[])","HasAddAsync(object)":"HasAddAsync(object)","HasAddAsync":"HasAddAsync(object)","HasAdd(object)":"HasAdd(object)","HasAdd":"HasAdd(object)","GetAggregatedChangesAsync(int)":"GetAggregatedChangesAsync(int)","GetAggregatedChangesAsync":"GetAggregatedChangesAsync(int)","GetAggregatedChanges(int)":"GetAggregatedChanges(int)","GetAggregatedChanges":"GetAggregatedChanges(int)","IsPendingTransactionAsync(int)":"IsPendingTransactionAsync(int)","IsPendingTransactionAsync":"IsPendingTransactionAsync(int)","IsPendingTransaction(int)":"IsPendingTransaction(int)","IsPendingTransaction":"IsPendingTransaction(int)","IsPendingCommitAsync(int)":"IsPendingCommitAsync(int)","IsPendingCommitAsync":"IsPendingCommitAsync(int)","IsPendingCommit(int)":"IsPendingCommit(int)","IsPendingCommit":"IsPendingCommit(int)","SetTransactionErrorAsync(int, string)":"SetTransactionErrorAsync(int, string)","SetTransactionErrorAsync":"SetTransactionErrorAsync(int, string)","SetTransactionError(int, string)":"SetTransactionError(int, string)","SetTransactionError":"SetTransactionError(int, string)","GetTransactionErrorByKeyAsync(object[], string)":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKeyAsync":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKey(object[], string)":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKey":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByIDAsync(int)":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByIDAsync":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByID(int)":"GetTransactionErrorByID(int)","GetTransactionErrorByID":"GetTransactionErrorByID(int)","GetTransactionIDAsync(object[], string)":"GetTransactionIDAsync(object[], string)","GetTransactionIDAsync":"GetTransactionIDAsync(object[], string)","GetTransactionID(object[], string)":"GetTransactionID(object[], string)","GetTransactionID":"GetTransactionID(object[], string)","GetItemPropertyAsync(object, string)":"GetItemPropertyAsync(object, string)","GetItemPropertyAsync":"GetItemPropertyAsync(object, string)","GetItemProperty(object, string)":"GetItemProperty(object, string)","GetItemProperty":"GetItemProperty(object, string)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","GetMainValuePathAsync(DataSourceRowType)":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePathAsync":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePath(DataSourceRowType)":"GetMainValuePath(DataSourceRowType)","GetMainValuePath":"GetMainValuePath(DataSourceRowType)","IsRowSpanningAsync(DataSourceRowType)":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanningAsync":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanning(DataSourceRowType)":"IsRowSpanning(DataSourceRowType)","IsRowSpanning":"IsRowSpanning(DataSourceRowType)","ClearPinnedRowsAsync()":"ClearPinnedRowsAsync()","ClearPinnedRowsAsync":"ClearPinnedRowsAsync()","ClearPinnedRows()":"ClearPinnedRows()","ClearPinnedRows":"ClearPinnedRows()","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","GetRowCountAsync()":"GetRowCountAsync()","GetRowCountAsync":"GetRowCountAsync()","GetRowCount()":"GetRowCount()","GetRowCount":"GetRowCount()","IsReadOnly":"IsReadOnly","ActualCount":"ActualCount","FirstVisibleIndexRequested":"FirstVisibleIndexRequested","LastVisibleIndexRequested":"LastVisibleIndexRequested","DeferAutoRefresh":"DeferAutoRefresh","PrimaryKey":"PrimaryKey","PropertiesRequested":"PropertiesRequested","SchemaIncludedProperties":"SchemaIncludedProperties","SectionHeaderDisplayMode":"SectionHeaderDisplayMode","IncludeSummaryRowsInSection":"IncludeSummaryRowsInSection","IsSectionSummaryRowsAtBottom":"IsSectionSummaryRowsAtBottom","IsSectionHeaderNormalRow":"IsSectionHeaderNormalRow","IsSectionContentVisible":"IsSectionContentVisible","ShouldEmitSectionHeaders":"ShouldEmitSectionHeaders","ShouldEmitSectionFooters":"ShouldEmitSectionFooters","ShouldEmitShiftedRows":"ShouldEmitShiftedRows","ShouldEmitSummaryRows":"ShouldEmitSummaryRows","SchemaChangedScript":"SchemaChangedScript","SchemaChanged":"SchemaChanged","RowExpansionChangedScript":"RowExpansionChangedScript","RowExpansionChanged":"RowExpansionChanged","RootSummariesChangedScript":"RootSummariesChangedScript","RootSummariesChanged":"RootSummariesChanged","PropertiesRequestedChangedScript":"PropertiesRequestedChangedScript","PropertiesRequestedChanged":"PropertiesRequestedChanged","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGenericInternalVirtualDataSource()":"IgbGenericInternalVirtualDataSource()","IgbGenericInternalVirtualDataSource":"IgbGenericInternalVirtualDataSource()","AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)":"AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)","AddSchemaProperty":"AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)","AddSchemaPropertyAsync(string, GenericDataSourceSchemaPropertyType)":"AddSchemaPropertyAsync(string, GenericDataSourceSchemaPropertyType)","AddSchemaPropertyAsync":"AddSchemaPropertyAsync(string, GenericDataSourceSchemaPropertyType)","AddSummaryDate(string, DataSourceSummaryOperand, DateTime)":"AddSummaryDate(string, DataSourceSummaryOperand, DateTime)","AddSummaryDate":"AddSummaryDate(string, DataSourceSummaryOperand, DateTime)","AddSummaryDateAsync(string, DataSourceSummaryOperand, DateTime)":"AddSummaryDateAsync(string, DataSourceSummaryOperand, DateTime)","AddSummaryDateAsync":"AddSummaryDateAsync(string, DataSourceSummaryOperand, DateTime)","AddSummaryDouble(string, DataSourceSummaryOperand, double)":"AddSummaryDouble(string, DataSourceSummaryOperand, double)","AddSummaryDouble":"AddSummaryDouble(string, DataSourceSummaryOperand, double)","AddSummaryDoubleAsync(string, DataSourceSummaryOperand, double)":"AddSummaryDoubleAsync(string, DataSourceSummaryOperand, double)","AddSummaryDoubleAsync":"AddSummaryDoubleAsync(string, DataSourceSummaryOperand, double)","AddSummaryInt(string, DataSourceSummaryOperand, int)":"AddSummaryInt(string, DataSourceSummaryOperand, int)","AddSummaryInt":"AddSummaryInt(string, DataSourceSummaryOperand, int)","AddSummaryIntAsync(string, DataSourceSummaryOperand, int)":"AddSummaryIntAsync(string, DataSourceSummaryOperand, int)","AddSummaryIntAsync":"AddSummaryIntAsync(string, DataSourceSummaryOperand, int)","AddSummaryString(string, DataSourceSummaryOperand, string)":"AddSummaryString(string, DataSourceSummaryOperand, string)","AddSummaryString":"AddSummaryString(string, DataSourceSummaryOperand, string)","AddSummaryStringAsync(string, DataSourceSummaryOperand, string)":"AddSummaryStringAsync(string, DataSourceSummaryOperand, string)","AddSummaryStringAsync":"AddSummaryStringAsync(string, DataSourceSummaryOperand, string)","Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","FillColumnBool(string, bool[])":"FillColumnBool(string, bool[])","FillColumnBool":"FillColumnBool(string, bool[])","FillColumnBoolAsync(string, bool[])":"FillColumnBoolAsync(string, bool[])","FillColumnBoolAsync":"FillColumnBoolAsync(string, bool[])","FillColumnDate(string, DateTime[])":"FillColumnDate(string, DateTime[])","FillColumnDate":"FillColumnDate(string, DateTime[])","FillColumnDateAsync(string, DateTime[])":"FillColumnDateAsync(string, DateTime[])","FillColumnDateAsync":"FillColumnDateAsync(string, DateTime[])","FillColumnDouble(string, double[])":"FillColumnDouble(string, double[])","FillColumnDouble":"FillColumnDouble(string, double[])","FillColumnDoubleAsync(string, double[])":"FillColumnDoubleAsync(string, double[])","FillColumnDoubleAsync":"FillColumnDoubleAsync(string, double[])","FillColumnInt(string, int[])":"FillColumnInt(string, int[])","FillColumnInt":"FillColumnInt(string, int[])","FillColumnIntAsync(string, int[])":"FillColumnIntAsync(string, int[])","FillColumnIntAsync":"FillColumnIntAsync(string, int[])","FillColumnString(string, string[])":"FillColumnString(string, string[])","FillColumnString":"FillColumnString(string, string[])","FillColumnStringAsync(string, string[])":"FillColumnStringAsync(string, string[])","FillColumnStringAsync":"FillColumnStringAsync(string, string[])","FillCount(int)":"FillCount(int)","FillCount":"FillCount(int)","FillCountAsync(int)":"FillCountAsync(int)","FillCountAsync":"FillCountAsync(int)","FillGroupEnd()":"FillGroupEnd()","FillGroupEnd":"FillGroupEnd()","FillGroupEndAsync()":"FillGroupEndAsync()","FillGroupEndAsync":"FillGroupEndAsync()","FillGroupStart(int, int)":"FillGroupStart(int, int)","FillGroupStart":"FillGroupStart(int, int)","FillGroupStartAsync(int, int)":"FillGroupStartAsync(int, int)","FillGroupStartAsync":"FillGroupStartAsync(int, int)","FillGroupValueDate(string, DateTime)":"FillGroupValueDate(string, DateTime)","FillGroupValueDate":"FillGroupValueDate(string, DateTime)","FillGroupValueDateAsync(string, DateTime)":"FillGroupValueDateAsync(string, DateTime)","FillGroupValueDateAsync":"FillGroupValueDateAsync(string, DateTime)","FillGroupValueDouble(string, double)":"FillGroupValueDouble(string, double)","FillGroupValueDouble":"FillGroupValueDouble(string, double)","FillGroupValueDoubleAsync(string, double)":"FillGroupValueDoubleAsync(string, double)","FillGroupValueDoubleAsync":"FillGroupValueDoubleAsync(string, double)","FillGroupValueInt(string, int)":"FillGroupValueInt(string, int)","FillGroupValueInt":"FillGroupValueInt(string, int)","FillGroupValueIntAsync(string, int)":"FillGroupValueIntAsync(string, int)","FillGroupValueIntAsync":"FillGroupValueIntAsync(string, int)","FillGroupValueString(string, string)":"FillGroupValueString(string, string)","FillGroupValueString":"FillGroupValueString(string, string)","FillGroupValueStringAsync(string, string)":"FillGroupValueStringAsync(string, string)","FillGroupValueStringAsync":"FillGroupValueStringAsync(string, string)","FillPageEnd()":"FillPageEnd()","FillPageEnd":"FillPageEnd()","FillPageEndAsync()":"FillPageEndAsync()","FillPageEndAsync":"FillPageEndAsync()","FillPageStart(int)":"FillPageStart(int)","FillPageStart":"FillPageStart(int)","FillPageStartAsync(int)":"FillPageStartAsync(int)","FillPageStartAsync":"FillPageStartAsync(int)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsAggregationSupported":"IsAggregationSupported","IsClone":"IsClone","PageRequested":"PageRequested","PageRequestedScript":"PageRequestedScript","Type":"Type"}}],"IgbGenericVirtualDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGenericVirtualDataSource","k":"class","s":"classes","m":{"GetCurrentSortDescriptionsAsync()":"GetCurrentSortDescriptionsAsync()","GetCurrentSortDescriptionsAsync":"GetCurrentSortDescriptionsAsync()","GetCurrentSortDescriptions()":"GetCurrentSortDescriptions()","GetCurrentSortDescriptions":"GetCurrentSortDescriptions()","GetCurrentGroupDescriptionsAsync()":"GetCurrentGroupDescriptionsAsync()","GetCurrentGroupDescriptionsAsync":"GetCurrentGroupDescriptionsAsync()","GetCurrentGroupDescriptions()":"GetCurrentGroupDescriptions()","GetCurrentGroupDescriptions":"GetCurrentGroupDescriptions()","GetCurrentSummaryDescriptionsAsync()":"GetCurrentSummaryDescriptionsAsync()","GetCurrentSummaryDescriptionsAsync":"GetCurrentSummaryDescriptionsAsync()","GetCurrentSummaryDescriptions()":"GetCurrentSummaryDescriptions()","GetCurrentSummaryDescriptions":"GetCurrentSummaryDescriptions()","GetCurrentFilterExpressionsAsync()":"GetCurrentFilterExpressionsAsync()","GetCurrentFilterExpressionsAsync":"GetCurrentFilterExpressionsAsync()","GetCurrentFilterExpressions()":"GetCurrentFilterExpressions()","GetCurrentFilterExpressions":"GetCurrentFilterExpressions()","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","SortDescriptions":"SortDescriptions","GroupDescriptions":"GroupDescriptions","SummaryDescriptions":"SummaryDescriptions","FilterExpressions":"FilterExpressions","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGenericVirtualDataSource()":"IgbGenericVirtualDataSource()","IgbGenericVirtualDataSource":"IgbGenericVirtualDataSource()","AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)":"AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)","AddSchemaProperty":"AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)","AddSchemaPropertyAsync(string, GenericDataSourceSchemaPropertyType)":"AddSchemaPropertyAsync(string, GenericDataSourceSchemaPropertyType)","AddSchemaPropertyAsync":"AddSchemaPropertyAsync(string, GenericDataSourceSchemaPropertyType)","AddSummaryDate(string, DataSourceSummaryOperand, DateTime)":"AddSummaryDate(string, DataSourceSummaryOperand, DateTime)","AddSummaryDate":"AddSummaryDate(string, DataSourceSummaryOperand, DateTime)","AddSummaryDateAsync(string, DataSourceSummaryOperand, DateTime)":"AddSummaryDateAsync(string, DataSourceSummaryOperand, DateTime)","AddSummaryDateAsync":"AddSummaryDateAsync(string, DataSourceSummaryOperand, DateTime)","AddSummaryDouble(string, DataSourceSummaryOperand, double)":"AddSummaryDouble(string, DataSourceSummaryOperand, double)","AddSummaryDouble":"AddSummaryDouble(string, DataSourceSummaryOperand, double)","AddSummaryDoubleAsync(string, DataSourceSummaryOperand, double)":"AddSummaryDoubleAsync(string, DataSourceSummaryOperand, double)","AddSummaryDoubleAsync":"AddSummaryDoubleAsync(string, DataSourceSummaryOperand, double)","AddSummaryInt(string, DataSourceSummaryOperand, int)":"AddSummaryInt(string, DataSourceSummaryOperand, int)","AddSummaryInt":"AddSummaryInt(string, DataSourceSummaryOperand, int)","AddSummaryIntAsync(string, DataSourceSummaryOperand, int)":"AddSummaryIntAsync(string, DataSourceSummaryOperand, int)","AddSummaryIntAsync":"AddSummaryIntAsync(string, DataSourceSummaryOperand, int)","AddSummaryString(string, DataSourceSummaryOperand, string)":"AddSummaryString(string, DataSourceSummaryOperand, string)","AddSummaryString":"AddSummaryString(string, DataSourceSummaryOperand, string)","AddSummaryStringAsync(string, DataSourceSummaryOperand, string)":"AddSummaryStringAsync(string, DataSourceSummaryOperand, string)","AddSummaryStringAsync":"AddSummaryStringAsync(string, DataSourceSummaryOperand, string)","FillColumnBool(string, bool[])":"FillColumnBool(string, bool[])","FillColumnBool":"FillColumnBool(string, bool[])","FillColumnBoolAsync(string, bool[])":"FillColumnBoolAsync(string, bool[])","FillColumnBoolAsync":"FillColumnBoolAsync(string, bool[])","FillColumnDate(string, DateTime[])":"FillColumnDate(string, DateTime[])","FillColumnDate":"FillColumnDate(string, DateTime[])","FillColumnDateAsync(string, DateTime[])":"FillColumnDateAsync(string, DateTime[])","FillColumnDateAsync":"FillColumnDateAsync(string, DateTime[])","FillColumnDouble(string, double[])":"FillColumnDouble(string, double[])","FillColumnDouble":"FillColumnDouble(string, double[])","FillColumnDoubleAsync(string, double[])":"FillColumnDoubleAsync(string, double[])","FillColumnDoubleAsync":"FillColumnDoubleAsync(string, double[])","FillColumnInt(string, int[])":"FillColumnInt(string, int[])","FillColumnInt":"FillColumnInt(string, int[])","FillColumnIntAsync(string, int[])":"FillColumnIntAsync(string, int[])","FillColumnIntAsync":"FillColumnIntAsync(string, int[])","FillColumnString(string, string[])":"FillColumnString(string, string[])","FillColumnString":"FillColumnString(string, string[])","FillColumnStringAsync(string, string[])":"FillColumnStringAsync(string, string[])","FillColumnStringAsync":"FillColumnStringAsync(string, string[])","FillCount(int)":"FillCount(int)","FillCount":"FillCount(int)","FillCountAsync(int)":"FillCountAsync(int)","FillCountAsync":"FillCountAsync(int)","FillGroupEnd()":"FillGroupEnd()","FillGroupEnd":"FillGroupEnd()","FillGroupEndAsync()":"FillGroupEndAsync()","FillGroupEndAsync":"FillGroupEndAsync()","FillGroupStart(int, int)":"FillGroupStart(int, int)","FillGroupStart":"FillGroupStart(int, int)","FillGroupStartAsync(int, int)":"FillGroupStartAsync(int, int)","FillGroupStartAsync":"FillGroupStartAsync(int, int)","FillGroupValueDate(string, DateTime)":"FillGroupValueDate(string, DateTime)","FillGroupValueDate":"FillGroupValueDate(string, DateTime)","FillGroupValueDateAsync(string, DateTime)":"FillGroupValueDateAsync(string, DateTime)","FillGroupValueDateAsync":"FillGroupValueDateAsync(string, DateTime)","FillGroupValueDouble(string, double)":"FillGroupValueDouble(string, double)","FillGroupValueDouble":"FillGroupValueDouble(string, double)","FillGroupValueDoubleAsync(string, double)":"FillGroupValueDoubleAsync(string, double)","FillGroupValueDoubleAsync":"FillGroupValueDoubleAsync(string, double)","FillGroupValueInt(string, int)":"FillGroupValueInt(string, int)","FillGroupValueInt":"FillGroupValueInt(string, int)","FillGroupValueIntAsync(string, int)":"FillGroupValueIntAsync(string, int)","FillGroupValueIntAsync":"FillGroupValueIntAsync(string, int)","FillGroupValueString(string, string)":"FillGroupValueString(string, string)","FillGroupValueString":"FillGroupValueString(string, string)","FillGroupValueStringAsync(string, string)":"FillGroupValueStringAsync(string, string)","FillGroupValueStringAsync":"FillGroupValueStringAsync(string, string)","FillPageEnd()":"FillPageEnd()","FillPageEnd":"FillPageEnd()","FillPageEndAsync()":"FillPageEndAsync()","FillPageEndAsync":"FillPageEndAsync()","FillPageStart(int)":"FillPageStart(int)","FillPageStart":"FillPageStart(int)","FillPageStartAsync(int)":"FillPageStartAsync(int)","FillPageStartAsync":"FillPageStartAsync(int)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PageRequested":"PageRequested","PageRequestedScript":"PageRequestedScript","Type":"Type"}}],"IgbGenericVirtualDataSourceModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGenericVirtualDataSourceModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGenericVirtualDataSourceModule()":"IgbGenericVirtualDataSourceModule()","IgbGenericVirtualDataSourceModule":"IgbGenericVirtualDataSourceModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicContourLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicContourLineSeries","k":"class","s":"classes","m":{"LongitudeMemberPath":"LongitudeMemberPath","LatitudeMemberPath":"LatitudeMemberPath","TrianglesSource":"TrianglesSource","TrianglesSourceScript":"TrianglesSourceScript","TriangleVertexMemberPath1":"TriangleVertexMemberPath1","TriangleVertexMemberPath2":"TriangleVertexMemberPath2","TriangleVertexMemberPath3":"TriangleVertexMemberPath3","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicContourLineSeries()":"IgbGeographicContourLineSeries()","IgbGeographicContourLineSeries":"IgbGeographicContourLineSeries()","ActualFillScale":"ActualFillScale","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FillScale":"FillScale","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TriangulationStatusChanged":"TriangulationStatusChanged","TriangulationStatusChangedScript":"TriangulationStatusChangedScript","Type":"Type","ValueMemberPath":"ValueMemberPath","ValueResolver":"ValueResolver"}}],"IgbGeographicContourLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicContourLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicContourLineSeriesModule()":"IgbGeographicContourLineSeriesModule()","IgbGeographicContourLineSeriesModule":"IgbGeographicContourLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicHighDensityScatterSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicHighDensityScatterSeries","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicHighDensityScatterSeries()":"IgbGeographicHighDensityScatterSeries()","IgbGeographicHighDensityScatterSeries":"IgbGeographicHighDensityScatterSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HeatMaximum":"HeatMaximum","HeatMaximumColor":"HeatMaximumColor","HeatMinimum":"HeatMinimum","HeatMinimumColor":"HeatMinimumColor","LatitudeMemberPath":"LatitudeMemberPath","LongitudeMemberPath":"LongitudeMemberPath","PointExtent":"PointExtent","ProgressiveLoad":"ProgressiveLoad","ProgressiveLoadStatusChanged":"ProgressiveLoadStatusChanged","ProgressiveLoadStatusChangedScript":"ProgressiveLoadStatusChangedScript","ProgressiveStatus":"ProgressiveStatus","Type":"Type","UseBruteForce":"UseBruteForce"}}],"IgbGeographicHighDensityScatterSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicHighDensityScatterSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicHighDensityScatterSeriesModule()":"IgbGeographicHighDensityScatterSeriesModule()","IgbGeographicHighDensityScatterSeriesModule":"IgbGeographicHighDensityScatterSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicMap":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMap","k":"class","s":"classes","m":{"GetAllAxes()":"GetAllAxes()","GetAllAxes":"GetAllAxes()","GetAllSeries()":"GetAllSeries()","GetAllSeries":"GetAllSeries()","GetCurrentViewportRectAsync()":"GetCurrentViewportRectAsync()","GetCurrentViewportRectAsync":"GetCurrentViewportRectAsync()","GetCurrentViewportRect()":"GetCurrentViewportRect()","GetCurrentViewportRect":"GetCurrentViewportRect()","GetCurrentWindowRectAsync()":"GetCurrentWindowRectAsync()","GetCurrentWindowRectAsync":"GetCurrentWindowRectAsync()","GetCurrentWindowRect()":"GetCurrentWindowRect()","GetCurrentWindowRect":"GetCurrentWindowRect()","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","GetCurrentActualWindowRectAsync()":"GetCurrentActualWindowRectAsync()","GetCurrentActualWindowRectAsync":"GetCurrentActualWindowRectAsync()","GetCurrentActualWindowRect()":"GetCurrentActualWindowRect()","GetCurrentActualWindowRect":"GetCurrentActualWindowRect()","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","GetAnimationIdleVersionNumberAsync()":"GetAnimationIdleVersionNumberAsync()","GetAnimationIdleVersionNumberAsync":"GetAnimationIdleVersionNumberAsync()","GetAnimationIdleVersionNumber()":"GetAnimationIdleVersionNumber()","GetAnimationIdleVersionNumber":"GetAnimationIdleVersionNumber()","IsAnimationActiveAsync()":"IsAnimationActiveAsync()","IsAnimationActiveAsync":"IsAnimationActiveAsync()","IsAnimationActive()":"IsAnimationActive()","IsAnimationActive":"IsAnimationActive()","StartTiledZoomingIfNecessaryAsync()":"StartTiledZoomingIfNecessaryAsync()","StartTiledZoomingIfNecessaryAsync":"StartTiledZoomingIfNecessaryAsync()","StartTiledZoomingIfNecessary()":"StartTiledZoomingIfNecessary()","StartTiledZoomingIfNecessary":"StartTiledZoomingIfNecessary()","EndTiledZoomingIfRunningAsync()":"EndTiledZoomingIfRunningAsync()","EndTiledZoomingIfRunningAsync":"EndTiledZoomingIfRunningAsync()","EndTiledZoomingIfRunning()":"EndTiledZoomingIfRunning()","EndTiledZoomingIfRunning":"EndTiledZoomingIfRunning()","ClearTileZoomCacheAsync()":"ClearTileZoomCacheAsync()","ClearTileZoomCacheAsync":"ClearTileZoomCacheAsync()","ClearTileZoomCache()":"ClearTileZoomCache()","ClearTileZoomCache":"ClearTileZoomCache()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","CancelManipulationAsync()":"CancelManipulationAsync()","CancelManipulationAsync":"CancelManipulationAsync()","CancelManipulation()":"CancelManipulation()","CancelManipulation":"CancelManipulation()","NotifyContainerResizedAsync()":"NotifyContainerResizedAsync()","NotifyContainerResizedAsync":"NotifyContainerResizedAsync()","NotifyContainerResized()":"NotifyContainerResized()","NotifyContainerResized":"NotifyContainerResized()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","RenderToImageAsync(double, double)":"RenderToImageAsync(double, double)","RenderToImageAsync":"RenderToImageAsync(double, double)","RenderToImage(double, double)":"RenderToImage(double, double)","RenderToImage":"RenderToImage(double, double)","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","CaptureImageAsync(IgbCaptureImageSettings)":"CaptureImageAsync(IgbCaptureImageSettings)","CaptureImageAsync":"CaptureImageAsync(IgbCaptureImageSettings)","CaptureImage(IgbCaptureImageSettings)":"CaptureImage(IgbCaptureImageSettings)","CaptureImage":"CaptureImage(IgbCaptureImageSettings)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","CancelCreatingAnnotationAsync()":"CancelCreatingAnnotationAsync()","CancelCreatingAnnotationAsync":"CancelCreatingAnnotationAsync()","CancelCreatingAnnotation()":"CancelCreatingAnnotation()","CancelCreatingAnnotation":"CancelCreatingAnnotation()","CancelDeletingAnnotationAsync()":"CancelDeletingAnnotationAsync()","CancelDeletingAnnotationAsync":"CancelDeletingAnnotationAsync()","CancelDeletingAnnotation()":"CancelDeletingAnnotation()","CancelDeletingAnnotation":"CancelDeletingAnnotation()","FinishCreatingAnnotationAsync()":"FinishCreatingAnnotationAsync()","FinishCreatingAnnotationAsync":"FinishCreatingAnnotationAsync()","FinishCreatingAnnotation()":"FinishCreatingAnnotation()","FinishCreatingAnnotation":"FinishCreatingAnnotation()","FinishDeletingAnnotationAsync()":"FinishDeletingAnnotationAsync()","FinishDeletingAnnotationAsync":"FinishDeletingAnnotationAsync()","FinishDeletingAnnotation()":"FinishDeletingAnnotation()","FinishDeletingAnnotation":"FinishDeletingAnnotation()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","DefaultEventBehavior":"DefaultEventBehavior","Series":"Series","FullSeries":"FullSeries","Brushes":"Brushes","Outlines":"Outlines","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","CrosshairPoint":"CrosshairPoint","Legend":"Legend","LegendScript":"LegendScript","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","IsWindowSyncedToVisibleRange":"IsWindowSyncedToVisibleRange","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightingMode":"HighlightingMode","HighlightingFadeOpacity":"HighlightingFadeOpacity","SelectionMode":"SelectionMode","SelectionBehavior":"SelectionBehavior","FocusMode":"FocusMode","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","HighlightingBehavior":"HighlightingBehavior","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","FireMouseLeaveOnManipulationStart":"FireMouseLeaveOnManipulationStart","ViewportRect":"ViewportRect","EffectiveViewport":"EffectiveViewport","WindowRect":"WindowRect","UseTiledZooming":"UseTiledZooming","PreferHigherResolutionTiles":"PreferHigherResolutionTiles","ZoomTileCacheSize":"ZoomTileCacheSize","HighlightingTransitionDuration":"HighlightingTransitionDuration","ResizeIdleMilliseconds":"ResizeIdleMilliseconds","SelectionTransitionDuration":"SelectionTransitionDuration","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","FocusTransitionDuration":"FocusTransitionDuration","ScrollbarsAnimationDuration":"ScrollbarsAnimationDuration","IsPagePanningAllowed":"IsPagePanningAllowed","ContentHitTestMode":"ContentHitTestMode","ActualContentHitTestMode":"ActualContentHitTestMode","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","WindowResponse":"WindowResponse","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","ActualWindowRectMinWidth":"ActualWindowRectMinWidth","ActualWindowRectMinHeight":"ActualWindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","SyncChannel":"SyncChannel","CrosshairVisibility":"CrosshairVisibility","HorizontalCrosshairBrush":"HorizontalCrosshairBrush","VerticalCrosshairBrush":"VerticalCrosshairBrush","ZoomCoercionMode":"ZoomCoercionMode","PlotAreaBackground":"PlotAreaBackground","ShouldMatchZOrderToSeriesOrder":"ShouldMatchZOrderToSeriesOrder","DefaultInteraction":"DefaultInteraction","InteractionOverride":"InteractionOverride","RightButtonDefaultInteraction":"RightButtonDefaultInteraction","DragModifier":"DragModifier","PanModifier":"PanModifier","SelectionModifier":"SelectionModifier","PreviewRect":"PreviewRect","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","WindowPositionHorizontal":"WindowPositionHorizontal","WindowPositionVertical":"WindowPositionVertical","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ChartTitle":"ChartTitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","SubtitleHorizontalAlignment":"SubtitleHorizontalAlignment","TitleTextStyle":"TitleTextStyle","SubtitleTextStyle":"SubtitleTextStyle","TitleTextColor":"TitleTextColor","SubtitleTextColor":"SubtitleTextColor","TitleTopMargin":"TitleTopMargin","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","Subtitle":"Subtitle","TopMargin":"TopMargin","LeftMargin":"LeftMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","AutoMarginWidth":"AutoMarginWidth","AutoMarginHeight":"AutoMarginHeight","IsAntiAliasingEnabledDuringInteraction":"IsAntiAliasingEnabledDuringInteraction","PixelScalingRatio":"PixelScalingRatio","InteractionPixelScalingRatio":"InteractionPixelScalingRatio","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualInteractionPixelScalingRatio":"ActualInteractionPixelScalingRatio","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","ActualWindowRect":"ActualWindowRect","ActualWindowPositionHorizontal":"ActualWindowPositionHorizontal","ActualWindowPositionVertical":"ActualWindowPositionVertical","PreviewPathStroke":"PreviewPathStroke","PreviewPathFill":"PreviewPathFill","PreviewPathOpacity":"PreviewPathOpacity","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","PlotAreaMouseLeftButtonDownScript":"PlotAreaMouseLeftButtonDownScript","PlotAreaMouseLeftButtonDown":"PlotAreaMouseLeftButtonDown","PlotAreaMouseLeftButtonUpScript":"PlotAreaMouseLeftButtonUpScript","PlotAreaMouseLeftButtonUp":"PlotAreaMouseLeftButtonUp","PlotAreaClickedScript":"PlotAreaClickedScript","PlotAreaClicked":"PlotAreaClicked","PlotAreaMouseEnterScript":"PlotAreaMouseEnterScript","PlotAreaMouseEnter":"PlotAreaMouseEnter","PlotAreaMouseLeaveScript":"PlotAreaMouseLeaveScript","PlotAreaMouseLeave":"PlotAreaMouseLeave","PlotAreaMouseOverScript":"PlotAreaMouseOverScript","PlotAreaMouseOver":"PlotAreaMouseOver","AxisLabelMouseDownScript":"AxisLabelMouseDownScript","AxisLabelMouseDown":"AxisLabelMouseDown","AxisLabelMouseUpScript":"AxisLabelMouseUpScript","AxisLabelMouseUp":"AxisLabelMouseUp","AxisLabelMouseEnterScript":"AxisLabelMouseEnterScript","AxisLabelMouseEnter":"AxisLabelMouseEnter","AxisLabelMouseLeaveScript":"AxisLabelMouseLeaveScript","AxisLabelMouseLeave":"AxisLabelMouseLeave","AxisLabelMouseOverScript":"AxisLabelMouseOverScript","AxisLabelMouseOver":"AxisLabelMouseOver","AxisLabelMouseClickScript":"AxisLabelMouseClickScript","AxisLabelMouseClick":"AxisLabelMouseClick","AxisPanelMouseDownScript":"AxisPanelMouseDownScript","AxisPanelMouseDown":"AxisPanelMouseDown","AxisPanelMouseUpScript":"AxisPanelMouseUpScript","AxisPanelMouseUp":"AxisPanelMouseUp","AxisPanelMouseEnterScript":"AxisPanelMouseEnterScript","AxisPanelMouseEnter":"AxisPanelMouseEnter","AxisPanelMouseLeaveScript":"AxisPanelMouseLeaveScript","AxisPanelMouseLeave":"AxisPanelMouseLeave","AxisPanelMouseOverScript":"AxisPanelMouseOverScript","AxisPanelMouseOver":"AxisPanelMouseOver","AxisPanelMouseClickScript":"AxisPanelMouseClickScript","AxisPanelMouseClick":"AxisPanelMouseClick","SeriesCursorMouseMoveScript":"SeriesCursorMouseMoveScript","SeriesCursorMouseMove":"SeriesCursorMouseMove","SeriesMouseLeftButtonDownScript":"SeriesMouseLeftButtonDownScript","SeriesMouseLeftButtonDown":"SeriesMouseLeftButtonDown","SeriesMouseLeftButtonUpScript":"SeriesMouseLeftButtonUpScript","SeriesMouseLeftButtonUp":"SeriesMouseLeftButtonUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","SeriesMouseMoveScript":"SeriesMouseMoveScript","SeriesMouseMove":"SeriesMouseMove","SeriesMouseEnterScript":"SeriesMouseEnterScript","SeriesMouseEnter":"SeriesMouseEnter","SeriesMouseLeaveScript":"SeriesMouseLeaveScript","SeriesMouseLeave":"SeriesMouseLeave","ResizeIdleScript":"ResizeIdleScript","ResizeIdle":"ResizeIdle","ViewerManipulationStartingScript":"ViewerManipulationStartingScript","ViewerManipulationStarting":"ViewerManipulationStarting","ViewerManipulationEndingScript":"ViewerManipulationEndingScript","ViewerManipulationEnding":"ViewerManipulationEnding","WindowRectChangedScript":"WindowRectChangedScript","WindowRectChanged":"WindowRectChanged","SizeChangedScript":"SizeChangedScript","SizeChanged":"SizeChanged","ActualWindowRectChangedScript":"ActualWindowRectChangedScript","ActualWindowRectChanged":"ActualWindowRectChanged","GridAreaRectChangedScript":"GridAreaRectChangedScript","GridAreaRectChanged":"GridAreaRectChanged","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","RefreshCompletedScript":"RefreshCompletedScript","RefreshCompleted":"RefreshCompleted","ImageCapturedScript":"ImageCapturedScript","ImageCaptured":"ImageCaptured","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMap()":"IgbGeographicMap()","IgbGeographicMap":"IgbGeographicMap()","ActualWindowScale":"ActualWindowScale","ActualWorldRect":"ActualWorldRect","BackgroundContent":"BackgroundContent","BackgroundTilingMode":"BackgroundTilingMode","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ConvertGeographicToZoom(Rect, double)":"ConvertGeographicToZoom(Rect, double)","ConvertGeographicToZoom":"ConvertGeographicToZoom(Rect, double)","ConvertGeographicToZoomAsync(Rect, double)":"ConvertGeographicToZoomAsync(Rect, double)","ConvertGeographicToZoomAsync":"ConvertGeographicToZoomAsync(Rect, double)","DeferredRefresh()":"DeferredRefresh()","DeferredRefresh":"DeferredRefresh()","DeferredRefreshAsync()":"DeferredRefreshAsync()","DeferredRefreshAsync":"DeferredRefreshAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetActualWindowScaleHorizontal()":"GetActualWindowScaleHorizontal()","GetActualWindowScaleHorizontal":"GetActualWindowScaleHorizontal()","GetActualWindowScaleHorizontalAsync()":"GetActualWindowScaleHorizontalAsync()","GetActualWindowScaleHorizontalAsync":"GetActualWindowScaleHorizontalAsync()","GetActualWindowScaleVertical()":"GetActualWindowScaleVertical()","GetActualWindowScaleVertical":"GetActualWindowScaleVertical()","GetActualWindowScaleVerticalAsync()":"GetActualWindowScaleVerticalAsync()","GetActualWindowScaleVerticalAsync":"GetActualWindowScaleVerticalAsync()","GetCurrentActualWorldRect()":"GetCurrentActualWorldRect()","GetCurrentActualWorldRect":"GetCurrentActualWorldRect()","GetCurrentActualWorldRectAsync()":"GetCurrentActualWorldRectAsync()","GetCurrentActualWorldRectAsync":"GetCurrentActualWorldRectAsync()","GetGeographicFromZoom(Rect)":"GetGeographicFromZoom(Rect)","GetGeographicFromZoom":"GetGeographicFromZoom(Rect)","GetGeographicFromZoomAsync(Rect)":"GetGeographicFromZoomAsync(Rect)","GetGeographicFromZoomAsync":"GetGeographicFromZoomAsync(Rect)","GetGeographicPoint(Point)":"GetGeographicPoint(Point)","GetGeographicPoint":"GetGeographicPoint(Point)","GetGeographicPointAsync(Point)":"GetGeographicPointAsync(Point)","GetGeographicPointAsync":"GetGeographicPointAsync(Point)","GetPixelPoint(Point)":"GetPixelPoint(Point)","GetPixelPoint":"GetPixelPoint(Point)","GetPixelPointAsync(Point)":"GetPixelPointAsync(Point)","GetPixelPointAsync":"GetPixelPointAsync(Point)","GetWindowPoint(Point)":"GetWindowPoint(Point)","GetWindowPoint":"GetWindowPoint(Point)","GetWindowPointAsync(Point)":"GetWindowPointAsync(Point)","GetWindowPointAsync":"GetWindowPointAsync(Point)","GetZoomFromGeographicPoints(Point, Point)":"GetZoomFromGeographicPoints(Point, Point)","GetZoomFromGeographicPoints":"GetZoomFromGeographicPoints(Point, Point)","GetZoomFromGeographicPointsAsync(Point, Point)":"GetZoomFromGeographicPointsAsync(Point, Point)","GetZoomFromGeographicPointsAsync":"GetZoomFromGeographicPointsAsync(Point, Point)","GetZoomFromGeographicRect(Rect)":"GetZoomFromGeographicRect(Rect)","GetZoomFromGeographicRect":"GetZoomFromGeographicRect(Rect)","GetZoomFromGeographicRectAsync(Rect)":"GetZoomFromGeographicRectAsync(Rect)","GetZoomFromGeographicRectAsync":"GetZoomFromGeographicRectAsync(Rect)","GetZoomRectFromGeoRect(Rect)":"GetZoomRectFromGeoRect(Rect)","GetZoomRectFromGeoRect":"GetZoomRectFromGeoRect(Rect)","GetZoomRectFromGeoRectAsync(Rect)":"GetZoomRectFromGeoRectAsync(Rect)","GetZoomRectFromGeoRectAsync":"GetZoomRectFromGeoRectAsync(Rect)","ImageTilesReady":"ImageTilesReady","ImageTilesReadyScript":"ImageTilesReadyScript","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","NeedsDynamicContent":"NeedsDynamicContent","ResizeBehavior":"ResizeBehavior","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","SuppressZoomResetOnWorldRectChange":"SuppressZoomResetOnWorldRectChange","Type":"Type","UpdateWorldRect(Rect)":"UpdateWorldRect(Rect)","UpdateWorldRect":"UpdateWorldRect(Rect)","UpdateWorldRectAsync(Rect)":"UpdateWorldRectAsync(Rect)","UpdateWorldRectAsync":"UpdateWorldRectAsync(Rect)","UpdateZoomWindow(Rect)":"UpdateZoomWindow(Rect)","UpdateZoomWindow":"UpdateZoomWindow(Rect)","UpdateZoomWindowAsync(Rect)":"UpdateZoomWindowAsync(Rect)","UpdateZoomWindowAsync":"UpdateZoomWindowAsync(Rect)","UseWorldRectForZoomBounds":"UseWorldRectForZoomBounds","WindowScale":"WindowScale","WorldRect":"WorldRect","ZoomToGeographic(Rect)":"ZoomToGeographic(Rect)","ZoomToGeographic":"ZoomToGeographic(Rect)","ZoomToGeographicAsync(Rect)":"ZoomToGeographicAsync(Rect)","ZoomToGeographicAsync":"ZoomToGeographicAsync(Rect)","Zoomable":"Zoomable"}}],"IgbGeographicMapCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMapCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMapCoreModule()":"IgbGeographicMapCoreModule()","IgbGeographicMapCoreModule":"IgbGeographicMapCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicMapDashboardTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMapDashboardTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMapDashboardTileModule()":"IgbGeographicMapDashboardTileModule()","IgbGeographicMapDashboardTileModule":"IgbGeographicMapDashboardTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicMapImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMapImagery","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMapImagery()":"IgbGeographicMapImagery()","IgbGeographicMapImagery":"IgbGeographicMapImagery()","CancellingImage":"CancellingImage","CancellingImageScript":"CancellingImageScript","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","DownloadingImage":"DownloadingImage","DownloadingImageScript":"DownloadingImageScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ImageTilesReady":"ImageTilesReady","ImageTilesReadyScript":"ImageTilesReadyScript","ImagesChanged":"ImagesChanged","ImagesChangedScript":"ImagesChangedScript","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","Opacity":"Opacity","Referer":"Referer","Type":"Type","UserAgent":"UserAgent","WindowRect":"WindowRect"}}],"IgbGeographicMapModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMapModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMapModule()":"IgbGeographicMapModule()","IgbGeographicMapModule":"IgbGeographicMapModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicMapSeriesHost":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMapSeriesHost","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMapSeriesHost()":"IgbGeographicMapSeriesHost()","IgbGeographicMapSeriesHost":"IgbGeographicMapSeriesHost()","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","Type":"Type","VisibleFromScale":"VisibleFromScale"}}],"IgbGeographicMarkerSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMarkerSeries","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMarkerSeries()":"IgbGeographicMarkerSeries()","IgbGeographicMarkerSeries":"IgbGeographicMarkerSeries()","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MarkerBrush":"MarkerBrush","MarkerFillMode":"MarkerFillMode","MarkerOutline":"MarkerOutline","MarkerOutlineMode":"MarkerOutlineMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","MarkerType":"MarkerType","MaximumMarkers":"MaximumMarkers","Type":"Type"}}],"IgbGeographicMarkerSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicMarkerSeriesBase","k":"class","s":"classes","m":{"MarkerType":"MarkerType","MarkerThickness":"MarkerThickness","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MaximumMarkers":"MaximumMarkers","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicMarkerSeriesBase()":"IgbGeographicMarkerSeriesBase()","IgbGeographicMarkerSeriesBase":"IgbGeographicMarkerSeriesBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGeographicPolylineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicPolylineSeries","k":"class","s":"classes","m":{"ShapeMemberPath":"ShapeMemberPath","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ShapefileDataSource":"ShapefileDataSource","ShapeFilterResolution":"ShapeFilterResolution","AssigningShapeStyleScript":"AssigningShapeStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicPolylineSeries()":"IgbGeographicPolylineSeries()","IgbGeographicPolylineSeries":"IgbGeographicPolylineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ShapeFill":"ShapeFill","ShapeOpacity":"ShapeOpacity","ShapeStroke":"ShapeStroke","ShapeStrokeThickness":"ShapeStrokeThickness","ShapeStyleSelector":"ShapeStyleSelector","ShapeStyleSelectorScript":"ShapeStyleSelectorScript","StyleShape":"StyleShape","StyleShapeScript":"StyleShapeScript","Type":"Type"}}],"IgbGeographicPolylineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicPolylineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicPolylineSeriesModule()":"IgbGeographicPolylineSeriesModule()","IgbGeographicPolylineSeriesModule":"IgbGeographicPolylineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicProportionalSymbolSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicProportionalSymbolSeries","k":"class","s":"classes","m":{"MarkerType":"MarkerType","MarkerThickness":"MarkerThickness","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MaximumMarkers":"MaximumMarkers","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicProportionalSymbolSeries()":"IgbGeographicProportionalSymbolSeries()","IgbGeographicProportionalSymbolSeries":"IgbGeographicProportionalSymbolSeries()","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterStyleScript":"AssigningScatterStyleScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","LabelMemberPath":"LabelMemberPath","LatitudeMemberPath":"LatitudeMemberPath","LongitudeMemberPath":"LongitudeMemberPath","MarkerBrushBrightness":"MarkerBrushBrightness","MarkerOutlineBrightness":"MarkerOutlineBrightness","MarkerOutlineUsesFillScale":"MarkerOutlineUsesFillScale","RadiusMemberPath":"RadiusMemberPath","RadiusScale":"RadiusScale","RadiusScaleUseGlobalValues":"RadiusScaleUseGlobalValues","Type":"Type"}}],"IgbGeographicProportionalSymbolSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicProportionalSymbolSeriesBase","k":"class","s":"classes","m":{"MarkerType":"MarkerType","MarkerThickness":"MarkerThickness","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MaximumMarkers":"MaximumMarkers","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicProportionalSymbolSeriesBase()":"IgbGeographicProportionalSymbolSeriesBase()","IgbGeographicProportionalSymbolSeriesBase":"IgbGeographicProportionalSymbolSeriesBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGeographicProportionalSymbolSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicProportionalSymbolSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicProportionalSymbolSeriesModule()":"IgbGeographicProportionalSymbolSeriesModule()","IgbGeographicProportionalSymbolSeriesModule":"IgbGeographicProportionalSymbolSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicScatterAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicScatterAreaSeries","k":"class","s":"classes","m":{"LongitudeMemberPath":"LongitudeMemberPath","LatitudeMemberPath":"LatitudeMemberPath","TrianglesSource":"TrianglesSource","TrianglesSourceScript":"TrianglesSourceScript","TriangleVertexMemberPath1":"TriangleVertexMemberPath1","TriangleVertexMemberPath2":"TriangleVertexMemberPath2","TriangleVertexMemberPath3":"TriangleVertexMemberPath3","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicScatterAreaSeries()":"IgbGeographicScatterAreaSeries()","IgbGeographicScatterAreaSeries":"IgbGeographicScatterAreaSeries()","ActualColorScale":"ActualColorScale","ColorMemberPath":"ColorMemberPath","ColorScale":"ColorScale","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TriangulationStatusChanged":"TriangulationStatusChanged","TriangulationStatusChangedScript":"TriangulationStatusChangedScript","Type":"Type","UpdateActualColorScale()":"UpdateActualColorScale()","UpdateActualColorScale":"UpdateActualColorScale()","UpdateActualColorScaleAsync()":"UpdateActualColorScaleAsync()","UpdateActualColorScaleAsync":"UpdateActualColorScaleAsync()"}}],"IgbGeographicScatterAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicScatterAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicScatterAreaSeriesModule()":"IgbGeographicScatterAreaSeriesModule()","IgbGeographicScatterAreaSeriesModule":"IgbGeographicScatterAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicShapeSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicShapeSeries","k":"class","s":"classes","m":{"ShapeMemberPath":"ShapeMemberPath","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ShapefileDataSource":"ShapefileDataSource","ShapeFilterResolution":"ShapeFilterResolution","AssigningShapeStyleScript":"AssigningShapeStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicShapeSeries()":"IgbGeographicShapeSeries()","IgbGeographicShapeSeries":"IgbGeographicShapeSeries()","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MarkerBrush":"MarkerBrush","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","MarkerFillMode":"MarkerFillMode","MarkerOutline":"MarkerOutline","MarkerOutlineMode":"MarkerOutlineMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","MarkerType":"MarkerType","ShapeFill":"ShapeFill","ShapeOpacity":"ShapeOpacity","ShapeStroke":"ShapeStroke","ShapeStrokeThickness":"ShapeStrokeThickness","ShapeStyleSelector":"ShapeStyleSelector","ShapeStyleSelectorScript":"ShapeStyleSelectorScript","StyleShape":"StyleShape","StyleShapeScript":"StyleShapeScript","Type":"Type"}}],"IgbGeographicShapeSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicShapeSeriesBase","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicShapeSeriesBase()":"IgbGeographicShapeSeriesBase()","IgbGeographicShapeSeriesBase":"IgbGeographicShapeSeriesBase()","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeStyleScript":"AssigningShapeStyleScript","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ItemSearchThreshold":"ItemSearchThreshold","ShapeFilterResolution":"ShapeFilterResolution","ShapeMemberPath":"ShapeMemberPath","ShapefileDataSource":"ShapefileDataSource","Type":"Type"}}],"IgbGeographicShapeSeriesBaseBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicShapeSeriesBaseBase","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicShapeSeriesBaseBase()":"IgbGeographicShapeSeriesBaseBase()","IgbGeographicShapeSeriesBaseBase":"IgbGeographicShapeSeriesBaseBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGeographicShapeSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicShapeSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicShapeSeriesModule()":"IgbGeographicShapeSeriesModule()","IgbGeographicShapeSeriesModule":"IgbGeographicShapeSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicSymbolSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicSymbolSeries","k":"class","s":"classes","m":{"MarkerType":"MarkerType","MarkerThickness":"MarkerThickness","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MaximumMarkers":"MaximumMarkers","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicSymbolSeries()":"IgbGeographicSymbolSeries()","IgbGeographicSymbolSeries":"IgbGeographicSymbolSeries()","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterStyleScript":"AssigningScatterStyleScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","LatitudeMemberPath":"LatitudeMemberPath","LongitudeMemberPath":"LongitudeMemberPath","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","Type":"Type"}}],"IgbGeographicSymbolSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicSymbolSeriesBase","k":"class","s":"classes","m":{"MarkerType":"MarkerType","MarkerThickness":"MarkerThickness","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MaximumMarkers":"MaximumMarkers","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicSymbolSeriesBase()":"IgbGeographicSymbolSeriesBase()","IgbGeographicSymbolSeriesBase":"IgbGeographicSymbolSeriesBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGeographicSymbolSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicSymbolSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicSymbolSeriesModule()":"IgbGeographicSymbolSeriesModule()","IgbGeographicSymbolSeriesModule":"IgbGeographicSymbolSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicTileSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicTileSeries","k":"class","s":"classes","m":{"ShapeMemberPath":"ShapeMemberPath","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ShapefileDataSource":"ShapefileDataSource","ShapeFilterResolution":"ShapeFilterResolution","AssigningShapeStyleScript":"AssigningShapeStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicTileSeries()":"IgbGeographicTileSeries()","IgbGeographicTileSeries":"IgbGeographicTileSeries()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ImageTilesReady":"ImageTilesReady","ImageTilesReadyScript":"ImageTilesReadyScript","TileImagery":"TileImagery","Type":"Type"}}],"IgbGeographicTileSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicTileSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicTileSeriesModule()":"IgbGeographicTileSeriesModule()","IgbGeographicTileSeriesModule":"IgbGeographicTileSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGeographicXYTriangulatingSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicXYTriangulatingSeries","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicXYTriangulatingSeries()":"IgbGeographicXYTriangulatingSeries()","IgbGeographicXYTriangulatingSeries":"IgbGeographicXYTriangulatingSeries()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LatitudeMemberPath":"LatitudeMemberPath","LongitudeMemberPath":"LongitudeMemberPath","TriangleVertexMemberPath1":"TriangleVertexMemberPath1","TriangleVertexMemberPath2":"TriangleVertexMemberPath2","TriangleVertexMemberPath3":"TriangleVertexMemberPath3","TrianglesSource":"TrianglesSource","TrianglesSourceScript":"TrianglesSourceScript","Type":"Type"}}],"IgbGeographicXYTriangulatingSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGeographicXYTriangulatingSeriesBase","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","VisibleFromScale":"VisibleFromScale","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGeographicXYTriangulatingSeriesBase()":"IgbGeographicXYTriangulatingSeriesBase()","IgbGeographicXYTriangulatingSeriesBase":"IgbGeographicXYTriangulatingSeriesBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGetTileImageUriArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGetTileImageUriArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGetTileImageUriArgs()":"IgbGetTileImageUriArgs()","IgbGetTileImageUriArgs":"IgbGetTileImageUriArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","TileImageUri":"TileImageUri","TileLevel":"TileLevel","TilePositionX":"TilePositionX","TilePositionY":"TilePositionY","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGotFocusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGotFocusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGotFocusEventArgs()":"IgbGotFocusEventArgs()","IgbGotFocusEventArgs":"IgbGotFocusEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGrid":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGrid","k":"class","s":"classes","m":{"SuspendNotifications()":"SuspendNotifications()","SuspendNotifications":"SuspendNotifications()","ResumeNotifications()":"ResumeNotifications()","ResumeNotifications":"ResumeNotifications()","UpdateProperty(object, string, object)":"UpdateProperty(object, string, object)","UpdateProperty":"UpdateProperty(object, string, object)","OnRowAddedOverride(IgbRowDataEventArgs)":"OnRowAddedOverride(IgbRowDataEventArgs)","OnRowAddedOverride":"OnRowAddedOverride(IgbRowDataEventArgs)","PropagateValues(object, Dictionary, bool)":"PropagateValues(object, Dictionary, bool)","PropagateValues":"PropagateValues(object, Dictionary, bool)","AddRow(object)":"AddRow(object)","AddRow":"AddRow(object)","AddRowAsync(object)":"AddRowAsync(object)","AddRowAsync":"AddRowAsync(object)","DeleteRow(object)":"DeleteRow(object)","DeleteRow":"DeleteRow(object)","DeleteRowAsync(object)":"DeleteRowAsync(object)","DeleteRowAsync":"DeleteRowAsync(object)","UpdateCell(object, object, string)":"UpdateCell(object, object, string)","UpdateCell":"UpdateCell(object, object, string)","UpdateCellAsync(object, object, string)":"UpdateCellAsync(object, object, string)","UpdateCellAsync":"UpdateCellAsync(object, object, string)","UpdateRow(Dictionary, object)":"UpdateRow(Dictionary, object)","UpdateRow":"UpdateRow(Dictionary, object)","UpdateRowAsync(Dictionary, object)":"UpdateRowAsync(Dictionary, object)","UpdateRowAsync":"UpdateRowAsync(Dictionary, object)","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetHiddenColumnsCountAsync()":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCountAsync":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCount()":"GetHiddenColumnsCount()","GetHiddenColumnsCount":"GetHiddenColumnsCount()","GetPinnedColumnsCountAsync()":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCountAsync":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCount()":"GetPinnedColumnsCount()","GetPinnedColumnsCount":"GetPinnedColumnsCount()","GetLastSearchInfoAsync()":"GetLastSearchInfoAsync()","GetLastSearchInfoAsync":"GetLastSearchInfoAsync()","GetLastSearchInfo()":"GetLastSearchInfo()","GetLastSearchInfo":"GetLastSearchInfo()","GetFilteredDataAsync()":"GetFilteredDataAsync()","GetFilteredDataAsync":"GetFilteredDataAsync()","GetFilteredData()":"GetFilteredData()","GetFilteredData":"GetFilteredData()","GetFilteredSortedDataAsync()":"GetFilteredSortedDataAsync()","GetFilteredSortedDataAsync":"GetFilteredSortedDataAsync()","GetFilteredSortedData()":"GetFilteredSortedData()","GetFilteredSortedData":"GetFilteredSortedData()","GetVirtualizationStateAsync()":"GetVirtualizationStateAsync()","GetVirtualizationStateAsync":"GetVirtualizationStateAsync()","GetVirtualizationState()":"GetVirtualizationState()","GetVirtualizationState":"GetVirtualizationState()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetPinnedColumnsAsync()":"GetPinnedColumnsAsync()","GetPinnedColumnsAsync":"GetPinnedColumnsAsync()","GetPinnedColumns()":"GetPinnedColumns()","GetPinnedColumns":"GetPinnedColumns()","GetPinnedStartColumnsAsync()":"GetPinnedStartColumnsAsync()","GetPinnedStartColumnsAsync":"GetPinnedStartColumnsAsync()","GetPinnedStartColumns()":"GetPinnedStartColumns()","GetPinnedStartColumns":"GetPinnedStartColumns()","GetPinnedEndColumnsAsync()":"GetPinnedEndColumnsAsync()","GetPinnedEndColumnsAsync":"GetPinnedEndColumnsAsync()","GetPinnedEndColumns()":"GetPinnedEndColumns()","GetPinnedEndColumns":"GetPinnedEndColumns()","GetUnpinnedColumnsAsync()":"GetUnpinnedColumnsAsync()","GetUnpinnedColumnsAsync":"GetUnpinnedColumnsAsync()","GetUnpinnedColumns()":"GetUnpinnedColumns()","GetUnpinnedColumns":"GetUnpinnedColumns()","GetVisibleColumnsAsync()":"GetVisibleColumnsAsync()","GetVisibleColumnsAsync":"GetVisibleColumnsAsync()","GetVisibleColumns()":"GetVisibleColumns()","GetVisibleColumns":"GetVisibleColumns()","GetDataViewAsync()":"GetDataViewAsync()","GetDataViewAsync":"GetDataViewAsync()","GetDataView()":"GetDataView()","GetDataView":"GetDataView()","GetCurrentActualColumnListAsync()":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnListAsync":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnList()":"GetCurrentActualColumnList()","GetCurrentActualColumnList":"GetCurrentActualColumnList()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","ReflowAsync()":"ReflowAsync()","ReflowAsync":"ReflowAsync()","Reflow()":"Reflow()","Reflow":"Reflow()","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","NeedsDynamicContent":"NeedsDynamicContent","ContentColumnList":"ContentColumnList","CellEditDone":"CellEditDone","RowAdded":"RowAdded","ItemRequested":"ItemRequested","RowDeleted":"RowDeleted","DefaultEventBehavior":"DefaultEventBehavior","ParentTypeName":"ParentTypeName","ContentActionStripComponents":"ContentActionStripComponents","ActualActionStripComponents":"ActualActionStripComponents","ContentToolbar":"ContentToolbar","ActualToolbar":"ActualToolbar","ContentPaginationComponents":"ContentPaginationComponents","ActualPaginationComponents":"ActualPaginationComponents","ContentStateComponents":"ContentStateComponents","ActualStateComponents":"ActualStateComponents","SnackbarDisplayTime":"SnackbarDisplayTime","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","Moving":"Moving","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","SummaryRowHeight":"SummaryRowHeight","DataCloneStrategy":"DataCloneStrategy","ClipboardOptions":"ClipboardOptions","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","PrimaryKey":"PrimaryKey","ColumnList":"ColumnList","ActionStripComponents":"ActionStripComponents","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","Toolbar":"Toolbar","PaginationComponents":"PaginationComponents","ResourceStrings":"ResourceStrings","FilteringLogic":"FilteringLogic","FilteringExpressionsTree":"FilteringExpressionsTree","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","Locale":"Locale","PagingMode":"PagingMode","HideRowSelectors":"HideRowSelectors","RowDraggable":"RowDraggable","ValidationTrigger":"ValidationTrigger","RowEditable":"RowEditable","RowHeight":"RowHeight","ColumnWidth":"ColumnWidth","EmptyGridMessage":"EmptyGridMessage","IsLoading":"IsLoading","ShouldGenerate":"ShouldGenerate","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","Pinning":"Pinning","AllowFiltering":"AllowFiltering","AllowAdvancedFiltering":"AllowAdvancedFiltering","FilterMode":"FilterMode","SummaryPosition":"SummaryPosition","SummaryCalculationMode":"SummaryCalculationMode","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","FilterStrategy":"FilterStrategy","SortStrategy":"SortStrategy","SortingOptions":"SortingOptions","SelectedRows":"SelectedRows","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","SortingExpressions":"SortingExpressions","BatchEditing":"BatchEditing","CellSelection":"CellSelection","CellMergeMode":"CellMergeMode","RowSelection":"RowSelection","ColumnSelection":"ColumnSelection","Outlet":"Outlet","TotalRecords":"TotalRecords","SelectRowOnClick":"SelectRowOnClick","ActualColumnList":"ActualColumnList","StateComponents":"StateComponents","SelectedRowsChanged":"SelectedRowsChanged","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","GridScrollScript":"GridScrollScript","GridScroll":"GridScroll","CellClickScript":"CellClickScript","CellClick":"CellClick","RowClickScript":"RowClickScript","RowClick":"RowClick","FormGroupCreatedScript":"FormGroupCreatedScript","FormGroupCreated":"FormGroupCreated","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationStatusChange":"ValidationStatusChange","SelectedScript":"SelectedScript","Selected":"Selected","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectionChanging":"RowSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnPinScript":"ColumnPinScript","ColumnPin":"ColumnPin","ColumnPinnedScript":"ColumnPinnedScript","ColumnPinned":"ColumnPinned","CellEditEnterScript":"CellEditEnterScript","CellEditEnter":"CellEditEnter","CellEditExitScript":"CellEditExitScript","CellEditExit":"CellEditExit","CellEditScript":"CellEditScript","CellEdit":"CellEdit","RowEditEnterScript":"RowEditEnterScript","RowEditEnter":"RowEditEnter","RowEditScript":"RowEditScript","RowEdit":"RowEdit","RowEditDoneScript":"RowEditDoneScript","RowEditDone":"RowEditDone","RowEditExitScript":"RowEditExitScript","RowEditExit":"RowEditExit","ColumnInitScript":"ColumnInitScript","ColumnInit":"ColumnInit","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ColumnsAutogenerated":"ColumnsAutogenerated","SortingScript":"SortingScript","Sorting":"Sorting","SortingDoneScript":"SortingDoneScript","SortingDone":"SortingDone","FilteringScript":"FilteringScript","Filtering":"Filtering","FilteringDoneScript":"FilteringDoneScript","FilteringDone":"FilteringDone","RowDeleteScript":"RowDeleteScript","RowDelete":"RowDelete","RowAddScript":"RowAddScript","RowAdd":"RowAdd","ColumnResizedScript":"ColumnResizedScript","ColumnResized":"ColumnResized","ContextMenuScript":"ContextMenuScript","ContextMenu":"ContextMenu","DoubleClickScript":"DoubleClickScript","DoubleClick":"DoubleClick","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingScript":"ColumnMovingScript","ColumnMoving":"ColumnMoving","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingEnd":"ColumnMovingEnd","GridKeydownScript":"GridKeydownScript","GridKeydown":"GridKeydown","RowDragStartScript":"RowDragStartScript","RowDragStart":"RowDragStart","RowDragEndScript":"RowDragEndScript","RowDragEnd":"RowDragEnd","GridCopyScript":"GridCopyScript","GridCopy":"GridCopy","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChange":"SelectedRowsChange","RowToggleScript":"RowToggleScript","RowToggle":"RowToggle","RowPinningScript":"RowPinningScript","RowPinning":"RowPinning","RowPinnedScript":"RowPinnedScript","RowPinned":"RowPinned","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActiveNodeChange":"ActiveNodeChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingExpressionsChange":"SortingExpressionsChange","ToolbarExportingScript":"ToolbarExportingScript","ToolbarExporting":"ToolbarExporting","RangeSelectedScript":"RangeSelectedScript","RangeSelected":"RangeSelected","RenderedScript":"RenderedScript","Rendered":"Rendered","DataChangingScript":"DataChangingScript","DataChanging":"DataChanging","DataChangedScript":"DataChangedScript","DataChanged":"DataChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGrid()":"IgbGrid()","IgbGrid":"IgbGrid()","BeginAddRowByIndex(double)":"BeginAddRowByIndex(double)","BeginAddRowByIndex":"BeginAddRowByIndex(double)","BeginAddRowByIndexAsync(double)":"BeginAddRowByIndexAsync(double)","BeginAddRowByIndexAsync":"BeginAddRowByIndexAsync(double)","ClearGrouping(string)":"ClearGrouping(string)","ClearGrouping":"ClearGrouping(string)","ClearGroupingAsync(string)":"ClearGroupingAsync(string)","ClearGroupingAsync":"ClearGroupingAsync(string)","Data":"Data","DataPreLoad":"DataPreLoad","DataPreLoadScript":"DataPreLoadScript","DataScript":"DataScript","DeselectRowsInGroup(IgbGroupByRecord)":"DeselectRowsInGroup(IgbGroupByRecord)","DeselectRowsInGroup":"DeselectRowsInGroup(IgbGroupByRecord)","DeselectRowsInGroupAsync(IgbGroupByRecord)":"DeselectRowsInGroupAsync(IgbGroupByRecord)","DeselectRowsInGroupAsync":"DeselectRowsInGroupAsync(IgbGroupByRecord)","DetailTemplate":"DetailTemplate","DetailTemplateScript":"DetailTemplateScript","DropAreaMessage":"DropAreaMessage","DropAreaTemplate":"DropAreaTemplate","DropAreaTemplateScript":"DropAreaTemplateScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FullyExpandGroup(IgbGroupByRecord)":"FullyExpandGroup(IgbGroupByRecord)","FullyExpandGroup":"FullyExpandGroup(IgbGroupByRecord)","FullyExpandGroupAsync(IgbGroupByRecord)":"FullyExpandGroupAsync(IgbGroupByRecord)","FullyExpandGroupAsync":"FullyExpandGroupAsync(IgbGroupByRecord)","GetCellByColumn(double, string)":"GetCellByColumn(double, string)","GetCellByColumn":"GetCellByColumn(double, string)","GetCellByColumnAsync(double, string)":"GetCellByColumnAsync(double, string)","GetCellByColumnAsync":"GetCellByColumnAsync(double, string)","GetCellByKey(object, string)":"GetCellByKey(object, string)","GetCellByKey":"GetCellByKey(object, string)","GetCellByKeyAsync(object, string)":"GetCellByKeyAsync(object, string)","GetCellByKeyAsync":"GetCellByKeyAsync(object, string)","GetData()":"GetData()","GetData":"GetData()","GetGroupsRecords()":"GetGroupsRecords()","GetGroupsRecords":"GetGroupsRecords()","GetGroupsRecordsAsync()":"GetGroupsRecordsAsync()","GetGroupsRecordsAsync":"GetGroupsRecordsAsync()","GetRowByIndex(double)":"GetRowByIndex(double)","GetRowByIndex":"GetRowByIndex(double)","GetRowByIndexAsync(double)":"GetRowByIndexAsync(double)","GetRowByIndexAsync":"GetRowByIndexAsync(double)","GetRowByKey(object)":"GetRowByKey(object)","GetRowByKey":"GetRowByKey(object)","GetRowByKeyAsync(object)":"GetRowByKeyAsync(object)","GetRowByKeyAsync":"GetRowByKeyAsync(object)","GetSelectedCells()":"GetSelectedCells()","GetSelectedCells":"GetSelectedCells()","GetSelectedCellsAsync()":"GetSelectedCellsAsync()","GetSelectedCellsAsync":"GetSelectedCellsAsync()","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","GroupBy(IgbGroupingExpression[])":"GroupBy(IgbGroupingExpression[])","GroupBy":"GroupBy(IgbGroupingExpression[])","GroupByAsync(IgbGroupingExpression[])":"GroupByAsync(IgbGroupingExpression[])","GroupByAsync":"GroupByAsync(IgbGroupingExpression[])","GroupByRowSelectorTemplate":"GroupByRowSelectorTemplate","GroupByRowSelectorTemplateScript":"GroupByRowSelectorTemplateScript","GroupRowTemplate":"GroupRowTemplate","GroupRowTemplateScript":"GroupRowTemplateScript","GroupStrategy":"GroupStrategy","GroupingDone":"GroupingDone","GroupingDoneScript":"GroupingDoneScript","GroupingExpansionState":"GroupingExpansionState","GroupingExpansionStateChange":"GroupingExpansionStateChange","GroupingExpansionStateChangeScript":"GroupingExpansionStateChangeScript","GroupingExpressions":"GroupingExpressions","GroupingExpressionsChange":"GroupingExpressionsChange","GroupingExpressionsChangeScript":"GroupingExpressionsChangeScript","GroupsExpanded":"GroupsExpanded","HideGroupedColumns":"HideGroupedColumns","Id":"Id","IsExpandedGroup(IgbGroupByRecord)":"IsExpandedGroup(IgbGroupByRecord)","IsExpandedGroup":"IsExpandedGroup(IgbGroupByRecord)","IsExpandedGroupAsync(IgbGroupByRecord)":"IsExpandedGroupAsync(IgbGroupByRecord)","IsExpandedGroupAsync":"IsExpandedGroupAsync(IgbGroupByRecord)","PinRow(object, double)":"PinRow(object, double)","PinRow":"PinRow(object, double)","PinRowAsync(object, double)":"PinRowAsync(object, double)","PinRowAsync":"PinRowAsync(object, double)","SelectRowsInGroup(IgbGroupByRecord, bool)":"SelectRowsInGroup(IgbGroupByRecord, bool)","SelectRowsInGroup":"SelectRowsInGroup(IgbGroupByRecord, bool)","SelectRowsInGroupAsync(IgbGroupByRecord, bool)":"SelectRowsInGroupAsync(IgbGroupByRecord, bool)","SelectRowsInGroupAsync":"SelectRowsInGroupAsync(IgbGroupByRecord, bool)","ShowGroupArea":"ShowGroupArea","ToggleAllGroupRows()":"ToggleAllGroupRows()","ToggleAllGroupRows":"ToggleAllGroupRows()","ToggleAllGroupRowsAsync()":"ToggleAllGroupRowsAsync()","ToggleAllGroupRowsAsync":"ToggleAllGroupRowsAsync()","ToggleGroup(IgbGroupByRecord)":"ToggleGroup(IgbGroupByRecord)","ToggleGroup":"ToggleGroup(IgbGroupByRecord)","ToggleGroupAsync(IgbGroupByRecord)":"ToggleGroupAsync(IgbGroupByRecord)","ToggleGroupAsync":"ToggleGroupAsync(IgbGroupByRecord)","TotalItemCount":"TotalItemCount","Type":"Type","UnpinRow(object)":"UnpinRow(object)","UnpinRow":"UnpinRow(object)","UnpinRowAsync(object)":"UnpinRowAsync(object)","UnpinRowAsync":"UnpinRowAsync(object)"}}],"IgbGridActionsBaseDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridActionsBaseDirective","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridActionsBaseDirective()":"IgbGridActionsBaseDirective()","IgbGridActionsBaseDirective":"IgbGridActionsBaseDirective()","ActionStripParent":"ActionStripParent","AsMenuItems":"AsMenuItems","Dispose()":"Dispose()","Dispose":"Dispose()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridActionsBaseDirectiveCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridActionsBaseDirectiveCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridActionsBaseDirective)":"InsertItem(int, IgbGridActionsBaseDirective)","InsertItem":"InsertItem(int, IgbGridActionsBaseDirective)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridActionsBaseDirective)":"SetItem(int, IgbGridActionsBaseDirective)","SetItem":"SetItem(int, IgbGridActionsBaseDirective)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridActionsBaseDirective)":"Add(IgbGridActionsBaseDirective)","Add":"Add(IgbGridActionsBaseDirective)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridActionsBaseDirective[], int)":"CopyTo(IgbGridActionsBaseDirective[], int)","CopyTo":"CopyTo(IgbGridActionsBaseDirective[], int)","Contains(IgbGridActionsBaseDirective)":"Contains(IgbGridActionsBaseDirective)","Contains":"Contains(IgbGridActionsBaseDirective)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridActionsBaseDirective)":"IndexOf(IgbGridActionsBaseDirective)","IndexOf":"IndexOf(IgbGridActionsBaseDirective)","Insert(int, IgbGridActionsBaseDirective)":"Insert(int, IgbGridActionsBaseDirective)","Insert":"Insert(int, IgbGridActionsBaseDirective)","Remove(IgbGridActionsBaseDirective)":"Remove(IgbGridActionsBaseDirective)","Remove":"Remove(IgbGridActionsBaseDirective)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridActionsBaseDirectiveCollection(object, string)":"IgbGridActionsBaseDirectiveCollection(object, string)","IgbGridActionsBaseDirectiveCollection":"IgbGridActionsBaseDirectiveCollection(object, string)"}}],"IgbGridActionsBaseDirectiveModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridActionsBaseDirectiveModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridActionsBaseDirectiveModule()":"IgbGridActionsBaseDirectiveModule()","IgbGridActionsBaseDirectiveModule":"IgbGridActionsBaseDirectiveModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridActiveCellChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridActiveCellChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridActiveCellChangedEventArgs()":"IgbGridActiveCellChangedEventArgs()","IgbGridActiveCellChangedEventArgs":"IgbGridActiveCellChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewActiveCell":"NewActiveCell","OldActiveCell":"OldActiveCell","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridAnimationPhaseSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridAnimationPhaseSettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridAnimationPhaseSettings()":"IgbGridAnimationPhaseSettings()","IgbGridAnimationPhaseSettings":"IgbGridAnimationPhaseSettings()","DesiredSubItemDurationMilliseconds":"DesiredSubItemDurationMilliseconds","DurationMilliseconds":"DurationMilliseconds","EasingFunctionType":"EasingFunctionType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HoldInitialMilliseconds":"HoldInitialMilliseconds","PerItemDelayMilliseconds":"PerItemDelayMilliseconds","ShouldItemsFinishSimultaneously":"ShouldItemsFinishSimultaneously","SubItemDurationMilliseconds":"SubItemDurationMilliseconds","Type":"Type"}}],"IgbGridAnimationSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridAnimationSettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridAnimationSettings()":"IgbGridAnimationSettings()","IgbGridAnimationSettings":"IgbGridAnimationSettings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridBaseDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridBaseDirective","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridBaseDirective()":"IgbGridBaseDirective()","IgbGridBaseDirective":"IgbGridBaseDirective()","ActionStripComponents":"ActionStripComponents","ActiveNodeChange":"ActiveNodeChange","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActualActionStripComponents":"ActualActionStripComponents","ActualColumnList":"ActualColumnList","ActualPaginationComponents":"ActualPaginationComponents","ActualStateComponents":"ActualStateComponents","ActualToolbar":"ActualToolbar","AddRow(object)":"AddRow(object)","AddRow":"AddRow(object)","AddRowAsync(object)":"AddRowAsync(object)","AddRowAsync":"AddRowAsync(object)","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AllowAdvancedFiltering":"AllowAdvancedFiltering","AllowFiltering":"AllowFiltering","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","BatchEditing":"BatchEditing","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","CellClick":"CellClick","CellClickScript":"CellClickScript","CellEdit":"CellEdit","CellEditDone":"CellEditDone","CellEditEnter":"CellEditEnter","CellEditEnterScript":"CellEditEnterScript","CellEditExit":"CellEditExit","CellEditExitScript":"CellEditExitScript","CellEditScript":"CellEditScript","CellMergeMode":"CellMergeMode","CellSelection":"CellSelection","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClipboardOptions":"ClipboardOptions","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","ColumnInit":"ColumnInit","ColumnInitScript":"ColumnInitScript","ColumnList":"ColumnList","ColumnMoving":"ColumnMoving","ColumnMovingEnd":"ColumnMovingEnd","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingScript":"ColumnMovingScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnPin":"ColumnPin","ColumnPinScript":"ColumnPinScript","ColumnPinned":"ColumnPinned","ColumnPinnedScript":"ColumnPinnedScript","ColumnResized":"ColumnResized","ColumnResizedScript":"ColumnResizedScript","ColumnSelection":"ColumnSelection","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnWidth":"ColumnWidth","ColumnsAutogenerated":"ColumnsAutogenerated","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ContentActionStripComponents":"ContentActionStripComponents","ContentColumnList":"ContentColumnList","ContentPaginationComponents":"ContentPaginationComponents","ContentStateComponents":"ContentStateComponents","ContentToolbar":"ContentToolbar","ContextMenu":"ContextMenu","ContextMenuScript":"ContextMenuScript","DataChanged":"DataChanged","DataChangedScript":"DataChangedScript","DataChanging":"DataChanging","DataChangingScript":"DataChangingScript","DataCloneStrategy":"DataCloneStrategy","DefaultEventBehavior":"DefaultEventBehavior","DeleteRow(object)":"DeleteRow(object)","DeleteRow":"DeleteRow(object)","DeleteRowAsync(object)":"DeleteRowAsync(object)","DeleteRowAsync":"DeleteRowAsync(object)","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","DoubleClick":"DoubleClick","DoubleClickScript":"DoubleClickScript","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","EmptyGridMessage":"EmptyGridMessage","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterMode":"FilterMode","FilterStrategy":"FilterStrategy","Filtering":"Filtering","FilteringDone":"FilteringDone","FilteringDoneScript":"FilteringDoneScript","FilteringExpressionsTree":"FilteringExpressionsTree","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringLogic":"FilteringLogic","FilteringScript":"FilteringScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FormGroupCreated":"FormGroupCreated","FormGroupCreatedScript":"FormGroupCreatedScript","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetCurrentActualColumnList()":"GetCurrentActualColumnList()","GetCurrentActualColumnList":"GetCurrentActualColumnList()","GetCurrentActualColumnListAsync()":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnListAsync":"GetCurrentActualColumnListAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetData()":"GetData()","GetData":"GetData()","GetDataView()":"GetDataView()","GetDataView":"GetDataView()","GetDataViewAsync()":"GetDataViewAsync()","GetDataViewAsync":"GetDataViewAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetFilteredData()":"GetFilteredData()","GetFilteredData":"GetFilteredData()","GetFilteredDataAsync()":"GetFilteredDataAsync()","GetFilteredDataAsync":"GetFilteredDataAsync()","GetFilteredSortedData()":"GetFilteredSortedData()","GetFilteredSortedData":"GetFilteredSortedData()","GetFilteredSortedDataAsync()":"GetFilteredSortedDataAsync()","GetFilteredSortedDataAsync":"GetFilteredSortedDataAsync()","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetHiddenColumnsCount()":"GetHiddenColumnsCount()","GetHiddenColumnsCount":"GetHiddenColumnsCount()","GetHiddenColumnsCountAsync()":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCountAsync":"GetHiddenColumnsCountAsync()","GetLastSearchInfo()":"GetLastSearchInfo()","GetLastSearchInfo":"GetLastSearchInfo()","GetLastSearchInfoAsync()":"GetLastSearchInfoAsync()","GetLastSearchInfoAsync":"GetLastSearchInfoAsync()","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetPinnedColumns()":"GetPinnedColumns()","GetPinnedColumns":"GetPinnedColumns()","GetPinnedColumnsAsync()":"GetPinnedColumnsAsync()","GetPinnedColumnsAsync":"GetPinnedColumnsAsync()","GetPinnedColumnsCount()":"GetPinnedColumnsCount()","GetPinnedColumnsCount":"GetPinnedColumnsCount()","GetPinnedColumnsCountAsync()":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCountAsync":"GetPinnedColumnsCountAsync()","GetPinnedEndColumns()":"GetPinnedEndColumns()","GetPinnedEndColumns":"GetPinnedEndColumns()","GetPinnedEndColumnsAsync()":"GetPinnedEndColumnsAsync()","GetPinnedEndColumnsAsync":"GetPinnedEndColumnsAsync()","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedStartColumns()":"GetPinnedStartColumns()","GetPinnedStartColumns":"GetPinnedStartColumns()","GetPinnedStartColumnsAsync()":"GetPinnedStartColumnsAsync()","GetPinnedStartColumnsAsync":"GetPinnedStartColumnsAsync()","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GetUnpinnedColumns()":"GetUnpinnedColumns()","GetUnpinnedColumns":"GetUnpinnedColumns()","GetUnpinnedColumnsAsync()":"GetUnpinnedColumnsAsync()","GetUnpinnedColumnsAsync":"GetUnpinnedColumnsAsync()","GetVirtualizationState()":"GetVirtualizationState()","GetVirtualizationState":"GetVirtualizationState()","GetVirtualizationStateAsync()":"GetVirtualizationStateAsync()","GetVirtualizationStateAsync":"GetVirtualizationStateAsync()","GetVisibleColumns()":"GetVisibleColumns()","GetVisibleColumns":"GetVisibleColumns()","GetVisibleColumnsAsync()":"GetVisibleColumnsAsync()","GetVisibleColumnsAsync":"GetVisibleColumnsAsync()","GridCopy":"GridCopy","GridCopyScript":"GridCopyScript","GridKeydown":"GridKeydown","GridKeydownScript":"GridKeydownScript","GridScroll":"GridScroll","GridScrollScript":"GridScrollScript","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","HideRowSelectors":"HideRowSelectors","IsLoading":"IsLoading","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","ItemRequested":"ItemRequested","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","Locale":"Locale","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","Moving":"Moving","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","NeedsDynamicContent":"NeedsDynamicContent","OnRowAddedOverride(IgbRowDataEventArgs)":"OnRowAddedOverride(IgbRowDataEventArgs)","OnRowAddedOverride":"OnRowAddedOverride(IgbRowDataEventArgs)","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","Outlet":"Outlet","PaginationComponents":"PaginationComponents","PagingMode":"PagingMode","ParentTypeName":"ParentTypeName","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","Pinning":"Pinning","PrimaryKey":"PrimaryKey","PropagateValues(object, Dictionary, bool)":"PropagateValues(object, Dictionary, bool)","PropagateValues":"PropagateValues(object, Dictionary, bool)","RangeSelected":"RangeSelected","RangeSelectedScript":"RangeSelectedScript","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","Reflow()":"Reflow()","Reflow":"Reflow()","ReflowAsync()":"ReflowAsync()","ReflowAsync":"ReflowAsync()","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","Rendered":"Rendered","RenderedScript":"RenderedScript","ResourceStrings":"ResourceStrings","ResumeNotifications()":"ResumeNotifications()","RowAdd":"RowAdd","RowAddScript":"RowAddScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowAdded":"RowAdded","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowClick":"RowClick","RowClickScript":"RowClickScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","RowDelete":"RowDelete","RowDeleteScript":"RowDeleteScript","RowDeleted":"RowDeleted","RowDragEnd":"RowDragEnd","RowDragEndScript":"RowDragEndScript","RowDragStart":"RowDragStart","RowDragStartScript":"RowDragStartScript","RowDraggable":"RowDraggable","RowEdit":"RowEdit","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowEditDone":"RowEditDone","RowEditDoneScript":"RowEditDoneScript","RowEditEnter":"RowEditEnter","RowEditEnterScript":"RowEditEnterScript","RowEditExit":"RowEditExit","RowEditExitScript":"RowEditExitScript","RowEditScript":"RowEditScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowEditable":"RowEditable","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowHeight":"RowHeight","RowPinned":"RowPinned","RowPinnedScript":"RowPinnedScript","RowPinning":"RowPinning","RowPinningScript":"RowPinningScript","RowSelection":"RowSelection","RowSelectionChanging":"RowSelectionChanging","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","RowToggle":"RowToggle","RowToggleScript":"RowToggleScript","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRowOnClick":"SelectRowOnClick","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","Selected":"Selected","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedRows":"SelectedRows","SelectedRowsChange":"SelectedRowsChange","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChanged":"SelectedRowsChanged","SelectedScript":"SelectedScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShouldGenerate":"ShouldGenerate","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","SnackbarDisplayTime":"SnackbarDisplayTime","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","SortStrategy":"SortStrategy","Sorting":"Sorting","SortingDone":"SortingDone","SortingDoneScript":"SortingDoneScript","SortingExpressions":"SortingExpressions","SortingExpressionsChange":"SortingExpressionsChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingOptions":"SortingOptions","SortingScript":"SortingScript","StateComponents":"StateComponents","SummaryCalculationMode":"SummaryCalculationMode","SummaryPosition":"SummaryPosition","SummaryRowHeight":"SummaryRowHeight","SuspendNotifications()":"SuspendNotifications()","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","Toolbar":"Toolbar","ToolbarExporting":"ToolbarExporting","ToolbarExportingScript":"ToolbarExportingScript","TotalRecords":"TotalRecords","Type":"Type","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","UpdateCell(object, object, string)":"UpdateCell(object, object, string)","UpdateCell":"UpdateCell(object, object, string)","UpdateCellAsync(object, object, string)":"UpdateCellAsync(object, object, string)","UpdateCellAsync":"UpdateCellAsync(object, object, string)","UpdateProperty(object, string, object)":"UpdateProperty(object, string, object)","UpdateProperty":"UpdateProperty(object, string, object)","UpdateRow(Dictionary, object)":"UpdateRow(Dictionary, object)","UpdateRow":"UpdateRow(Dictionary, object)","UpdateRowAsync(Dictionary, object)":"UpdateRowAsync(Dictionary, object)","UpdateRowAsync":"UpdateRowAsync(Dictionary, object)","ValidationStatusChange":"ValidationStatusChange","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationTrigger":"ValidationTrigger"}}],"IgbGridCellEditEndedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellEditEndedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellEditEndedEventArgs()":"IgbGridCellEditEndedEventArgs()","IgbGridCellEditEndedEventArgs":"IgbGridCellEditEndedEventArgs()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Row":"Row","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCellEditStartedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellEditStartedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellEditStartedEventArgs()":"IgbGridCellEditStartedEventArgs()","IgbGridCellEditStartedEventArgs":"IgbGridCellEditStartedEventArgs()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Row":"Row","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCellEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellEventArgs()":"IgbGridCellEventArgs()","IgbGridCellEventArgs":"IgbGridCellEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCellEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellEventArgsDetail()":"IgbGridCellEventArgsDetail()","IgbGridCellEventArgsDetail":"IgbGridCellEventArgsDetail()","Cell":"Cell","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCellIdentifier":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellIdentifier","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellIdentifier()":"IgbGridCellIdentifier()","IgbGridCellIdentifier":"IgbGridCellIdentifier()","ColumnID":"ColumnID","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowID":"RowID","RowIndex":"RowIndex","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCellPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellPosition","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellPosition()":"IgbGridCellPosition()","IgbGridCellPosition":"IgbGridCellPosition()","ColumnUniqueKey":"ColumnUniqueKey","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowIndex":"RowIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCellPositionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellPositionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellPositionModule()":"IgbGridCellPositionModule()","IgbGridCellPositionModule":"IgbGridCellPositionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridCellValueChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCellValueChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCellValueChangingEventArgs()":"IgbGridCellValueChangingEventArgs()","IgbGridCellValueChangingEventArgs":"IgbGridCellValueChangingEventArgs()","CellInfo":"CellInfo","Column":"Column","ColumnScript":"ColumnScript","EditID":"EditID","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","NewValue":"NewValue","OldValue":"OldValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridClipboardEvent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridClipboardEvent","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridClipboardEvent()":"IgbGridClipboardEvent()","IgbGridClipboardEvent":"IgbGridClipboardEvent()","Cancel":"Cancel","Data":"Data","DataScript":"DataScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridClipboardEventDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridClipboardEventDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridClipboardEventDetail()":"IgbGridClipboardEventDetail()","IgbGridClipboardEventDetail":"IgbGridClipboardEventDetail()","Cancel":"Cancel","Data":"Data","DataScript":"DataScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridClipboardEventEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridClipboardEventEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridClipboardEventEventArgs()":"IgbGridClipboardEventEventArgs()","IgbGridClipboardEventEventArgs":"IgbGridClipboardEventEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridColumnAnimationSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnAnimationSettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnAnimationSettings()":"IgbGridColumnAnimationSettings()","IgbGridColumnAnimationSettings":"IgbGridColumnAnimationSettings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridColumnButtonOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnButtonOptions","k":"class","s":"classes","m":{"OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnButtonOptions()":"IgbGridColumnButtonOptions()","IgbGridColumnButtonOptions":"IgbGridColumnButtonOptions()","ApplyButtonCaption":"ApplyButtonCaption","ApplyButtonClick":"ApplyButtonClick","ApplyButtonClickScript":"ApplyButtonClickScript","CancelButtonCaption":"CancelButtonCaption","CancelButtonClick":"CancelButtonClick","CancelButtonClickScript":"CancelButtonClickScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridColumnButtonOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnButtonOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnButtonOptionsModule()":"IgbGridColumnButtonOptionsModule()","IgbGridColumnButtonOptionsModule":"IgbGridColumnButtonOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbDataGridColumn)":"InsertItem(int, IgbDataGridColumn)","InsertItem":"InsertItem(int, IgbDataGridColumn)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbDataGridColumn)":"SetItem(int, IgbDataGridColumn)","SetItem":"SetItem(int, IgbDataGridColumn)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbDataGridColumn)":"Add(IgbDataGridColumn)","Add":"Add(IgbDataGridColumn)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbDataGridColumn[], int)":"CopyTo(IgbDataGridColumn[], int)","CopyTo":"CopyTo(IgbDataGridColumn[], int)","Contains(IgbDataGridColumn)":"Contains(IgbDataGridColumn)","Contains":"Contains(IgbDataGridColumn)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbDataGridColumn)":"IndexOf(IgbDataGridColumn)","IndexOf":"IndexOf(IgbDataGridColumn)","Insert(int, IgbDataGridColumn)":"Insert(int, IgbDataGridColumn)","Insert":"Insert(int, IgbDataGridColumn)","Remove(IgbDataGridColumn)":"Remove(IgbDataGridColumn)","Remove":"Remove(IgbDataGridColumn)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnCollection(object, string)":"IgbGridColumnCollection(object, string)","IgbGridColumnCollection":"IgbGridColumnCollection(object, string)"}}],"IgbGridColumnFilterOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnFilterOptions","k":"class","s":"classes","m":{"OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnFilterOptions()":"IgbGridColumnFilterOptions()","IgbGridColumnFilterOptions":"IgbGridColumnFilterOptions()","ActualFilterListDensity":"ActualFilterListDensity","ClearColumnFiltersCaption":"ClearColumnFiltersCaption","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterListDensity":"FilterListDensity","FilterListPlaceholderText":"FilterListPlaceholderText","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnApply()":"OnApply()","OnApply":"OnApply()","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","TextFilterCaption":"TextFilterCaption","Type":"Type"}}],"IgbGridColumnFilterOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnFilterOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnFilterOptionsModule()":"IgbGridColumnFilterOptionsModule()","IgbGridColumnFilterOptionsModule":"IgbGridColumnFilterOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnGroupOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnGroupOptions","k":"class","s":"classes","m":{"Caption":"Caption","ShowCaption":"ShowCaption","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnGroupOptions()":"IgbGridColumnGroupOptions()","IgbGridColumnGroupOptions":"IgbGridColumnGroupOptions()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridColumnGroupOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnGroupOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnGroupOptionsModule()":"IgbGridColumnGroupOptionsModule()","IgbGridColumnGroupOptionsModule":"IgbGridColumnGroupOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnHideOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnHideOptions","k":"class","s":"classes","m":{"Caption":"Caption","ShowCaption":"ShowCaption","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnHideOptions()":"IgbGridColumnHideOptions()","IgbGridColumnHideOptions":"IgbGridColumnHideOptions()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridColumnHideOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnHideOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnHideOptionsModule()":"IgbGridColumnHideOptionsModule()","IgbGridColumnHideOptionsModule":"IgbGridColumnHideOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnMoveOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnMoveOptions","k":"class","s":"classes","m":{"Caption":"Caption","ShowCaption":"ShowCaption","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnMoveOptions()":"IgbGridColumnMoveOptions()","IgbGridColumnMoveOptions":"IgbGridColumnMoveOptions()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MoveLeftCaption":"MoveLeftCaption","MoveRightCaption":"MoveRightCaption","Type":"Type"}}],"IgbGridColumnMoveOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnMoveOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnMoveOptionsModule()":"IgbGridColumnMoveOptionsModule()","IgbGridColumnMoveOptionsModule":"IgbGridColumnMoveOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnOptions","k":"class","s":"classes","m":{"DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnOptions()":"IgbGridColumnOptions()","IgbGridColumnOptions":"IgbGridColumnOptions()","ActualFilterListDensity":"ActualFilterListDensity","ActualSummaryListDensity":"ActualSummaryListDensity","ApplyButtonClick":"ApplyButtonClick","ApplyButtonClickScript":"ApplyButtonClickScript","ApplyFiltersButtonCaption":"ApplyFiltersButtonCaption","CancelButtonClick":"CancelButtonClick","CancelButtonClickScript":"CancelButtonClickScript","CancelFiltersButtonCaption":"CancelFiltersButtonCaption","ClearColumnFiltersCaption":"ClearColumnFiltersCaption","ColumnNameFontFamily":"ColumnNameFontFamily","ColumnNameFontSize":"ColumnNameFontSize","ColumnNameFontStyle":"ColumnNameFontStyle","ColumnNameFontWeight":"ColumnNameFontWeight","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterListDensity":"FilterListDensity","FilterListPlaceholderText":"FilterListPlaceholderText","FilterOptionsVisible":"FilterOptionsVisible","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GroupOptionsVisible":"GroupOptionsVisible","HeaderVisible":"HeaderVisible","HideOptionsVisible":"HideOptionsVisible","MoveHeaderCaption":"MoveHeaderCaption","MoveLeftCaption":"MoveLeftCaption","MoveOptionsVisible":"MoveOptionsVisible","MoveRightCaption":"MoveRightCaption","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","PinHeaderCaption":"PinHeaderCaption","PinLeftCaption":"PinLeftCaption","PinOptionsVisible":"PinOptionsVisible","PinRightCaption":"PinRightCaption","SortAscendingCaption":"SortAscendingCaption","SortDescendingCaption":"SortDescendingCaption","SortHeaderCaption":"SortHeaderCaption","SortOptionsVisible":"SortOptionsVisible","SummaryListBackground":"SummaryListBackground","SummaryListDensity":"SummaryListDensity","SummaryListTextColor":"SummaryListTextColor","SummaryOptionsVisible":"SummaryOptionsVisible","Type":"Type"}}],"IgbGridColumnOptionsBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnOptionsBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnOptionsBase()":"IgbGridColumnOptionsBase()","IgbGridColumnOptionsBase":"IgbGridColumnOptionsBase()","ActualBaseTheme":"ActualBaseTheme","ActualButtonDensity":"ActualButtonDensity","ActualDensity":"ActualDensity","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ButtonDensity":"ButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","Type":"Type"}}],"IgbGridColumnOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnOptionsModule()":"IgbGridColumnOptionsModule()","IgbGridColumnOptionsModule":"IgbGridColumnOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnOptionsSectionBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnOptionsSectionBase","k":"class","s":"classes","m":{"DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnOptionsSectionBase()":"IgbGridColumnOptionsSectionBase()","IgbGridColumnOptionsSectionBase":"IgbGridColumnOptionsSectionBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnApply()":"OnApply()","OnApply":"OnApply()","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","Type":"Type"}}],"IgbGridColumnOptionsSimpleSectionBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnOptionsSimpleSectionBase","k":"class","s":"classes","m":{"OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnOptionsSimpleSectionBase()":"IgbGridColumnOptionsSimpleSectionBase()","IgbGridColumnOptionsSimpleSectionBase":"IgbGridColumnOptionsSimpleSectionBase()","Caption":"Caption","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ShowCaption":"ShowCaption","Type":"Type"}}],"IgbGridColumnPinOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnPinOptions","k":"class","s":"classes","m":{"Caption":"Caption","ShowCaption":"ShowCaption","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnPinOptions()":"IgbGridColumnPinOptions()","IgbGridColumnPinOptions":"IgbGridColumnPinOptions()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PinLeftCaption":"PinLeftCaption","PinRightCaption":"PinRightCaption","Type":"Type"}}],"IgbGridColumnPinOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnPinOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnPinOptionsModule()":"IgbGridColumnPinOptionsModule()","IgbGridColumnPinOptionsModule":"IgbGridColumnPinOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnsAutoGeneratedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnsAutoGeneratedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnsAutoGeneratedEventArgs()":"IgbGridColumnsAutoGeneratedEventArgs()","IgbGridColumnsAutoGeneratedEventArgs":"IgbGridColumnsAutoGeneratedEventArgs()","Columns":"Columns","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridColumnsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnsChangedEventArgs()":"IgbGridColumnsChangedEventArgs()","IgbGridColumnsChangedEventArgs":"IgbGridColumnsChangedEventArgs()","Columns":"Columns","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridColumnSortOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnSortOptions","k":"class","s":"classes","m":{"Caption":"Caption","ShowCaption":"ShowCaption","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnApply()":"OnApply()","OnApply":"OnApply()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnSortOptions()":"IgbGridColumnSortOptions()","IgbGridColumnSortOptions":"IgbGridColumnSortOptions()","AscendingCaption":"AscendingCaption","DescendingCaption":"DescendingCaption","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SortDirection":"SortDirection","Type":"Type"}}],"IgbGridColumnSortOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnSortOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnSortOptionsModule()":"IgbGridColumnSortOptionsModule()","IgbGridColumnSortOptionsModule":"IgbGridColumnSortOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnSummaryOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnSummaryOptions","k":"class","s":"classes","m":{"DefaultEventBehavior":"DefaultEventBehavior","AutoSize":"AutoSize","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","ActualBaseTheme":"ActualBaseTheme","ButtonDensity":"ButtonDensity","ActualButtonDensity":"ActualButtonDensity","ButtonFontFamily":"ButtonFontFamily","ButtonFontSize":"ButtonFontSize","ButtonFontStyle":"ButtonFontStyle","ButtonFontWeight":"ButtonFontWeight","Column":"Column","Density":"Density","ActualDensity":"ActualDensity","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","TextColor":"TextColor","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnSummaryOptions()":"IgbGridColumnSummaryOptions()","IgbGridColumnSummaryOptions":"IgbGridColumnSummaryOptions()","ActiveCount":"ActiveCount","ActualSummaryListDensity":"ActualSummaryListDensity","CloseMenu()":"CloseMenu()","CloseMenu":"CloseMenu()","CloseMenuAsync()":"CloseMenuAsync()","CloseMenuAsync":"CloseMenuAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnApply()":"OnApply()","OnApply":"OnApply()","OnApplyAsync()":"OnApplyAsync()","OnApplyAsync":"OnApplyAsync()","OnCancel()":"OnCancel()","OnCancel":"OnCancel()","OnCancelAsync()":"OnCancelAsync()","OnCancelAsync":"OnCancelAsync()","SummaryCaption":"SummaryCaption","SummaryListBackground":"SummaryListBackground","SummaryListDensity":"SummaryListDensity","SummaryListTextColor":"SummaryListTextColor","Type":"Type"}}],"IgbGridColumnSummaryOptionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnSummaryOptionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnSummaryOptionsModule()":"IgbGridColumnSummaryOptionsModule()","IgbGridColumnSummaryOptionsModule":"IgbGridColumnSummaryOptionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridColumnWidthChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridColumnWidthChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridColumnWidthChangedEventArgs()":"IgbGridColumnWidthChangedEventArgs()","IgbGridColumnWidthChangedEventArgs":"IgbGridColumnWidthChangedEventArgs()","Column":"Column","ColumnScript":"ColumnScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewWidth":"NewWidth","OldWidth":"OldWidth","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCompoundConditionalStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCompoundConditionalStyle","k":"class","s":"classes","m":{"EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","RequiresGlobalValuesAsync()":"RequiresGlobalValuesAsync()","RequiresGlobalValuesAsync":"RequiresGlobalValuesAsync()","RequiresGlobalValues()":"RequiresGlobalValues()","RequiresGlobalValues":"RequiresGlobalValues()","ParentTypeName":"ParentTypeName","ContentProperties":"ContentProperties","ActualProperties":"ActualProperties","StyleKey":"StyleKey","IsTransitionInEnabled":"IsTransitionInEnabled","Properties":"Properties","ConditionString":"ConditionString","Condition":"Condition","IsFieldMinimumNeeded":"IsFieldMinimumNeeded","IsFieldMaximumNeeded":"IsFieldMaximumNeeded","IsFieldSumNeeded":"IsFieldSumNeeded","PropertyUpdatedScript":"PropertyUpdatedScript","PropertyUpdated":"PropertyUpdated","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCompoundConditionalStyle()":"IgbGridCompoundConditionalStyle()","IgbGridCompoundConditionalStyle":"IgbGridCompoundConditionalStyle()","ActualNeedsFieldMaximum()":"ActualNeedsFieldMaximum()","ActualNeedsFieldMaximum":"ActualNeedsFieldMaximum()","ActualNeedsFieldMaximumAsync()":"ActualNeedsFieldMaximumAsync()","ActualNeedsFieldMaximumAsync":"ActualNeedsFieldMaximumAsync()","ActualNeedsFieldMinimum()":"ActualNeedsFieldMinimum()","ActualNeedsFieldMinimum":"ActualNeedsFieldMinimum()","ActualNeedsFieldMinimumAsync()":"ActualNeedsFieldMinimumAsync()","ActualNeedsFieldMinimumAsync":"ActualNeedsFieldMinimumAsync()","ActualNeedsFieldSum()":"ActualNeedsFieldSum()","ActualNeedsFieldSum":"ActualNeedsFieldSum()","ActualNeedsFieldSumAsync()":"ActualNeedsFieldSumAsync()","ActualNeedsFieldSumAsync":"ActualNeedsFieldSumAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSubStyles()":"GetSubStyles()","GetSubStyles":"GetSubStyles()","GetSubStylesAsync()":"GetSubStylesAsync()","GetSubStylesAsync":"GetSubStylesAsync()","Type":"Type"}}],"IgbGridConditionalStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStyle","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStyle()":"IgbGridConditionalStyle()","IgbGridConditionalStyle":"IgbGridConditionalStyle()","ActualNeedsFieldMaximum()":"ActualNeedsFieldMaximum()","ActualNeedsFieldMaximum":"ActualNeedsFieldMaximum()","ActualNeedsFieldMaximumAsync()":"ActualNeedsFieldMaximumAsync()","ActualNeedsFieldMaximumAsync":"ActualNeedsFieldMaximumAsync()","ActualNeedsFieldMinimum()":"ActualNeedsFieldMinimum()","ActualNeedsFieldMinimum":"ActualNeedsFieldMinimum()","ActualNeedsFieldMinimumAsync()":"ActualNeedsFieldMinimumAsync()","ActualNeedsFieldMinimumAsync":"ActualNeedsFieldMinimumAsync()","ActualNeedsFieldSum()":"ActualNeedsFieldSum()","ActualNeedsFieldSum":"ActualNeedsFieldSum()","ActualNeedsFieldSumAsync()":"ActualNeedsFieldSumAsync()","ActualNeedsFieldSumAsync":"ActualNeedsFieldSumAsync()","ActualProperties":"ActualProperties","Condition":"Condition","ConditionString":"ConditionString","ContentProperties":"ContentProperties","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterStringErrorsParsing":"FilterStringErrorsParsing","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsFieldMaximumNeeded":"IsFieldMaximumNeeded","IsFieldMinimumNeeded":"IsFieldMinimumNeeded","IsFieldSumNeeded":"IsFieldSumNeeded","IsTransitionInEnabled":"IsTransitionInEnabled","ParentTypeName":"ParentTypeName","Properties":"Properties","PropertyUpdated":"PropertyUpdated","PropertyUpdatedScript":"PropertyUpdatedScript","RequiresGlobalValues()":"RequiresGlobalValues()","RequiresGlobalValues":"RequiresGlobalValues()","RequiresGlobalValuesAsync()":"RequiresGlobalValuesAsync()","RequiresGlobalValuesAsync":"RequiresGlobalValuesAsync()","StyleKey":"StyleKey","Type":"Type"}}],"IgbGridConditionalStyleCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStyleCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridConditionalStyle)":"InsertItem(int, IgbGridConditionalStyle)","InsertItem":"InsertItem(int, IgbGridConditionalStyle)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridConditionalStyle)":"SetItem(int, IgbGridConditionalStyle)","SetItem":"SetItem(int, IgbGridConditionalStyle)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridConditionalStyle)":"Add(IgbGridConditionalStyle)","Add":"Add(IgbGridConditionalStyle)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridConditionalStyle[], int)":"CopyTo(IgbGridConditionalStyle[], int)","CopyTo":"CopyTo(IgbGridConditionalStyle[], int)","Contains(IgbGridConditionalStyle)":"Contains(IgbGridConditionalStyle)","Contains":"Contains(IgbGridConditionalStyle)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridConditionalStyle)":"IndexOf(IgbGridConditionalStyle)","IndexOf":"IndexOf(IgbGridConditionalStyle)","Insert(int, IgbGridConditionalStyle)":"Insert(int, IgbGridConditionalStyle)","Insert":"Insert(int, IgbGridConditionalStyle)","Remove(IgbGridConditionalStyle)":"Remove(IgbGridConditionalStyle)","Remove":"Remove(IgbGridConditionalStyle)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStyleCollection(object, string)":"IgbGridConditionalStyleCollection(object, string)","IgbGridConditionalStyleCollection":"IgbGridConditionalStyleCollection(object, string)"}}],"IgbGridConditionalStyleFontInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStyleFontInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStyleFontInfo()":"IgbGridConditionalStyleFontInfo()","IgbGridConditionalStyleFontInfo":"IgbGridConditionalStyleFontInfo()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","Type":"Type"}}],"IgbGridConditionalStyleFontInfoModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStyleFontInfoModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStyleFontInfoModule()":"IgbGridConditionalStyleFontInfoModule()","IgbGridConditionalStyleFontInfoModule":"IgbGridConditionalStyleFontInfoModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridConditionalStyleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStyleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStyleModule()":"IgbGridConditionalStyleModule()","IgbGridConditionalStyleModule":"IgbGridConditionalStyleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridConditionalStyleProperty":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStyleProperty","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStyleProperty()":"IgbGridConditionalStyleProperty()","IgbGridConditionalStyleProperty":"IgbGridConditionalStyleProperty()","ActualInputValueExpression":"ActualInputValueExpression","ActualMaximumInputValueExpression":"ActualMaximumInputValueExpression","ActualMinimumInputValueExpression":"ActualMinimumInputValueExpression","ActualSumInputValueExpression":"ActualSumInputValueExpression","BoolValue":"BoolValue","BrushValue":"BrushValue","ColorCollection":"ColorCollection","DateValue":"DateValue","DoubleValue":"DoubleValue","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterStringErrorsParsing":"FilterStringErrorsParsing","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FontValue":"FontValue","InputValueExpression":"InputValueExpression","InputValueExpressionString":"InputValueExpressionString","IntValue":"IntValue","MaximumColor":"MaximumColor","MaximumInputValue":"MaximumInputValue","MaximumInputValueExpression":"MaximumInputValueExpression","MaximumInputValueExpressionString":"MaximumInputValueExpressionString","MaximumInputValueScript":"MaximumInputValueScript","MaximumType":"MaximumType","MinimumColor":"MinimumColor","MinimumInputValue":"MinimumInputValue","MinimumInputValueExpression":"MinimumInputValueExpression","MinimumInputValueExpressionString":"MinimumInputValueExpressionString","MinimumInputValueScript":"MinimumInputValueScript","MinimumType":"MinimumType","ObjectValue":"ObjectValue","PropertyName":"PropertyName","ShouldSetValue":"ShouldSetValue","StringValue":"StringValue","StylingType":"StylingType","SumInputValue":"SumInputValue","SumInputValueExpression":"SumInputValueExpression","SumInputValueExpressionString":"SumInputValueExpressionString","SumInputValueScript":"SumInputValueScript","Type":"Type","ValueCollection":"ValueCollection","ValueCollectionScript":"ValueCollectionScript"}}],"IgbGridConditionalStylePropertyCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStylePropertyCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridConditionalStyleProperty)":"InsertItem(int, IgbGridConditionalStyleProperty)","InsertItem":"InsertItem(int, IgbGridConditionalStyleProperty)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridConditionalStyleProperty)":"SetItem(int, IgbGridConditionalStyleProperty)","SetItem":"SetItem(int, IgbGridConditionalStyleProperty)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridConditionalStyleProperty)":"Add(IgbGridConditionalStyleProperty)","Add":"Add(IgbGridConditionalStyleProperty)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridConditionalStyleProperty[], int)":"CopyTo(IgbGridConditionalStyleProperty[], int)","CopyTo":"CopyTo(IgbGridConditionalStyleProperty[], int)","Contains(IgbGridConditionalStyleProperty)":"Contains(IgbGridConditionalStyleProperty)","Contains":"Contains(IgbGridConditionalStyleProperty)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridConditionalStyleProperty)":"IndexOf(IgbGridConditionalStyleProperty)","IndexOf":"IndexOf(IgbGridConditionalStyleProperty)","Insert(int, IgbGridConditionalStyleProperty)":"Insert(int, IgbGridConditionalStyleProperty)","Insert":"Insert(int, IgbGridConditionalStyleProperty)","Remove(IgbGridConditionalStyleProperty)":"Remove(IgbGridConditionalStyleProperty)","Remove":"Remove(IgbGridConditionalStyleProperty)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStylePropertyCollection(object, string)":"IgbGridConditionalStylePropertyCollection(object, string)","IgbGridConditionalStylePropertyCollection":"IgbGridConditionalStylePropertyCollection(object, string)"}}],"IgbGridConditionalStylePropertyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionalStylePropertyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionalStylePropertyModule()":"IgbGridConditionalStylePropertyModule()","IgbGridConditionalStylePropertyModule":"IgbGridConditionalStylePropertyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridConditionFilterStringErrorsParsingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridConditionFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridConditionFilterStringErrorsParsingEventArgs()":"IgbGridConditionFilterStringErrorsParsingEventArgs()","IgbGridConditionFilterStringErrorsParsingEventArgs":"IgbGridConditionFilterStringErrorsParsingEventArgs()","Errors":"Errors","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PropertyName":"PropertyName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridContextMenuEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridContextMenuEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridContextMenuEventArgs()":"IgbGridContextMenuEventArgs()","IgbGridContextMenuEventArgs":"IgbGridContextMenuEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridContextMenuEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridContextMenuEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridContextMenuEventArgsDetail()":"IgbGridContextMenuEventArgsDetail()","IgbGridContextMenuEventArgsDetail":"IgbGridContextMenuEventArgsDetail()","Cell":"Cell","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Row":"Row","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCreatedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCreatedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCreatedEventArgs()":"IgbGridCreatedEventArgs()","IgbGridCreatedEventArgs":"IgbGridCreatedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCreatedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCreatedEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCreatedEventArgsDetail()":"IgbGridCreatedEventArgsDetail()","IgbGridCreatedEventArgsDetail":"IgbGridCreatedEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","Owner":"Owner","ParentID":"ParentID","ParentRowData":"ParentRowData","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridCustomFilterRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridCustomFilterRequestedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridCustomFilterRequestedEventArgs()":"IgbGridCustomFilterRequestedEventArgs()","IgbGridCustomFilterRequestedEventArgs":"IgbGridCustomFilterRequestedEventArgs()","Column":"Column","Expression":"Expression","Filter":"Filter","FilterFactory":"FilterFactory","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbGridDataCommittedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridDataCommittedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridDataCommittedEventArgs()":"IgbGridDataCommittedEventArgs()","IgbGridDataCommittedEventArgs":"IgbGridDataCommittedEventArgs()","Changes":"Changes","CommitID":"CommitID","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridDataCommittingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridDataCommittingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridDataCommittingEventArgs()":"IgbGridDataCommittingEventArgs()","IgbGridDataCommittingEventArgs":"IgbGridDataCommittingEventArgs()","Changes":"Changes","CommitID":"CommitID","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridEditDoneEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEditDoneEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEditDoneEventArgs()":"IgbGridEditDoneEventArgs()","IgbGridEditDoneEventArgs":"IgbGridEditDoneEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridEditDoneEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEditDoneEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEditDoneEventArgsDetail()":"IgbGridEditDoneEventArgsDetail()","IgbGridEditDoneEventArgsDetail":"IgbGridEditDoneEventArgsDetail()","CellID":"CellID","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsAddRow":"IsAddRow","NewValue":"NewValue","OldValue":"OldValue","Owner":"Owner","PrimaryKey":"PrimaryKey","RowData":"RowData","RowID":"RowID","RowKey":"RowKey","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Valid":"Valid"}}],"IgbGridEditEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEditEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEditEventArgs()":"IgbGridEditEventArgs()","IgbGridEditEventArgs":"IgbGridEditEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridEditEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEditEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEditEventArgsDetail()":"IgbGridEditEventArgsDetail()","IgbGridEditEventArgsDetail":"IgbGridEditEventArgsDetail()","Cancel":"Cancel","CellID":"CellID","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsAddRow":"IsAddRow","NewValue":"NewValue","OldValue":"OldValue","Owner":"Owner","PrimaryKey":"PrimaryKey","RowData":"RowData","RowID":"RowID","RowKey":"RowKey","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Valid":"Valid"}}],"IgbGridEditingActions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEditingActions","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ActionStripParent":"ActionStripParent","AsMenuItems":"AsMenuItems","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEditingActions()":"IgbGridEditingActions()","IgbGridEditingActions":"IgbGridEditingActions()","AddChild":"AddChild","AddRow":"AddRow","DeleteRow":"DeleteRow","EditRow":"EditRow","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","StartEdit(object)":"StartEdit(object)","StartEdit":"StartEdit(object)","StartEditAsync(object)":"StartEditAsync(object)","StartEditAsync":"StartEditAsync(object)","Type":"Type"}}],"IgbGridEditingActionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEditingActionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEditingActionsModule()":"IgbGridEditingActionsModule()","IgbGridEditingActionsModule":"IgbGridEditingActionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridEmptyTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridEmptyTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridEmptyTemplateContext()":"IgbGridEmptyTemplateContext()","IgbGridEmptyTemplateContext":"IgbGridEmptyTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridFilterDialogFilterChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogFilterChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogFilterChangeEventArgs()":"IgbGridFilterDialogFilterChangeEventArgs()","IgbGridFilterDialogFilterChangeEventArgs":"IgbGridFilterDialogFilterChangeEventArgs()","Filter":"Filter","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridFilterDialogOpeningEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogOpeningEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogOpeningEventArgs()":"IgbGridFilterDialogOpeningEventArgs()","IgbGridFilterDialogOpeningEventArgs":"IgbGridFilterDialogOpeningEventArgs()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridFilterDialogViewModel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogViewModel","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogViewModel()":"IgbGridFilterDialogViewModel()","IgbGridFilterDialogViewModel":"IgbGridFilterDialogViewModel()","AddNewRow()":"AddNewRow()","AddNewRow":"AddNewRow()","AddNewRowAsync()":"AddNewRowAsync()","AddNewRowAsync":"AddNewRowAsync()","CanGroupRange(int, int)":"CanGroupRange(int, int)","CanGroupRange":"CanGroupRange(int, int)","CanGroupRangeAsync(int, int)":"CanGroupRangeAsync(int, int)","CanGroupRangeAsync":"CanGroupRangeAsync(int, int)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GroupRange(int, int, bool)":"GroupRange(int, int, bool)","GroupRange":"GroupRange(int, int, bool)","GroupRangeAsync(int, int, bool)":"GroupRangeAsync(int, int, bool)","GroupRangeAsync":"GroupRangeAsync(int, int, bool)","IsTopLevelOr":"IsTopLevelOr","MaxGroupingLevels":"MaxGroupingLevels","PropertyType":"PropertyType","Rows":"Rows","TargetingRange(int, int)":"TargetingRange(int, int)","TargetingRange":"TargetingRange(int, int)","TargetingRangeAsync(int, int)":"TargetingRangeAsync(int, int)","TargetingRangeAsync":"TargetingRangeAsync(int, int)","ToggleRange(int, int)":"ToggleRange(int, int)","ToggleRange":"ToggleRange(int, int)","ToggleRangeAsync(int, int)":"ToggleRangeAsync(int, int)","ToggleRangeAsync":"ToggleRangeAsync(int, int)","Type":"Type","UngroupRange(int, int)":"UngroupRange(int, int)","UngroupRange":"UngroupRange(int, int)","UngroupRangeAsync(int, int)":"UngroupRangeAsync(int, int)","UngroupRangeAsync":"UngroupRangeAsync(int, int)"}}],"IgbGridFilterDialogViewModelGrouping":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogViewModelGrouping","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogViewModelGrouping()":"IgbGridFilterDialogViewModelGrouping()","IgbGridFilterDialogViewModelGrouping":"IgbGridFilterDialogViewModelGrouping()","EndIndex":"EndIndex","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsOrGrouping":"IsOrGrouping","StartIndex":"StartIndex","Type":"Type"}}],"IgbGridFilterDialogViewModelGroupingLevel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogViewModelGroupingLevel","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridFilterDialogViewModelGrouping)":"InsertItem(int, IgbGridFilterDialogViewModelGrouping)","InsertItem":"InsertItem(int, IgbGridFilterDialogViewModelGrouping)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridFilterDialogViewModelGrouping)":"SetItem(int, IgbGridFilterDialogViewModelGrouping)","SetItem":"SetItem(int, IgbGridFilterDialogViewModelGrouping)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridFilterDialogViewModelGrouping)":"Add(IgbGridFilterDialogViewModelGrouping)","Add":"Add(IgbGridFilterDialogViewModelGrouping)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridFilterDialogViewModelGrouping[], int)":"CopyTo(IgbGridFilterDialogViewModelGrouping[], int)","CopyTo":"CopyTo(IgbGridFilterDialogViewModelGrouping[], int)","Contains(IgbGridFilterDialogViewModelGrouping)":"Contains(IgbGridFilterDialogViewModelGrouping)","Contains":"Contains(IgbGridFilterDialogViewModelGrouping)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridFilterDialogViewModelGrouping)":"IndexOf(IgbGridFilterDialogViewModelGrouping)","IndexOf":"IndexOf(IgbGridFilterDialogViewModelGrouping)","Insert(int, IgbGridFilterDialogViewModelGrouping)":"Insert(int, IgbGridFilterDialogViewModelGrouping)","Insert":"Insert(int, IgbGridFilterDialogViewModelGrouping)","Remove(IgbGridFilterDialogViewModelGrouping)":"Remove(IgbGridFilterDialogViewModelGrouping)","Remove":"Remove(IgbGridFilterDialogViewModelGrouping)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogViewModelGroupingLevel(object, string)":"IgbGridFilterDialogViewModelGroupingLevel(object, string)","IgbGridFilterDialogViewModelGroupingLevel":"IgbGridFilterDialogViewModelGroupingLevel(object, string)"}}],"IgbGridFilterDialogViewModelGroupingLevelCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogViewModelGroupingLevelCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridFilterDialogViewModelGroupingLevel)":"InsertItem(int, IgbGridFilterDialogViewModelGroupingLevel)","InsertItem":"InsertItem(int, IgbGridFilterDialogViewModelGroupingLevel)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridFilterDialogViewModelGroupingLevel)":"SetItem(int, IgbGridFilterDialogViewModelGroupingLevel)","SetItem":"SetItem(int, IgbGridFilterDialogViewModelGroupingLevel)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridFilterDialogViewModelGroupingLevel)":"Add(IgbGridFilterDialogViewModelGroupingLevel)","Add":"Add(IgbGridFilterDialogViewModelGroupingLevel)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridFilterDialogViewModelGroupingLevel[], int)":"CopyTo(IgbGridFilterDialogViewModelGroupingLevel[], int)","CopyTo":"CopyTo(IgbGridFilterDialogViewModelGroupingLevel[], int)","Contains(IgbGridFilterDialogViewModelGroupingLevel)":"Contains(IgbGridFilterDialogViewModelGroupingLevel)","Contains":"Contains(IgbGridFilterDialogViewModelGroupingLevel)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridFilterDialogViewModelGroupingLevel)":"IndexOf(IgbGridFilterDialogViewModelGroupingLevel)","IndexOf":"IndexOf(IgbGridFilterDialogViewModelGroupingLevel)","Insert(int, IgbGridFilterDialogViewModelGroupingLevel)":"Insert(int, IgbGridFilterDialogViewModelGroupingLevel)","Insert":"Insert(int, IgbGridFilterDialogViewModelGroupingLevel)","Remove(IgbGridFilterDialogViewModelGroupingLevel)":"Remove(IgbGridFilterDialogViewModelGroupingLevel)","Remove":"Remove(IgbGridFilterDialogViewModelGroupingLevel)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogViewModelGroupingLevelCollection(object, string)":"IgbGridFilterDialogViewModelGroupingLevelCollection(object, string)","IgbGridFilterDialogViewModelGroupingLevelCollection":"IgbGridFilterDialogViewModelGroupingLevelCollection(object, string)"}}],"IgbGridFilterDialogViewModelRow":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogViewModelRow","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogViewModelRow()":"IgbGridFilterDialogViewModelRow()","IgbGridFilterDialogViewModelRow":"IgbGridFilterDialogViewModelRow()","CurrentOperator":"CurrentOperator","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Operand1":"Operand1","Operand1Script":"Operand1Script","Operand2":"Operand2","Operand2Script":"Operand2Script","OperandNumber":"OperandNumber","Operators":"Operators","Type":"Type"}}],"IgbGridFilterDialogViewModelRowCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterDialogViewModelRowCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridFilterDialogViewModelRow)":"InsertItem(int, IgbGridFilterDialogViewModelRow)","InsertItem":"InsertItem(int, IgbGridFilterDialogViewModelRow)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridFilterDialogViewModelRow)":"SetItem(int, IgbGridFilterDialogViewModelRow)","SetItem":"SetItem(int, IgbGridFilterDialogViewModelRow)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridFilterDialogViewModelRow)":"Add(IgbGridFilterDialogViewModelRow)","Add":"Add(IgbGridFilterDialogViewModelRow)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridFilterDialogViewModelRow[], int)":"CopyTo(IgbGridFilterDialogViewModelRow[], int)","CopyTo":"CopyTo(IgbGridFilterDialogViewModelRow[], int)","Contains(IgbGridFilterDialogViewModelRow)":"Contains(IgbGridFilterDialogViewModelRow)","Contains":"Contains(IgbGridFilterDialogViewModelRow)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridFilterDialogViewModelRow)":"IndexOf(IgbGridFilterDialogViewModelRow)","IndexOf":"IndexOf(IgbGridFilterDialogViewModelRow)","Insert(int, IgbGridFilterDialogViewModelRow)":"Insert(int, IgbGridFilterDialogViewModelRow)","Insert":"Insert(int, IgbGridFilterDialogViewModelRow)","Remove(IgbGridFilterDialogViewModelRow)":"Remove(IgbGridFilterDialogViewModelRow)","Remove":"Remove(IgbGridFilterDialogViewModelRow)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterDialogViewModelRowCollection(object, string)":"IgbGridFilterDialogViewModelRowCollection(object, string)","IgbGridFilterDialogViewModelRowCollection":"IgbGridFilterDialogViewModelRowCollection(object, string)"}}],"IgbGridFilterExpressionsEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterExpressionsEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterExpressionsEventArgs()":"IgbGridFilterExpressionsEventArgs()","IgbGridFilterExpressionsEventArgs":"IgbGridFilterExpressionsEventArgs()","FilterExpressions":"FilterExpressions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridFilterOperandsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFilterOperandsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbFilterOperand)":"InsertItem(int, IgbFilterOperand)","InsertItem":"InsertItem(int, IgbFilterOperand)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbFilterOperand)":"SetItem(int, IgbFilterOperand)","SetItem":"SetItem(int, IgbFilterOperand)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbFilterOperand)":"Add(IgbFilterOperand)","Add":"Add(IgbFilterOperand)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbFilterOperand[], int)":"CopyTo(IgbFilterOperand[], int)","CopyTo":"CopyTo(IgbFilterOperand[], int)","Contains(IgbFilterOperand)":"Contains(IgbFilterOperand)","Contains":"Contains(IgbFilterOperand)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbFilterOperand)":"IndexOf(IgbFilterOperand)","IndexOf":"IndexOf(IgbFilterOperand)","Insert(int, IgbFilterOperand)":"Insert(int, IgbFilterOperand)","Insert":"Insert(int, IgbFilterOperand)","Remove(IgbFilterOperand)":"Remove(IgbFilterOperand)","Remove":"Remove(IgbFilterOperand)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFilterOperandsCollection(object, string)":"IgbGridFilterOperandsCollection(object, string)","IgbGridFilterOperandsCollection":"IgbGridFilterOperandsCollection(object, string)"}}],"IgbGridFormGroupCreatedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFormGroupCreatedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFormGroupCreatedEventArgs()":"IgbGridFormGroupCreatedEventArgs()","IgbGridFormGroupCreatedEventArgs":"IgbGridFormGroupCreatedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridFormGroupCreatedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridFormGroupCreatedEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridFormGroupCreatedEventArgsDetail()":"IgbGridFormGroupCreatedEventArgsDetail()","IgbGridFormGroupCreatedEventArgsDetail":"IgbGridFormGroupCreatedEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Owner":"Owner","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridGroupDescriptionsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridGroupDescriptionsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridGroupDescriptionsChangedEventArgs()":"IgbGridGroupDescriptionsChangedEventArgs()","IgbGridGroupDescriptionsChangedEventArgs":"IgbGridGroupDescriptionsChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupDescriptions":"GroupDescriptions","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridGroupingStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridGroupingStrategy","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridGroupingStrategy()":"IgbGridGroupingStrategy()","IgbGridGroupingStrategy":"IgbGridGroupingStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridHeaderTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridHeaderTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridHeaderTemplateContext()":"IgbGridHeaderTemplateContext()","IgbGridHeaderTemplateContext":"IgbGridHeaderTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridKeydownEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridKeydownEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridKeydownEventArgs()":"IgbGridKeydownEventArgs()","IgbGridKeydownEventArgs":"IgbGridKeydownEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridKeydownEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridKeydownEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridKeydownEventArgsDetail()":"IgbGridKeydownEventArgsDetail()","IgbGridKeydownEventArgsDetail":"IgbGridKeydownEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Target":"Target","TargetType":"TargetType","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridMasterDetailContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridMasterDetailContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridMasterDetailContext()":"IgbGridMasterDetailContext()","IgbGridMasterDetailContext":"IgbGridMasterDetailContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","Index":"Index","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridMergeStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridMergeStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridMergeStrategy()":"IgbGridMergeStrategy()","IgbGridMergeStrategy":"IgbGridMergeStrategy()","Comparer(object, object, string)":"Comparer(object, object, string)","Comparer":"Comparer(object, object, string)","ComparerAsync(object, object, string)":"ComparerAsync(object, object, string)","ComparerAsync":"ComparerAsync(object, object, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridModule()":"IgbGridModule()","IgbGridModule":"IgbGridModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridPaginatorTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridPaginatorTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridPaginatorTemplateContext()":"IgbGridPaginatorTemplateContext()","IgbGridPaginatorTemplateContext":"IgbGridPaginatorTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridPinningActions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridPinningActions","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ActionStripParent":"ActionStripParent","AsMenuItems":"AsMenuItems","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridPinningActions()":"IgbGridPinningActions()","IgbGridPinningActions":"IgbGridPinningActions()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Pin(object)":"Pin(object)","Pin":"Pin(object)","PinAsync(object)":"PinAsync(object)","PinAsync":"PinAsync(object)","ScrollToRow(object)":"ScrollToRow(object)","ScrollToRow":"ScrollToRow(object)","ScrollToRowAsync(object)":"ScrollToRowAsync(object)","ScrollToRowAsync":"ScrollToRowAsync(object)","Type":"Type","Unpin(object)":"Unpin(object)","Unpin":"Unpin(object)","UnpinAsync(object)":"UnpinAsync(object)","UnpinAsync":"UnpinAsync(object)"}}],"IgbGridPinningActionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridPinningActionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridPinningActionsModule()":"IgbGridPinningActionsModule()","IgbGridPinningActionsModule":"IgbGridPinningActionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridResourceStrings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridResourceStrings()":"IgbGridResourceStrings()","IgbGridResourceStrings":"IgbGridResourceStrings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Igx_grid_actions_add_child_label":"Igx_grid_actions_add_child_label","Igx_grid_actions_add_label":"Igx_grid_actions_add_label","Igx_grid_actions_delete_label":"Igx_grid_actions_delete_label","Igx_grid_actions_edit_label":"Igx_grid_actions_edit_label","Igx_grid_actions_jumpDown_label":"Igx_grid_actions_jumpDown_label","Igx_grid_actions_jumpUp_label":"Igx_grid_actions_jumpUp_label","Igx_grid_actions_pin_label":"Igx_grid_actions_pin_label","Igx_grid_actions_unpin_label":"Igx_grid_actions_unpin_label","Igx_grid_add_row_label":"Igx_grid_add_row_label","Igx_grid_advanced_filter_add_condition":"Igx_grid_advanced_filter_add_condition","Igx_grid_advanced_filter_add_condition_root":"Igx_grid_advanced_filter_add_condition_root","Igx_grid_advanced_filter_add_group":"Igx_grid_advanced_filter_add_group","Igx_grid_advanced_filter_add_group_root":"Igx_grid_advanced_filter_add_group_root","Igx_grid_advanced_filter_and_group":"Igx_grid_advanced_filter_and_group","Igx_grid_advanced_filter_and_label":"Igx_grid_advanced_filter_and_label","Igx_grid_advanced_filter_column_placeholder":"Igx_grid_advanced_filter_column_placeholder","Igx_grid_advanced_filter_create_and_group":"Igx_grid_advanced_filter_create_and_group","Igx_grid_advanced_filter_create_or_group":"Igx_grid_advanced_filter_create_or_group","Igx_grid_advanced_filter_delete":"Igx_grid_advanced_filter_delete","Igx_grid_advanced_filter_delete_filters":"Igx_grid_advanced_filter_delete_filters","Igx_grid_advanced_filter_dialog_checkbox_text":"Igx_grid_advanced_filter_dialog_checkbox_text","Igx_grid_advanced_filter_dialog_message":"Igx_grid_advanced_filter_dialog_message","Igx_grid_advanced_filter_dialog_title":"Igx_grid_advanced_filter_dialog_title","Igx_grid_advanced_filter_drop_ghost_text":"Igx_grid_advanced_filter_drop_ghost_text","Igx_grid_advanced_filter_end_group":"Igx_grid_advanced_filter_end_group","Igx_grid_advanced_filter_from_label":"Igx_grid_advanced_filter_from_label","Igx_grid_advanced_filter_initial_text":"Igx_grid_advanced_filter_initial_text","Igx_grid_advanced_filter_or_group":"Igx_grid_advanced_filter_or_group","Igx_grid_advanced_filter_or_label":"Igx_grid_advanced_filter_or_label","Igx_grid_advanced_filter_query_value_placeholder":"Igx_grid_advanced_filter_query_value_placeholder","Igx_grid_advanced_filter_select_entity":"Igx_grid_advanced_filter_select_entity","Igx_grid_advanced_filter_select_return_field_single":"Igx_grid_advanced_filter_select_return_field_single","Igx_grid_advanced_filter_switch_group":"Igx_grid_advanced_filter_switch_group","Igx_grid_advanced_filter_title":"Igx_grid_advanced_filter_title","Igx_grid_advanced_filter_ungroup":"Igx_grid_advanced_filter_ungroup","Igx_grid_advanced_filter_value_placeholder":"Igx_grid_advanced_filter_value_placeholder","Igx_grid_complex_filter":"Igx_grid_complex_filter","Igx_grid_email_validation_error":"Igx_grid_email_validation_error","Igx_grid_emptyFilteredGrid_message":"Igx_grid_emptyFilteredGrid_message","Igx_grid_emptyGrid_message":"Igx_grid_emptyGrid_message","Igx_grid_excel_add_to_filter":"Igx_grid_excel_add_to_filter","Igx_grid_excel_apply":"Igx_grid_excel_apply","Igx_grid_excel_blanks":"Igx_grid_excel_blanks","Igx_grid_excel_boolean_filter":"Igx_grid_excel_boolean_filter","Igx_grid_excel_cancel":"Igx_grid_excel_cancel","Igx_grid_excel_currency_filter":"Igx_grid_excel_currency_filter","Igx_grid_excel_custom_dialog_add":"Igx_grid_excel_custom_dialog_add","Igx_grid_excel_custom_dialog_clear":"Igx_grid_excel_custom_dialog_clear","Igx_grid_excel_custom_dialog_header":"Igx_grid_excel_custom_dialog_header","Igx_grid_excel_custom_filter":"Igx_grid_excel_custom_filter","Igx_grid_excel_date_filter":"Igx_grid_excel_date_filter","Igx_grid_excel_deselect":"Igx_grid_excel_deselect","Igx_grid_excel_filter_clear":"Igx_grid_excel_filter_clear","Igx_grid_excel_filter_moving_header":"Igx_grid_excel_filter_moving_header","Igx_grid_excel_filter_moving_left":"Igx_grid_excel_filter_moving_left","Igx_grid_excel_filter_moving_left_short":"Igx_grid_excel_filter_moving_left_short","Igx_grid_excel_filter_moving_right":"Igx_grid_excel_filter_moving_right","Igx_grid_excel_filter_moving_right_short":"Igx_grid_excel_filter_moving_right_short","Igx_grid_excel_filter_sorting_asc":"Igx_grid_excel_filter_sorting_asc","Igx_grid_excel_filter_sorting_asc_short":"Igx_grid_excel_filter_sorting_asc_short","Igx_grid_excel_filter_sorting_desc":"Igx_grid_excel_filter_sorting_desc","Igx_grid_excel_filter_sorting_desc_short":"Igx_grid_excel_filter_sorting_desc_short","Igx_grid_excel_filter_sorting_header":"Igx_grid_excel_filter_sorting_header","Igx_grid_excel_hide":"Igx_grid_excel_hide","Igx_grid_excel_matches_count":"Igx_grid_excel_matches_count","Igx_grid_excel_no_matches":"Igx_grid_excel_no_matches","Igx_grid_excel_number_filter":"Igx_grid_excel_number_filter","Igx_grid_excel_pin":"Igx_grid_excel_pin","Igx_grid_excel_search_placeholder":"Igx_grid_excel_search_placeholder","Igx_grid_excel_select":"Igx_grid_excel_select","Igx_grid_excel_select_all":"Igx_grid_excel_select_all","Igx_grid_excel_select_all_search_results":"Igx_grid_excel_select_all_search_results","Igx_grid_excel_show":"Igx_grid_excel_show","Igx_grid_excel_text_filter":"Igx_grid_excel_text_filter","Igx_grid_excel_unpin":"Igx_grid_excel_unpin","Igx_grid_filter":"Igx_grid_filter","Igx_grid_filter_after":"Igx_grid_filter_after","Igx_grid_filter_all":"Igx_grid_filter_all","Igx_grid_filter_at":"Igx_grid_filter_at","Igx_grid_filter_at_after":"Igx_grid_filter_at_after","Igx_grid_filter_at_before":"Igx_grid_filter_at_before","Igx_grid_filter_before":"Igx_grid_filter_before","Igx_grid_filter_condition_placeholder":"Igx_grid_filter_condition_placeholder","Igx_grid_filter_contains":"Igx_grid_filter_contains","Igx_grid_filter_doesNotContain":"Igx_grid_filter_doesNotContain","Igx_grid_filter_doesNotEqual":"Igx_grid_filter_doesNotEqual","Igx_grid_filter_empty":"Igx_grid_filter_empty","Igx_grid_filter_endsWith":"Igx_grid_filter_endsWith","Igx_grid_filter_equals":"Igx_grid_filter_equals","Igx_grid_filter_false":"Igx_grid_filter_false","Igx_grid_filter_greaterThan":"Igx_grid_filter_greaterThan","Igx_grid_filter_greaterThanOrEqualTo":"Igx_grid_filter_greaterThanOrEqualTo","Igx_grid_filter_in":"Igx_grid_filter_in","Igx_grid_filter_lastMonth":"Igx_grid_filter_lastMonth","Igx_grid_filter_lastYear":"Igx_grid_filter_lastYear","Igx_grid_filter_lessThan":"Igx_grid_filter_lessThan","Igx_grid_filter_lessThanOrEqualTo":"Igx_grid_filter_lessThanOrEqualTo","Igx_grid_filter_nextMonth":"Igx_grid_filter_nextMonth","Igx_grid_filter_nextYear":"Igx_grid_filter_nextYear","Igx_grid_filter_notEmpty":"Igx_grid_filter_notEmpty","Igx_grid_filter_notIn":"Igx_grid_filter_notIn","Igx_grid_filter_notNull":"Igx_grid_filter_notNull","Igx_grid_filter_not_at":"Igx_grid_filter_not_at","Igx_grid_filter_null":"Igx_grid_filter_null","Igx_grid_filter_operator_and":"Igx_grid_filter_operator_and","Igx_grid_filter_operator_or":"Igx_grid_filter_operator_or","Igx_grid_filter_row_boolean_placeholder":"Igx_grid_filter_row_boolean_placeholder","Igx_grid_filter_row_close":"Igx_grid_filter_row_close","Igx_grid_filter_row_date_placeholder":"Igx_grid_filter_row_date_placeholder","Igx_grid_filter_row_placeholder":"Igx_grid_filter_row_placeholder","Igx_grid_filter_row_reset":"Igx_grid_filter_row_reset","Igx_grid_filter_row_time_placeholder":"Igx_grid_filter_row_time_placeholder","Igx_grid_filter_startsWith":"Igx_grid_filter_startsWith","Igx_grid_filter_thisMonth":"Igx_grid_filter_thisMonth","Igx_grid_filter_thisYear":"Igx_grid_filter_thisYear","Igx_grid_filter_today":"Igx_grid_filter_today","Igx_grid_filter_true":"Igx_grid_filter_true","Igx_grid_filter_yesterday":"Igx_grid_filter_yesterday","Igx_grid_groupByArea_deselect_message":"Igx_grid_groupByArea_deselect_message","Igx_grid_groupByArea_message":"Igx_grid_groupByArea_message","Igx_grid_groupByArea_select_message":"Igx_grid_groupByArea_select_message","Igx_grid_hiding_check_all_label":"Igx_grid_hiding_check_all_label","Igx_grid_hiding_uncheck_all_label":"Igx_grid_hiding_uncheck_all_label","Igx_grid_max_length_validation_error":"Igx_grid_max_length_validation_error","Igx_grid_max_validation_error":"Igx_grid_max_validation_error","Igx_grid_min_length_validation_error":"Igx_grid_min_length_validation_error","Igx_grid_min_validation_error":"Igx_grid_min_validation_error","Igx_grid_pattern_validation_error":"Igx_grid_pattern_validation_error","Igx_grid_pinned_row_indicator":"Igx_grid_pinned_row_indicator","Igx_grid_pinning_check_all_label":"Igx_grid_pinning_check_all_label","Igx_grid_pinning_uncheck_all_label":"Igx_grid_pinning_uncheck_all_label","Igx_grid_pivot_aggregate_avg":"Igx_grid_pivot_aggregate_avg","Igx_grid_pivot_aggregate_count":"Igx_grid_pivot_aggregate_count","Igx_grid_pivot_aggregate_date_earliest":"Igx_grid_pivot_aggregate_date_earliest","Igx_grid_pivot_aggregate_date_latest":"Igx_grid_pivot_aggregate_date_latest","Igx_grid_pivot_aggregate_max":"Igx_grid_pivot_aggregate_max","Igx_grid_pivot_aggregate_min":"Igx_grid_pivot_aggregate_min","Igx_grid_pivot_aggregate_sum":"Igx_grid_pivot_aggregate_sum","Igx_grid_pivot_aggregate_time_earliest":"Igx_grid_pivot_aggregate_time_earliest","Igx_grid_pivot_aggregate_time_latest":"Igx_grid_pivot_aggregate_time_latest","Igx_grid_pivot_column_drop_chip":"Igx_grid_pivot_column_drop_chip","Igx_grid_pivot_date_dimension_total":"Igx_grid_pivot_date_dimension_total","Igx_grid_pivot_empty_column_drop_area":"Igx_grid_pivot_empty_column_drop_area","Igx_grid_pivot_empty_filter_drop_area":"Igx_grid_pivot_empty_filter_drop_area","Igx_grid_pivot_empty_message":"Igx_grid_pivot_empty_message","Igx_grid_pivot_empty_row_drop_area":"Igx_grid_pivot_empty_row_drop_area","Igx_grid_pivot_empty_value_drop_area":"Igx_grid_pivot_empty_value_drop_area","Igx_grid_pivot_filter_drop_chip":"Igx_grid_pivot_filter_drop_chip","Igx_grid_pivot_row_drop_chip":"Igx_grid_pivot_row_drop_chip","Igx_grid_pivot_selector_columns":"Igx_grid_pivot_selector_columns","Igx_grid_pivot_selector_filters":"Igx_grid_pivot_selector_filters","Igx_grid_pivot_selector_panel_empty":"Igx_grid_pivot_selector_panel_empty","Igx_grid_pivot_selector_rows":"Igx_grid_pivot_selector_rows","Igx_grid_pivot_selector_values":"Igx_grid_pivot_selector_values","Igx_grid_pivot_value_drop_chip":"Igx_grid_pivot_value_drop_chip","Igx_grid_required_validation_error":"Igx_grid_required_validation_error","Igx_grid_row_edit_btn_cancel":"Igx_grid_row_edit_btn_cancel","Igx_grid_row_edit_btn_done":"Igx_grid_row_edit_btn_done","Igx_grid_row_edit_text":"Igx_grid_row_edit_text","Igx_grid_snackbar_addrow_actiontext":"Igx_grid_snackbar_addrow_actiontext","Igx_grid_snackbar_addrow_label":"Igx_grid_snackbar_addrow_label","Igx_grid_summary_average":"Igx_grid_summary_average","Igx_grid_summary_count":"Igx_grid_summary_count","Igx_grid_summary_earliest":"Igx_grid_summary_earliest","Igx_grid_summary_latest":"Igx_grid_summary_latest","Igx_grid_summary_max":"Igx_grid_summary_max","Igx_grid_summary_min":"Igx_grid_summary_min","Igx_grid_summary_sum":"Igx_grid_summary_sum","Igx_grid_toolbar_actions_filter_prompt":"Igx_grid_toolbar_actions_filter_prompt","Igx_grid_toolbar_advanced_filtering_button_label":"Igx_grid_toolbar_advanced_filtering_button_label","Igx_grid_toolbar_advanced_filtering_button_tooltip":"Igx_grid_toolbar_advanced_filtering_button_tooltip","Igx_grid_toolbar_exporter_button_label":"Igx_grid_toolbar_exporter_button_label","Igx_grid_toolbar_exporter_button_tooltip":"Igx_grid_toolbar_exporter_button_tooltip","Igx_grid_toolbar_exporter_csv_entry_text":"Igx_grid_toolbar_exporter_csv_entry_text","Igx_grid_toolbar_exporter_excel_entry_text":"Igx_grid_toolbar_exporter_excel_entry_text","Igx_grid_toolbar_hiding_button_tooltip":"Igx_grid_toolbar_hiding_button_tooltip","Igx_grid_toolbar_hiding_title":"Igx_grid_toolbar_hiding_title","Igx_grid_toolbar_pinning_button_tooltip":"Igx_grid_toolbar_pinning_button_tooltip","Igx_grid_toolbar_pinning_title":"Igx_grid_toolbar_pinning_title","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridRow":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRow","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","UpdateAsync(object)":"UpdateAsync(object)","UpdateAsync":"UpdateAsync(object)","Update(object)":"Update(object)","Update":"Update(object)","DelAsync()":"DelAsync()","DelAsync":"DelAsync()","Del()":"Del()","Del":"Del()","IsCellActiveAsync(object)":"IsCellActiveAsync(object)","IsCellActiveAsync":"IsCellActiveAsync(object)","IsCellActive(object)":"IsCellActive(object)","IsCellActive":"IsCellActive(object)","PinAsync()":"PinAsync()","PinAsync":"PinAsync()","Pin()":"Pin()","Pin":"Pin()","UnpinAsync()":"UnpinAsync()","UnpinAsync":"UnpinAsync()","Unpin()":"Unpin()","Unpin":"Unpin()","BeginAddRowAsync()":"BeginAddRowAsync()","BeginAddRowAsync":"BeginAddRowAsync()","BeginAddRow()":"BeginAddRow()","BeginAddRow":"BeginAddRow()","Data":"Data","Index":"Index","Disabled":"Disabled","Pinned":"Pinned","Expanded":"Expanded","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRow()":"IgbGridRow()","IgbGridRow":"IgbGridRow()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetContext(object, object)":"GetContext(object, object)","GetContext":"GetContext(object, object)","GetContextAsync(object, object)":"GetContextAsync(object, object)","GetContextAsync":"GetContextAsync(object, object)","GetContextMRL(object, object)":"GetContextMRL(object, object)","GetContextMRL":"GetContextMRL(object, object)","GetContextMRLAsync(object, object)":"GetContextMRLAsync(object, object)","GetContextMRLAsync":"GetContextMRLAsync(object, object)","Type":"Type"}}],"IgbGridRowDragGhostContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowDragGhostContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowDragGhostContext()":"IgbGridRowDragGhostContext()","IgbGridRowDragGhostContext":"IgbGridRowDragGhostContext()","Data":"Data","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowEditActionsTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowEditActionsTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowEditActionsTemplateContext()":"IgbGridRowEditActionsTemplateContext()","IgbGridRowEditActionsTemplateContext":"IgbGridRowEditActionsTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowEditEndedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowEditEndedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowEditEndedEventArgs()":"IgbGridRowEditEndedEventArgs()","IgbGridRowEditEndedEventArgs":"IgbGridRowEditEndedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Row":"Row","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowEditStartedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowEditStartedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowEditStartedEventArgs()":"IgbGridRowEditStartedEventArgs()","IgbGridRowEditStartedEventArgs":"IgbGridRowEditStartedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","Row":"Row","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowEditTextTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowEditTextTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowEditTextTemplateContext()":"IgbGridRowEditTextTemplateContext()","IgbGridRowEditTextTemplateContext":"IgbGridRowEditTextTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowEventArgs()":"IgbGridRowEventArgs()","IgbGridRowEventArgs":"IgbGridRowEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowEventArgsDetail()":"IgbGridRowEventArgsDetail()","IgbGridRowEventArgsDetail":"IgbGridRowEventArgsDetail()","Event":"Event","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Row":"Row","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridRowTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridRowTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridRowTemplateContext()":"IgbGridRowTemplateContext()","IgbGridRowTemplateContext":"IgbGridRowTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridScrollEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridScrollEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridScrollEventArgs()":"IgbGridScrollEventArgs()","IgbGridScrollEventArgs":"IgbGridScrollEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridScrollEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridScrollEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridScrollEventArgsDetail()":"IgbGridScrollEventArgsDetail()","IgbGridScrollEventArgsDetail":"IgbGridScrollEventArgsDetail()","Direction":"Direction","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ScrollPosition":"ScrollPosition","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectedCellRangesChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedCellRangesChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedCellRangesChangedEventArgs()":"IgbGridSelectedCellRangesChangedEventArgs()","IgbGridSelectedCellRangesChangedEventArgs":"IgbGridSelectedCellRangesChangedEventArgs()","AddedRanges":"AddedRanges","CurrentRanges":"CurrentRanges","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedRanges":"RemovedRanges","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UpdatedRanges":"UpdatedRanges"}}],"IgbGridSelectedCellRangesCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedCellRangesCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbCellRange)":"InsertItem(int, IgbCellRange)","InsertItem":"InsertItem(int, IgbCellRange)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbCellRange)":"SetItem(int, IgbCellRange)","SetItem":"SetItem(int, IgbCellRange)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbCellRange)":"Add(IgbCellRange)","Add":"Add(IgbCellRange)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbCellRange[], int)":"CopyTo(IgbCellRange[], int)","CopyTo":"CopyTo(IgbCellRange[], int)","Contains(IgbCellRange)":"Contains(IgbCellRange)","Contains":"Contains(IgbCellRange)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbCellRange)":"IndexOf(IgbCellRange)","IndexOf":"IndexOf(IgbCellRange)","Insert(int, IgbCellRange)":"Insert(int, IgbCellRange)","Insert":"Insert(int, IgbCellRange)","Remove(IgbCellRange)":"Remove(IgbCellRange)","Remove":"Remove(IgbCellRange)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedCellRangesCollection(object, string)":"IgbGridSelectedCellRangesCollection(object, string)","IgbGridSelectedCellRangesCollection":"IgbGridSelectedCellRangesCollection(object, string)"}}],"IgbGridSelectedCellsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedCellsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedCellsChangedEventArgs()":"IgbGridSelectedCellsChangedEventArgs()","IgbGridSelectedCellsChangedEventArgs":"IgbGridSelectedCellsChangedEventArgs()","AddedCells":"AddedCells","CurrentCells":"CurrentCells","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedCells":"RemovedCells","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectedCellsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedCellsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbCellKey)":"InsertItem(int, IgbCellKey)","InsertItem":"InsertItem(int, IgbCellKey)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbCellKey)":"SetItem(int, IgbCellKey)","SetItem":"SetItem(int, IgbCellKey)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbCellKey)":"Add(IgbCellKey)","Add":"Add(IgbCellKey)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbCellKey[], int)":"CopyTo(IgbCellKey[], int)","CopyTo":"CopyTo(IgbCellKey[], int)","Contains(IgbCellKey)":"Contains(IgbCellKey)","Contains":"Contains(IgbCellKey)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbCellKey)":"IndexOf(IgbCellKey)","IndexOf":"IndexOf(IgbCellKey)","Insert(int, IgbCellKey)":"Insert(int, IgbCellKey)","Insert":"Insert(int, IgbCellKey)","Remove(IgbCellKey)":"Remove(IgbCellKey)","Remove":"Remove(IgbCellKey)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedCellsCollection(object, string)":"IgbGridSelectedCellsCollection(object, string)","IgbGridSelectedCellsCollection":"IgbGridSelectedCellsCollection(object, string)"}}],"IgbGridSelectedItemsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedItemsChangedEventArgs()":"IgbGridSelectedItemsChangedEventArgs()","IgbGridSelectedItemsChangedEventArgs":"IgbGridSelectedItemsChangedEventArgs()","AddedItems":"AddedItems","CurrentItems":"CurrentItems","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedItems":"RemovedItems","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectedItemsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedItemsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, object)":"InsertItem(int, object)","InsertItem":"InsertItem(int, object)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, object)":"SetItem(int, object)","SetItem":"SetItem(int, object)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(object)":"Add(object)","Add":"Add(object)","Clear()":"Clear()","Clear":"Clear()","CopyTo(object[], int)":"CopyTo(object[], int)","CopyTo":"CopyTo(object[], int)","Contains(object)":"Contains(object)","Contains":"Contains(object)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(object)":"IndexOf(object)","IndexOf":"IndexOf(object)","Insert(int, object)":"Insert(int, object)","Insert":"Insert(int, object)","Remove(object)":"Remove(object)","Remove":"Remove(object)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedItemsCollection(object, string)":"IgbGridSelectedItemsCollection(object, string)","IgbGridSelectedItemsCollection":"IgbGridSelectedItemsCollection(object, string)"}}],"IgbGridSelectedKeysChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedKeysChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedKeysChangedEventArgs()":"IgbGridSelectedKeysChangedEventArgs()","IgbGridSelectedKeysChangedEventArgs":"IgbGridSelectedKeysChangedEventArgs()","AddedKeys":"AddedKeys","CurrentKeys":"CurrentKeys","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedKeys":"RemovedKeys","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectedKeysCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectedKeysCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbPrimaryKeyValue)":"InsertItem(int, IgbPrimaryKeyValue)","InsertItem":"InsertItem(int, IgbPrimaryKeyValue)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbPrimaryKeyValue)":"SetItem(int, IgbPrimaryKeyValue)","SetItem":"SetItem(int, IgbPrimaryKeyValue)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbPrimaryKeyValue)":"Add(IgbPrimaryKeyValue)","Add":"Add(IgbPrimaryKeyValue)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbPrimaryKeyValue[], int)":"CopyTo(IgbPrimaryKeyValue[], int)","CopyTo":"CopyTo(IgbPrimaryKeyValue[], int)","Contains(IgbPrimaryKeyValue)":"Contains(IgbPrimaryKeyValue)","Contains":"Contains(IgbPrimaryKeyValue)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbPrimaryKeyValue)":"IndexOf(IgbPrimaryKeyValue)","IndexOf":"IndexOf(IgbPrimaryKeyValue)","Insert(int, IgbPrimaryKeyValue)":"Insert(int, IgbPrimaryKeyValue)","Insert":"Insert(int, IgbPrimaryKeyValue)","Remove(IgbPrimaryKeyValue)":"Remove(IgbPrimaryKeyValue)","Remove":"Remove(IgbPrimaryKeyValue)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectedKeysCollection(object, string)":"IgbGridSelectedKeysCollection(object, string)","IgbGridSelectedKeysCollection":"IgbGridSelectedKeysCollection(object, string)"}}],"IgbGridSelectionChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectionChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectionChangedEventArgs()":"IgbGridSelectionChangedEventArgs()","IgbGridSelectionChangedEventArgs":"IgbGridSelectionChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectionRange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectionRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectionRange()":"IgbGridSelectionRange()","IgbGridSelectionRange":"IgbGridSelectionRange()","ColumnEnd":"ColumnEnd","ColumnStart":"ColumnStart","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowEnd":"RowEnd","RowStart":"RowStart","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectionRangeDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectionRangeDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectionRangeDetail()":"IgbGridSelectionRangeDetail()","IgbGridSelectionRangeDetail":"IgbGridSelectionRangeDetail()","ColumnEnd":"ColumnEnd","ColumnStart":"ColumnStart","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowEnd":"RowEnd","RowStart":"RowStart","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSelectionRangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSelectionRangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSelectionRangeEventArgs()":"IgbGridSelectionRangeEventArgs()","IgbGridSelectionRangeEventArgs":"IgbGridSelectionRangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSizeChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSizeChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSizeChangedEventArgs()":"IgbGridSizeChangedEventArgs()","IgbGridSizeChangedEventArgs":"IgbGridSizeChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Height":"Height","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width"}}],"IgbGridSortDescriptionsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSortDescriptionsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSortDescriptionsChangedEventArgs()":"IgbGridSortDescriptionsChangedEventArgs()","IgbGridSortDescriptionsChangedEventArgs":"IgbGridSortDescriptionsChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SortDescriptions":"SortDescriptions","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridSortingStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSortingStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSortingStrategy()":"IgbGridSortingStrategy()","IgbGridSortingStrategy":"IgbGridSortingStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridState","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Options":"Options","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridState()":"IgbGridState()","IgbGridState":"IgbGridState()","ApplyState(IgbGridStateInfo, string[])":"ApplyState(IgbGridStateInfo, string[])","ApplyState":"ApplyState(IgbGridStateInfo, string[])","ApplyStateAsync(IgbGridStateInfo, string[])":"ApplyStateAsync(IgbGridStateInfo, string[])","ApplyStateAsync":"ApplyStateAsync(IgbGridStateInfo, string[])","ApplyStateFromString(string, string[])":"ApplyStateFromString(string, string[])","ApplyStateFromString":"ApplyStateFromString(string, string[])","ApplyStateFromStringAsync(string, string[])":"ApplyStateFromStringAsync(string, string[])","ApplyStateFromStringAsync":"ApplyStateFromStringAsync(string, string[])","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetState(string[])":"GetState(string[])","GetState":"GetState(string[])","GetStateAsString(string[])":"GetStateAsString(string[])","GetStateAsString":"GetStateAsString(string[])","GetStateAsStringAsync(string[])":"GetStateAsStringAsync(string[])","GetStateAsStringAsync":"GetStateAsStringAsync(string[])","GetStateAsync(string[])":"GetStateAsync(string[])","GetStateAsync":"GetStateAsync(string[])","GridBaseDirectiveParent":"GridBaseDirectiveParent","HierarchicalGridParent":"HierarchicalGridParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","StateParsed":"StateParsed","StateParsedScript":"StateParsedScript","Type":"Type"}}],"IgbGridStateBaseDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateBaseDirective","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateBaseDirective()":"IgbGridStateBaseDirective()","IgbGridStateBaseDirective":"IgbGridStateBaseDirective()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Options":"Options","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridStateBaseDirectiveModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateBaseDirectiveModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateBaseDirectiveModule()":"IgbGridStateBaseDirectiveModule()","IgbGridStateBaseDirectiveModule":"IgbGridStateBaseDirectiveModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridStateCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateCollection","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateCollection()":"IgbGridStateCollection()","IgbGridStateCollection":"IgbGridStateCollection()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Id":"Id","ParentRowID":"ParentRowID","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","State":"State","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridStateInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateInfo()":"IgbGridStateInfo()","IgbGridStateInfo":"IgbGridStateInfo()","AdvancedFiltering":"AdvancedFiltering","CellSelection":"CellSelection","ColumnSelection":"ColumnSelection","Columns":"Columns","Expansion":"Expansion","ExpansionScript":"ExpansionScript","Filtering":"Filtering","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupBy":"GroupBy","Id":"Id","Moving":"Moving","Paging":"Paging","PinningConfig":"PinningConfig","PivotConfiguration":"PivotConfiguration","RowIslands":"RowIslands","RowPinning":"RowPinning","RowPinningScript":"RowPinningScript","RowSelection":"RowSelection","RowSelectionScript":"RowSelectionScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Sorting":"Sorting","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridStateInfoDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateInfoDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateInfoDetail()":"IgbGridStateInfoDetail()","IgbGridStateInfoDetail":"IgbGridStateInfoDetail()","AdvancedFiltering":"AdvancedFiltering","CellSelection":"CellSelection","ColumnSelection":"ColumnSelection","Columns":"Columns","Expansion":"Expansion","ExpansionScript":"ExpansionScript","Filtering":"Filtering","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupBy":"GroupBy","Id":"Id","Moving":"Moving","Paging":"Paging","PinningConfig":"PinningConfig","PivotConfiguration":"PivotConfiguration","RowIslands":"RowIslands","RowPinning":"RowPinning","RowPinningScript":"RowPinningScript","RowSelection":"RowSelection","RowSelectionScript":"RowSelectionScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Sorting":"Sorting","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridStateInfoEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateInfoEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateInfoEventArgs()":"IgbGridStateInfoEventArgs()","IgbGridStateInfoEventArgs":"IgbGridStateInfoEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridStateModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateModule()":"IgbGridStateModule()","IgbGridStateModule":"IgbGridStateModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridStateOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridStateOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridStateOptions()":"IgbGridStateOptions()","IgbGridStateOptions":"IgbGridStateOptions()","AdvancedFiltering":"AdvancedFiltering","CellSelection":"CellSelection","ColumnSelection":"ColumnSelection","Columns":"Columns","Expansion":"Expansion","Filtering":"Filtering","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GroupBy":"GroupBy","Moving":"Moving","Paging":"Paging","PinningConfig":"PinningConfig","PivotConfiguration":"PivotConfiguration","RowIslands":"RowIslands","RowPinning":"RowPinning","RowSelection":"RowSelection","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Sorting":"Sorting","Type":"Type"}}],"IgbGridSummaryDescriptionsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridSummaryDescriptionsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridSummaryDescriptionsChangedEventArgs()":"IgbGridSummaryDescriptionsChangedEventArgs()","IgbGridSummaryDescriptionsChangedEventArgs":"IgbGridSummaryDescriptionsChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SummaryDescriptions":"SummaryDescriptions","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridTemplateContext()":"IgbGridTemplateContext()","IgbGridTemplateContext":"IgbGridTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridToolbar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbar","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbar()":"IgbGridToolbar()","IgbGridToolbar":"IgbGridToolbar()","ActualTools":"ActualTools","ContentTools":"ContentTools","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Grid":"Grid","GridBaseDirectiveParent":"GridBaseDirectiveParent","HierarchicalGridParent":"HierarchicalGridParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","RowIslandParent":"RowIslandParent","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowProgress":"ShowProgress","SupportsVisualChildren":"SupportsVisualChildren","Tools":"Tools","Type":"Type"}}],"IgbGridToolbarActions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarActions","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarParent":"GridToolbarParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarActions()":"IgbGridToolbarActions()","IgbGridToolbarActions":"IgbGridToolbarActions()","Actions":"Actions","ActualActions":"ActualActions","ContentActions":"ContentActions","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ParentTypeName":"ParentTypeName","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGridToolbarActionsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarActionsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarActionsModule()":"IgbGridToolbarActionsModule()","IgbGridToolbarActionsModule":"IgbGridToolbarActionsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridToolbarAdvancedFiltering":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarAdvancedFiltering","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarActionsParent":"GridToolbarActionsParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarAdvancedFiltering()":"IgbGridToolbarAdvancedFiltering()","IgbGridToolbarAdvancedFiltering":"IgbGridToolbarAdvancedFiltering()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OverlaySettings":"OverlaySettings","ParentTypeName":"ParentTypeName","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type"}}],"IgbGridToolbarAdvancedFilteringModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarAdvancedFilteringModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarAdvancedFilteringModule()":"IgbGridToolbarAdvancedFilteringModule()","IgbGridToolbarAdvancedFilteringModule":"IgbGridToolbarAdvancedFilteringModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridToolbarBaseAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarBaseAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarBaseAction()":"IgbGridToolbarBaseAction()","IgbGridToolbarBaseAction":"IgbGridToolbarBaseAction()","Dispose()":"Dispose()","Dispose":"Dispose()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GridToolbarActionsParent":"GridToolbarActionsParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Type":"Type"}}],"IgbGridToolbarBaseActionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarBaseActionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridToolbarBaseAction)":"InsertItem(int, IgbGridToolbarBaseAction)","InsertItem":"InsertItem(int, IgbGridToolbarBaseAction)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridToolbarBaseAction)":"SetItem(int, IgbGridToolbarBaseAction)","SetItem":"SetItem(int, IgbGridToolbarBaseAction)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridToolbarBaseAction)":"Add(IgbGridToolbarBaseAction)","Add":"Add(IgbGridToolbarBaseAction)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridToolbarBaseAction[], int)":"CopyTo(IgbGridToolbarBaseAction[], int)","CopyTo":"CopyTo(IgbGridToolbarBaseAction[], int)","Contains(IgbGridToolbarBaseAction)":"Contains(IgbGridToolbarBaseAction)","Contains":"Contains(IgbGridToolbarBaseAction)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridToolbarBaseAction)":"IndexOf(IgbGridToolbarBaseAction)","IndexOf":"IndexOf(IgbGridToolbarBaseAction)","Insert(int, IgbGridToolbarBaseAction)":"Insert(int, IgbGridToolbarBaseAction)","Insert":"Insert(int, IgbGridToolbarBaseAction)","Remove(IgbGridToolbarBaseAction)":"Remove(IgbGridToolbarBaseAction)","Remove":"Remove(IgbGridToolbarBaseAction)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarBaseActionCollection(object, string)":"IgbGridToolbarBaseActionCollection(object, string)","IgbGridToolbarBaseActionCollection":"IgbGridToolbarBaseActionCollection(object, string)"}}],"IgbGridToolbarCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridToolbar)":"InsertItem(int, IgbGridToolbar)","InsertItem":"InsertItem(int, IgbGridToolbar)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridToolbar)":"SetItem(int, IgbGridToolbar)","SetItem":"SetItem(int, IgbGridToolbar)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridToolbar)":"Add(IgbGridToolbar)","Add":"Add(IgbGridToolbar)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridToolbar[], int)":"CopyTo(IgbGridToolbar[], int)","CopyTo":"CopyTo(IgbGridToolbar[], int)","Contains(IgbGridToolbar)":"Contains(IgbGridToolbar)","Contains":"Contains(IgbGridToolbar)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridToolbar)":"IndexOf(IgbGridToolbar)","IndexOf":"IndexOf(IgbGridToolbar)","Insert(int, IgbGridToolbar)":"Insert(int, IgbGridToolbar)","Insert":"Insert(int, IgbGridToolbar)","Remove(IgbGridToolbar)":"Remove(IgbGridToolbar)","Remove":"Remove(IgbGridToolbar)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarCollection(object, string)":"IgbGridToolbarCollection(object, string)","IgbGridToolbarCollection":"IgbGridToolbarCollection(object, string)"}}],"IgbGridToolbarContent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarContent","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarContent()":"IgbGridToolbarContent()","IgbGridToolbarContent":"IgbGridToolbarContent()","Dispose()":"Dispose()","Dispose":"Dispose()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GridToolbarParent":"GridToolbarParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Type":"Type"}}],"IgbGridToolbarContentCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarContentCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridToolbarContent)":"InsertItem(int, IgbGridToolbarContent)","InsertItem":"InsertItem(int, IgbGridToolbarContent)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridToolbarContent)":"SetItem(int, IgbGridToolbarContent)","SetItem":"SetItem(int, IgbGridToolbarContent)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridToolbarContent)":"Add(IgbGridToolbarContent)","Add":"Add(IgbGridToolbarContent)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridToolbarContent[], int)":"CopyTo(IgbGridToolbarContent[], int)","CopyTo":"CopyTo(IgbGridToolbarContent[], int)","Contains(IgbGridToolbarContent)":"Contains(IgbGridToolbarContent)","Contains":"Contains(IgbGridToolbarContent)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridToolbarContent)":"IndexOf(IgbGridToolbarContent)","IndexOf":"IndexOf(IgbGridToolbarContent)","Insert(int, IgbGridToolbarContent)":"Insert(int, IgbGridToolbarContent)","Insert":"Insert(int, IgbGridToolbarContent)","Remove(IgbGridToolbarContent)":"Remove(IgbGridToolbarContent)","Remove":"Remove(IgbGridToolbarContent)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarContentCollection(object, string)":"IgbGridToolbarContentCollection(object, string)","IgbGridToolbarContentCollection":"IgbGridToolbarContentCollection(object, string)"}}],"IgbGridToolbarExporter":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarExporter","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ColumnListHeight":"ColumnListHeight","Title":"Title","Prompt":"Prompt","OverlaySettings":"OverlaySettings","OpeningScript":"OpeningScript","Opening":"Opening","OpenedScript":"OpenedScript","Opened":"Opened","ClosingScript":"ClosingScript","Closing":"Closing","ClosedScript":"ClosedScript","Closed":"Closed","ColumnToggleScript":"ColumnToggleScript","ColumnToggle":"ColumnToggle","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarActionsParent":"GridToolbarActionsParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarExporter()":"IgbGridToolbarExporter()","IgbGridToolbarExporter":"IgbGridToolbarExporter()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportCSV":"ExportCSV","ExportEnded":"ExportEnded","ExportEndedScript":"ExportEndedScript","ExportExcel":"ExportExcel","ExportGrid(GridToolbarExporterType)":"ExportGrid(GridToolbarExporterType)","ExportGrid":"ExportGrid(GridToolbarExporterType)","ExportGridAsync(GridToolbarExporterType)":"ExportGridAsync(GridToolbarExporterType)","ExportGridAsync":"ExportGridAsync(GridToolbarExporterType)","ExportPDF":"ExportPDF","ExportStarted":"ExportStarted","ExportStartedScript":"ExportStartedScript","Filename":"Filename","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ParentTypeName":"ParentTypeName","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type"}}],"IgbGridToolbarExporterModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarExporterModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarExporterModule()":"IgbGridToolbarExporterModule()","IgbGridToolbarExporterModule":"IgbGridToolbarExporterModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridToolbarExportEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarExportEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarExportEventArgs()":"IgbGridToolbarExportEventArgs()","IgbGridToolbarExportEventArgs":"IgbGridToolbarExportEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridToolbarExportEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarExportEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarExportEventArgsDetail()":"IgbGridToolbarExportEventArgsDetail()","IgbGridToolbarExportEventArgsDetail":"IgbGridToolbarExportEventArgsDetail()","Cancel":"Cancel","Exporter":"Exporter","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","Options":"Options","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridToolbarHiding":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarHiding","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ColumnListHeight":"ColumnListHeight","Title":"Title","Prompt":"Prompt","OverlaySettings":"OverlaySettings","OpeningScript":"OpeningScript","Opening":"Opening","OpenedScript":"OpenedScript","Opened":"Opened","ClosingScript":"ClosingScript","Closing":"Closing","ClosedScript":"ClosedScript","Closed":"Closed","ColumnToggleScript":"ColumnToggleScript","ColumnToggle":"ColumnToggle","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarActionsParent":"GridToolbarActionsParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarHiding()":"IgbGridToolbarHiding()","IgbGridToolbarHiding":"IgbGridToolbarHiding()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridToolbarHidingModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarHidingModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarHidingModule()":"IgbGridToolbarHidingModule()","IgbGridToolbarHidingModule":"IgbGridToolbarHidingModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridToolbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarModule()":"IgbGridToolbarModule()","IgbGridToolbarModule":"IgbGridToolbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridToolbarPinning":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarPinning","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ColumnListHeight":"ColumnListHeight","Title":"Title","Prompt":"Prompt","OverlaySettings":"OverlaySettings","OpeningScript":"OpeningScript","Opening":"Opening","OpenedScript":"OpenedScript","Opened":"Opened","ClosingScript":"ClosingScript","Closing":"Closing","ClosedScript":"ClosedScript","Closed":"Closed","ColumnToggleScript":"ColumnToggleScript","ColumnToggle":"ColumnToggle","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarActionsParent":"GridToolbarActionsParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarPinning()":"IgbGridToolbarPinning()","IgbGridToolbarPinning":"IgbGridToolbarPinning()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbGridToolbarPinningModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarPinningModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarPinningModule()":"IgbGridToolbarPinningModule()","IgbGridToolbarPinningModule":"IgbGridToolbarPinningModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridToolbarTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarTemplateContext()":"IgbGridToolbarTemplateContext()","IgbGridToolbarTemplateContext":"IgbGridToolbarTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridToolbarTitle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarTitle","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GridToolbarParent":"GridToolbarParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarTitle()":"IgbGridToolbarTitle()","IgbGridToolbarTitle":"IgbGridToolbarTitle()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ParentTypeName":"ParentTypeName","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type"}}],"IgbGridToolbarTitleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridToolbarTitleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridToolbarTitleModule()":"IgbGridToolbarTitleModule()","IgbGridToolbarTitleModule":"IgbGridToolbarTitleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbGridValidationState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridValidationState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridValidationState()":"IgbGridValidationState()","IgbGridValidationState":"IgbGridValidationState()","Errors":"Errors","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Status":"Status","Type":"Type"}}],"IgbGridValidationStatusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridValidationStatusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridValidationStatusEventArgs()":"IgbGridValidationStatusEventArgs()","IgbGridValidationStatusEventArgs":"IgbGridValidationStatusEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGridValidationStatusEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGridValidationStatusEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridValidationStatusEventArgsDetail()":"IgbGridValidationStatusEventArgsDetail()","IgbGridValidationStatusEventArgsDetail":"IgbGridValidationStatusEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Owner":"Owner","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Status":"Status","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupByExpandState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByExpandState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByExpandState()":"IgbGroupByExpandState()","IgbGroupByExpandState":"IgbGroupByExpandState()","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hierarchy":"Hierarchy","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGroupByExpandStateEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByExpandStateEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByExpandStateEventArgs()":"IgbGroupByExpandStateEventArgs()","IgbGroupByExpandStateEventArgs":"IgbGroupByExpandStateEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupByKey":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByKey","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByKey()":"IgbGroupByKey()","IgbGroupByKey":"IgbGroupByKey()","FieldName":"FieldName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Value":"Value"}}],"IgbGroupByRecord":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByRecord","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByRecord()":"IgbGroupByRecord()","IgbGroupByRecord":"IgbGroupByRecord()","Column":"Column","Expression":"Expression","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GroupParent":"GroupParent","Groups":"Groups","Height":"Height","Level":"Level","Records":"Records","RecordsScript":"RecordsScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Value":"Value"}}],"IgbGroupByResult":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByResult","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByResult()":"IgbGroupByResult()","IgbGroupByResult":"IgbGroupByResult()","Data":"Data","DataScript":"DataScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Metadata":"Metadata","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbGroupByRowSelectorTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByRowSelectorTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByRowSelectorTemplateContext()":"IgbGroupByRowSelectorTemplateContext()","IgbGroupByRowSelectorTemplateContext":"IgbGroupByRowSelectorTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupByRowSelectorTemplateDetails":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByRowSelectorTemplateDetails","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByRowSelectorTemplateDetails()":"IgbGroupByRowSelectorTemplateDetails()","IgbGroupByRowSelectorTemplateDetails":"IgbGroupByRowSelectorTemplateDetails()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GroupRow":"GroupRow","SelectedCount":"SelectedCount","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","TotalCount":"TotalCount","Type":"Type"}}],"IgbGroupByRowTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupByRowTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupByRowTemplateContext()":"IgbGroupByRowTemplateContext()","IgbGroupByRowTemplateContext":"IgbGroupByRowTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupData":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupData","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupData()":"IgbGroupData()","IgbGroupData":"IgbGroupData()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormattedText":"FormattedText","GroupName":"GroupName","GroupValue":"GroupValue","GroupValueScript":"GroupValueScript","Type":"Type"}}],"IgbGroupingDoneEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupingDoneEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupingDoneEventArgs()":"IgbGroupingDoneEventArgs()","IgbGroupingDoneEventArgs":"IgbGroupingDoneEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupingDoneEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupingDoneEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupingDoneEventArgsDetail()":"IgbGroupingDoneEventArgsDetail()","IgbGroupingDoneEventArgsDetail":"IgbGroupingDoneEventArgsDetail()","Expressions":"Expressions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupedColumns":"GroupedColumns","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UngroupedColumns":"UngroupedColumns"}}],"IgbGroupingExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupingExpression","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FieldName":"FieldName","Dir":"Dir","IgnoreCase":"IgnoreCase","Strategy":"Strategy","Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupingExpression()":"IgbGroupingExpression()","IgbGroupingExpression":"IgbGroupingExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupingExpressionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupingExpressionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupingExpressionEventArgs()":"IgbGroupingExpressionEventArgs()","IgbGroupingExpressionEventArgs":"IgbGroupingExpressionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbGroupingState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbGroupingState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGroupingState()":"IgbGroupingState()","IgbGroupingState":"IgbGroupingState()","DefaultExpanded":"DefaultExpanded","Expansion":"Expansion","Expressions":"Expressions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeader","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeader()":"IgbHeader()","IgbHeader":"IgbHeader()","ActualSortIndicatorColor":"ActualSortIndicatorColor","ActualSortIndicatorStyle":"ActualSortIndicatorStyle","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","SortIndicatorColor":"SortIndicatorColor","SortIndicatorStyle":"SortIndicatorStyle","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbHeaderRowSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeaderRowSeparator","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeaderRowSeparator()":"IgbHeaderRowSeparator()","IgbHeaderRowSeparator":"IgbHeaderRowSeparator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbHeaderRowSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeaderRowSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeaderRowSeparatorModule()":"IgbHeaderRowSeparatorModule()","IgbHeaderRowSeparatorModule":"IgbHeaderRowSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHeaderSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeaderSeparator","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeaderSeparator()":"IgbHeaderSeparator()","IgbHeaderSeparator":"IgbHeaderSeparator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbHeaderSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeaderSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeaderSeparatorModule()":"IgbHeaderSeparatorModule()","IgbHeaderSeparatorModule":"IgbHeaderSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHeaderType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeaderType","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeaderType()":"IgbHeaderType()","IgbHeaderType":"IgbHeaderType()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Selectable":"Selectable","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SortDirection":"SortDirection","Sorted":"Sorted","Title":"Title","Type":"Type"}}],"IgbHeadSelectorTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeadSelectorTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeadSelectorTemplateContext()":"IgbHeadSelectorTemplateContext()","IgbHeadSelectorTemplateContext":"IgbHeadSelectorTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbHeadSelectorTemplateDetails":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeadSelectorTemplateDetails","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeadSelectorTemplateDetails()":"IgbHeadSelectorTemplateDetails()","IgbHeadSelectorTemplateDetails":"IgbHeadSelectorTemplateDetails()","DeselectAll()":"DeselectAll()","DeselectAll":"DeselectAll()","DeselectAllAsync()":"DeselectAllAsync()","DeselectAllAsync":"DeselectAllAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SelectAll()":"SelectAll()","SelectAll":"SelectAll()","SelectAllAsync()":"SelectAllAsync()","SelectAllAsync":"SelectAllAsync()","SelectedCount":"SelectedCount","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","TotalCount":"TotalCount","Type":"Type"}}],"IgbHeatTileGenerator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeatTileGenerator","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeatTileGenerator()":"IgbHeatTileGenerator()","IgbHeatTileGenerator":"IgbHeatTileGenerator()","BlurRadius":"BlurRadius","Destroy()":"Destroy()","Destroy":"Destroy()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LogarithmBase":"LogarithmBase","MaxBlurRadius":"MaxBlurRadius","MaximumColor":"MaximumColor","MaximumValue":"MaximumValue","MinimumColor":"MinimumColor","MinimumValue":"MinimumValue","ScaleColorOffsets":"ScaleColorOffsets","ScaleColors":"ScaleColors","Type":"Type","UseBlurRadiusAdjustedForZoom":"UseBlurRadiusAdjustedForZoom","UseGlobalMinMax":"UseGlobalMinMax","UseGlobalMinMaxAdjustedForZoom":"UseGlobalMinMaxAdjustedForZoom","UseLogarithmicScale":"UseLogarithmicScale","UseWebWorkers":"UseWebWorkers","Values":"Values","WebWorkerInstance":"WebWorkerInstance","WebWorkerInstanceScript":"WebWorkerInstanceScript","WebWorkerScriptPath":"WebWorkerScriptPath","XValues":"XValues","YValues":"YValues"}}],"IgbHeatTileGeneratorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHeatTileGeneratorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHeatTileGeneratorModule()":"IgbHeatTileGeneratorModule()","IgbHeatTileGeneratorModule":"IgbHeatTileGeneratorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHierarchicalGrid":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHierarchicalGrid","k":"class","s":"classes","m":{"HasChildrenKey":"HasChildrenKey","ShowExpandAll":"ShowExpandAll","RootGrid":"RootGrid","DataPreLoadScript":"DataPreLoadScript","DataPreLoad":"DataPreLoad","GetData()":"GetData()","GetData":"GetData()","SuspendNotifications()":"SuspendNotifications()","SuspendNotifications":"SuspendNotifications()","ResumeNotifications()":"ResumeNotifications()","ResumeNotifications":"ResumeNotifications()","UpdateProperty(object, string, object)":"UpdateProperty(object, string, object)","UpdateProperty":"UpdateProperty(object, string, object)","OnRowAddedOverride(IgbRowDataEventArgs)":"OnRowAddedOverride(IgbRowDataEventArgs)","OnRowAddedOverride":"OnRowAddedOverride(IgbRowDataEventArgs)","PropagateValues(object, Dictionary, bool)":"PropagateValues(object, Dictionary, bool)","PropagateValues":"PropagateValues(object, Dictionary, bool)","AddRow(object)":"AddRow(object)","AddRow":"AddRow(object)","AddRowAsync(object)":"AddRowAsync(object)","AddRowAsync":"AddRowAsync(object)","DeleteRow(object)":"DeleteRow(object)","DeleteRow":"DeleteRow(object)","DeleteRowAsync(object)":"DeleteRowAsync(object)","DeleteRowAsync":"DeleteRowAsync(object)","UpdateCell(object, object, string)":"UpdateCell(object, object, string)","UpdateCell":"UpdateCell(object, object, string)","UpdateCellAsync(object, object, string)":"UpdateCellAsync(object, object, string)","UpdateCellAsync":"UpdateCellAsync(object, object, string)","UpdateRow(Dictionary, object)":"UpdateRow(Dictionary, object)","UpdateRow":"UpdateRow(Dictionary, object)","UpdateRowAsync(Dictionary, object)":"UpdateRowAsync(Dictionary, object)","UpdateRowAsync":"UpdateRowAsync(Dictionary, object)","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetHiddenColumnsCountAsync()":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCountAsync":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCount()":"GetHiddenColumnsCount()","GetHiddenColumnsCount":"GetHiddenColumnsCount()","GetPinnedColumnsCountAsync()":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCountAsync":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCount()":"GetPinnedColumnsCount()","GetPinnedColumnsCount":"GetPinnedColumnsCount()","GetLastSearchInfoAsync()":"GetLastSearchInfoAsync()","GetLastSearchInfoAsync":"GetLastSearchInfoAsync()","GetLastSearchInfo()":"GetLastSearchInfo()","GetLastSearchInfo":"GetLastSearchInfo()","GetFilteredDataAsync()":"GetFilteredDataAsync()","GetFilteredDataAsync":"GetFilteredDataAsync()","GetFilteredData()":"GetFilteredData()","GetFilteredData":"GetFilteredData()","GetFilteredSortedDataAsync()":"GetFilteredSortedDataAsync()","GetFilteredSortedDataAsync":"GetFilteredSortedDataAsync()","GetFilteredSortedData()":"GetFilteredSortedData()","GetFilteredSortedData":"GetFilteredSortedData()","GetVirtualizationStateAsync()":"GetVirtualizationStateAsync()","GetVirtualizationStateAsync":"GetVirtualizationStateAsync()","GetVirtualizationState()":"GetVirtualizationState()","GetVirtualizationState":"GetVirtualizationState()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetPinnedColumnsAsync()":"GetPinnedColumnsAsync()","GetPinnedColumnsAsync":"GetPinnedColumnsAsync()","GetPinnedColumns()":"GetPinnedColumns()","GetPinnedColumns":"GetPinnedColumns()","GetPinnedStartColumnsAsync()":"GetPinnedStartColumnsAsync()","GetPinnedStartColumnsAsync":"GetPinnedStartColumnsAsync()","GetPinnedStartColumns()":"GetPinnedStartColumns()","GetPinnedStartColumns":"GetPinnedStartColumns()","GetPinnedEndColumnsAsync()":"GetPinnedEndColumnsAsync()","GetPinnedEndColumnsAsync":"GetPinnedEndColumnsAsync()","GetPinnedEndColumns()":"GetPinnedEndColumns()","GetPinnedEndColumns":"GetPinnedEndColumns()","GetUnpinnedColumnsAsync()":"GetUnpinnedColumnsAsync()","GetUnpinnedColumnsAsync":"GetUnpinnedColumnsAsync()","GetUnpinnedColumns()":"GetUnpinnedColumns()","GetUnpinnedColumns":"GetUnpinnedColumns()","GetVisibleColumnsAsync()":"GetVisibleColumnsAsync()","GetVisibleColumnsAsync":"GetVisibleColumnsAsync()","GetVisibleColumns()":"GetVisibleColumns()","GetVisibleColumns":"GetVisibleColumns()","GetDataViewAsync()":"GetDataViewAsync()","GetDataViewAsync":"GetDataViewAsync()","GetDataView()":"GetDataView()","GetDataView":"GetDataView()","GetCurrentActualColumnListAsync()":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnListAsync":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnList()":"GetCurrentActualColumnList()","GetCurrentActualColumnList":"GetCurrentActualColumnList()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","ReflowAsync()":"ReflowAsync()","ReflowAsync":"ReflowAsync()","Reflow()":"Reflow()","Reflow":"Reflow()","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","NeedsDynamicContent":"NeedsDynamicContent","ContentColumnList":"ContentColumnList","CellEditDone":"CellEditDone","RowAdded":"RowAdded","ItemRequested":"ItemRequested","RowDeleted":"RowDeleted","DefaultEventBehavior":"DefaultEventBehavior","ContentActionStripComponents":"ContentActionStripComponents","ActualActionStripComponents":"ActualActionStripComponents","ContentToolbar":"ContentToolbar","ActualToolbar":"ActualToolbar","ContentPaginationComponents":"ContentPaginationComponents","ActualPaginationComponents":"ActualPaginationComponents","ContentStateComponents":"ContentStateComponents","ActualStateComponents":"ActualStateComponents","SnackbarDisplayTime":"SnackbarDisplayTime","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","Moving":"Moving","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","SummaryRowHeight":"SummaryRowHeight","DataCloneStrategy":"DataCloneStrategy","ClipboardOptions":"ClipboardOptions","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","PrimaryKey":"PrimaryKey","ColumnList":"ColumnList","ActionStripComponents":"ActionStripComponents","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","Toolbar":"Toolbar","PaginationComponents":"PaginationComponents","ResourceStrings":"ResourceStrings","FilteringLogic":"FilteringLogic","FilteringExpressionsTree":"FilteringExpressionsTree","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","Locale":"Locale","PagingMode":"PagingMode","HideRowSelectors":"HideRowSelectors","RowDraggable":"RowDraggable","ValidationTrigger":"ValidationTrigger","RowEditable":"RowEditable","RowHeight":"RowHeight","ColumnWidth":"ColumnWidth","EmptyGridMessage":"EmptyGridMessage","IsLoading":"IsLoading","ShouldGenerate":"ShouldGenerate","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","Pinning":"Pinning","AllowFiltering":"AllowFiltering","AllowAdvancedFiltering":"AllowAdvancedFiltering","FilterMode":"FilterMode","SummaryPosition":"SummaryPosition","SummaryCalculationMode":"SummaryCalculationMode","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","FilterStrategy":"FilterStrategy","SortStrategy":"SortStrategy","SortingOptions":"SortingOptions","SelectedRows":"SelectedRows","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","SortingExpressions":"SortingExpressions","BatchEditing":"BatchEditing","CellSelection":"CellSelection","CellMergeMode":"CellMergeMode","RowSelection":"RowSelection","ColumnSelection":"ColumnSelection","Outlet":"Outlet","TotalRecords":"TotalRecords","SelectRowOnClick":"SelectRowOnClick","ActualColumnList":"ActualColumnList","StateComponents":"StateComponents","SelectedRowsChanged":"SelectedRowsChanged","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","GridScrollScript":"GridScrollScript","GridScroll":"GridScroll","CellClickScript":"CellClickScript","CellClick":"CellClick","RowClickScript":"RowClickScript","RowClick":"RowClick","FormGroupCreatedScript":"FormGroupCreatedScript","FormGroupCreated":"FormGroupCreated","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationStatusChange":"ValidationStatusChange","SelectedScript":"SelectedScript","Selected":"Selected","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectionChanging":"RowSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnPinScript":"ColumnPinScript","ColumnPin":"ColumnPin","ColumnPinnedScript":"ColumnPinnedScript","ColumnPinned":"ColumnPinned","CellEditEnterScript":"CellEditEnterScript","CellEditEnter":"CellEditEnter","CellEditExitScript":"CellEditExitScript","CellEditExit":"CellEditExit","CellEditScript":"CellEditScript","CellEdit":"CellEdit","RowEditEnterScript":"RowEditEnterScript","RowEditEnter":"RowEditEnter","RowEditScript":"RowEditScript","RowEdit":"RowEdit","RowEditDoneScript":"RowEditDoneScript","RowEditDone":"RowEditDone","RowEditExitScript":"RowEditExitScript","RowEditExit":"RowEditExit","ColumnInitScript":"ColumnInitScript","ColumnInit":"ColumnInit","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ColumnsAutogenerated":"ColumnsAutogenerated","SortingScript":"SortingScript","Sorting":"Sorting","SortingDoneScript":"SortingDoneScript","SortingDone":"SortingDone","FilteringScript":"FilteringScript","Filtering":"Filtering","FilteringDoneScript":"FilteringDoneScript","FilteringDone":"FilteringDone","RowDeleteScript":"RowDeleteScript","RowDelete":"RowDelete","RowAddScript":"RowAddScript","RowAdd":"RowAdd","ColumnResizedScript":"ColumnResizedScript","ColumnResized":"ColumnResized","ContextMenuScript":"ContextMenuScript","ContextMenu":"ContextMenu","DoubleClickScript":"DoubleClickScript","DoubleClick":"DoubleClick","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingScript":"ColumnMovingScript","ColumnMoving":"ColumnMoving","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingEnd":"ColumnMovingEnd","GridKeydownScript":"GridKeydownScript","GridKeydown":"GridKeydown","RowDragStartScript":"RowDragStartScript","RowDragStart":"RowDragStart","RowDragEndScript":"RowDragEndScript","RowDragEnd":"RowDragEnd","GridCopyScript":"GridCopyScript","GridCopy":"GridCopy","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChange":"SelectedRowsChange","RowToggleScript":"RowToggleScript","RowToggle":"RowToggle","RowPinningScript":"RowPinningScript","RowPinning":"RowPinning","RowPinnedScript":"RowPinnedScript","RowPinned":"RowPinned","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActiveNodeChange":"ActiveNodeChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingExpressionsChange":"SortingExpressionsChange","ToolbarExportingScript":"ToolbarExportingScript","ToolbarExporting":"ToolbarExporting","RangeSelectedScript":"RangeSelectedScript","RangeSelected":"RangeSelected","RenderedScript":"RenderedScript","Rendered":"Rendered","DataChangingScript":"DataChangingScript","DataChanging":"DataChanging","DataChangedScript":"DataChangedScript","DataChanged":"DataChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHierarchicalGrid()":"IgbHierarchicalGrid()","IgbHierarchicalGrid":"IgbHierarchicalGrid()","ActualChildLayoutList":"ActualChildLayoutList","ChildLayoutList":"ChildLayoutList","ContentChildLayoutList":"ContentChildLayoutList","Data":"Data","DataScript":"DataScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExpandChildren":"ExpandChildren","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCellByColumn(double, string)":"GetCellByColumn(double, string)","GetCellByColumn":"GetCellByColumn(double, string)","GetCellByColumnAsync(double, string)":"GetCellByColumnAsync(double, string)","GetCellByColumnAsync":"GetCellByColumnAsync(double, string)","GetCellByKey(object, string)":"GetCellByKey(object, string)","GetCellByKey":"GetCellByKey(object, string)","GetCellByKeyAsync(object, string)":"GetCellByKeyAsync(object, string)","GetCellByKeyAsync":"GetCellByKeyAsync(object, string)","GetDefaultExpandState(object)":"GetDefaultExpandState(object)","GetDefaultExpandState":"GetDefaultExpandState(object)","GetDefaultExpandStateAsync(object)":"GetDefaultExpandStateAsync(object)","GetDefaultExpandStateAsync":"GetDefaultExpandStateAsync(object)","GetForeignKey()":"GetForeignKey()","GetForeignKey":"GetForeignKey()","GetForeignKeyAsync()":"GetForeignKeyAsync()","GetForeignKeyAsync":"GetForeignKeyAsync()","GetRowByIndex(double)":"GetRowByIndex(double)","GetRowByIndex":"GetRowByIndex(double)","GetRowByIndexAsync(double)":"GetRowByIndexAsync(double)","GetRowByIndexAsync":"GetRowByIndexAsync(double)","GetRowByKey(object)":"GetRowByKey(object)","GetRowByKey":"GetRowByKey(object)","GetRowByKeyAsync(object)":"GetRowByKeyAsync(object)","GetRowByKeyAsync":"GetRowByKeyAsync(object)","GetSelectedCells()":"GetSelectedCells()","GetSelectedCells":"GetSelectedCells()","GetSelectedCellsAsync()":"GetSelectedCellsAsync()","GetSelectedCellsAsync":"GetSelectedCellsAsync()","Id":"Id","ParentTypeName":"ParentTypeName","PinRow(object, double)":"PinRow(object, double)","PinRow":"PinRow(object, double)","PinRowAsync(object, double)":"PinRowAsync(object, double)","PinRowAsync":"PinRowAsync(object, double)","TotalItemCount":"TotalItemCount","Type":"Type","UnpinRow(object)":"UnpinRow(object)","UnpinRow":"UnpinRow(object)","UnpinRowAsync(object)":"UnpinRowAsync(object)","UnpinRowAsync":"UnpinRowAsync(object)"}}],"IgbHierarchicalGridBaseDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHierarchicalGridBaseDirective","k":"class","s":"classes","m":{"GetData()":"GetData()","GetData":"GetData()","SuspendNotifications()":"SuspendNotifications()","SuspendNotifications":"SuspendNotifications()","ResumeNotifications()":"ResumeNotifications()","ResumeNotifications":"ResumeNotifications()","UpdateProperty(object, string, object)":"UpdateProperty(object, string, object)","UpdateProperty":"UpdateProperty(object, string, object)","OnRowAddedOverride(IgbRowDataEventArgs)":"OnRowAddedOverride(IgbRowDataEventArgs)","OnRowAddedOverride":"OnRowAddedOverride(IgbRowDataEventArgs)","PropagateValues(object, Dictionary, bool)":"PropagateValues(object, Dictionary, bool)","PropagateValues":"PropagateValues(object, Dictionary, bool)","AddRow(object)":"AddRow(object)","AddRow":"AddRow(object)","AddRowAsync(object)":"AddRowAsync(object)","AddRowAsync":"AddRowAsync(object)","DeleteRow(object)":"DeleteRow(object)","DeleteRow":"DeleteRow(object)","DeleteRowAsync(object)":"DeleteRowAsync(object)","DeleteRowAsync":"DeleteRowAsync(object)","UpdateCell(object, object, string)":"UpdateCell(object, object, string)","UpdateCell":"UpdateCell(object, object, string)","UpdateCellAsync(object, object, string)":"UpdateCellAsync(object, object, string)","UpdateCellAsync":"UpdateCellAsync(object, object, string)","UpdateRow(Dictionary, object)":"UpdateRow(Dictionary, object)","UpdateRow":"UpdateRow(Dictionary, object)","UpdateRowAsync(Dictionary, object)":"UpdateRowAsync(Dictionary, object)","UpdateRowAsync":"UpdateRowAsync(Dictionary, object)","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetHiddenColumnsCountAsync()":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCountAsync":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCount()":"GetHiddenColumnsCount()","GetHiddenColumnsCount":"GetHiddenColumnsCount()","GetPinnedColumnsCountAsync()":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCountAsync":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCount()":"GetPinnedColumnsCount()","GetPinnedColumnsCount":"GetPinnedColumnsCount()","GetLastSearchInfoAsync()":"GetLastSearchInfoAsync()","GetLastSearchInfoAsync":"GetLastSearchInfoAsync()","GetLastSearchInfo()":"GetLastSearchInfo()","GetLastSearchInfo":"GetLastSearchInfo()","GetFilteredDataAsync()":"GetFilteredDataAsync()","GetFilteredDataAsync":"GetFilteredDataAsync()","GetFilteredData()":"GetFilteredData()","GetFilteredData":"GetFilteredData()","GetFilteredSortedDataAsync()":"GetFilteredSortedDataAsync()","GetFilteredSortedDataAsync":"GetFilteredSortedDataAsync()","GetFilteredSortedData()":"GetFilteredSortedData()","GetFilteredSortedData":"GetFilteredSortedData()","GetVirtualizationStateAsync()":"GetVirtualizationStateAsync()","GetVirtualizationStateAsync":"GetVirtualizationStateAsync()","GetVirtualizationState()":"GetVirtualizationState()","GetVirtualizationState":"GetVirtualizationState()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetPinnedColumnsAsync()":"GetPinnedColumnsAsync()","GetPinnedColumnsAsync":"GetPinnedColumnsAsync()","GetPinnedColumns()":"GetPinnedColumns()","GetPinnedColumns":"GetPinnedColumns()","GetPinnedStartColumnsAsync()":"GetPinnedStartColumnsAsync()","GetPinnedStartColumnsAsync":"GetPinnedStartColumnsAsync()","GetPinnedStartColumns()":"GetPinnedStartColumns()","GetPinnedStartColumns":"GetPinnedStartColumns()","GetPinnedEndColumnsAsync()":"GetPinnedEndColumnsAsync()","GetPinnedEndColumnsAsync":"GetPinnedEndColumnsAsync()","GetPinnedEndColumns()":"GetPinnedEndColumns()","GetPinnedEndColumns":"GetPinnedEndColumns()","GetUnpinnedColumnsAsync()":"GetUnpinnedColumnsAsync()","GetUnpinnedColumnsAsync":"GetUnpinnedColumnsAsync()","GetUnpinnedColumns()":"GetUnpinnedColumns()","GetUnpinnedColumns":"GetUnpinnedColumns()","GetVisibleColumnsAsync()":"GetVisibleColumnsAsync()","GetVisibleColumnsAsync":"GetVisibleColumnsAsync()","GetVisibleColumns()":"GetVisibleColumns()","GetVisibleColumns":"GetVisibleColumns()","GetDataViewAsync()":"GetDataViewAsync()","GetDataViewAsync":"GetDataViewAsync()","GetDataView()":"GetDataView()","GetDataView":"GetDataView()","GetCurrentActualColumnListAsync()":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnListAsync":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnList()":"GetCurrentActualColumnList()","GetCurrentActualColumnList":"GetCurrentActualColumnList()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","ReflowAsync()":"ReflowAsync()","ReflowAsync":"ReflowAsync()","Reflow()":"Reflow()","Reflow":"Reflow()","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","NeedsDynamicContent":"NeedsDynamicContent","ContentColumnList":"ContentColumnList","CellEditDone":"CellEditDone","RowAdded":"RowAdded","ItemRequested":"ItemRequested","RowDeleted":"RowDeleted","DefaultEventBehavior":"DefaultEventBehavior","ParentTypeName":"ParentTypeName","ContentActionStripComponents":"ContentActionStripComponents","ActualActionStripComponents":"ActualActionStripComponents","ContentToolbar":"ContentToolbar","ActualToolbar":"ActualToolbar","ContentPaginationComponents":"ContentPaginationComponents","ActualPaginationComponents":"ActualPaginationComponents","ContentStateComponents":"ContentStateComponents","ActualStateComponents":"ActualStateComponents","SnackbarDisplayTime":"SnackbarDisplayTime","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","Moving":"Moving","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","SummaryRowHeight":"SummaryRowHeight","DataCloneStrategy":"DataCloneStrategy","ClipboardOptions":"ClipboardOptions","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","PrimaryKey":"PrimaryKey","ColumnList":"ColumnList","ActionStripComponents":"ActionStripComponents","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","Toolbar":"Toolbar","PaginationComponents":"PaginationComponents","ResourceStrings":"ResourceStrings","FilteringLogic":"FilteringLogic","FilteringExpressionsTree":"FilteringExpressionsTree","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","Locale":"Locale","PagingMode":"PagingMode","HideRowSelectors":"HideRowSelectors","RowDraggable":"RowDraggable","ValidationTrigger":"ValidationTrigger","RowEditable":"RowEditable","RowHeight":"RowHeight","ColumnWidth":"ColumnWidth","EmptyGridMessage":"EmptyGridMessage","IsLoading":"IsLoading","ShouldGenerate":"ShouldGenerate","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","Pinning":"Pinning","AllowFiltering":"AllowFiltering","AllowAdvancedFiltering":"AllowAdvancedFiltering","FilterMode":"FilterMode","SummaryPosition":"SummaryPosition","SummaryCalculationMode":"SummaryCalculationMode","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","FilterStrategy":"FilterStrategy","SortStrategy":"SortStrategy","SortingOptions":"SortingOptions","SelectedRows":"SelectedRows","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","SortingExpressions":"SortingExpressions","BatchEditing":"BatchEditing","CellSelection":"CellSelection","CellMergeMode":"CellMergeMode","RowSelection":"RowSelection","ColumnSelection":"ColumnSelection","Outlet":"Outlet","TotalRecords":"TotalRecords","SelectRowOnClick":"SelectRowOnClick","ActualColumnList":"ActualColumnList","StateComponents":"StateComponents","SelectedRowsChanged":"SelectedRowsChanged","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","GridScrollScript":"GridScrollScript","GridScroll":"GridScroll","CellClickScript":"CellClickScript","CellClick":"CellClick","RowClickScript":"RowClickScript","RowClick":"RowClick","FormGroupCreatedScript":"FormGroupCreatedScript","FormGroupCreated":"FormGroupCreated","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationStatusChange":"ValidationStatusChange","SelectedScript":"SelectedScript","Selected":"Selected","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectionChanging":"RowSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnPinScript":"ColumnPinScript","ColumnPin":"ColumnPin","ColumnPinnedScript":"ColumnPinnedScript","ColumnPinned":"ColumnPinned","CellEditEnterScript":"CellEditEnterScript","CellEditEnter":"CellEditEnter","CellEditExitScript":"CellEditExitScript","CellEditExit":"CellEditExit","CellEditScript":"CellEditScript","CellEdit":"CellEdit","RowEditEnterScript":"RowEditEnterScript","RowEditEnter":"RowEditEnter","RowEditScript":"RowEditScript","RowEdit":"RowEdit","RowEditDoneScript":"RowEditDoneScript","RowEditDone":"RowEditDone","RowEditExitScript":"RowEditExitScript","RowEditExit":"RowEditExit","ColumnInitScript":"ColumnInitScript","ColumnInit":"ColumnInit","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ColumnsAutogenerated":"ColumnsAutogenerated","SortingScript":"SortingScript","Sorting":"Sorting","SortingDoneScript":"SortingDoneScript","SortingDone":"SortingDone","FilteringScript":"FilteringScript","Filtering":"Filtering","FilteringDoneScript":"FilteringDoneScript","FilteringDone":"FilteringDone","RowDeleteScript":"RowDeleteScript","RowDelete":"RowDelete","RowAddScript":"RowAddScript","RowAdd":"RowAdd","ColumnResizedScript":"ColumnResizedScript","ColumnResized":"ColumnResized","ContextMenuScript":"ContextMenuScript","ContextMenu":"ContextMenu","DoubleClickScript":"DoubleClickScript","DoubleClick":"DoubleClick","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingScript":"ColumnMovingScript","ColumnMoving":"ColumnMoving","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingEnd":"ColumnMovingEnd","GridKeydownScript":"GridKeydownScript","GridKeydown":"GridKeydown","RowDragStartScript":"RowDragStartScript","RowDragStart":"RowDragStart","RowDragEndScript":"RowDragEndScript","RowDragEnd":"RowDragEnd","GridCopyScript":"GridCopyScript","GridCopy":"GridCopy","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChange":"SelectedRowsChange","RowToggleScript":"RowToggleScript","RowToggle":"RowToggle","RowPinningScript":"RowPinningScript","RowPinning":"RowPinning","RowPinnedScript":"RowPinnedScript","RowPinned":"RowPinned","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActiveNodeChange":"ActiveNodeChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingExpressionsChange":"SortingExpressionsChange","ToolbarExportingScript":"ToolbarExportingScript","ToolbarExporting":"ToolbarExporting","RangeSelectedScript":"RangeSelectedScript","RangeSelected":"RangeSelected","RenderedScript":"RenderedScript","Rendered":"Rendered","DataChangingScript":"DataChangingScript","DataChanging":"DataChanging","DataChangedScript":"DataChangedScript","DataChanged":"DataChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHierarchicalGridBaseDirective()":"IgbHierarchicalGridBaseDirective()","IgbHierarchicalGridBaseDirective":"IgbHierarchicalGridBaseDirective()","DataPreLoad":"DataPreLoad","DataPreLoadScript":"DataPreLoadScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasChildrenKey":"HasChildrenKey","RootGrid":"RootGrid","ShowExpandAll":"ShowExpandAll","Type":"Type"}}],"IgbHierarchicalGridModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHierarchicalGridModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHierarchicalGridModule()":"IgbHierarchicalGridModule()","IgbHierarchicalGridModule":"IgbHierarchicalGridModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHierarchicalRingSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHierarchicalRingSeries","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","DoughnutChartParent":"DoughnutChartParent","ParentTypeName":"ParentTypeName","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentOthersLabelFormatSpecifiers":"ContentOthersLabelFormatSpecifiers","ActualOthersLabelFormatSpecifiers":"ActualOthersLabelFormatSpecifiers","ContentLegendLabelFormatSpecifiers":"ContentLegendLabelFormatSpecifiers","ActualLegendLabelFormatSpecifiers":"ActualLegendLabelFormatSpecifiers","ContentLegendOthersLabelFormatSpecifiers":"ContentLegendOthersLabelFormatSpecifiers","ActualLegendOthersLabelFormatSpecifiers":"ActualLegendOthersLabelFormatSpecifiers","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ValueMemberPath":"ValueMemberPath","LabelMemberPath":"LabelMemberPath","LegendLabelMemberPath":"LegendLabelMemberPath","LabelsPosition":"LabelsPosition","LeaderLineVisibility":"LeaderLineVisibility","LeaderLineFill":"LeaderLineFill","LeaderLineStroke":"LeaderLineStroke","LeaderLineStrokeThickness":"LeaderLineStrokeThickness","LeaderLineOpacity":"LeaderLineOpacity","LeaderLineType":"LeaderLineType","LeaderLineMargin":"LeaderLineMargin","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","OthersCategoryText":"OthersCategoryText","Legend":"Legend","LegendScript":"LegendScript","FormatLabelScript":"FormatLabelScript","FormatLegendLabel":"FormatLegendLabel","FormatLegendLabelScript":"FormatLegendLabelScript","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","OthersLabelFormat":"OthersLabelFormat","OthersLabelFormatSpecifiers":"OthersLabelFormatSpecifiers","LegendLabelFormat":"LegendLabelFormat","LegendLabelFormatSpecifiers":"LegendLabelFormatSpecifiers","LegendOthersLabelFormat":"LegendOthersLabelFormat","LegendOthersLabelFormatSpecifiers":"LegendOthersLabelFormatSpecifiers","LabelExtent":"LabelExtent","StartAngle":"StartAngle","OthersCategoryFill":"OthersCategoryFill","OthersCategoryStroke":"OthersCategoryStroke","OthersCategoryStrokeThickness":"OthersCategoryStrokeThickness","OthersCategoryOpacity":"OthersCategoryOpacity","SelectedSliceFill":"SelectedSliceFill","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","SelectedSliceOpacity":"SelectedSliceOpacity","Brushes":"Brushes","Outlines":"Outlines","LabelOuterColor":"LabelOuterColor","LabelInnerColor":"LabelInnerColor","TextStyle":"TextStyle","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","RadiusFactor":"RadiusFactor","PropertyUpdatedScript":"PropertyUpdatedScript","PropertyUpdated":"PropertyUpdated","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHierarchicalRingSeries()":"IgbHierarchicalRingSeries()","IgbHierarchicalRingSeries":"IgbHierarchicalRingSeries()","ChildrenMemberPath":"ChildrenMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbHierarchicalRingSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHierarchicalRingSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHierarchicalRingSeriesModule()":"IgbHierarchicalRingSeriesModule()","IgbHierarchicalRingSeriesModule":"IgbHierarchicalRingSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHighDensityScatterSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHighDensityScatterSeries","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHighDensityScatterSeries()":"IgbHighDensityScatterSeries()","IgbHighDensityScatterSeries":"IgbHighDensityScatterSeries()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","HeatMaximum":"HeatMaximum","HeatMaximumColor":"HeatMaximumColor","HeatMinimum":"HeatMinimum","HeatMinimumColor":"HeatMinimumColor","PointExtent":"PointExtent","ProgressiveLoad":"ProgressiveLoad","ProgressiveLoadStatusChanged":"ProgressiveLoadStatusChanged","ProgressiveLoadStatusChangedScript":"ProgressiveLoadStatusChangedScript","ProgressiveStatus":"ProgressiveStatus","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","Type":"Type","UseBruteForce":"UseBruteForce","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","XMemberAsLegendLabel":"XMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","XMemberPath":"XMemberPath","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript","YMemberAsLegendLabel":"YMemberAsLegendLabel","YMemberAsLegendUnit":"YMemberAsLegendUnit","YMemberPath":"YMemberPath"}}],"IgbHighDensityScatterSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHighDensityScatterSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHighDensityScatterSeriesModule()":"IgbHighDensityScatterSeriesModule()","IgbHighDensityScatterSeriesModule":"IgbHighDensityScatterSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHighlightingInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHighlightingInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHighlightingInfo()":"IgbHighlightingInfo()","IgbHighlightingInfo":"IgbHighlightingInfo()","Context":"Context","ContextScript":"ContextScript","EndIndex":"EndIndex","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsExclusive":"IsExclusive","IsFullRange":"IsFullRange","IsMarker":"IsMarker","Progress":"Progress","StartIndex":"StartIndex","State":"State","Type":"Type"}}],"IgbHoleDimensionsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHoleDimensionsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHoleDimensionsChangedEventArgs()":"IgbHoleDimensionsChangedEventArgs()","IgbHoleDimensionsChangedEventArgs":"IgbHoleDimensionsChangedEventArgs()","Center":"Center","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Radius":"Radius","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbHorizontalAnchoredCategorySeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHorizontalAnchoredCategorySeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHorizontalAnchoredCategorySeries()":"IgbHorizontalAnchoredCategorySeries()","IgbHorizontalAnchoredCategorySeries":"IgbHorizontalAnchoredCategorySeries()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbHorizontalAnchoredCategorySeriesProxyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHorizontalAnchoredCategorySeriesProxyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHorizontalAnchoredCategorySeriesProxyModule()":"IgbHorizontalAnchoredCategorySeriesProxyModule()","IgbHorizontalAnchoredCategorySeriesProxyModule":"IgbHorizontalAnchoredCategorySeriesProxyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHorizontalPropertyEditorDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHorizontalPropertyEditorDataSource","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbPropertyEditorPropertyDescription)":"InsertItem(int, IgbPropertyEditorPropertyDescription)","InsertItem":"InsertItem(int, IgbPropertyEditorPropertyDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbPropertyEditorPropertyDescription)":"SetItem(int, IgbPropertyEditorPropertyDescription)","SetItem":"SetItem(int, IgbPropertyEditorPropertyDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbPropertyEditorPropertyDescription)":"Add(IgbPropertyEditorPropertyDescription)","Add":"Add(IgbPropertyEditorPropertyDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbPropertyEditorPropertyDescription[], int)":"CopyTo(IgbPropertyEditorPropertyDescription[], int)","CopyTo":"CopyTo(IgbPropertyEditorPropertyDescription[], int)","Contains(IgbPropertyEditorPropertyDescription)":"Contains(IgbPropertyEditorPropertyDescription)","Contains":"Contains(IgbPropertyEditorPropertyDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbPropertyEditorPropertyDescription)":"IndexOf(IgbPropertyEditorPropertyDescription)","IndexOf":"IndexOf(IgbPropertyEditorPropertyDescription)","Insert(int, IgbPropertyEditorPropertyDescription)":"Insert(int, IgbPropertyEditorPropertyDescription)","Insert":"Insert(int, IgbPropertyEditorPropertyDescription)","Remove(IgbPropertyEditorPropertyDescription)":"Remove(IgbPropertyEditorPropertyDescription)","Remove":"Remove(IgbPropertyEditorPropertyDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHorizontalPropertyEditorDataSource(object, string)":"IgbHorizontalPropertyEditorDataSource(object, string)","IgbHorizontalPropertyEditorDataSource":"IgbHorizontalPropertyEditorDataSource(object, string)"}}],"IgbHorizontalRangeCategorySeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHorizontalRangeCategorySeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","LowMemberPath":"LowMemberPath","HighMemberPath":"HighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHorizontalRangeCategorySeries()":"IgbHorizontalRangeCategorySeries()","IgbHorizontalRangeCategorySeries":"IgbHorizontalRangeCategorySeries()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","HighMemberAsLegendLabel":"HighMemberAsLegendLabel","HighMemberAsLegendUnit":"HighMemberAsLegendUnit","LowMemberAsLegendLabel":"LowMemberAsLegendLabel","LowMemberAsLegendUnit":"LowMemberAsLegendUnit","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbHorizontalRangeCategorySeriesProxyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHorizontalRangeCategorySeriesProxyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHorizontalRangeCategorySeriesProxyModule()":"IgbHorizontalRangeCategorySeriesProxyModule()","IgbHorizontalRangeCategorySeriesProxyModule":"IgbHorizontalRangeCategorySeriesProxyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbHorizontalStackedSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbHorizontalStackedSeriesBase","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbHorizontalStackedSeriesBase()":"IgbHorizontalStackedSeriesBase()","IgbHorizontalStackedSeriesBase":"IgbHorizontalStackedSeriesBase()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbIcon":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIcon","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIcon()":"IgbIcon()","IgbIcon":"IgbIcon()","Collection":"Collection","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisconnectedCallback()":"DisconnectedCallback()","DisconnectedCallback":"DisconnectedCallback()","DisconnectedCallbackAsync()":"DisconnectedCallbackAsync()","DisconnectedCallbackAsync":"DisconnectedCallbackAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IconName":"IconName","Mirrored":"Mirrored","RegisterIcon(string, string, string)":"RegisterIcon(string, string, string)","RegisterIcon":"RegisterIcon(string, string, string)","RegisterIconAsync(string, string, string)":"RegisterIconAsync(string, string, string)","RegisterIconAsync":"RegisterIconAsync(string, string, string)","RegisterIconFromText(string, string, string)":"RegisterIconFromText(string, string, string)","RegisterIconFromText":"RegisterIconFromText(string, string, string)","RegisterIconFromTextAsync(string, string, string)":"RegisterIconFromTextAsync(string, string, string)","RegisterIconFromTextAsync":"RegisterIconFromTextAsync(string, string, string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetIconRef(string, string, IgbIconMeta)":"SetIconRef(string, string, IgbIconMeta)","SetIconRef":"SetIconRef(string, string, IgbIconMeta)","SetIconRefAsync(string, string, IgbIconMeta)":"SetIconRefAsync(string, string, IgbIconMeta)","SetIconRefAsync":"SetIconRefAsync(string, string, IgbIconMeta)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbIcon","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIcon()":"IgbIcon()","IgbIcon":"IgbIcon()","Collection":"Collection","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisconnectedCallback()":"DisconnectedCallback()","DisconnectedCallback":"DisconnectedCallback()","DisconnectedCallbackAsync()":"DisconnectedCallbackAsync()","DisconnectedCallbackAsync":"DisconnectedCallbackAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IconName":"IconName","Mirrored":"Mirrored","RegisterIcon(string, string, string)":"RegisterIcon(string, string, string)","RegisterIcon":"RegisterIcon(string, string, string)","RegisterIconAsync(string, string, string)":"RegisterIconAsync(string, string, string)","RegisterIconAsync":"RegisterIconAsync(string, string, string)","RegisterIconFromText(string, string, string)":"RegisterIconFromText(string, string, string)","RegisterIconFromText":"RegisterIconFromText(string, string, string)","RegisterIconFromTextAsync(string, string, string)":"RegisterIconFromTextAsync(string, string, string)","RegisterIconFromTextAsync":"RegisterIconFromTextAsync(string, string, string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetIconRef(string, string, IgbIconMeta)":"SetIconRef(string, string, IgbIconMeta)","SetIconRef":"SetIconRef(string, string, IgbIconMeta)","SetIconRefAsync(string, string, IgbIconMeta)":"SetIconRefAsync(string, string, IgbIconMeta)","SetIconRefAsync":"SetIconRefAsync(string, string, IgbIconMeta)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbIconButton":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIconButton","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","DefaultEventBehavior":"DefaultEventBehavior","DisplayType":"DisplayType","Href":"Href","Download":"Download","Target":"Target","Rel":"Rel","Disabled":"Disabled","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconButton()":"IgbIconButton()","IgbIconButton":"IgbIconButton()","Collection":"Collection","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IconName":"IconName","Mirrored":"Mirrored","RegisterIcon(string, string, string)":"RegisterIcon(string, string, string)","RegisterIcon":"RegisterIcon(string, string, string)","RegisterIconAsync(string, string, string)":"RegisterIconAsync(string, string, string)","RegisterIconAsync":"RegisterIconAsync(string, string, string)","RegisterIconFromText(string, string, string)":"RegisterIconFromText(string, string, string)","RegisterIconFromText":"RegisterIconFromText(string, string, string)","RegisterIconFromTextAsync(string, string, string)":"RegisterIconFromTextAsync(string, string, string)","RegisterIconFromTextAsync":"RegisterIconFromTextAsync(string, string, string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbIconButton","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","DefaultEventBehavior":"DefaultEventBehavior","DisplayType":"DisplayType","Href":"Href","Download":"Download","Target":"Target","Rel":"Rel","Disabled":"Disabled","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconButton()":"IgbIconButton()","IgbIconButton":"IgbIconButton()","Collection":"Collection","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IconName":"IconName","Mirrored":"Mirrored","RegisterIcon(string, string, string)":"RegisterIcon(string, string, string)","RegisterIcon":"RegisterIcon(string, string, string)","RegisterIconAsync(string, string, string)":"RegisterIconAsync(string, string, string)","RegisterIconAsync":"RegisterIconAsync(string, string, string)","RegisterIconFromText(string, string, string)":"RegisterIconFromText(string, string, string)","RegisterIconFromText":"RegisterIconFromText(string, string, string)","RegisterIconFromTextAsync(string, string, string)":"RegisterIconFromTextAsync(string, string, string)","RegisterIconFromTextAsync":"RegisterIconFromTextAsync(string, string, string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}}],"IgbIconButtonModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIconButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconButtonModule()":"IgbIconButtonModule()","IgbIconButtonModule":"IgbIconButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbIconButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconButtonModule()":"IgbIconButtonModule()","IgbIconButtonModule":"IgbIconButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbIconMeta":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIconMeta","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconMeta()":"IgbIconMeta()","IgbIconMeta":"IgbIconMeta()","Collection":"Collection","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbIconMeta","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconMeta()":"IgbIconMeta()","IgbIconMeta":"IgbIconMeta()","Collection":"Collection","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbIconModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIconModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconModule()":"IgbIconModule()","IgbIconModule":"IgbIconModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbIconModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIconModule()":"IgbIconModule()","IgbIconModule":"IgbIconModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbImageCapturedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImageCapturedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImageCapturedEventArgs()":"IgbImageCapturedEventArgs()","IgbImageCapturedEventArgs":"IgbImageCapturedEventArgs()","Base64Data":"Base64Data","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Image":"Image","ImageScript":"ImageScript","Settings":"Settings","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbImageCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImageCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImageCellInfo()":"IgbImageCellInfo()","IgbImageCellInfo":"IgbImageCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ImagePath":"ImagePath","ImageResourceType":"ImageResourceType","ImageStretchOption":"ImageStretchOption","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbImageColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImageColumn","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","DataGridParent":"DataGridParent","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","Field":"Field","HeaderText":"HeaderText","ActualHeaderText":"ActualHeaderText","SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","RowHoverBackground":"RowHoverBackground","ActualHoverBackground":"ActualHoverBackground","RowHoverTextColor":"RowHoverTextColor","ActualRowHoverTextColor":"ActualRowHoverTextColor","AnimationSettings":"AnimationSettings","Width":"Width","MinWidth":"MinWidth","IsFromMarkup":"IsFromMarkup","IsAutoGenerated":"IsAutoGenerated","Filter":"Filter","FilterExpression":"FilterExpression","Header":"Header","IsFilteringEnabled":"IsFilteringEnabled","IsResizingEnabled":"IsResizingEnabled","IsHidden":"IsHidden","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","Pinned":"Pinned","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ColumnOptionsBackground":"ColumnOptionsBackground","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","IsEditable":"IsEditable","DeletedTextColor":"DeletedTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","EditOpacity":"EditOpacity","ActualEditOpacity":"ActualEditOpacity","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","MergedCellMode":"MergedCellMode","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingBottom":"MergedCellPaddingBottom","FilterComparisonType":"FilterComparisonType","FilterOperands":"FilterOperands","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","FormatCellScript":"FormatCellScript","FormatCell":"FormatCell","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHeaderTextChanged":"ActualHeaderTextChanged","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImageColumn()":"IgbImageColumn()","IgbImageColumn":"IgbImageColumn()","ActualEditorDataSource":"ActualEditorDataSource","EditorDataSource":"EditorDataSource","EditorDataSourceScript":"EditorDataSourceScript","EditorTextField":"EditorTextField","EditorType":"EditorType","EditorValueField":"EditorValueField","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ImageStretchOption":"ImageStretchOption","ParentTypeName":"ParentTypeName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbImageColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImageColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImageColumnModule()":"IgbImageColumnModule()","IgbImageColumnModule":"IgbImageColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbImageLoadEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImageLoadEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImageLoadEventArgs()":"IgbImageLoadEventArgs()","IgbImageLoadEventArgs":"IgbImageLoadEventArgs()","Data":"Data","DataScript":"DataScript","Error":"Error","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Path":"Path","Status":"Status","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbImagesChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImagesChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImagesChangedEventArgs()":"IgbImagesChangedEventArgs()","IgbImagesChangedEventArgs":"IgbImagesChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbImageTilesReadyEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbImageTilesReadyEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbImageTilesReadyEventArgs()":"IgbImageTilesReadyEventArgs()","IgbImageTilesReadyEventArgs":"IgbImageTilesReadyEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbIndexCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIndexCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, int)":"InsertItem(int, int)","InsertItem":"InsertItem(int, int)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, int)":"SetItem(int, int)","SetItem":"SetItem(int, int)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(int)":"Add(int)","Add":"Add(int)","Clear()":"Clear()","Clear":"Clear()","CopyTo(int[], int)":"CopyTo(int[], int)","CopyTo":"CopyTo(int[], int)","Contains(int)":"Contains(int)","Contains":"Contains(int)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(int)":"IndexOf(int)","IndexOf":"IndexOf(int)","Insert(int, int)":"Insert(int, int)","Insert":"Insert(int, int)","Remove(int)":"Remove(int)","Remove":"Remove(int)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIndexCollection(object, string)":"IgbIndexCollection(object, string)","IgbIndexCollection":"IgbIndexCollection(object, string)"}}],"IgbIndicatorDisplayTypeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIndicatorDisplayTypeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IndicatorDisplayType)":"InsertItem(int, IndicatorDisplayType)","InsertItem":"InsertItem(int, IndicatorDisplayType)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IndicatorDisplayType)":"SetItem(int, IndicatorDisplayType)","SetItem":"SetItem(int, IndicatorDisplayType)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IndicatorDisplayType)":"Add(IndicatorDisplayType)","Add":"Add(IndicatorDisplayType)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IndicatorDisplayType[], int)":"CopyTo(IndicatorDisplayType[], int)","CopyTo":"CopyTo(IndicatorDisplayType[], int)","Contains(IndicatorDisplayType)":"Contains(IndicatorDisplayType)","Contains":"Contains(IndicatorDisplayType)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IndicatorDisplayType)":"IndexOf(IndicatorDisplayType)","IndexOf":"IndexOf(IndicatorDisplayType)","Insert(int, IndicatorDisplayType)":"Insert(int, IndicatorDisplayType)","Insert":"Insert(int, IndicatorDisplayType)","Remove(IndicatorDisplayType)":"Remove(IndicatorDisplayType)","Remove":"Remove(IndicatorDisplayType)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIndicatorDisplayTypeCollection(object, string)":"IgbIndicatorDisplayTypeCollection(object, string)","IgbIndicatorDisplayTypeCollection":"IgbIndicatorDisplayTypeCollection(object, string)"}}],"IgbIndicatorProxyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIndicatorProxyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIndicatorProxyModule()":"IgbIndicatorProxyModule()","IgbIndicatorProxyModule":"IgbIndicatorProxyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbIndicatorsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbIndicatorsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbIndicatorsModule()":"IgbIndicatorsModule()","IgbIndicatorsModule":"IgbIndicatorsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbInput":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbInput","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Select()":"Select()","Select":"Select()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","ValueChanging":"ValueChanging","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInput()":"IgbInput()","IgbInput":"IgbInput()","Autocomplete":"Autocomplete","Autofocus":"Autofocus","Change":"Change","ChangeScript":"ChangeScript","DirectRenderElementName":"DirectRenderElementName","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","InputMode":"InputMode","Max":"Max","MaxLength":"MaxLength","Min":"Min","MinLength":"MinLength","Pattern":"Pattern","ReadOnly":"ReadOnly","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","Step":"Step","StepDown(double)":"StepDown(double)","StepDown":"StepDown(double)","StepDownAsync(double)":"StepDownAsync(double)","StepDownAsync":"StepDownAsync(double)","StepUp(double)":"StepUp(double)","StepUp":"StepUp(double)","StepUpAsync(double)":"StepUpAsync(double)","StepUpAsync":"StepUpAsync(double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","ValidateOnly":"ValidateOnly","Value":"Value","ValueChanged":"ValueChanged"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbInput","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","ReadOnly":"ReadOnly","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","ValueChanging":"ValueChanging","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInput()":"IgbInput()","IgbInput":"IgbInput()","Autocomplete":"Autocomplete","Autofocus":"Autofocus","Change":"Change","ChangeScript":"ChangeScript","DirectRenderElementName":"DirectRenderElementName","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","InputMode":"InputMode","Max":"Max","MaxLength":"MaxLength","Min":"Min","MinLength":"MinLength","Pattern":"Pattern","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","Step":"Step","StepDown(double)":"StepDown(double)","StepDown":"StepDown(double)","StepDownAsync(double)":"StepDownAsync(double)","StepDownAsync":"StepDownAsync(double)","StepUp(double)":"StepUp(double)","StepUp":"StepUp(double)","StepUpAsync(double)":"StepUpAsync(double)","StepUpAsync":"StepUpAsync(double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","ValidateOnly":"ValidateOnly","Value":"Value","ValueChanged":"ValueChanged"}}],"IgbInputBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbInputBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputBase()":"IgbInputBase()","IgbInputBase":"IgbInputBase()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","InputOcurred":"InputOcurred","InputOcurredScript":"InputOcurredScript","Invalid":"Invalid","Label":"Label","Outlined":"Outlined","Placeholder":"Placeholder","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","ValueChanging":"ValueChanging"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbInputBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputBase()":"IgbInputBase()","IgbInputBase":"IgbInputBase()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","InputOcurred":"InputOcurred","InputOcurredScript":"InputOcurredScript","Invalid":"Invalid","Label":"Label","Outlined":"Outlined","Placeholder":"Placeholder","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","ValueChanging":"ValueChanging"}}],"IgbInputBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbInputBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputBaseModule()":"IgbInputBaseModule()","IgbInputBaseModule":"IgbInputBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbInputBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputBaseModule()":"IgbInputBaseModule()","IgbInputBaseModule":"IgbInputBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbInputChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbInputChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputChangeEventArgs()":"IgbInputChangeEventArgs()","IgbInputChangeEventArgs":"IgbInputChangeEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsCompositionInProgress":"IsCompositionInProgress","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbInputModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputModule()":"IgbInputModule()","IgbInputModule":"IgbInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbInputModule()":"IgbInputModule()","IgbInputModule":"IgbInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbItemLegend":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbItemLegend","k":"class","s":"classes","m":{"FlushTextContentChangedCheckAsync()":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheckAsync":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheck()":"FlushTextContentChangedCheck()","FlushTextContentChangedCheck":"FlushTextContentChangedCheck()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","DefaultEventBehavior":"DefaultEventBehavior","LegendItemMouseLeftButtonDownScript":"LegendItemMouseLeftButtonDownScript","LegendItemMouseLeftButtonDown":"LegendItemMouseLeftButtonDown","LegendItemMouseLeftButtonUpScript":"LegendItemMouseLeftButtonUpScript","LegendItemMouseLeftButtonUp":"LegendItemMouseLeftButtonUp","LegendItemMouseEnterScript":"LegendItemMouseEnterScript","LegendItemMouseEnter":"LegendItemMouseEnter","LegendItemMouseLeaveScript":"LegendItemMouseLeaveScript","LegendItemMouseLeave":"LegendItemMouseLeave","LegendItemMouseMoveScript":"LegendItemMouseMoveScript","LegendItemMouseMove":"LegendItemMouseMove","LegendTextContentChangedScript":"LegendTextContentChangedScript","LegendTextContentChanged":"LegendTextContentChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbItemLegend()":"IgbItemLegend()","IgbItemLegend":"IgbItemLegend()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Orientation":"Orientation","TextColor":"TextColor","TextStyle":"TextStyle","Type":"Type"}}],"IgbItemLegendModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbItemLegendModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbItemLegendModule()":"IgbItemLegendModule()","IgbItemLegendModule":"IgbItemLegendModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbItemRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbItemRequestedEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbItemRequestedEventArgs()":"IgbItemRequestedEventArgs()","IgbItemRequestedEventArgs":"IgbItemRequestedEventArgs()","Item":"Item","Values":"Values","ValuesPropagated":"ValuesPropagated"}}],"IgbItemToolTipLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbItemToolTipLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbItemToolTipLayer()":"IgbItemToolTipLayer()","IgbItemToolTipLayer":"IgbItemToolTipLayer()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","SkipUnknownValues":"SkipUnknownValues","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","ToolTipBackground":"ToolTipBackground","ToolTipBorderBrush":"ToolTipBorderBrush","ToolTipBorderThickness":"ToolTipBorderThickness","Type":"Type","UseInterpolation":"UseInterpolation"}}],"IgbItemToolTipLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbItemToolTipLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbItemToolTipLayerModule()":"IgbItemToolTipLayerModule()","IgbItemToolTipLayerModule":"IgbItemToolTipLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbItemwiseStrategyBasedIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbItemwiseStrategyBasedIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbItemwiseStrategyBasedIndicator()":"IgbItemwiseStrategyBasedIndicator()","IgbItemwiseStrategyBasedIndicator":"IgbItemwiseStrategyBasedIndicator()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveIsItemwise()":"ResolveIsItemwise()","ResolveIsItemwise":"ResolveIsItemwise()","ResolveIsItemwiseAsync()":"ResolveIsItemwiseAsync()","ResolveIsItemwiseAsync":"ResolveIsItemwiseAsync()","Type":"Type"}}],"IgbKeyBindingHandler":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbKeyBindingHandler","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbKeyBindingHandler()":"IgbKeyBindingHandler()","IgbKeyBindingHandler":"IgbKeyBindingHandler()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbKeyBindingHandler","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbKeyBindingHandler()":"IgbKeyBindingHandler()","IgbKeyBindingHandler":"IgbKeyBindingHandler()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbKeyBindingOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbKeyBindingOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbKeyBindingOptions()":"IgbKeyBindingOptions()","IgbKeyBindingOptions":"IgbKeyBindingOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbKeyBindingOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbKeyBindingOptions()":"IgbKeyBindingOptions()","IgbKeyBindingOptions":"IgbKeyBindingOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbKeyEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbKeyEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbKeyEventArgs()":"IgbKeyEventArgs()","IgbKeyEventArgs":"IgbKeyEventArgs()","Alt":"Alt","Ctrl":"Ctrl","DefaultPrevented":"DefaultPrevented","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","KeyCode":"KeyCode","Modifiers":"Modifiers","OriginalEvent":"OriginalEvent","OriginalEventScript":"OriginalEventScript","PreventDefault()":"PreventDefault()","PreventDefault":"PreventDefault()","PreventDefaultAsync()":"PreventDefaultAsync()","PreventDefaultAsync":"PreventDefaultAsync()","Shift":"Shift","StopPropagation()":"StopPropagation()","StopPropagation":"StopPropagation()","StopPropagationAsync()":"StopPropagationAsync()","StopPropagationAsync":"StopPropagationAsync()","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLabelClickEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLabelClickEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLabelClickEventArgs()":"IgbLabelClickEventArgs()","IgbLabelClickEventArgs":"IgbLabelClickEventArgs()","AllowSliceClick":"AllowSliceClick","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLabelFormatOverrideEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLabelFormatOverrideEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLabelFormatOverrideEventArgs()":"IgbLabelFormatOverrideEventArgs()","IgbLabelFormatOverrideEventArgs":"IgbLabelFormatOverrideEventArgs()","DateTime":"DateTime","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Format":"Format","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Label":"Label","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastMonthExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastMonthExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastMonthExpression()":"IgbLastMonthExpression()","IgbLastMonthExpression":"IgbLastMonthExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastQuarterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastQuarterExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastQuarterExpression()":"IgbLastQuarterExpression()","IgbLastQuarterExpression":"IgbLastQuarterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastSevenDaysExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastSevenDaysExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastSevenDaysExpression()":"IgbLastSevenDaysExpression()","IgbLastSevenDaysExpression":"IgbLastSevenDaysExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastThirtyDaysExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastThirtyDaysExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastThirtyDaysExpression()":"IgbLastThirtyDaysExpression()","IgbLastThirtyDaysExpression":"IgbLastThirtyDaysExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastThreeSixtyFiveDaysExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastThreeSixtyFiveDaysExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastThreeSixtyFiveDaysExpression()":"IgbLastThreeSixtyFiveDaysExpression()","IgbLastThreeSixtyFiveDaysExpression":"IgbLastThreeSixtyFiveDaysExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastWeekExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastWeekExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastWeekExpression()":"IgbLastWeekExpression()","IgbLastWeekExpression":"IgbLastWeekExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLastYearExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLastYearExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLastYearExpression()":"IgbLastYearExpression()","IgbLastYearExpression":"IgbLastYearExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLayoutChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLayoutChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLayoutChangeEventArgs()":"IgbLayoutChangeEventArgs()","IgbLayoutChangeEventArgs":"IgbLayoutChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLayoutPrimaryKeyValue":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLayoutPrimaryKeyValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLayoutPrimaryKeyValue()":"IgbLayoutPrimaryKeyValue()","IgbLayoutPrimaryKeyValue":"IgbLayoutPrimaryKeyValue()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Key":"Key","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbLayoutPrimaryKeyValueModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLayoutPrimaryKeyValueModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLayoutPrimaryKeyValueModule()":"IgbLayoutPrimaryKeyValueModule()","IgbLayoutPrimaryKeyValueModule":"IgbLayoutPrimaryKeyValueModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLayoutSelectedItemsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLayoutSelectedItemsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, object)":"InsertItem(int, object)","InsertItem":"InsertItem(int, object)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, object)":"SetItem(int, object)","SetItem":"SetItem(int, object)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(object)":"Add(object)","Add":"Add(object)","Clear()":"Clear()","Clear":"Clear()","CopyTo(object[], int)":"CopyTo(object[], int)","CopyTo":"CopyTo(object[], int)","Contains(object)":"Contains(object)","Contains":"Contains(object)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(object)":"IndexOf(object)","IndexOf":"IndexOf(object)","Insert(int, object)":"Insert(int, object)","Insert":"Insert(int, object)","Remove(object)":"Remove(object)","Remove":"Remove(object)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLayoutSelectedItemsCollection(object, string)":"IgbLayoutSelectedItemsCollection(object, string)","IgbLayoutSelectedItemsCollection":"IgbLayoutSelectedItemsCollection(object, string)"}}],"IgbLayoutSelectedKeysCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLayoutSelectedKeysCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbLayoutPrimaryKeyValue)":"InsertItem(int, IgbLayoutPrimaryKeyValue)","InsertItem":"InsertItem(int, IgbLayoutPrimaryKeyValue)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbLayoutPrimaryKeyValue)":"SetItem(int, IgbLayoutPrimaryKeyValue)","SetItem":"SetItem(int, IgbLayoutPrimaryKeyValue)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbLayoutPrimaryKeyValue)":"Add(IgbLayoutPrimaryKeyValue)","Add":"Add(IgbLayoutPrimaryKeyValue)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbLayoutPrimaryKeyValue[], int)":"CopyTo(IgbLayoutPrimaryKeyValue[], int)","CopyTo":"CopyTo(IgbLayoutPrimaryKeyValue[], int)","Contains(IgbLayoutPrimaryKeyValue)":"Contains(IgbLayoutPrimaryKeyValue)","Contains":"Contains(IgbLayoutPrimaryKeyValue)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbLayoutPrimaryKeyValue)":"IndexOf(IgbLayoutPrimaryKeyValue)","IndexOf":"IndexOf(IgbLayoutPrimaryKeyValue)","Insert(int, IgbLayoutPrimaryKeyValue)":"Insert(int, IgbLayoutPrimaryKeyValue)","Insert":"Insert(int, IgbLayoutPrimaryKeyValue)","Remove(IgbLayoutPrimaryKeyValue)":"Remove(IgbLayoutPrimaryKeyValue)","Remove":"Remove(IgbLayoutPrimaryKeyValue)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLayoutSelectedKeysCollection(object, string)":"IgbLayoutSelectedKeysCollection(object, string)","IgbLayoutSelectedKeysCollection":"IgbLayoutSelectedKeysCollection(object, string)"}}],"IgbLegend":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLegend","k":"class","s":"classes","m":{"FlushTextContentChangedCheckAsync()":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheckAsync":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheck()":"FlushTextContentChangedCheck()","FlushTextContentChangedCheck":"FlushTextContentChangedCheck()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","DefaultEventBehavior":"DefaultEventBehavior","LegendItemMouseLeftButtonDownScript":"LegendItemMouseLeftButtonDownScript","LegendItemMouseLeftButtonDown":"LegendItemMouseLeftButtonDown","LegendItemMouseLeftButtonUpScript":"LegendItemMouseLeftButtonUpScript","LegendItemMouseLeftButtonUp":"LegendItemMouseLeftButtonUp","LegendItemMouseEnterScript":"LegendItemMouseEnterScript","LegendItemMouseEnter":"LegendItemMouseEnter","LegendItemMouseLeaveScript":"LegendItemMouseLeaveScript","LegendItemMouseLeave":"LegendItemMouseLeave","LegendItemMouseMoveScript":"LegendItemMouseMoveScript","LegendItemMouseMove":"LegendItemMouseMove","LegendTextContentChangedScript":"LegendTextContentChangedScript","LegendTextContentChanged":"LegendTextContentChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLegend()":"IgbLegend()","IgbLegend":"IgbLegend()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Orientation":"Orientation","TextColor":"TextColor","TextStyle":"TextStyle","Type":"Type"}}],"IgbLegendBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLegendBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLegendBase()":"IgbLegendBase()","IgbLegendBase":"IgbLegendBase()","DefaultEventBehavior":"DefaultEventBehavior","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FlushTextContentChangedCheck()":"FlushTextContentChangedCheck()","FlushTextContentChangedCheck":"FlushTextContentChangedCheck()","FlushTextContentChangedCheckAsync()":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheckAsync":"FlushTextContentChangedCheckAsync()","LegendItemMouseEnter":"LegendItemMouseEnter","LegendItemMouseEnterScript":"LegendItemMouseEnterScript","LegendItemMouseLeave":"LegendItemMouseLeave","LegendItemMouseLeaveScript":"LegendItemMouseLeaveScript","LegendItemMouseLeftButtonDown":"LegendItemMouseLeftButtonDown","LegendItemMouseLeftButtonDownScript":"LegendItemMouseLeftButtonDownScript","LegendItemMouseLeftButtonUp":"LegendItemMouseLeftButtonUp","LegendItemMouseLeftButtonUpScript":"LegendItemMouseLeftButtonUpScript","LegendItemMouseMove":"LegendItemMouseMove","LegendItemMouseMoveScript":"LegendItemMouseMoveScript","LegendTextContentChanged":"LegendTextContentChanged","LegendTextContentChangedScript":"LegendTextContentChangedScript","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","Type":"Type"}}],"IgbLegendModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLegendModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLegendModule()":"IgbLegendModule()","IgbLegendModule":"IgbLegendModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLegendMouseButtonEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLegendMouseButtonEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLegendMouseButtonEventArgs()":"IgbLegendMouseButtonEventArgs()","IgbLegendMouseButtonEventArgs":"IgbLegendMouseButtonEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Handled":"Handled","Item":"Item","ItemScript":"ItemScript","LegendItem":"LegendItem","LegendItemScript":"LegendItemScript","OriginalSource":"OriginalSource","OriginalSourceScript":"OriginalSourceScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLegendMouseEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLegendMouseEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLegendMouseEventArgs()":"IgbLegendMouseEventArgs()","IgbLegendMouseEventArgs":"IgbLegendMouseEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","LegendItem":"LegendItem","LegendItemScript":"LegendItemScript","OriginalSource":"OriginalSource","OriginalSourceScript":"OriginalSourceScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLegendTextContentChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLegendTextContentChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLegendTextContentChangedEventArgs()":"IgbLegendTextContentChangedEventArgs()","IgbLegendTextContentChangedEventArgs":"IgbLegendTextContentChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLinearContourValueResolver":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearContourValueResolver","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearContourValueResolver()":"IgbLinearContourValueResolver()","IgbLinearContourValueResolver":"IgbLinearContourValueResolver()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","ValueCount":"ValueCount"}}],"IgbLinearContourValueResolverModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearContourValueResolverModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearContourValueResolverModule()":"IgbLinearContourValueResolverModule()","IgbLinearContourValueResolverModule":"IgbLinearContourValueResolverModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLinearGauge":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGauge","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGauge()":"IgbLinearGauge()","IgbLinearGauge":"IgbLinearGauge()","ActualHighlightValueDisplayMode":"ActualHighlightValueDisplayMode","ActualHighlightValueOpacity":"ActualHighlightValueOpacity","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ActualMaximumValue":"ActualMaximumValue","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMinimumValue":"ActualMinimumValue","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualRanges":"ActualRanges","AlignLabel":"AlignLabel","AlignLabelScript":"AlignLabelScript","BackingBrush":"BackingBrush","BackingInnerExtent":"BackingInnerExtent","BackingOuterExtent":"BackingOuterExtent","BackingOutline":"BackingOutline","BackingStrokeThickness":"BackingStrokeThickness","ContainerResized()":"ContainerResized()","ContainerResized":"ContainerResized()","ContainerResizedAsync()":"ContainerResizedAsync()","ContainerResizedAsync":"ContainerResizedAsync()","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ContentRanges":"ContentRanges","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Font":"Font","FontBrush":"FontBrush","FormatLabel":"FormatLabel","FormatLabelScript":"FormatLabelScript","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentHighlightValue()":"GetCurrentHighlightValue()","GetCurrentHighlightValue":"GetCurrentHighlightValue()","GetCurrentHighlightValueAsync()":"GetCurrentHighlightValueAsync()","GetCurrentHighlightValueAsync":"GetCurrentHighlightValueAsync()","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetValueForPoint(Point)":"GetValueForPoint(Point)","GetValueForPoint":"GetValueForPoint(Point)","GetValueForPointAsync(Point)":"GetValueForPointAsync(Point)","GetValueForPointAsync":"GetValueForPointAsync(Point)","HighlightNeedleContainsPoint(Point, bool)":"HighlightNeedleContainsPoint(Point, bool)","HighlightNeedleContainsPoint":"HighlightNeedleContainsPoint(Point, bool)","HighlightNeedleContainsPointAsync(Point, bool)":"HighlightNeedleContainsPointAsync(Point, bool)","HighlightNeedleContainsPointAsync":"HighlightNeedleContainsPointAsync(Point, bool)","HighlightValue":"HighlightValue","HighlightValueChanged":"HighlightValueChanged","HighlightValueChangedScript":"HighlightValueChangedScript","HighlightValueDisplayMode":"HighlightValueDisplayMode","HighlightValueOpacity":"HighlightValueOpacity","Interval":"Interval","IsHighlightNeedleDraggingEnabled":"IsHighlightNeedleDraggingEnabled","IsNeedleDraggingEnabled":"IsNeedleDraggingEnabled","IsScaleInverted":"IsScaleInverted","LabelExtent":"LabelExtent","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelInterval":"LabelInterval","LabelsPostInitial":"LabelsPostInitial","LabelsPreTerminal":"LabelsPreTerminal","LabelsVisible":"LabelsVisible","MaximumValue":"MaximumValue","MergeViewports":"MergeViewports","MinimumValue":"MinimumValue","MinorTickBrush":"MinorTickBrush","MinorTickCount":"MinorTickCount","MinorTickEndExtent":"MinorTickEndExtent","MinorTickStartExtent":"MinorTickStartExtent","MinorTickStrokeThickness":"MinorTickStrokeThickness","NeedleBreadth":"NeedleBreadth","NeedleBrush":"NeedleBrush","NeedleContainsPoint(Point, bool)":"NeedleContainsPoint(Point, bool)","NeedleContainsPoint":"NeedleContainsPoint(Point, bool)","NeedleContainsPointAsync(Point, bool)":"NeedleContainsPointAsync(Point, bool)","NeedleContainsPointAsync":"NeedleContainsPointAsync(Point, bool)","NeedleInnerBaseWidth":"NeedleInnerBaseWidth","NeedleInnerExtent":"NeedleInnerExtent","NeedleInnerPointExtent":"NeedleInnerPointExtent","NeedleInnerPointWidth":"NeedleInnerPointWidth","NeedleName":"NeedleName","NeedleOuterBaseWidth":"NeedleOuterBaseWidth","NeedleOuterExtent":"NeedleOuterExtent","NeedleOuterPointExtent":"NeedleOuterPointExtent","NeedleOuterPointWidth":"NeedleOuterPointWidth","NeedleOutline":"NeedleOutline","NeedleShape":"NeedleShape","NeedleStrokeThickness":"NeedleStrokeThickness","Orientation":"Orientation","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RangeBrushes":"RangeBrushes","RangeInnerExtent":"RangeInnerExtent","RangeOuterExtent":"RangeOuterExtent","RangeOutlines":"RangeOutlines","Ranges":"Ranges","ScaleBrush":"ScaleBrush","ScaleEndExtent":"ScaleEndExtent","ScaleInnerExtent":"ScaleInnerExtent","ScaleOuterExtent":"ScaleOuterExtent","ScaleOutline":"ScaleOutline","ScaleStartExtent":"ScaleStartExtent","ScaleStrokeThickness":"ScaleStrokeThickness","ShowToolTip":"ShowToolTip","ShowToolTipTimeout":"ShowToolTipTimeout","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","TickBrush":"TickBrush","TickEndExtent":"TickEndExtent","TickStartExtent":"TickStartExtent","TickStrokeThickness":"TickStrokeThickness","TicksPostInitial":"TicksPostInitial","TicksPreTerminal":"TicksPreTerminal","TransitionDuration":"TransitionDuration","TransitionProgress":"TransitionProgress","Type":"Type","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript"}}],"IgbLinearGaugeCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGaugeCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGaugeCoreModule()":"IgbLinearGaugeCoreModule()","IgbLinearGaugeCoreModule":"IgbLinearGaugeCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLinearGaugeDashboardTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGaugeDashboardTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGaugeDashboardTileModule()":"IgbLinearGaugeDashboardTileModule()","IgbLinearGaugeDashboardTileModule":"IgbLinearGaugeDashboardTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLinearGaugeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGaugeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGaugeModule()":"IgbLinearGaugeModule()","IgbLinearGaugeModule":"IgbLinearGaugeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLinearGraphRange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGraphRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGraphRange()":"IgbLinearGraphRange()","IgbLinearGraphRange":"IgbLinearGraphRange()","Brush":"Brush","Dispose()":"Dispose()","Dispose":"Dispose()","EndValue":"EndValue","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","InnerEndExtent":"InnerEndExtent","InnerStartExtent":"InnerStartExtent","LinearGraphParent":"LinearGraphParent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OuterEndExtent":"OuterEndExtent","OuterStartExtent":"OuterStartExtent","Outline":"Outline","StartValue":"StartValue","StrokeThickness":"StrokeThickness","Type":"Type"}}],"IgbLinearGraphRangeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGraphRangeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbLinearGraphRange)":"InsertItem(int, IgbLinearGraphRange)","InsertItem":"InsertItem(int, IgbLinearGraphRange)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbLinearGraphRange)":"SetItem(int, IgbLinearGraphRange)","SetItem":"SetItem(int, IgbLinearGraphRange)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbLinearGraphRange)":"Add(IgbLinearGraphRange)","Add":"Add(IgbLinearGraphRange)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbLinearGraphRange[], int)":"CopyTo(IgbLinearGraphRange[], int)","CopyTo":"CopyTo(IgbLinearGraphRange[], int)","Contains(IgbLinearGraphRange)":"Contains(IgbLinearGraphRange)","Contains":"Contains(IgbLinearGraphRange)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbLinearGraphRange)":"IndexOf(IgbLinearGraphRange)","IndexOf":"IndexOf(IgbLinearGraphRange)","Insert(int, IgbLinearGraphRange)":"Insert(int, IgbLinearGraphRange)","Insert":"Insert(int, IgbLinearGraphRange)","Remove(IgbLinearGraphRange)":"Remove(IgbLinearGraphRange)","Remove":"Remove(IgbLinearGraphRange)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGraphRangeCollection(object, string)":"IgbLinearGraphRangeCollection(object, string)","IgbLinearGraphRangeCollection":"IgbLinearGraphRangeCollection(object, string)"}}],"IgbLinearGraphRangeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearGraphRangeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearGraphRangeModule()":"IgbLinearGraphRangeModule()","IgbLinearGraphRangeModule":"IgbLinearGraphRangeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLinearProgress":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearProgress","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Max":"Max","Value":"Value","Variant":"Variant","AnimationDuration":"AnimationDuration","Indeterminate":"Indeterminate","HideLabel":"HideLabel","LabelFormat":"LabelFormat","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearProgress()":"IgbLinearProgress()","IgbLinearProgress":"IgbLinearProgress()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LabelAlign":"LabelAlign","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Striped":"Striped","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbLinearProgress","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Max":"Max","Value":"Value","Variant":"Variant","AnimationDuration":"AnimationDuration","Indeterminate":"Indeterminate","HideLabel":"HideLabel","LabelFormat":"LabelFormat","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearProgress()":"IgbLinearProgress()","IgbLinearProgress":"IgbLinearProgress()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LabelAlign":"LabelAlign","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Striped":"Striped","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbLinearProgressModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLinearProgressModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearProgressModule()":"IgbLinearProgressModule()","IgbLinearProgressModule":"IgbLinearProgressModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbLinearProgressModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLinearProgressModule()":"IgbLinearProgressModule()","IgbLinearProgressModule":"IgbLinearProgressModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLineFragment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLineFragment","k":"class","s":"classes","m":{"GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLineFragment()":"IgbLineFragment()","IgbLineFragment":"IgbLineFragment()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbLineFragmentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLineFragmentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLineFragmentModule()":"IgbLineFragmentModule()","IgbLineFragmentModule":"IgbLineFragmentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLineSeries()":"IgbLineSeries()","IgbLineSeries":"IgbLineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLineSeriesModule()":"IgbLineSeriesModule()","IgbLineSeriesModule":"IgbLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbList":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbList","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbList()":"IgbList()","IgbList":"IgbList()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbList","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbList()":"IgbList()","IgbList":"IgbList()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbListHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListHeader()":"IgbListHeader()","IgbListHeader":"IgbListHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbListHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListHeader()":"IgbListHeader()","IgbListHeader":"IgbListHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbListHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListHeaderModule()":"IgbListHeaderModule()","IgbListHeaderModule":"IgbListHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbListHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListHeaderModule()":"IgbListHeaderModule()","IgbListHeaderModule":"IgbListHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbListItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListItem()":"IgbListItem()","IgbListItem":"IgbListItem()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbListItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListItem()":"IgbListItem()","IgbListItem":"IgbListItem()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbListItemModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListItemModule()":"IgbListItemModule()","IgbListItemModule":"IgbListItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbListItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListItemModule()":"IgbListItemModule()","IgbListItemModule":"IgbListItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbListModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListModule()":"IgbListModule()","IgbListModule":"IgbListModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbListModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListModule()":"IgbListModule()","IgbListModule":"IgbListModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbListPanel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanel()":"IgbListPanel()","IgbListPanel":"IgbListPanel()","ActivationBorder":"ActivationBorder","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationMode":"ActivationMode","ActiveRow":"ActiveRow","ActiveRowChanged":"ActiveRowChanged","ActiveRowChangedScript":"ActiveRowChangedScript","ActualPrimaryKey":"ActualPrimaryKey","ActualPrimaryKeyChanged":"ActualPrimaryKeyChanged","ActualPrimaryKeyChangedScript":"ActualPrimaryKeyChangedScript","ActualRowHeight":"ActualRowHeight","BackgroundColor":"BackgroundColor","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","ContentRefreshed":"ContentRefreshed","ContentRefreshedScript":"ContentRefreshedScript","DataIndexOfItem(object)":"DataIndexOfItem(object)","DataIndexOfItem":"DataIndexOfItem(object)","DataIndexOfItemAsync(object)":"DataIndexOfItemAsync(object)","DataIndexOfItemAsync":"DataIndexOfItemAsync(object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","DeselectAllRows()":"DeselectAllRows()","DeselectAllRows":"DeselectAllRows()","DeselectAllRowsAsync()":"DeselectAllRowsAsync()","DeselectAllRowsAsync":"DeselectAllRowsAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentActiveRow()":"GetCurrentActiveRow()","GetCurrentActiveRow":"GetCurrentActiveRow()","GetCurrentActiveRowAsync()":"GetCurrentActiveRowAsync()","GetCurrentActiveRowAsync":"GetCurrentActiveRowAsync()","GetCurrentActualPrimaryKey()":"GetCurrentActualPrimaryKey()","GetCurrentActualPrimaryKey":"GetCurrentActualPrimaryKey()","GetCurrentActualPrimaryKeyAsync()":"GetCurrentActualPrimaryKeyAsync()","GetCurrentActualPrimaryKeyAsync":"GetCurrentActualPrimaryKeyAsync()","GetCurrentSelectedItems()":"GetCurrentSelectedItems()","GetCurrentSelectedItems":"GetCurrentSelectedItems()","GetCurrentSelectedItemsAsync()":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedItemsAsync":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedKeys()":"GetCurrentSelectedKeys()","GetCurrentSelectedKeys":"GetCurrentSelectedKeys()","GetCurrentSelectedKeysAsync()":"GetCurrentSelectedKeysAsync()","GetCurrentSelectedKeysAsync":"GetCurrentSelectedKeysAsync()","GetFirstVisibleIndex()":"GetFirstVisibleIndex()","GetFirstVisibleIndex":"GetFirstVisibleIndex()","GetFirstVisibleIndexAsync()":"GetFirstVisibleIndexAsync()","GetFirstVisibleIndexAsync":"GetFirstVisibleIndexAsync()","GetItemKey(string[], object)":"GetItemKey(string[], object)","GetItemKey":"GetItemKey(string[], object)","GetItemKeyAsync(string[], object)":"GetItemKeyAsync(string[], object)","GetItemKeyAsync":"GetItemKeyAsync(string[], object)","GetLastVisibleIndex()":"GetLastVisibleIndex()","GetLastVisibleIndex":"GetLastVisibleIndex()","GetLastVisibleIndexAsync()":"GetLastVisibleIndexAsync()","GetLastVisibleIndexAsync":"GetLastVisibleIndexAsync()","GetRowKey(string[], int)":"GetRowKey(string[], int)","GetRowKey":"GetRowKey(string[], int)","GetRowKeyAsync(string[], int)":"GetRowKeyAsync(string[], int)","GetRowKeyAsync":"GetRowKeyAsync(string[], int)","InvalidateVisibleItems()":"InvalidateVisibleItems()","InvalidateVisibleItems":"InvalidateVisibleItems()","InvalidateVisibleItemsAsync()":"InvalidateVisibleItemsAsync()","InvalidateVisibleItemsAsync":"InvalidateVisibleItemsAsync()","IsActiveRowStyleEnabled":"IsActiveRowStyleEnabled","IsCustomRowHeightEnabled":"IsCustomRowHeightEnabled","ItemClicked":"ItemClicked","ItemClickedScript":"ItemClickedScript","ItemHeightRequested":"ItemHeightRequested","ItemHeightRequestedScript":"ItemHeightRequestedScript","ItemRebind":"ItemRebind","ItemRebindScript":"ItemRebindScript","ItemRecycled":"ItemRecycled","ItemRecycledScript":"ItemRecycledScript","ItemSpacing":"ItemSpacing","ItemWidthRequested":"ItemWidthRequested","ItemWidthRequestedScript":"ItemWidthRequestedScript","NormalBackground":"NormalBackground","NotifyOnAllSelectionChanges":"NotifyOnAllSelectionChanges","Orientation":"Orientation","PrimaryKey":"PrimaryKey","RowHeight":"RowHeight","RowUpdating":"RowUpdating","RowUpdatingScript":"RowUpdatingScript","SchemaIncludedProperties":"SchemaIncludedProperties","ScrollToLastRowByIndex(double)":"ScrollToLastRowByIndex(double)","ScrollToLastRowByIndex":"ScrollToLastRowByIndex(double)","ScrollToLastRowByIndexAsync(double)":"ScrollToLastRowByIndexAsync(double)","ScrollToLastRowByIndexAsync":"ScrollToLastRowByIndexAsync(double)","ScrollToRowByIndex(double)":"ScrollToRowByIndex(double)","ScrollToRowByIndex":"ScrollToRowByIndex(double)","ScrollToRowByIndexAsync(double)":"ScrollToRowByIndexAsync(double)","ScrollToRowByIndexAsync":"ScrollToRowByIndexAsync(double)","ScrollbarBackground":"ScrollbarBackground","ScrollbarStyle":"ScrollbarStyle","SelectAllRows()":"SelectAllRows()","SelectAllRows":"SelectAllRows()","SelectAllRowsAsync()":"SelectAllRowsAsync()","SelectAllRowsAsync":"SelectAllRowsAsync()","SelectedBackground":"SelectedBackground","SelectedItems":"SelectedItems","SelectedItemsChanged":"SelectedItemsChanged","SelectedItemsChangedScript":"SelectedItemsChangedScript","SelectedKeys":"SelectedKeys","SelectedKeysChanged":"SelectedKeysChanged","SelectedKeysChangedScript":"SelectedKeysChangedScript","SelectionBehavior":"SelectionBehavior","SelectionChanged":"SelectionChanged","SelectionChangedScript":"SelectionChangedScript","SelectionMode":"SelectionMode","TextColor":"TextColor","Type":"Type"}}],"IgbListPanelActiveRowChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelActiveRowChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelActiveRowChangedEventArgs()":"IgbListPanelActiveRowChangedEventArgs()","IgbListPanelActiveRowChangedEventArgs":"IgbListPanelActiveRowChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewActiveRow":"NewActiveRow","OldActiveRow":"OldActiveRow","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelContentRebindEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelContentRebindEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelContentRebindEventArgs()":"IgbListPanelContentRebindEventArgs()","IgbListPanelContentRebindEventArgs":"IgbListPanelContentRebindEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowObject":"RowObject","RowObjectScript":"RowObjectScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelContentRecycledEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelContentRecycledEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelContentRecycledEventArgs()":"IgbListPanelContentRecycledEventArgs()","IgbListPanelContentRecycledEventArgs":"IgbListPanelContentRecycledEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowObject":"RowObject","RowObjectScript":"RowObjectScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelContentRefreshedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelContentRefreshedEventArgs()":"IgbListPanelContentRefreshedEventArgs()","IgbListPanelContentRefreshedEventArgs":"IgbListPanelContentRefreshedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelItemEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelItemEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelItemEventArgs()":"IgbListPanelItemEventArgs()","IgbListPanelItemEventArgs":"IgbListPanelItemEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsDoubleClick":"IsDoubleClick","IsLeftButton":"IsLeftButton","ItemInfo":"ItemInfo","ListPanel":"ListPanel","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelItemModel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelItemModel","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelItemModel()":"IgbListPanelItemModel()","IgbListPanelItemModel":"IgbListPanelItemModel()","DataRow":"DataRow","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsActivated":"IsActivated","IsActivationSupported":"IsActivationSupported","IsModelDirty":"IsModelDirty","IsSelected":"IsSelected","Left":"Left","RowHeight":"RowHeight","RowObject":"RowObject","RowObjectScript":"RowObjectScript","Top":"Top","Type":"Type"}}],"IgbListPanelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelModule()":"IgbListPanelModule()","IgbListPanelModule":"IgbListPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbListPanelPrimaryKeyValue":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelPrimaryKeyValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelPrimaryKeyValue()":"IgbListPanelPrimaryKeyValue()","IgbListPanelPrimaryKeyValue":"IgbListPanelPrimaryKeyValue()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Key":"Key","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbListPanelPrimaryKeyValueModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelPrimaryKeyValueModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelPrimaryKeyValueModule()":"IgbListPanelPrimaryKeyValueModule()","IgbListPanelPrimaryKeyValueModule":"IgbListPanelPrimaryKeyValueModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbListPanelSelectedItemsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelSelectedItemsChangedEventArgs()":"IgbListPanelSelectedItemsChangedEventArgs()","IgbListPanelSelectedItemsChangedEventArgs":"IgbListPanelSelectedItemsChangedEventArgs()","AddedItems":"AddedItems","CurrentItems":"CurrentItems","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedItems":"RemovedItems","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelSelectedItemsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelSelectedItemsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, object)":"InsertItem(int, object)","InsertItem":"InsertItem(int, object)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, object)":"SetItem(int, object)","SetItem":"SetItem(int, object)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(object)":"Add(object)","Add":"Add(object)","Clear()":"Clear()","Clear":"Clear()","CopyTo(object[], int)":"CopyTo(object[], int)","CopyTo":"CopyTo(object[], int)","Contains(object)":"Contains(object)","Contains":"Contains(object)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(object)":"IndexOf(object)","IndexOf":"IndexOf(object)","Insert(int, object)":"Insert(int, object)","Insert":"Insert(int, object)","Remove(object)":"Remove(object)","Remove":"Remove(object)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelSelectedItemsCollection(object, string)":"IgbListPanelSelectedItemsCollection(object, string)","IgbListPanelSelectedItemsCollection":"IgbListPanelSelectedItemsCollection(object, string)"}}],"IgbListPanelSelectedKeysChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelSelectedKeysChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelSelectedKeysChangedEventArgs()":"IgbListPanelSelectedKeysChangedEventArgs()","IgbListPanelSelectedKeysChangedEventArgs":"IgbListPanelSelectedKeysChangedEventArgs()","AddedKeys":"AddedKeys","CurrentKeys":"CurrentKeys","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedKeys":"RemovedKeys","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelSelectedKeysCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelSelectedKeysCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbListPanelPrimaryKeyValue)":"InsertItem(int, IgbListPanelPrimaryKeyValue)","InsertItem":"InsertItem(int, IgbListPanelPrimaryKeyValue)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbListPanelPrimaryKeyValue)":"SetItem(int, IgbListPanelPrimaryKeyValue)","SetItem":"SetItem(int, IgbListPanelPrimaryKeyValue)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbListPanelPrimaryKeyValue)":"Add(IgbListPanelPrimaryKeyValue)","Add":"Add(IgbListPanelPrimaryKeyValue)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbListPanelPrimaryKeyValue[], int)":"CopyTo(IgbListPanelPrimaryKeyValue[], int)","CopyTo":"CopyTo(IgbListPanelPrimaryKeyValue[], int)","Contains(IgbListPanelPrimaryKeyValue)":"Contains(IgbListPanelPrimaryKeyValue)","Contains":"Contains(IgbListPanelPrimaryKeyValue)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbListPanelPrimaryKeyValue)":"IndexOf(IgbListPanelPrimaryKeyValue)","IndexOf":"IndexOf(IgbListPanelPrimaryKeyValue)","Insert(int, IgbListPanelPrimaryKeyValue)":"Insert(int, IgbListPanelPrimaryKeyValue)","Insert":"Insert(int, IgbListPanelPrimaryKeyValue)","Remove(IgbListPanelPrimaryKeyValue)":"Remove(IgbListPanelPrimaryKeyValue)","Remove":"Remove(IgbListPanelPrimaryKeyValue)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelSelectedKeysCollection(object, string)":"IgbListPanelSelectedKeysCollection(object, string)","IgbListPanelSelectedKeysCollection":"IgbListPanelSelectedKeysCollection(object, string)"}}],"IgbListPanelSelectionChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelSelectionChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelSelectionChangedEventArgs()":"IgbListPanelSelectionChangedEventArgs()","IgbListPanelSelectionChangedEventArgs":"IgbListPanelSelectionChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelTemplateHeightRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelTemplateHeightRequestedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelTemplateHeightRequestedEventArgs()":"IgbListPanelTemplateHeightRequestedEventArgs()","IgbListPanelTemplateHeightRequestedEventArgs":"IgbListPanelTemplateHeightRequestedEventArgs()","DataItem":"DataItem","DataItemScript":"DataItemScript","DataRow":"DataRow","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Height":"Height","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelTemplateItemUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelTemplateItemUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelTemplateItemUpdatingEventArgs()":"IgbListPanelTemplateItemUpdatingEventArgs()","IgbListPanelTemplateItemUpdatingEventArgs":"IgbListPanelTemplateItemUpdatingEventArgs()","AvailableWidth":"AvailableWidth","Content":"Content","ContentScript":"ContentScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Model":"Model","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbListPanelTemplateWidthRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbListPanelTemplateWidthRequestedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbListPanelTemplateWidthRequestedEventArgs()":"IgbListPanelTemplateWidthRequestedEventArgs()","IgbListPanelTemplateWidthRequestedEventArgs":"IgbListPanelTemplateWidthRequestedEventArgs()","DataItem":"DataItem","DataItemScript":"DataItemScript","DataRow":"DataRow","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width"}}],"IgbLiteralFilterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLiteralFilterExpression","k":"class","s":"classes","m":{"Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsWrapper":"IsWrapper","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLiteralFilterExpression()":"IgbLiteralFilterExpression()","IgbLiteralFilterExpression":"IgbLiteralFilterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsLiteral":"IsLiteral","IsNull":"IsNull","LeaveUnquoted":"LeaveUnquoted","LiteralValue":"LiteralValue","Precedence":"Precedence","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbLocalDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLocalDataSource","k":"class","s":"classes","m":{"AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","UpdatePropertyAtKeyAsync(object[], string, object, bool)":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKey(object[], string, object, bool)":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object, bool)","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","AcceptPendingTransactionAsync(int)":"AcceptPendingTransactionAsync(int)","AcceptPendingTransactionAsync":"AcceptPendingTransactionAsync(int)","AcceptPendingTransaction(int)":"AcceptPendingTransaction(int)","AcceptPendingTransaction":"AcceptPendingTransaction(int)","RejectPendingTransactionAsync(int)":"RejectPendingTransactionAsync(int)","RejectPendingTransactionAsync":"RejectPendingTransactionAsync(int)","RejectPendingTransaction(int)":"RejectPendingTransaction(int)","RejectPendingTransaction":"RejectPendingTransaction(int)","CommitEditsAsync(bool)":"CommitEditsAsync(bool)","CommitEditsAsync":"CommitEditsAsync(bool)","CommitEdits(bool)":"CommitEdits(bool)","CommitEdits":"CommitEdits(bool)","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","AcceptPendingCommitAsync(int)":"AcceptPendingCommitAsync(int)","AcceptPendingCommitAsync":"AcceptPendingCommitAsync(int)","AcceptPendingCommit(int)":"AcceptPendingCommit(int)","AcceptPendingCommit":"AcceptPendingCommit(int)","RejectPendingCommitAsync(int)":"RejectPendingCommitAsync(int)","RejectPendingCommitAsync":"RejectPendingCommitAsync(int)","RejectPendingCommit(int)":"RejectPendingCommit(int)","RejectPendingCommit":"RejectPendingCommit(int)","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","Undo()":"Undo()","Undo":"Undo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","Redo()":"Redo()","Redo":"Redo()","HasEditAsync(object[], string)":"HasEditAsync(object[], string)","HasEditAsync":"HasEditAsync(object[], string)","HasEdit(object[], string)":"HasEdit(object[], string)","HasEdit":"HasEdit(object[], string)","HasDeleteAsync(object[])":"HasDeleteAsync(object[])","HasDeleteAsync":"HasDeleteAsync(object[])","HasDelete(object[])":"HasDelete(object[])","HasDelete":"HasDelete(object[])","HasAddAsync(object)":"HasAddAsync(object)","HasAddAsync":"HasAddAsync(object)","HasAdd(object)":"HasAdd(object)","HasAdd":"HasAdd(object)","GetAggregatedChangesAsync(int)":"GetAggregatedChangesAsync(int)","GetAggregatedChangesAsync":"GetAggregatedChangesAsync(int)","GetAggregatedChanges(int)":"GetAggregatedChanges(int)","GetAggregatedChanges":"GetAggregatedChanges(int)","IsPendingTransactionAsync(int)":"IsPendingTransactionAsync(int)","IsPendingTransactionAsync":"IsPendingTransactionAsync(int)","IsPendingTransaction(int)":"IsPendingTransaction(int)","IsPendingTransaction":"IsPendingTransaction(int)","IsPendingCommitAsync(int)":"IsPendingCommitAsync(int)","IsPendingCommitAsync":"IsPendingCommitAsync(int)","IsPendingCommit(int)":"IsPendingCommit(int)","IsPendingCommit":"IsPendingCommit(int)","SetTransactionErrorAsync(int, string)":"SetTransactionErrorAsync(int, string)","SetTransactionErrorAsync":"SetTransactionErrorAsync(int, string)","SetTransactionError(int, string)":"SetTransactionError(int, string)","SetTransactionError":"SetTransactionError(int, string)","GetTransactionErrorByKeyAsync(object[], string)":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKeyAsync":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKey(object[], string)":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKey":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByIDAsync(int)":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByIDAsync":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByID(int)":"GetTransactionErrorByID(int)","GetTransactionErrorByID":"GetTransactionErrorByID(int)","GetTransactionIDAsync(object[], string)":"GetTransactionIDAsync(object[], string)","GetTransactionIDAsync":"GetTransactionIDAsync(object[], string)","GetTransactionID(object[], string)":"GetTransactionID(object[], string)","GetTransactionID":"GetTransactionID(object[], string)","IsPlaceholderItemAsync(int)":"IsPlaceholderItemAsync(int)","IsPlaceholderItemAsync":"IsPlaceholderItemAsync(int)","IsPlaceholderItem(int)":"IsPlaceholderItem(int)","IsPlaceholderItem":"IsPlaceholderItem(int)","GetItemPropertyAsync(object, string)":"GetItemPropertyAsync(object, string)","GetItemPropertyAsync":"GetItemPropertyAsync(object, string)","GetItemProperty(object, string)":"GetItemProperty(object, string)","GetItemProperty":"GetItemProperty(object, string)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","GetMainValuePathAsync(DataSourceRowType)":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePathAsync":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePath(DataSourceRowType)":"GetMainValuePath(DataSourceRowType)","GetMainValuePath":"GetMainValuePath(DataSourceRowType)","IsRowSpanningAsync(DataSourceRowType)":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanningAsync":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanning(DataSourceRowType)":"IsRowSpanning(DataSourceRowType)","IsRowSpanning":"IsRowSpanning(DataSourceRowType)","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","ClonePropertiesAsync(DataSource)":"ClonePropertiesAsync(DataSource)","ClonePropertiesAsync":"ClonePropertiesAsync(DataSource)","CloneProperties(DataSource)":"CloneProperties(DataSource)","CloneProperties":"CloneProperties(DataSource)","GetRowCountAsync()":"GetRowCountAsync()","GetRowCountAsync":"GetRowCountAsync()","GetRowCount()":"GetRowCount()","GetRowCount":"GetRowCount()","IsReadOnly":"IsReadOnly","IsBatchingEnabled":"IsBatchingEnabled","ActualCount":"ActualCount","FirstVisibleIndexRequested":"FirstVisibleIndexRequested","LastVisibleIndexRequested":"LastVisibleIndexRequested","DeferAutoRefresh":"DeferAutoRefresh","PrimaryKey":"PrimaryKey","PropertiesRequested":"PropertiesRequested","SchemaIncludedProperties":"SchemaIncludedProperties","SectionHeaderDisplayMode":"SectionHeaderDisplayMode","IsSectionCollapsable":"IsSectionCollapsable","IsSectionExpandedDefault":"IsSectionExpandedDefault","IncludeSummaryRowsInSection":"IncludeSummaryRowsInSection","IsSectionSummaryRowsAtBottom":"IsSectionSummaryRowsAtBottom","IsSectionHeaderNormalRow":"IsSectionHeaderNormalRow","IsSectionContentVisible":"IsSectionContentVisible","ShouldEmitSectionHeaders":"ShouldEmitSectionHeaders","ShouldEmitSectionFooters":"ShouldEmitSectionFooters","ShouldEmitShiftedRows":"ShouldEmitShiftedRows","ShouldEmitSummaryRows":"ShouldEmitSummaryRows","SchemaChangedScript":"SchemaChangedScript","SchemaChanged":"SchemaChanged","RowExpansionChangedScript":"RowExpansionChangedScript","RowExpansionChanged":"RowExpansionChanged","RootSummariesChangedScript":"RootSummariesChangedScript","RootSummariesChanged":"RootSummariesChanged","PropertiesRequestedChangedScript":"PropertiesRequestedChangedScript","PropertiesRequestedChanged":"PropertiesRequestedChanged","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLocalDataSource()":"IgbLocalDataSource()","IgbLocalDataSource":"IgbLocalDataSource()","ClearPinnedRows()":"ClearPinnedRows()","ClearPinnedRows":"ClearPinnedRows()","ClearPinnedRowsAsync()":"ClearPinnedRowsAsync()","ClearPinnedRowsAsync":"ClearPinnedRowsAsync()","Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","DataSource":"DataSource","DataSourceScript":"DataSourceScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetIsRowExpandedAtIndex(int)":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndex":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndexAsync(int)":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndexAsync":"GetIsRowExpandedAtIndexAsync(int)","GetItemAtIndex(int)":"GetItemAtIndex(int)","GetItemAtIndex":"GetItemAtIndex(int)","GetItemAtIndexAsync(int)":"GetItemAtIndexAsync(int)","GetItemAtIndexAsync":"GetItemAtIndexAsync(int)","GetItemFromKey(object[])":"GetItemFromKey(object[])","GetItemFromKey":"GetItemFromKey(object[])","GetItemFromKeyAsync(object[])":"GetItemFromKeyAsync(object[])","GetItemFromKeyAsync":"GetItemFromKeyAsync(object[])","GetItemPropertyAtIndex(int, string)":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndex":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndexAsync(int, string)":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndexAsync":"GetItemPropertyAtIndexAsync(int, string)","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetRootSummaryRowCount()":"GetRootSummaryRowCount()","GetRootSummaryRowCount":"GetRootSummaryRowCount()","GetRootSummaryRowCountAsync()":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCountAsync":"GetRootSummaryRowCountAsync()","GetRowLevel(int)":"GetRowLevel(int)","GetRowLevel":"GetRowLevel(int)","GetRowLevelAsync(int)":"GetRowLevelAsync(int)","GetRowLevelAsync":"GetRowLevelAsync(int)","GetRowType(int)":"GetRowType(int)","GetRowType":"GetRowType(int)","GetRowTypeAsync(int)":"GetRowTypeAsync(int)","GetRowTypeAsync":"GetRowTypeAsync(int)","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GetStickyRowPriority(int)":"GetStickyRowPriority(int)","GetStickyRowPriority":"GetStickyRowPriority(int)","GetStickyRowPriorityAsync(int)":"GetStickyRowPriorityAsync(int)","GetStickyRowPriorityAsync":"GetStickyRowPriorityAsync(int)","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","IsExclusivelySticky(int)":"IsExclusivelySticky(int)","IsExclusivelySticky":"IsExclusivelySticky(int)","IsExclusivelyStickyAsync(int)":"IsExclusivelyStickyAsync(int)","IsExclusivelyStickyAsync":"IsExclusivelyStickyAsync(int)","IsRowPinned(int)":"IsRowPinned(int)","IsRowPinned":"IsRowPinned(int)","IsRowPinnedAsync(int)":"IsRowPinnedAsync(int)","IsRowPinnedAsync":"IsRowPinnedAsync(int)","PinRow(object[])":"PinRow(object[])","PinRow":"PinRow(object[])","PinRowAsync(object[])":"PinRowAsync(object[])","PinRowAsync":"PinRowAsync(object[])","SetIsRowExpandedAtIndex(int, bool)":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndex":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndexAsync(int, bool)":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndexAsync":"SetIsRowExpandedAtIndexAsync(int, bool)","Type":"Type","UnpinRow(object[])":"UnpinRow(object[])","UnpinRow":"UnpinRow(object[])","UnpinRowAsync(object[])":"UnpinRowAsync(object[])","UnpinRowAsync":"UnpinRowAsync(object[])"}}],"IgbLocalDataSourceModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLocalDataSourceModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLocalDataSourceModule()":"IgbLocalDataSourceModule()","IgbLocalDataSourceModule":"IgbLocalDataSourceModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbLostFocusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbLostFocusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbLostFocusEventArgs()":"IgbLostFocusEventArgs()","IgbLostFocusEventArgs":"IgbLostFocusEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbMarkerSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMarkerSeries","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMarkerSeries()":"IgbMarkerSeries()","IgbMarkerSeries":"IgbMarkerSeries()","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerType":"ActualMarkerType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerBrush":"MarkerBrush","MarkerFillMode":"MarkerFillMode","MarkerOutline":"MarkerOutline","MarkerOutlineMode":"MarkerOutlineMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","MarkerType":"MarkerType","Type":"Type"}}],"IgbMarkerTypeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMarkerTypeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, MarkerType)":"InsertItem(int, MarkerType)","InsertItem":"InsertItem(int, MarkerType)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, MarkerType)":"SetItem(int, MarkerType)","SetItem":"SetItem(int, MarkerType)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(MarkerType)":"Add(MarkerType)","Add":"Add(MarkerType)","Clear()":"Clear()","Clear":"Clear()","CopyTo(MarkerType[], int)":"CopyTo(MarkerType[], int)","CopyTo":"CopyTo(MarkerType[], int)","Contains(MarkerType)":"Contains(MarkerType)","Contains":"Contains(MarkerType)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(MarkerType)":"IndexOf(MarkerType)","IndexOf":"IndexOf(MarkerType)","Insert(int, MarkerType)":"Insert(int, MarkerType)","Insert":"Insert(int, MarkerType)","Remove(MarkerType)":"Remove(MarkerType)","Remove":"Remove(MarkerType)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMarkerTypeCollection(object, string)":"IgbMarkerTypeCollection(object, string)","IgbMarkerTypeCollection":"IgbMarkerTypeCollection(object, string)"}}],"IgbMarketFacilitationIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMarketFacilitationIndexIndicator","k":"class","s":"classes","m":{"ResolveIsItemwiseAsync()":"ResolveIsItemwiseAsync()","ResolveIsItemwiseAsync":"ResolveIsItemwiseAsync()","ResolveIsItemwise()":"ResolveIsItemwise()","ResolveIsItemwise":"ResolveIsItemwise()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMarketFacilitationIndexIndicator()":"IgbMarketFacilitationIndexIndicator()","IgbMarketFacilitationIndexIndicator":"IgbMarketFacilitationIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbMarketFacilitationIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMarketFacilitationIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMarketFacilitationIndexIndicatorModule()":"IgbMarketFacilitationIndexIndicatorModule()","IgbMarketFacilitationIndexIndicatorModule":"IgbMarketFacilitationIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMaskInput":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMaskInput","k":"class","s":"classes","m":{"ReadOnly":"ReadOnly","Mask":"Mask","Prompt":"Prompt","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Select()":"Select()","Select":"Select()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","ValueChanging":"ValueChanging","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInput()":"IgbMaskInput()","IgbMaskInput":"IgbMaskInput()","Change":"Change","ChangeScript":"ChangeScript","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged","ValueMode":"ValueMode"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbMaskInput","k":"class","s":"classes","m":{"ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Select()":"Select()","Select":"Select()","Prompt":"Prompt","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","ReadOnly":"ReadOnly","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","ValueChanging":"ValueChanging","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInput()":"IgbMaskInput()","IgbMaskInput":"IgbMaskInput()","Change":"Change","ChangeScript":"ChangeScript","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Mask":"Mask","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged","ValueMode":"ValueMode"}}],"IgbMaskInputBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMaskInputBase","k":"class","s":"classes","m":{"SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Select()":"Select()","Select":"Select()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","ValueChanging":"ValueChanging","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInputBase()":"IgbMaskInputBase()","IgbMaskInputBase":"IgbMaskInputBase()","DirectRenderElementName":"DirectRenderElementName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Mask":"Mask","Prompt":"Prompt","ReadOnly":"ReadOnly","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbMaskInputBase","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","DefaultEventBehavior":"DefaultEventBehavior","Outlined":"Outlined","ReadOnly":"ReadOnly","Placeholder":"Placeholder","Label":"Label","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","InputOcurredScript":"InputOcurredScript","InputOcurred":"InputOcurred","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","ValueChanging":"ValueChanging","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInputBase()":"IgbMaskInputBase()","IgbMaskInputBase":"IgbMaskInputBase()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DirectRenderElementName":"DirectRenderElementName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Prompt":"Prompt","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbMaskInputBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMaskInputBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInputBaseModule()":"IgbMaskInputBaseModule()","IgbMaskInputBaseModule":"IgbMaskInputBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbMaskInputBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInputBaseModule()":"IgbMaskInputBaseModule()","IgbMaskInputBaseModule":"IgbMaskInputBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMaskInputModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMaskInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInputModule()":"IgbMaskInputModule()","IgbMaskInputModule":"IgbMaskInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbMaskInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMaskInputModule()":"IgbMaskInputModule()","IgbMaskInputModule":"IgbMaskInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMassIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMassIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMassIndexIndicator()":"IgbMassIndexIndicator()","IgbMassIndexIndicator":"IgbMassIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbMassIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMassIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMassIndexIndicatorModule()":"IgbMassIndexIndicatorModule()","IgbMassIndexIndicatorModule":"IgbMassIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMedianPriceIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMedianPriceIndicator","k":"class","s":"classes","m":{"ResolveIsItemwiseAsync()":"ResolveIsItemwiseAsync()","ResolveIsItemwiseAsync":"ResolveIsItemwiseAsync()","ResolveIsItemwise()":"ResolveIsItemwise()","ResolveIsItemwise":"ResolveIsItemwise()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMedianPriceIndicator()":"IgbMedianPriceIndicator()","IgbMedianPriceIndicator":"IgbMedianPriceIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbMedianPriceIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMedianPriceIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMedianPriceIndicatorModule()":"IgbMedianPriceIndicatorModule()","IgbMedianPriceIndicatorModule":"IgbMedianPriceIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMoneyFlowIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMoneyFlowIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMoneyFlowIndexIndicator()":"IgbMoneyFlowIndexIndicator()","IgbMoneyFlowIndexIndicator":"IgbMoneyFlowIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbMoneyFlowIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMoneyFlowIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMoneyFlowIndexIndicatorModule()":"IgbMoneyFlowIndexIndicatorModule()","IgbMoneyFlowIndexIndicatorModule":"IgbMoneyFlowIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMonthToDateExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMonthToDateExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMonthToDateExpression()":"IgbMonthToDateExpression()","IgbMonthToDateExpression":"IgbMonthToDateExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbMoveFloatingPaneAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMoveFloatingPaneAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMoveFloatingPaneAction()":"IgbMoveFloatingPaneAction()","IgbMoveFloatingPaneAction":"IgbMoveFloatingPaneAction()","ActionType":"ActionType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewLocation":"NewLocation","OldLocation":"OldLocation","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbMoveFloatingPaneActionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMoveFloatingPaneActionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMoveFloatingPaneActionModule()":"IgbMoveFloatingPaneActionModule()","IgbMoveFloatingPaneActionModule":"IgbMoveFloatingPaneActionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMoveTabAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMoveTabAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMoveTabAction()":"IgbMoveTabAction()","IgbMoveTabAction":"IgbMoveTabAction()","ActionType":"ActionType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewIndex":"NewIndex","OldIndex":"OldIndex","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbMoveTabActionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMoveTabActionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMoveTabActionModule()":"IgbMoveTabActionModule()","IgbMoveTabActionModule":"IgbMoveTabActionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMovingAverageConvergenceDivergenceIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMovingAverageConvergenceDivergenceIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMovingAverageConvergenceDivergenceIndicator()":"IgbMovingAverageConvergenceDivergenceIndicator()","IgbMovingAverageConvergenceDivergenceIndicator":"IgbMovingAverageConvergenceDivergenceIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPeriod":"LongPeriod","ShortPeriod":"ShortPeriod","SignalPeriod":"SignalPeriod","Type":"Type"}}],"IgbMovingAverageConvergenceDivergenceIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMovingAverageConvergenceDivergenceIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMovingAverageConvergenceDivergenceIndicatorModule()":"IgbMovingAverageConvergenceDivergenceIndicatorModule()","IgbMovingAverageConvergenceDivergenceIndicatorModule":"IgbMovingAverageConvergenceDivergenceIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMultiColumnComboBox":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiColumnComboBox","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiColumnComboBox()":"IgbMultiColumnComboBox()","IgbMultiColumnComboBox":"IgbMultiColumnComboBox()","ActualBackgroundColor":"ActualBackgroundColor","ActualBaseTheme":"ActualBaseTheme","ActualBorderColor":"ActualBorderColor","ActualBorderWidth":"ActualBorderWidth","ActualContentPaddingBottom":"ActualContentPaddingBottom","ActualContentPaddingLeft":"ActualContentPaddingLeft","ActualContentPaddingRight":"ActualContentPaddingRight","ActualContentPaddingTop":"ActualContentPaddingTop","ActualCornerRadiusBottomLeft":"ActualCornerRadiusBottomLeft","ActualCornerRadiusBottomRight":"ActualCornerRadiusBottomRight","ActualCornerRadiusTopLeft":"ActualCornerRadiusTopLeft","ActualCornerRadiusTopRight":"ActualCornerRadiusTopRight","ActualDensity":"ActualDensity","ActualFocusBorderColor":"ActualFocusBorderColor","ActualFocusBorderWidth":"ActualFocusBorderWidth","ActualFocusUnderlineColor":"ActualFocusUnderlineColor","ActualFocusUnderlineOpacity":"ActualFocusUnderlineOpacity","ActualFocusUnderlineRippleOpacity":"ActualFocusUnderlineRippleOpacity","ActualHoverUnderlineColor":"ActualHoverUnderlineColor","ActualHoverUnderlineOpacity":"ActualHoverUnderlineOpacity","ActualHoverUnderlineWidth":"ActualHoverUnderlineWidth","ActualLabelTextColor":"ActualLabelTextColor","ActualLabelVisible":"ActualLabelVisible","ActualNoMatchesFoundLabel":"ActualNoMatchesFoundLabel","ActualNoMatchesFoundLabelBackgroundColor":"ActualNoMatchesFoundLabelBackgroundColor","ActualNoMatchesFoundLabelTextColor":"ActualNoMatchesFoundLabelTextColor","ActualTextColor":"ActualTextColor","ActualUnderlineColor":"ActualUnderlineColor","ActualUnderlineOpacity":"ActualUnderlineOpacity","ActualUnderlineRippleColor":"ActualUnderlineRippleColor","ActualUnderlineRippleOpacity":"ActualUnderlineRippleOpacity","ActualUnderlineRippleWidth":"ActualUnderlineRippleWidth","ActualUnderlineWidth":"ActualUnderlineWidth","ActualValueField":"ActualValueField","AllowFilter":"AllowFilter","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","BorderColor":"BorderColor","BorderWidth":"BorderWidth","Change":"Change","ChangeScript":"ChangeScript","Changing":"Changing","ChangingScript":"ChangingScript","CloseUp()":"CloseUp()","CloseUp":"CloseUp()","CloseUpAsync()":"CloseUpAsync()","CloseUpAsync":"CloseUpAsync()","ColumnHeadersVisible":"ColumnHeadersVisible","ContentPaddingBottom":"ContentPaddingBottom","ContentPaddingLeft":"ContentPaddingLeft","ContentPaddingRight":"ContentPaddingRight","ContentPaddingTop":"ContentPaddingTop","CornerRadiusBottomLeft":"CornerRadiusBottomLeft","CornerRadiusBottomRight":"CornerRadiusBottomRight","CornerRadiusTopLeft":"CornerRadiusTopLeft","CornerRadiusTopRight":"CornerRadiusTopRight","DataSource":"DataSource","DataSourceDesiredProperties":"DataSourceDesiredProperties","DataSourceScript":"DataSourceScript","DefaultColumnWidth":"DefaultColumnWidth","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DropDown()":"DropDown()","DropDown":"DropDown()","DropDownAsync()":"DropDownAsync()","DropDownAsync":"DropDownAsync()","DropDownButtonVisible":"DropDownButtonVisible","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","Fields":"Fields","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusBorderColor":"FocusBorderColor","FocusBorderWidth":"FocusBorderWidth","FocusUnderlineColor":"FocusUnderlineColor","FocusUnderlineOpacity":"FocusUnderlineOpacity","FocusUnderlineRippleOpacity":"FocusUnderlineRippleOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","GetCurrentText()":"GetCurrentText()","GetCurrentText":"GetCurrentText()","GetCurrentTextAsync()":"GetCurrentTextAsync()","GetCurrentTextAsync":"GetCurrentTextAsync()","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GotFocus":"GotFocus","GotFocusScript":"GotFocusScript","HoverUnderlineColor":"HoverUnderlineColor","HoverUnderlineOpacity":"HoverUnderlineOpacity","HoverUnderlineWidth":"HoverUnderlineWidth","IsFixed":"IsFixed","KeyDown":"KeyDown","KeyDownScript":"KeyDownScript","Label":"Label","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LostFocus":"LostFocus","LostFocusScript":"LostFocusScript","NoMatchesFoundLabel":"NoMatchesFoundLabel","NoMatchesFoundLabelBackgroundColor":"NoMatchesFoundLabelBackgroundColor","NoMatchesFoundLabelFontFamily":"NoMatchesFoundLabelFontFamily","NoMatchesFoundLabelFontSize":"NoMatchesFoundLabelFontSize","NoMatchesFoundLabelFontStyle":"NoMatchesFoundLabelFontStyle","NoMatchesFoundLabelFontWeight":"NoMatchesFoundLabelFontWeight","NoMatchesFoundLabelTextColor":"NoMatchesFoundLabelTextColor","OpenAsChild":"OpenAsChild","Placeholder":"Placeholder","RowSeparatorsVisible":"RowSeparatorsVisible","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SelectedValueChanged":"SelectedValueChanged","SelectedValueChangedScript":"SelectedValueChangedScript","ShowClearButton":"ShowClearButton","SortMode":"SortMode","Text":"Text","TextChanged":"TextChanged","TextChangedScript":"TextChangedScript","TextColor":"TextColor","TextField":"TextField","TextValueChanged":"TextValueChanged","TextValueChangedScript":"TextValueChangedScript","Type":"Type","UnderlineColor":"UnderlineColor","UnderlineOpacity":"UnderlineOpacity","UnderlineRippleColor":"UnderlineRippleColor","UnderlineRippleOpacity":"UnderlineRippleOpacity","UnderlineRippleWidth":"UnderlineRippleWidth","UnderlineWidth":"UnderlineWidth","UseTopLayer":"UseTopLayer","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript","ValueField":"ValueField"}}],"IgbMultiColumnComboBoxModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiColumnComboBoxModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiColumnComboBoxModule()":"IgbMultiColumnComboBoxModule()","IgbMultiColumnComboBoxModule":"IgbMultiColumnComboBoxModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMultiColumnComboBoxTextChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiColumnComboBoxTextChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiColumnComboBoxTextChangedEventArgs()":"IgbMultiColumnComboBoxTextChangedEventArgs()","IgbMultiColumnComboBoxTextChangedEventArgs":"IgbMultiColumnComboBoxTextChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewText":"NewText","OldText":"OldText","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbMultiColumnComboBoxValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiColumnComboBoxValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiColumnComboBoxValueChangedEventArgs()":"IgbMultiColumnComboBoxValueChangedEventArgs()","IgbMultiColumnComboBoxValueChangedEventArgs":"IgbMultiColumnComboBoxValueChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","NewValueScript":"NewValueScript","OldValue":"OldValue","OldValueScript":"OldValueScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbMultiSlider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSlider","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSlider()":"IgbMultiSlider()","IgbMultiSlider":"IgbMultiSlider()","ActualPixelScalingRatio":"ActualPixelScalingRatio","AreThumbCalloutsEnabled":"AreThumbCalloutsEnabled","BarBrush":"BarBrush","BarExtent":"BarExtent","BarOutline":"BarOutline","BarStrokeThickness":"BarStrokeThickness","CalloutBrush":"CalloutBrush","CalloutOutline":"CalloutOutline","CalloutStrokeThickness":"CalloutStrokeThickness","CalloutTextColor":"CalloutTextColor","DefaultEventBehavior":"DefaultEventBehavior","EndInset":"EndInset","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Max":"Max","Min":"Min","OnAttachedToUI()":"OnAttachedToUI()","OnAttachedToUI":"OnAttachedToUI()","OnAttachedToUIAsync()":"OnAttachedToUIAsync()","OnAttachedToUIAsync":"OnAttachedToUIAsync()","OnDetachedFromUI()":"OnDetachedFromUI()","OnDetachedFromUI":"OnDetachedFromUI()","OnDetachedFromUIAsync()":"OnDetachedFromUIAsync()","OnDetachedFromUIAsync":"OnDetachedFromUIAsync()","Orientation":"Orientation","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RangeThumbBrush":"RangeThumbBrush","RangeThumbOutline":"RangeThumbOutline","RangeThumbRidgesBrush":"RangeThumbRidgesBrush","RangeThumbStrokeThickness":"RangeThumbStrokeThickness","ResolvingToolTipValue":"ResolvingToolTipValue","ResolvingToolTipValueScript":"ResolvingToolTipValueScript","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","StartInset":"StartInset","Step":"Step","ThumbBrush":"ThumbBrush","ThumbCalloutFontFamily":"ThumbCalloutFontFamily","ThumbCalloutFontSize":"ThumbCalloutFontSize","ThumbCalloutFontStyle":"ThumbCalloutFontStyle","ThumbCalloutFontWeight":"ThumbCalloutFontWeight","ThumbHeight":"ThumbHeight","ThumbOutline":"ThumbOutline","ThumbRidgesBrush":"ThumbRidgesBrush","ThumbStrokeThickness":"ThumbStrokeThickness","ThumbValueChanged":"ThumbValueChanged","ThumbValueChangedScript":"ThumbValueChangedScript","ThumbValueChanging":"ThumbValueChanging","ThumbValueChangingScript":"ThumbValueChangingScript","ThumbWidth":"ThumbWidth","Thumbs":"Thumbs","TrackDirty()":"TrackDirty()","TrackDirty":"TrackDirty()","TrackDirtyAsync()":"TrackDirtyAsync()","TrackDirtyAsync":"TrackDirtyAsync()","TrackEndInset":"TrackEndInset","TrackStartInset":"TrackStartInset","Type":"Type","WindowRect":"WindowRect","YMax":"YMax","YMin":"YMin","YStep":"YStep","YTrackEndInset":"YTrackEndInset","YTrackStartInset":"YTrackStartInset","YValue":"YValue","YValueChanged":"YValueChanged","YValueChangedScript":"YValueChangedScript","YValueChanging":"YValueChanging","YValueChangingScript":"YValueChangingScript"}}],"IgbMultiSliderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderModule()":"IgbMultiSliderModule()","IgbMultiSliderModule":"IgbMultiSliderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbMultiSliderResolvingToolTipValueEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderResolvingToolTipValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderResolvingToolTipValueEventArgs()":"IgbMultiSliderResolvingToolTipValueEventArgs()","IgbMultiSliderResolvingToolTipValueEventArgs":"IgbMultiSliderResolvingToolTipValueEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Position":"Position","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbMultiSliderThumb":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderThumb","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderThumb()":"IgbMultiSliderThumb()","IgbMultiSliderThumb":"IgbMultiSliderThumb()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PropertyUpdated":"PropertyUpdated","PropertyUpdatedScript":"PropertyUpdatedScript","Push(double)":"Push(double)","Push":"Push(double)","PushAsync(double)":"PushAsync(double)","PushAsync":"PushAsync(double)","Range":"Range","RangePosition":"RangePosition","RangeScript":"RangeScript","Type":"Type","Value":"Value"}}],"IgbMultiSliderThumbCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderThumbCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbMultiSliderThumb)":"InsertItem(int, IgbMultiSliderThumb)","InsertItem":"InsertItem(int, IgbMultiSliderThumb)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbMultiSliderThumb)":"SetItem(int, IgbMultiSliderThumb)","SetItem":"SetItem(int, IgbMultiSliderThumb)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbMultiSliderThumb)":"Add(IgbMultiSliderThumb)","Add":"Add(IgbMultiSliderThumb)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbMultiSliderThumb[], int)":"CopyTo(IgbMultiSliderThumb[], int)","CopyTo":"CopyTo(IgbMultiSliderThumb[], int)","Contains(IgbMultiSliderThumb)":"Contains(IgbMultiSliderThumb)","Contains":"Contains(IgbMultiSliderThumb)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbMultiSliderThumb)":"IndexOf(IgbMultiSliderThumb)","IndexOf":"IndexOf(IgbMultiSliderThumb)","Insert(int, IgbMultiSliderThumb)":"Insert(int, IgbMultiSliderThumb)","Insert":"Insert(int, IgbMultiSliderThumb)","Remove(IgbMultiSliderThumb)":"Remove(IgbMultiSliderThumb)","Remove":"Remove(IgbMultiSliderThumb)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderThumbCollection(object, string)":"IgbMultiSliderThumbCollection(object, string)","IgbMultiSliderThumbCollection":"IgbMultiSliderThumbCollection(object, string)"}}],"IgbMultiSliderThumbValueChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderThumbValueChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderThumbValueChangingEventArgs()":"IgbMultiSliderThumbValueChangingEventArgs()","IgbMultiSliderThumbValueChangingEventArgs":"IgbMultiSliderThumbValueChangingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Thumb":"Thumb","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbMultiSliderTrackThumbRange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderTrackThumbRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderTrackThumbRange()":"IgbMultiSliderTrackThumbRange()","IgbMultiSliderTrackThumbRange":"IgbMultiSliderTrackThumbRange()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HigherThumb":"HigherThumb","LowerThumb":"LowerThumb","MaxWidth":"MaxWidth","MinWidth":"MinWidth","Position":"Position","Type":"Type","Width":"Width"}}],"IgbMultiSliderYValueChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbMultiSliderYValueChangingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbMultiSliderYValueChangingEventArgs()":"IgbMultiSliderYValueChangingEventArgs()","IgbMultiSliderYValueChangingEventArgs":"IgbMultiSliderYValueChangingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbNavbar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavbar","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavbar()":"IgbNavbar()","IgbNavbar":"IgbNavbar()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavbar","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavbar()":"IgbNavbar()","IgbNavbar":"IgbNavbar()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbNavbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavbarModule()":"IgbNavbarModule()","IgbNavbarModule":"IgbNavbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavbarModule()":"IgbNavbarModule()","IgbNavbarModule":"IgbNavbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNavDrawer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavDrawer","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawer()":"IgbNavDrawer()","IgbNavDrawer":"IgbNavDrawer()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Open":"Open","Position":"Position","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavDrawer","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawer()":"IgbNavDrawer()","IgbNavDrawer":"IgbNavDrawer()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Open":"Open","Position":"Position","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbNavDrawerHeaderItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavDrawerHeaderItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerHeaderItem()":"IgbNavDrawerHeaderItem()","IgbNavDrawerHeaderItem":"IgbNavDrawerHeaderItem()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavDrawerHeaderItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerHeaderItem()":"IgbNavDrawerHeaderItem()","IgbNavDrawerHeaderItem":"IgbNavDrawerHeaderItem()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbNavDrawerHeaderItemModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavDrawerHeaderItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerHeaderItemModule()":"IgbNavDrawerHeaderItemModule()","IgbNavDrawerHeaderItemModule":"IgbNavDrawerHeaderItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavDrawerHeaderItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerHeaderItemModule()":"IgbNavDrawerHeaderItemModule()","IgbNavDrawerHeaderItemModule":"IgbNavDrawerHeaderItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNavDrawerItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavDrawerItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerItem()":"IgbNavDrawerItem()","IgbNavDrawerItem":"IgbNavDrawerItem()","Active":"Active","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavDrawerItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerItem()":"IgbNavDrawerItem()","IgbNavDrawerItem":"IgbNavDrawerItem()","Active":"Active","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbNavDrawerItemModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavDrawerItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerItemModule()":"IgbNavDrawerItemModule()","IgbNavDrawerItemModule":"IgbNavDrawerItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavDrawerItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerItemModule()":"IgbNavDrawerItemModule()","IgbNavDrawerItemModule":"IgbNavDrawerItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNavDrawerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNavDrawerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerModule()":"IgbNavDrawerModule()","IgbNavDrawerModule":"IgbNavDrawerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNavDrawerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNavDrawerModule()":"IgbNavDrawerModule()","IgbNavDrawerModule":"IgbNavDrawerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNegativeVolumeIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNegativeVolumeIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNegativeVolumeIndexIndicator()":"IgbNegativeVolumeIndexIndicator()","IgbNegativeVolumeIndexIndicator":"IgbNegativeVolumeIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbNegativeVolumeIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNegativeVolumeIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNegativeVolumeIndexIndicatorModule()":"IgbNegativeVolumeIndexIndicatorModule()","IgbNegativeVolumeIndexIndicatorModule":"IgbNegativeVolumeIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNextMonthExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNextMonthExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNextMonthExpression()":"IgbNextMonthExpression()","IgbNextMonthExpression":"IgbNextMonthExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNextQuarterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNextQuarterExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNextQuarterExpression()":"IgbNextQuarterExpression()","IgbNextQuarterExpression":"IgbNextQuarterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNextWeekExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNextWeekExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNextWeekExpression()":"IgbNextWeekExpression()","IgbNextWeekExpression":"IgbNextWeekExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNextYearExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNextYearExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNextYearExpression()":"IgbNextYearExpression()","IgbNextYearExpression":"IgbNextYearExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNumberAbbreviatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumberAbbreviatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberAbbreviatorModule()":"IgbNumberAbbreviatorModule()","IgbNumberAbbreviatorModule":"IgbNumberAbbreviatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNumberEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumberEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberEventArgs()":"IgbNumberEventArgs()","IgbNumberEventArgs":"IgbNumberEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNumberEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberEventArgs()":"IgbNumberEventArgs()","IgbNumberEventArgs":"IgbNumberEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNumberFormatSpecifier":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumberFormatSpecifier","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetLocalCultureAsync()":"GetLocalCultureAsync()","GetLocalCultureAsync":"GetLocalCultureAsync()","GetLocalCulture()":"GetLocalCulture()","GetLocalCulture":"GetLocalCulture()","AxisParent":"AxisParent","PieChartBaseParent":"PieChartBaseParent","RingSeriesBaseParent":"RingSeriesBaseParent","OthersLabelFormatSpecifiersParent":"OthersLabelFormatSpecifiersParent","LegendLabelFormatSpecifiersParent":"LegendLabelFormatSpecifiersParent","LegendOthersLabelFormatSpecifiersParent":"LegendOthersLabelFormatSpecifiersParent","NumericColumnParent":"NumericColumnParent","DateTimeColumnParent":"DateTimeColumnParent","RadialGaugeParent":"RadialGaugeParent","LinearGraphParent":"LinearGraphParent","HorizontalLabelFormatSpecifiersParent":"HorizontalLabelFormatSpecifiersParent","VerticalLabelFormatSpecifiersParent":"VerticalLabelFormatSpecifiersParent","XAxisLabelFormatSpecifiersParent":"XAxisLabelFormatSpecifiersParent","YAxisLabelFormatSpecifiersParent":"YAxisLabelFormatSpecifiersParent","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberFormatSpecifier()":"IgbNumberFormatSpecifier()","IgbNumberFormatSpecifier":"IgbNumberFormatSpecifier()","CompactDisplay":"CompactDisplay","Currency":"Currency","CurrencyCode":"CurrencyCode","CurrencyDisplay":"CurrencyDisplay","CurrencySign":"CurrencySign","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Locale":"Locale","LocaleMatcher":"LocaleMatcher","MaximumFractionDigits":"MaximumFractionDigits","MaximumSignificantDigits":"MaximumSignificantDigits","MinimumFractionDigits":"MinimumFractionDigits","MinimumIntegerDigits":"MinimumIntegerDigits","MinimumSignificantDigits":"MinimumSignificantDigits","Notation":"Notation","NumberingSystem":"NumberingSystem","SignDisplay":"SignDisplay","Style":"Style","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Unit":"Unit","UnitDisplay":"UnitDisplay","UseGrouping":"UseGrouping"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNumberFormatSpecifier","k":"class","s":"classes","m":{"GetLocalCultureAsync()":"GetLocalCultureAsync()","GetLocalCultureAsync":"GetLocalCultureAsync()","GetLocalCulture()":"GetLocalCulture()","GetLocalCulture":"GetLocalCulture()","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberFormatSpecifier()":"IgbNumberFormatSpecifier()","IgbNumberFormatSpecifier":"IgbNumberFormatSpecifier()","CompactDisplay":"CompactDisplay","Currency":"Currency","CurrencyCode":"CurrencyCode","CurrencyDisplay":"CurrencyDisplay","CurrencySign":"CurrencySign","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Locale":"Locale","LocaleMatcher":"LocaleMatcher","MaximumFractionDigits":"MaximumFractionDigits","MaximumSignificantDigits":"MaximumSignificantDigits","MinimumFractionDigits":"MinimumFractionDigits","MinimumIntegerDigits":"MinimumIntegerDigits","MinimumSignificantDigits":"MinimumSignificantDigits","Notation":"Notation","NumberingSystem":"NumberingSystem","SignDisplay":"SignDisplay","Style":"Style","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Unit":"Unit","UnitDisplay":"UnitDisplay","UseGrouping":"UseGrouping"}}],"IgbNumberFormatSpecifierModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumberFormatSpecifierModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberFormatSpecifierModule()":"IgbNumberFormatSpecifierModule()","IgbNumberFormatSpecifierModule":"IgbNumberFormatSpecifierModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbNumberFormatSpecifierModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumberFormatSpecifierModule()":"IgbNumberFormatSpecifierModule()","IgbNumberFormatSpecifierModule":"IgbNumberFormatSpecifierModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNumericAngleAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericAngleAxis","k":"class","s":"classes","m":{"GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","AutoRangeBufferMode":"AutoRangeBufferMode","MinimumValue":"MinimumValue","ActualMinimumValue":"ActualMinimumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","MaximumValue":"MaximumValue","ActualMaximumValue":"ActualMaximumValue","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","Interval":"Interval","ActualInterval":"ActualInterval","ActualMaxPrecision":"ActualMaxPrecision","MaxPrecision":"MaxPrecision","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ReferenceValue":"ReferenceValue","IsLogarithmic":"IsLogarithmic","ActualIsLogarithmic":"ActualIsLogarithmic","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","LogarithmBase":"LogarithmBase","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericAngleAxis()":"IgbNumericAngleAxis()","IgbNumericAngleAxis":"IgbNumericAngleAxis()","CompanionAxisLabelMode":"CompanionAxisLabelMode","CompanionAxisStartAngleOffset":"CompanionAxisStartAngleOffset","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetScaledAngle(double)":"GetScaledAngle(double)","GetScaledAngle":"GetScaledAngle(double)","GetScaledAngleAsync(double)":"GetScaledAngleAsync(double)","GetScaledAngleAsync":"GetScaledAngleAsync(double)","GetUnscaledAngle(double)":"GetUnscaledAngle(double)","GetUnscaledAngle":"GetUnscaledAngle(double)","GetUnscaledAngleAsync(double)":"GetUnscaledAngleAsync(double)","GetUnscaledAngleAsync":"GetUnscaledAngleAsync(double)","LabelMode":"LabelMode","StartAngleOffset":"StartAngleOffset","Type":"Type"}}],"IgbNumericAngleAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericAngleAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericAngleAxisModule()":"IgbNumericAngleAxisModule()","IgbNumericAngleAxisModule":"IgbNumericAngleAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNumericAxisBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericAxisBase","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericAxisBase()":"IgbNumericAxisBase()","IgbNumericAxisBase":"IgbNumericAxisBase()","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","ActualInterval":"ActualInterval","ActualIntervalChanged":"ActualIntervalChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIsLogarithmic":"ActualIsLogarithmic","ActualMaxPrecision":"ActualMaxPrecision","ActualMaximumValue":"ActualMaximumValue","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMinimumValue":"ActualMinimumValue","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinorInterval":"ActualMinorInterval","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","AutoRangeBufferMode":"AutoRangeBufferMode","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","Interval":"Interval","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","IsLogarithmic":"IsLogarithmic","LogarithmBase":"LogarithmBase","MaxPrecision":"MaxPrecision","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","MinorInterval":"MinorInterval","ReferenceValue":"ReferenceValue","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","Type":"Type","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)"}}],"IgbNumericCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericCellInfo()":"IgbNumericCellInfo()","IgbNumericCellInfo":"IgbNumericCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatOverride":"FormatOverride","FormatOverrideScript":"FormatOverrideScript","FormatSpecifiers":"FormatSpecifiers","FormatStringOverride":"FormatStringOverride","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","HasDecimalValue":"HasDecimalValue","MaxFractionDigits":"MaxFractionDigits","MinFractionDigits":"MinFractionDigits","MinIntegerDigits":"MinIntegerDigits","NegativePrefix":"NegativePrefix","NegativeSuffix":"NegativeSuffix","NumericValue":"NumericValue","PositivePrefix":"PositivePrefix","PositiveSuffix":"PositiveSuffix","ShowGroupingSeparator":"ShowGroupingSeparator","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNumericColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericColumn","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","DataGridParent":"DataGridParent","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","Field":"Field","HeaderText":"HeaderText","ActualHeaderText":"ActualHeaderText","SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","RowHoverBackground":"RowHoverBackground","ActualHoverBackground":"ActualHoverBackground","RowHoverTextColor":"RowHoverTextColor","ActualRowHoverTextColor":"ActualRowHoverTextColor","AnimationSettings":"AnimationSettings","Width":"Width","MinWidth":"MinWidth","IsFromMarkup":"IsFromMarkup","IsAutoGenerated":"IsAutoGenerated","Filter":"Filter","FilterExpression":"FilterExpression","Header":"Header","IsFilteringEnabled":"IsFilteringEnabled","IsResizingEnabled":"IsResizingEnabled","IsHidden":"IsHidden","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","Pinned":"Pinned","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ColumnOptionsBackground":"ColumnOptionsBackground","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","IsEditable":"IsEditable","DeletedTextColor":"DeletedTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","EditOpacity":"EditOpacity","ActualEditOpacity":"ActualEditOpacity","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","MergedCellMode":"MergedCellMode","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingBottom":"MergedCellPaddingBottom","FilterComparisonType":"FilterComparisonType","FilterOperands":"FilterOperands","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","FormatCellScript":"FormatCellScript","FormatCell":"FormatCell","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHeaderTextChanged":"ActualHeaderTextChanged","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericColumn()":"IgbNumericColumn()","IgbNumericColumn":"IgbNumericColumn()","ActualEditorDataSource":"ActualEditorDataSource","ActualFormatSpecifiers":"ActualFormatSpecifiers","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ContentFormatSpecifiers":"ContentFormatSpecifiers","EditorDataSource":"EditorDataSource","EditorDataSourceScript":"EditorDataSourceScript","EditorTextField":"EditorTextField","EditorType":"EditorType","EditorValueField":"EditorValueField","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatOverride":"FormatOverride","FormatOverrideScript":"FormatOverrideScript","FormatSpecifiers":"FormatSpecifiers","FormatString":"FormatString","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","MaxFractionDigits":"MaxFractionDigits","MinFractionDigits":"MinFractionDigits","MinIntegerDigits":"MinIntegerDigits","NegativePrefix":"NegativePrefix","NegativeSuffix":"NegativeSuffix","ParentTypeName":"ParentTypeName","PositivePrefix":"PositivePrefix","PositiveSuffix":"PositiveSuffix","ShowGroupingSeparator":"ShowGroupingSeparator","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbNumericColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericColumnModule()":"IgbNumericColumnModule()","IgbNumericColumnModule":"IgbNumericColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNumericRadiusAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericRadiusAxis","k":"class","s":"classes","m":{"GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","AutoRangeBufferMode":"AutoRangeBufferMode","MinimumValue":"MinimumValue","ActualMinimumValue":"ActualMinimumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","MaximumValue":"MaximumValue","ActualMaximumValue":"ActualMaximumValue","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","Interval":"Interval","ActualInterval":"ActualInterval","ActualMaxPrecision":"ActualMaxPrecision","MaxPrecision":"MaxPrecision","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ReferenceValue":"ReferenceValue","IsLogarithmic":"IsLogarithmic","ActualIsLogarithmic":"ActualIsLogarithmic","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","LogarithmBase":"LogarithmBase","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericRadiusAxis()":"IgbNumericRadiusAxis()","IgbNumericRadiusAxis":"IgbNumericRadiusAxis()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetScaledValue(double)":"GetScaledValue(double)","GetScaledValue":"GetScaledValue(double)","GetScaledValueAsync(double)":"GetScaledValueAsync(double)","GetScaledValueAsync":"GetScaledValueAsync(double)","GetUnscaledValue(double)":"GetUnscaledValue(double)","GetUnscaledValue":"GetUnscaledValue(double)","GetUnscaledValueAsync(double)":"GetUnscaledValueAsync(double)","GetUnscaledValueAsync":"GetUnscaledValueAsync(double)","InnerRadiusExtentScale":"InnerRadiusExtentScale","RadiusExtentScale":"RadiusExtentScale","Type":"Type"}}],"IgbNumericRadiusAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericRadiusAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericRadiusAxisModule()":"IgbNumericRadiusAxisModule()","IgbNumericRadiusAxisModule":"IgbNumericRadiusAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNumericXAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericXAxis","k":"class","s":"classes","m":{"ScaleMode":"ScaleMode","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","AutoRangeBufferMode":"AutoRangeBufferMode","MinimumValue":"MinimumValue","ActualMinimumValue":"ActualMinimumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","MaximumValue":"MaximumValue","ActualMaximumValue":"ActualMaximumValue","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","Interval":"Interval","ActualInterval":"ActualInterval","ActualMaxPrecision":"ActualMaxPrecision","MaxPrecision":"MaxPrecision","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ReferenceValue":"ReferenceValue","IsLogarithmic":"IsLogarithmic","ActualIsLogarithmic":"ActualIsLogarithmic","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","LogarithmBase":"LogarithmBase","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericXAxis()":"IgbNumericXAxis()","IgbNumericXAxis":"IgbNumericXAxis()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ScrollRangeIntoView(double, double)":"ScrollRangeIntoView(double, double)","ScrollRangeIntoView":"ScrollRangeIntoView(double, double)","ScrollRangeIntoViewAsync(double, double)":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoViewAsync":"ScrollRangeIntoViewAsync(double, double)","Type":"Type"}}],"IgbNumericXAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericXAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericXAxisModule()":"IgbNumericXAxisModule()","IgbNumericXAxisModule":"IgbNumericXAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbNumericYAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericYAxis","k":"class","s":"classes","m":{"ScaleMode":"ScaleMode","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","AutoRangeBufferMode":"AutoRangeBufferMode","MinimumValue":"MinimumValue","ActualMinimumValue":"ActualMinimumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","MaximumValue":"MaximumValue","ActualMaximumValue":"ActualMaximumValue","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","Interval":"Interval","ActualInterval":"ActualInterval","ActualMaxPrecision":"ActualMaxPrecision","MaxPrecision":"MaxPrecision","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ReferenceValue":"ReferenceValue","IsLogarithmic":"IsLogarithmic","ActualIsLogarithmic":"ActualIsLogarithmic","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","LogarithmBase":"LogarithmBase","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericYAxis()":"IgbNumericYAxis()","IgbNumericYAxis":"IgbNumericYAxis()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ScrollRangeIntoView(double, double)":"ScrollRangeIntoView(double, double)","ScrollRangeIntoView":"ScrollRangeIntoView(double, double)","ScrollRangeIntoViewAsync(double, double)":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoViewAsync":"ScrollRangeIntoViewAsync(double, double)","Type":"Type"}}],"IgbNumericYAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbNumericYAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbNumericYAxisModule()":"IgbNumericYAxisModule()","IgbNumericYAxisModule":"IgbNumericYAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbObjectCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbObjectCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, object)":"InsertItem(int, object)","InsertItem":"InsertItem(int, object)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, object)":"SetItem(int, object)","SetItem":"SetItem(int, object)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(object)":"Add(object)","Add":"Add(object)","Clear()":"Clear()","Clear":"Clear()","CopyTo(object[], int)":"CopyTo(object[], int)","CopyTo":"CopyTo(object[], int)","Contains(object)":"Contains(object)","Contains":"Contains(object)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(object)":"IndexOf(object)","IndexOf":"IndexOf(object)","Insert(int, object)":"Insert(int, object)","Insert":"Insert(int, object)","Remove(object)":"Remove(object)","Remove":"Remove(object)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbObjectCollection(object, string)":"IgbObjectCollection(object, string)","IgbObjectCollection":"IgbObjectCollection(object, string)"}}],"IgbOffsettableWeekExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOffsettableWeekExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOffsettableWeekExpression()":"IgbOffsettableWeekExpression()","IgbOffsettableWeekExpression":"IgbOffsettableWeekExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOnBalanceVolumeIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOnBalanceVolumeIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOnBalanceVolumeIndicator()":"IgbOnBalanceVolumeIndicator()","IgbOnBalanceVolumeIndicator":"IgbOnBalanceVolumeIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbOnBalanceVolumeIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOnBalanceVolumeIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOnBalanceVolumeIndicatorModule()":"IgbOnBalanceVolumeIndicatorModule()","IgbOnBalanceVolumeIndicatorModule":"IgbOnBalanceVolumeIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbOnClosedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOnClosedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOnClosedEventArgs()":"IgbOnClosedEventArgs()","IgbOnClosedEventArgs":"IgbOnClosedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOnCollapsedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOnCollapsedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOnCollapsedEventArgs()":"IgbOnCollapsedEventArgs()","IgbOnCollapsedEventArgs":"IgbOnCollapsedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOnExpandedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOnExpandedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOnExpandedEventArgs()":"IgbOnExpandedEventArgs()","IgbOnExpandedEventArgs":"IgbOnExpandedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOnPopupEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOnPopupEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOnPopupEventArgs()":"IgbOnPopupEventArgs()","IgbOnPopupEventArgs":"IgbOnPopupEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOpenStreetMapImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOpenStreetMapImagery","k":"class","s":"classes","m":{"ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","WindowRect":"WindowRect","Referer":"Referer","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","UserAgent":"UserAgent","Opacity":"Opacity","ImageTilesReadyScript":"ImageTilesReadyScript","ImageTilesReady":"ImageTilesReady","ImagesChangedScript":"ImagesChangedScript","ImagesChanged":"ImagesChanged","CancellingImageScript":"CancellingImageScript","CancellingImage":"CancellingImage","DownloadingImageScript":"DownloadingImageScript","DownloadingImage":"DownloadingImage","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOpenStreetMapImagery()":"IgbOpenStreetMapImagery()","IgbOpenStreetMapImagery":"IgbOpenStreetMapImagery()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TilePath":"TilePath","Type":"Type"}}],"IgbOpenStreetMapImageryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOpenStreetMapImageryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOpenStreetMapImageryModule()":"IgbOpenStreetMapImageryModule()","IgbOpenStreetMapImageryModule":"IgbOpenStreetMapImageryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbOperationFilterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOperationFilterExpression","k":"class","s":"classes","m":{"Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","IsWrapper":"IsWrapper","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOperationFilterExpression()":"IgbOperationFilterExpression()","IgbOperationFilterExpression":"IgbOperationFilterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","HasLeft":"HasLeft","HasOperator":"HasOperator","HasPropertyName":"HasPropertyName","HasRight":"HasRight","HasValue":"HasValue","IsComparisonOperation":"IsComparisonOperation","IsOperation":"IsOperation","Left":"Left","Operator":"Operator","Precedence":"Precedence","PropertyName":"PropertyName","Right":"Right","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbOperatorSelectorClosingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOperatorSelectorClosingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOperatorSelectorClosingEventArgs()":"IgbOperatorSelectorClosingEventArgs()","IgbOperatorSelectorClosingEventArgs":"IgbOperatorSelectorClosingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOperatorSelectorOpeningEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOperatorSelectorOpeningEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOperatorSelectorOpeningEventArgs()":"IgbOperatorSelectorOpeningEventArgs()","IgbOperatorSelectorOpeningEventArgs":"IgbOperatorSelectorOpeningEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOperatorSelectorValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOperatorSelectorValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOperatorSelectorValueChangedEventArgs()":"IgbOperatorSelectorValueChangedEventArgs()","IgbOperatorSelectorValueChangedEventArgs":"IgbOperatorSelectorValueChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","OldValue":"OldValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOrdinalTimeXAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOrdinalTimeXAxis","k":"class","s":"classes","m":{"GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollRangeIntoViewAsync(double, double)":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoViewAsync":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoView(double, double)":"ScrollRangeIntoView(double, double)","ScrollRangeIntoView":"ScrollRangeIntoView(double, double)","GetWindowZoomFromCategoriesAsync(double)":"GetWindowZoomFromCategoriesAsync(double)","GetWindowZoomFromCategoriesAsync":"GetWindowZoomFromCategoriesAsync(double)","GetWindowZoomFromCategories(double)":"GetWindowZoomFromCategories(double)","GetWindowZoomFromCategories":"GetWindowZoomFromCategories(double)","GetWindowZoomFromItemSpanAsync(double)":"GetWindowZoomFromItemSpanAsync(double)","GetWindowZoomFromItemSpanAsync":"GetWindowZoomFromItemSpanAsync(double)","GetWindowZoomFromItemSpan(double)":"GetWindowZoomFromItemSpan(double)","GetWindowZoomFromItemSpan":"GetWindowZoomFromItemSpan(double)","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","ZoomMaximumCategoryRange":"ZoomMaximumCategoryRange","ZoomMaximumItemSpan":"ZoomMaximumItemSpan","ZoomToCategoryRange":"ZoomToCategoryRange","ZoomToCategoryStart":"ZoomToCategoryStart","ZoomToItemSpan":"ZoomToItemSpan","Interval":"Interval","ActualInterval":"ActualInterval","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOrdinalTimeXAxis()":"IgbOrdinalTimeXAxis()","IgbOrdinalTimeXAxis":"IgbOrdinalTimeXAxis()","DateTimeMemberPath":"DateTimeMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","LabelFormats":"LabelFormats","LabellingMode":"LabellingMode","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","Type":"Type"}}],"IgbOrdinalTimeXAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOrdinalTimeXAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOrdinalTimeXAxisModule()":"IgbOrdinalTimeXAxisModule()","IgbOrdinalTimeXAxisModule":"IgbOrdinalTimeXAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbOthersCategoryContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOthersCategoryContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOthersCategoryContext()":"IgbOthersCategoryContext()","IgbOthersCategoryContext":"IgbOthersCategoryContext()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Items":"Items","ItemsScript":"ItemsScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbOthersCategoryContextModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOthersCategoryContextModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOthersCategoryContextModule()":"IgbOthersCategoryContextModule()","IgbOthersCategoryContextModule":"IgbOthersCategoryContextModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbOverlayOutletDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOverlayOutletDirective","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOverlayOutletDirective()":"IgbOverlayOutletDirective()","IgbOverlayOutletDirective":"IgbOverlayOutletDirective()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbOverlayProxyModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOverlayProxyModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOverlayProxyModule()":"IgbOverlayProxyModule()","IgbOverlayProxyModule":"IgbOverlayProxyModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbOverlaySettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOverlaySettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOverlaySettings()":"IgbOverlaySettings()","IgbOverlaySettings":"IgbOverlaySettings()","CloseOnEscape":"CloseOnEscape","CloseOnOutsideClick":"CloseOnOutsideClick","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Modal":"Modal","PositionStrategy":"PositionStrategy","ScrollStrategy":"ScrollStrategy","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Target":"Target","Type":"Type"}}],"IgbOverlaysModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOverlaysModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOverlaysModule()":"IgbOverlaysModule()","IgbOverlaysModule":"IgbOverlaysModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbOverlayTextInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOverlayTextInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOverlayTextInfo()":"IgbOverlayTextInfo()","IgbOverlayTextInfo":"IgbOverlayTextInfo()","Background":"Background","BackgroundMode":"BackgroundMode","BackgroundShift":"BackgroundShift","BorderMode":"BorderMode","BorderRadius":"BorderRadius","BorderShift":"BorderShift","BorderStroke":"BorderStroke","BorderThickness":"BorderThickness","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalMargin":"HorizontalMargin","HorizontalPadding":"HorizontalPadding","ShapeBrush":"ShapeBrush","ShapeOutline":"ShapeOutline","TextAngle":"TextAngle","TextColor":"TextColor","TextColorMode":"TextColorMode","TextColorShift":"TextColorShift","TextContent":"TextContent","TextLocation":"TextLocation","TextVisible":"TextVisible","Type":"Type","VerticalMargin":"VerticalMargin","VerticalPadding":"VerticalPadding"}}],"IgbOverlayTextUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbOverlayTextUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbOverlayTextUpdatingEventArgs()":"IgbOverlayTextUpdatingEventArgs()","IgbOverlayTextUpdatingEventArgs":"IgbOverlayTextUpdatingEventArgs()","Background":"Background","BackgroundMode":"BackgroundMode","BackgroundShift":"BackgroundShift","BorderMode":"BorderMode","BorderRadius":"BorderRadius","BorderShift":"BorderShift","BorderStroke":"BorderStroke","BorderThickness":"BorderThickness","DataIndex":"DataIndex","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","HorizontalMargin":"HorizontalMargin","HorizontalPadding":"HorizontalPadding","ShapeBrush":"ShapeBrush","ShapeOutline":"ShapeOutline","TextAngle":"TextAngle","TextColor":"TextColor","TextColorMode":"TextColorMode","TextColorShift":"TextColorShift","TextContent":"TextContent","TextEmpty":"TextEmpty","TextLocation":"TextLocation","TextVisible":"TextVisible","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","VerticalMargin":"VerticalMargin","VerticalPadding":"VerticalPadding"}}],"IgbPageCancellableEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPageCancellableEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPageCancellableEventArgs()":"IgbPageCancellableEventArgs()","IgbPageCancellableEventArgs":"IgbPageCancellableEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPageCancellableEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPageCancellableEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Cancel":"Cancel","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPageCancellableEventArgsDetail()":"IgbPageCancellableEventArgsDetail()","IgbPageCancellableEventArgsDetail":"IgbPageCancellableEventArgsDetail()","Current":"Current","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Next":"Next","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPageChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPageChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPageChangedEventArgs()":"IgbPageChangedEventArgs()","IgbPageChangedEventArgs":"IgbPageChangedEventArgs()","Data":"Data","DataScript":"DataScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Page":"Page","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPagedDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPagedDataSource","k":"class","s":"classes","m":{"GetItemAtIndexAsync(int)":"GetItemAtIndexAsync(int)","GetItemAtIndexAsync":"GetItemAtIndexAsync(int)","GetItemAtIndex(int)":"GetItemAtIndex(int)","GetItemAtIndex":"GetItemAtIndex(int)","GetItemFromKeyAsync(object[])":"GetItemFromKeyAsync(object[])","GetItemFromKeyAsync":"GetItemFromKeyAsync(object[])","GetItemFromKey(object[])":"GetItemFromKey(object[])","GetItemFromKey":"GetItemFromKey(object[])","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","PinRowAsync(object[])":"PinRowAsync(object[])","PinRowAsync":"PinRowAsync(object[])","PinRow(object[])":"PinRow(object[])","PinRow":"PinRow(object[])","UnpinRowAsync(object[])":"UnpinRowAsync(object[])","UnpinRowAsync":"UnpinRowAsync(object[])","UnpinRow(object[])":"UnpinRow(object[])","UnpinRow":"UnpinRow(object[])","ClearPinnedRowsAsync()":"ClearPinnedRowsAsync()","ClearPinnedRowsAsync":"ClearPinnedRowsAsync()","ClearPinnedRows()":"ClearPinnedRows()","ClearPinnedRows":"ClearPinnedRows()","IsRowPinnedAsync(int)":"IsRowPinnedAsync(int)","IsRowPinnedAsync":"IsRowPinnedAsync(int)","IsRowPinned(int)":"IsRowPinned(int)","IsRowPinned":"IsRowPinned(int)","GetStickyRowPriorityAsync(int)":"GetStickyRowPriorityAsync(int)","GetStickyRowPriorityAsync":"GetStickyRowPriorityAsync(int)","GetStickyRowPriority(int)":"GetStickyRowPriority(int)","GetStickyRowPriority":"GetStickyRowPriority(int)","IsExclusivelyStickyAsync(int)":"IsExclusivelyStickyAsync(int)","IsExclusivelyStickyAsync":"IsExclusivelyStickyAsync(int)","IsExclusivelySticky(int)":"IsExclusivelySticky(int)","IsExclusivelySticky":"IsExclusivelySticky(int)","GetRowTypeAsync(int)":"GetRowTypeAsync(int)","GetRowTypeAsync":"GetRowTypeAsync(int)","GetRowType(int)":"GetRowType(int)","GetRowType":"GetRowType(int)","SetIsRowExpandedAtIndexAsync(int, bool)":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndexAsync":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndex(int, bool)":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndex":"SetIsRowExpandedAtIndex(int, bool)","GetIsRowExpandedAtIndexAsync(int)":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndexAsync":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndex(int)":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndex":"GetIsRowExpandedAtIndex(int)","GetRowLevelAsync(int)":"GetRowLevelAsync(int)","GetRowLevelAsync":"GetRowLevelAsync(int)","GetRowLevel(int)":"GetRowLevel(int)","GetRowLevel":"GetRowLevel(int)","GetRootSummaryRowCountAsync()":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCountAsync":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCount()":"GetRootSummaryRowCount()","GetRootSummaryRowCount":"GetRootSummaryRowCount()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","Clone()":"Clone()","Clone":"Clone()","DataSource":"DataSource","DataSourceScript":"DataSourceScript","AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","UpdatePropertyAtKeyAsync(object[], string, object, bool)":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKey(object[], string, object, bool)":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object, bool)","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","AcceptPendingTransactionAsync(int)":"AcceptPendingTransactionAsync(int)","AcceptPendingTransactionAsync":"AcceptPendingTransactionAsync(int)","AcceptPendingTransaction(int)":"AcceptPendingTransaction(int)","AcceptPendingTransaction":"AcceptPendingTransaction(int)","RejectPendingTransactionAsync(int)":"RejectPendingTransactionAsync(int)","RejectPendingTransactionAsync":"RejectPendingTransactionAsync(int)","RejectPendingTransaction(int)":"RejectPendingTransaction(int)","RejectPendingTransaction":"RejectPendingTransaction(int)","CommitEditsAsync(bool)":"CommitEditsAsync(bool)","CommitEditsAsync":"CommitEditsAsync(bool)","CommitEdits(bool)":"CommitEdits(bool)","CommitEdits":"CommitEdits(bool)","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","AcceptPendingCommitAsync(int)":"AcceptPendingCommitAsync(int)","AcceptPendingCommitAsync":"AcceptPendingCommitAsync(int)","AcceptPendingCommit(int)":"AcceptPendingCommit(int)","AcceptPendingCommit":"AcceptPendingCommit(int)","RejectPendingCommitAsync(int)":"RejectPendingCommitAsync(int)","RejectPendingCommitAsync":"RejectPendingCommitAsync(int)","RejectPendingCommit(int)":"RejectPendingCommit(int)","RejectPendingCommit":"RejectPendingCommit(int)","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","Undo()":"Undo()","Undo":"Undo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","Redo()":"Redo()","Redo":"Redo()","HasEditAsync(object[], string)":"HasEditAsync(object[], string)","HasEditAsync":"HasEditAsync(object[], string)","HasEdit(object[], string)":"HasEdit(object[], string)","HasEdit":"HasEdit(object[], string)","HasDeleteAsync(object[])":"HasDeleteAsync(object[])","HasDeleteAsync":"HasDeleteAsync(object[])","HasDelete(object[])":"HasDelete(object[])","HasDelete":"HasDelete(object[])","HasAddAsync(object)":"HasAddAsync(object)","HasAddAsync":"HasAddAsync(object)","HasAdd(object)":"HasAdd(object)","HasAdd":"HasAdd(object)","GetAggregatedChangesAsync(int)":"GetAggregatedChangesAsync(int)","GetAggregatedChangesAsync":"GetAggregatedChangesAsync(int)","GetAggregatedChanges(int)":"GetAggregatedChanges(int)","GetAggregatedChanges":"GetAggregatedChanges(int)","IsPendingTransactionAsync(int)":"IsPendingTransactionAsync(int)","IsPendingTransactionAsync":"IsPendingTransactionAsync(int)","IsPendingTransaction(int)":"IsPendingTransaction(int)","IsPendingTransaction":"IsPendingTransaction(int)","IsPendingCommitAsync(int)":"IsPendingCommitAsync(int)","IsPendingCommitAsync":"IsPendingCommitAsync(int)","IsPendingCommit(int)":"IsPendingCommit(int)","IsPendingCommit":"IsPendingCommit(int)","SetTransactionErrorAsync(int, string)":"SetTransactionErrorAsync(int, string)","SetTransactionErrorAsync":"SetTransactionErrorAsync(int, string)","SetTransactionError(int, string)":"SetTransactionError(int, string)","SetTransactionError":"SetTransactionError(int, string)","GetTransactionErrorByKeyAsync(object[], string)":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKeyAsync":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKey(object[], string)":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKey":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByIDAsync(int)":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByIDAsync":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByID(int)":"GetTransactionErrorByID(int)","GetTransactionErrorByID":"GetTransactionErrorByID(int)","GetTransactionIDAsync(object[], string)":"GetTransactionIDAsync(object[], string)","GetTransactionIDAsync":"GetTransactionIDAsync(object[], string)","GetTransactionID(object[], string)":"GetTransactionID(object[], string)","GetTransactionID":"GetTransactionID(object[], string)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","GetMainValuePathAsync(DataSourceRowType)":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePathAsync":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePath(DataSourceRowType)":"GetMainValuePath(DataSourceRowType)","GetMainValuePath":"GetMainValuePath(DataSourceRowType)","IsRowSpanningAsync(DataSourceRowType)":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanningAsync":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanning(DataSourceRowType)":"IsRowSpanning(DataSourceRowType)","IsRowSpanning":"IsRowSpanning(DataSourceRowType)","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","ClonePropertiesAsync(DataSource)":"ClonePropertiesAsync(DataSource)","ClonePropertiesAsync":"ClonePropertiesAsync(DataSource)","CloneProperties(DataSource)":"CloneProperties(DataSource)","CloneProperties":"CloneProperties(DataSource)","GetRowCountAsync()":"GetRowCountAsync()","GetRowCountAsync":"GetRowCountAsync()","GetRowCount()":"GetRowCount()","GetRowCount":"GetRowCount()","IsReadOnly":"IsReadOnly","IsBatchingEnabled":"IsBatchingEnabled","ActualCount":"ActualCount","FirstVisibleIndexRequested":"FirstVisibleIndexRequested","LastVisibleIndexRequested":"LastVisibleIndexRequested","DeferAutoRefresh":"DeferAutoRefresh","PrimaryKey":"PrimaryKey","PropertiesRequested":"PropertiesRequested","SchemaIncludedProperties":"SchemaIncludedProperties","SectionHeaderDisplayMode":"SectionHeaderDisplayMode","IsSectionCollapsable":"IsSectionCollapsable","IsSectionExpandedDefault":"IsSectionExpandedDefault","IncludeSummaryRowsInSection":"IncludeSummaryRowsInSection","IsSectionSummaryRowsAtBottom":"IsSectionSummaryRowsAtBottom","IsSectionHeaderNormalRow":"IsSectionHeaderNormalRow","IsSectionContentVisible":"IsSectionContentVisible","ShouldEmitSectionHeaders":"ShouldEmitSectionHeaders","ShouldEmitSectionFooters":"ShouldEmitSectionFooters","ShouldEmitShiftedRows":"ShouldEmitShiftedRows","ShouldEmitSummaryRows":"ShouldEmitSummaryRows","SchemaChangedScript":"SchemaChangedScript","SchemaChanged":"SchemaChanged","RowExpansionChangedScript":"RowExpansionChangedScript","RowExpansionChanged":"RowExpansionChanged","RootSummariesChangedScript":"RootSummariesChangedScript","RootSummariesChanged":"RootSummariesChanged","PropertiesRequestedChangedScript":"PropertiesRequestedChangedScript","PropertiesRequestedChanged":"PropertiesRequestedChanged","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPagedDataSource()":"IgbPagedDataSource()","IgbPagedDataSource":"IgbPagedDataSource()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemProperty(object, string)":"GetItemProperty(object, string)","GetItemProperty":"GetItemProperty(object, string)","GetItemPropertyAsync(object, string)":"GetItemPropertyAsync(object, string)","GetItemPropertyAsync":"GetItemPropertyAsync(object, string)","GetItemPropertyAtIndex(int, string)":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndex":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndexAsync(int, string)":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndexAsync":"GetItemPropertyAtIndexAsync(int, string)","IsPlaceholderItem(int)":"IsPlaceholderItem(int)","IsPlaceholderItem":"IsPlaceholderItem(int)","IsPlaceholderItemAsync(int)":"IsPlaceholderItemAsync(int)","IsPlaceholderItemAsync":"IsPlaceholderItemAsync(int)","SetSchema(DataSourceSchema)":"SetSchema(DataSourceSchema)","SetSchema":"SetSchema(DataSourceSchema)","SetSchemaAsync(DataSourceSchema)":"SetSchemaAsync(DataSourceSchema)","SetSchemaAsync":"SetSchemaAsync(DataSourceSchema)","Type":"Type"}}],"IgbPageEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPageEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPageEventArgs()":"IgbPageEventArgs()","IgbPageEventArgs":"IgbPageEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPageEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPageEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPageEventArgsDetail()":"IgbPageEventArgsDetail()","IgbPageEventArgsDetail":"IgbPageEventArgsDetail()","Current":"Current","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Previous":"Previous","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPageRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPageRequestedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPageRequestedEventArgs()":"IgbPageRequestedEventArgs()","IgbPageRequestedEventArgs":"IgbPageRequestedEventArgs()","DataSourceId":"DataSourceId","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsSchemaRequest":"IsSchemaRequest","PageIndex":"PageIndex","PageSize":"PageSize","RequestId":"RequestId","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaginator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaginator","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaginator()":"IgbPaginator()","IgbPaginator":"IgbPaginator()","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetIsFirstPage()":"GetIsFirstPage()","GetIsFirstPage":"GetIsFirstPage()","GetIsFirstPageAsync()":"GetIsFirstPageAsync()","GetIsFirstPageAsync":"GetIsFirstPageAsync()","GetIsLastPage()":"GetIsLastPage()","GetIsLastPage":"GetIsLastPage()","GetIsLastPageAsync()":"GetIsLastPageAsync()","GetIsLastPageAsync":"GetIsLastPageAsync()","GridBaseDirectiveParent":"GridBaseDirectiveParent","HierarchicalGridParent":"HierarchicalGridParent","NextPage()":"NextPage()","NextPage":"NextPage()","NextPageAsync()":"NextPageAsync()","NextPageAsync":"NextPageAsync()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OverlaySettings":"OverlaySettings","Page":"Page","PageChange":"PageChange","PageChangeScript":"PageChangeScript","Paginate(double)":"Paginate(double)","Paginate":"Paginate(double)","PaginateAsync(double)":"PaginateAsync(double)","PaginateAsync":"PaginateAsync(double)","Paging":"Paging","PagingDone":"PagingDone","PagingDoneScript":"PagingDoneScript","PagingScript":"PagingScript","PerPage":"PerPage","PerPageChange":"PerPageChange","PerPageChangeScript":"PerPageChangeScript","PreviousPage()":"PreviousPage()","PreviousPage":"PreviousPage()","PreviousPageAsync()":"PreviousPageAsync()","PreviousPageAsync":"PreviousPageAsync()","ResourceStrings":"ResourceStrings","RowIslandParent":"RowIslandParent","SelectOptions":"SelectOptions","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","TotalPages":"TotalPages","TotalRecords":"TotalRecords","Type":"Type"}}],"IgbPaginatorCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaginatorCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbPaginator)":"InsertItem(int, IgbPaginator)","InsertItem":"InsertItem(int, IgbPaginator)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbPaginator)":"SetItem(int, IgbPaginator)","SetItem":"SetItem(int, IgbPaginator)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbPaginator)":"Add(IgbPaginator)","Add":"Add(IgbPaginator)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbPaginator[], int)":"CopyTo(IgbPaginator[], int)","CopyTo":"CopyTo(IgbPaginator[], int)","Contains(IgbPaginator)":"Contains(IgbPaginator)","Contains":"Contains(IgbPaginator)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbPaginator)":"IndexOf(IgbPaginator)","IndexOf":"IndexOf(IgbPaginator)","Insert(int, IgbPaginator)":"Insert(int, IgbPaginator)","Insert":"Insert(int, IgbPaginator)","Remove(IgbPaginator)":"Remove(IgbPaginator)","Remove":"Remove(IgbPaginator)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaginatorCollection(object, string)":"IgbPaginatorCollection(object, string)","IgbPaginatorCollection":"IgbPaginatorCollection(object, string)"}}],"IgbPaginatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaginatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaginatorModule()":"IgbPaginatorModule()","IgbPaginatorModule":"IgbPaginatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPaginatorResourceStrings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaginatorResourceStrings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaginatorResourceStrings()":"IgbPaginatorResourceStrings()","IgbPaginatorResourceStrings":"IgbPaginatorResourceStrings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Igx_paginator_first_page_button_text":"Igx_paginator_first_page_button_text","Igx_paginator_label":"Igx_paginator_label","Igx_paginator_last_page_button_text":"Igx_paginator_last_page_button_text","Igx_paginator_next_page_button_text":"Igx_paginator_next_page_button_text","Igx_paginator_pager_text":"Igx_paginator_pager_text","Igx_paginator_previous_page_button_text":"Igx_paginator_previous_page_button_text","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbPagingState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPagingState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPagingState()":"IgbPagingState()","IgbPagingState":"IgbPagingState()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","RecordsPerPage":"RecordsPerPage","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneCloseEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneCloseEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneCloseEventArgs()":"IgbPaneCloseEventArgs()","IgbPaneCloseEventArgs":"IgbPaneCloseEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneCloseEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneCloseEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneCloseEventArgsDetail()":"IgbPaneCloseEventArgsDetail()","IgbPaneCloseEventArgsDetail":"IgbPaneCloseEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Panes":"Panes","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SourcePane":"SourcePane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragAction()":"IgbPaneDragAction()","IgbPaneDragAction":"IgbPaneDragAction()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragActionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragActionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragActionModule()":"IgbPaneDragActionModule()","IgbPaneDragActionModule":"IgbPaneDragActionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPaneDragEndEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragEndEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragEndEventArgs()":"IgbPaneDragEndEventArgs()","IgbPaneDragEndEventArgs":"IgbPaneDragEndEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragEndEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragEndEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragEndEventArgsDetail()":"IgbPaneDragEndEventArgsDetail()","IgbPaneDragEndEventArgsDetail":"IgbPaneDragEndEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Panes":"Panes","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SourcePane":"SourcePane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragOverEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragOverEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragOverEventArgs()":"IgbPaneDragOverEventArgs()","IgbPaneDragOverEventArgs":"IgbPaneDragOverEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragOverEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragOverEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragOverEventArgsDetail()":"IgbPaneDragOverEventArgsDetail()","IgbPaneDragOverEventArgsDetail":"IgbPaneDragOverEventArgsDetail()","Action":"Action","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsValid":"IsValid","Panes":"Panes","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SourcePane":"SourcePane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragStartEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragStartEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragStartEventArgs()":"IgbPaneDragStartEventArgs()","IgbPaneDragStartEventArgs":"IgbPaneDragStartEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneDragStartEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneDragStartEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneDragStartEventArgsDetail()":"IgbPaneDragStartEventArgsDetail()","IgbPaneDragStartEventArgsDetail":"IgbPaneDragStartEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Panes":"Panes","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SourcePane":"SourcePane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneHeaderConnectionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneHeaderConnectionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneHeaderConnectionEventArgs()":"IgbPaneHeaderConnectionEventArgs()","IgbPaneHeaderConnectionEventArgs":"IgbPaneHeaderConnectionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneHeaderConnectionEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneHeaderConnectionEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneHeaderConnectionEventArgsDetail()":"IgbPaneHeaderConnectionEventArgsDetail()","IgbPaneHeaderConnectionEventArgsDetail":"IgbPaneHeaderConnectionEventArgsDetail()","Element":"Element","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Pane":"Pane","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneHeaderElement":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneHeaderElement","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneHeaderElement()":"IgbPaneHeaderElement()","IgbPaneHeaderElement":"IgbPaneHeaderElement()","DragService":"DragService","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneHeaderElementModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneHeaderElementModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneHeaderElementModule()":"IgbPaneHeaderElementModule()","IgbPaneHeaderElementModule":"IgbPaneHeaderElementModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPanePinnedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPanePinnedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPanePinnedEventArgs()":"IgbPanePinnedEventArgs()","IgbPanePinnedEventArgs":"IgbPanePinnedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPanePinnedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPanePinnedEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPanePinnedEventArgsDetail()":"IgbPanePinnedEventArgsDetail()","IgbPanePinnedEventArgsDetail":"IgbPanePinnedEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Location":"Location","NewValue":"NewValue","Panes":"Panes","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SourcePane":"SourcePane","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneScrollEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneScrollEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneScrollEventArgs()":"IgbPaneScrollEventArgs()","IgbPaneScrollEventArgs":"IgbPaneScrollEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPaneScrollEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPaneScrollEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPaneScrollEventArgsDetail()":"IgbPaneScrollEventArgsDetail()","IgbPaneScrollEventArgsDetail":"IgbPaneScrollEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Pane":"Pane","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPercentagePriceOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPercentagePriceOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPercentagePriceOscillatorIndicator()":"IgbPercentagePriceOscillatorIndicator()","IgbPercentagePriceOscillatorIndicator":"IgbPercentagePriceOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPeriod":"LongPeriod","ShortPeriod":"ShortPeriod","Type":"Type"}}],"IgbPercentagePriceOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPercentagePriceOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPercentagePriceOscillatorIndicatorModule()":"IgbPercentagePriceOscillatorIndicatorModule()","IgbPercentagePriceOscillatorIndicatorModule":"IgbPercentagePriceOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPercentageVolumeOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPercentageVolumeOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPercentageVolumeOscillatorIndicator()":"IgbPercentageVolumeOscillatorIndicator()","IgbPercentageVolumeOscillatorIndicator":"IgbPercentageVolumeOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LongPeriod":"LongPeriod","ShortPeriod":"ShortPeriod","Type":"Type"}}],"IgbPercentageVolumeOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPercentageVolumeOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPercentageVolumeOscillatorIndicatorModule()":"IgbPercentageVolumeOscillatorIndicatorModule()","IgbPercentageVolumeOscillatorIndicatorModule":"IgbPercentageVolumeOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPercentChangeYAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPercentChangeYAxis","k":"class","s":"classes","m":{"ScrollRangeIntoViewAsync(double, double)":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoViewAsync":"ScrollRangeIntoViewAsync(double, double)","ScrollRangeIntoView(double, double)":"ScrollRangeIntoView(double, double)","ScrollRangeIntoView":"ScrollRangeIntoView(double, double)","ScaleMode":"ScaleMode","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","AutoRangeBufferMode":"AutoRangeBufferMode","MinimumValue":"MinimumValue","ActualMinimumValue":"ActualMinimumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","MaximumValue":"MaximumValue","ActualMaximumValue":"ActualMaximumValue","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","Interval":"Interval","ActualInterval":"ActualInterval","ActualMaxPrecision":"ActualMaxPrecision","MaxPrecision":"MaxPrecision","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ReferenceValue":"ReferenceValue","IsLogarithmic":"IsLogarithmic","ActualIsLogarithmic":"ActualIsLogarithmic","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","LogarithmBase":"LogarithmBase","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPercentChangeYAxis()":"IgbPercentChangeYAxis()","IgbPercentChangeYAxis":"IgbPercentChangeYAxis()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPercentChangeYAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPercentChangeYAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPercentChangeYAxisModule()":"IgbPercentChangeYAxisModule()","IgbPercentChangeYAxisModule":"IgbPercentChangeYAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPieChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieChart","k":"class","s":"classes","m":{"GetCurrentSelectedItemAsync()":"GetCurrentSelectedItemAsync()","GetCurrentSelectedItemAsync":"GetCurrentSelectedItemAsync()","GetCurrentSelectedItem()":"GetCurrentSelectedItem()","GetCurrentSelectedItem":"GetCurrentSelectedItem()","GetCurrentSelectedItemsAsync()":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedItemsAsync":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedItems()":"GetCurrentSelectedItems()","GetCurrentSelectedItems":"GetCurrentSelectedItems()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","SimulateLeftClickAsync(Point)":"SimulateLeftClickAsync(Point)","SimulateLeftClickAsync":"SimulateLeftClickAsync(Point)","SimulateLeftClick(Point)":"SimulateLeftClick(Point)","SimulateLeftClick":"SimulateLeftClick(Point)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","NotifyContainerResizedAsync()":"NotifyContainerResizedAsync()","NotifyContainerResizedAsync":"NotifyContainerResizedAsync()","NotifyContainerResized()":"NotifyContainerResized()","NotifyContainerResized":"NotifyContainerResized()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","SetWidgetLevelDataSourceAsync(object)":"SetWidgetLevelDataSourceAsync(object)","SetWidgetLevelDataSourceAsync":"SetWidgetLevelDataSourceAsync(object)","SetWidgetLevelDataSource(object)":"SetWidgetLevelDataSource(object)","SetWidgetLevelDataSource":"SetWidgetLevelDataSource(object)","RemoveWidgetLevelDataSourceAsync()":"RemoveWidgetLevelDataSourceAsync()","RemoveWidgetLevelDataSourceAsync":"RemoveWidgetLevelDataSourceAsync()","RemoveWidgetLevelDataSource()":"RemoveWidgetLevelDataSource()","RemoveWidgetLevelDataSource":"RemoveWidgetLevelDataSource()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","ParentTypeName":"ParentTypeName","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentOthersLabelFormatSpecifiers":"ContentOthersLabelFormatSpecifiers","ActualOthersLabelFormatSpecifiers":"ActualOthersLabelFormatSpecifiers","ContentLegendLabelFormatSpecifiers":"ContentLegendLabelFormatSpecifiers","ActualLegendLabelFormatSpecifiers":"ActualLegendLabelFormatSpecifiers","ContentLegendOthersLabelFormatSpecifiers":"ContentLegendOthersLabelFormatSpecifiers","ActualLegendOthersLabelFormatSpecifiers":"ActualLegendOthersLabelFormatSpecifiers","DefaultEventBehavior":"DefaultEventBehavior","DataSource":"DataSource","DataSourceScript":"DataSourceScript","InnerExtent":"InnerExtent","ValueMemberPath":"ValueMemberPath","LabelMemberPath":"LabelMemberPath","LegendLabelMemberPath":"LegendLabelMemberPath","LabelsPosition":"LabelsPosition","LabelOuterColor":"LabelOuterColor","LabelInnerColor":"LabelInnerColor","ActualLabelOuterColor":"ActualLabelOuterColor","ActualLabelInnerColor":"ActualLabelInnerColor","LeaderLineVisibility":"LeaderLineVisibility","LeaderLineType":"LeaderLineType","LeaderLineMargin":"LeaderLineMargin","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","OthersCategoryText":"OthersCategoryText","ExplodedRadius":"ExplodedRadius","RadiusFactor":"RadiusFactor","AllowSliceSelection":"AllowSliceSelection","AllowSliceExplosion":"AllowSliceExplosion","ExplodedSlices":"ExplodedSlices","Legend":"Legend","LegendScript":"LegendScript","LabelExtent":"LabelExtent","StartAngle":"StartAngle","SweepDirection":"SweepDirection","OthersCategoryFill":"OthersCategoryFill","OthersCategoryStroke":"OthersCategoryStroke","OthersCategoryStrokeThickness":"OthersCategoryStrokeThickness","OthersCategoryOpacity":"OthersCategoryOpacity","SelectedSliceFill":"SelectedSliceFill","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","SelectedSliceOpacity":"SelectedSliceOpacity","Brushes":"Brushes","ActualBrushes":"ActualBrushes","Outlines":"Outlines","ActualOutlines":"ActualOutlines","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","OthersLabelFormat":"OthersLabelFormat","OthersLabelFormatSpecifiers":"OthersLabelFormatSpecifiers","LegendLabelFormat":"LegendLabelFormat","LegendLabelFormatSpecifiers":"LegendLabelFormatSpecifiers","LegendOthersLabelFormat":"LegendOthersLabelFormat","LegendOthersLabelFormatSpecifiers":"LegendOthersLabelFormatSpecifiers","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","IsDragInteractionEnabled":"IsDragInteractionEnabled","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","LegendEmptyValuesMode":"LegendEmptyValuesMode","FormatLabelScript":"FormatLabelScript","FormatLegendLabel":"FormatLegendLabel","FormatLegendLabelScript":"FormatLegendLabelScript","PixelScalingRatio":"PixelScalingRatio","ActualPixelScalingRatio":"ActualPixelScalingRatio","SelectionMode":"SelectionMode","SelectedItem":"SelectedItem","SelectedItems":"SelectedItems","TextStyle":"TextStyle","LabelClickScript":"LabelClickScript","LabelClick":"LabelClick","SelectedItemChangingScript":"SelectedItemChangingScript","SelectedItemChanging":"SelectedItemChanging","SelectedItemsChangingScript":"SelectedItemsChangingScript","SelectedItemsChanging":"SelectedItemsChanging","SelectedItemChangedScript":"SelectedItemChangedScript","SelectedItemChanged":"SelectedItemChanged","SelectedItemsChangedScript":"SelectedItemsChangedScript","SelectedItemsChanged":"SelectedItemsChanged","SliceClickScript":"SliceClickScript","SliceClick":"SliceClick","SliceEnterScript":"SliceEnterScript","SliceEnter":"SliceEnter","SliceLeaveScript":"SliceLeaveScript","SliceLeave":"SliceLeave","SliceHoverScript":"SliceHoverScript","SliceHover":"SliceHover","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieChart()":"IgbPieChart()","IgbPieChart":"IgbPieChart()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPieChartBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieChartBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieChartBase()":"IgbPieChartBase()","IgbPieChartBase":"IgbPieChartBase()","ActualBrushes":"ActualBrushes","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ActualLabelInnerColor":"ActualLabelInnerColor","ActualLabelOuterColor":"ActualLabelOuterColor","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendLabelFormatSpecifiers":"ActualLegendLabelFormatSpecifiers","ActualLegendOthersLabelFormatSpecifiers":"ActualLegendOthersLabelFormatSpecifiers","ActualOthersLabelFormatSpecifiers":"ActualOthersLabelFormatSpecifiers","ActualOutlines":"ActualOutlines","ActualPixelScalingRatio":"ActualPixelScalingRatio","AllowSliceExplosion":"AllowSliceExplosion","AllowSliceSelection":"AllowSliceSelection","Brushes":"Brushes","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ContentLegendLabelFormatSpecifiers":"ContentLegendLabelFormatSpecifiers","ContentLegendOthersLabelFormatSpecifiers":"ContentLegendOthersLabelFormatSpecifiers","ContentOthersLabelFormatSpecifiers":"ContentOthersLabelFormatSpecifiers","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","Destroy()":"Destroy()","Destroy":"Destroy()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","ExplodedRadius":"ExplodedRadius","ExplodedSlices":"ExplodedSlices","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","FormatLabelScript":"FormatLabelScript","FormatLegendLabel":"FormatLegendLabel","FormatLegendLabelScript":"FormatLegendLabelScript","GetCurrentSelectedItem()":"GetCurrentSelectedItem()","GetCurrentSelectedItem":"GetCurrentSelectedItem()","GetCurrentSelectedItemAsync()":"GetCurrentSelectedItemAsync()","GetCurrentSelectedItemAsync":"GetCurrentSelectedItemAsync()","GetCurrentSelectedItems()":"GetCurrentSelectedItems()","GetCurrentSelectedItems":"GetCurrentSelectedItems()","GetCurrentSelectedItemsAsync()":"GetCurrentSelectedItemsAsync()","GetCurrentSelectedItemsAsync":"GetCurrentSelectedItemsAsync()","InnerExtent":"InnerExtent","IsDragInteractionEnabled":"IsDragInteractionEnabled","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","LabelClick":"LabelClick","LabelClickScript":"LabelClickScript","LabelExtent":"LabelExtent","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelInnerColor":"LabelInnerColor","LabelMemberPath":"LabelMemberPath","LabelOuterColor":"LabelOuterColor","LabelsPosition":"LabelsPosition","LeaderLineMargin":"LeaderLineMargin","LeaderLineType":"LeaderLineType","LeaderLineVisibility":"LeaderLineVisibility","Legend":"Legend","LegendEmptyValuesMode":"LegendEmptyValuesMode","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","LegendLabelFormat":"LegendLabelFormat","LegendLabelFormatSpecifiers":"LegendLabelFormatSpecifiers","LegendLabelMemberPath":"LegendLabelMemberPath","LegendOthersLabelFormat":"LegendOthersLabelFormat","LegendOthersLabelFormatSpecifiers":"LegendOthersLabelFormatSpecifiers","LegendScript":"LegendScript","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyContainerResized()":"NotifyContainerResized()","NotifyContainerResized":"NotifyContainerResized()","NotifyContainerResizedAsync()":"NotifyContainerResizedAsync()","NotifyContainerResizedAsync":"NotifyContainerResizedAsync()","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","OthersCategoryFill":"OthersCategoryFill","OthersCategoryOpacity":"OthersCategoryOpacity","OthersCategoryStroke":"OthersCategoryStroke","OthersCategoryStrokeThickness":"OthersCategoryStrokeThickness","OthersCategoryText":"OthersCategoryText","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","OthersLabelFormat":"OthersLabelFormat","OthersLabelFormatSpecifiers":"OthersLabelFormatSpecifiers","Outlines":"Outlines","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RadiusFactor":"RadiusFactor","RemoveWidgetLevelDataSource()":"RemoveWidgetLevelDataSource()","RemoveWidgetLevelDataSource":"RemoveWidgetLevelDataSource()","RemoveWidgetLevelDataSourceAsync()":"RemoveWidgetLevelDataSourceAsync()","RemoveWidgetLevelDataSourceAsync":"RemoveWidgetLevelDataSourceAsync()","SelectedItem":"SelectedItem","SelectedItemChanged":"SelectedItemChanged","SelectedItemChangedScript":"SelectedItemChangedScript","SelectedItemChanging":"SelectedItemChanging","SelectedItemChangingScript":"SelectedItemChangingScript","SelectedItems":"SelectedItems","SelectedItemsChanged":"SelectedItemsChanged","SelectedItemsChangedScript":"SelectedItemsChangedScript","SelectedItemsChanging":"SelectedItemsChanging","SelectedItemsChangingScript":"SelectedItemsChangingScript","SelectedSliceFill":"SelectedSliceFill","SelectedSliceOpacity":"SelectedSliceOpacity","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","SelectionMode":"SelectionMode","SetWidgetLevelDataSource(object)":"SetWidgetLevelDataSource(object)","SetWidgetLevelDataSource":"SetWidgetLevelDataSource(object)","SetWidgetLevelDataSourceAsync(object)":"SetWidgetLevelDataSourceAsync(object)","SetWidgetLevelDataSourceAsync":"SetWidgetLevelDataSourceAsync(object)","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","SimulateLeftClick(Point)":"SimulateLeftClick(Point)","SimulateLeftClick":"SimulateLeftClick(Point)","SimulateLeftClickAsync(Point)":"SimulateLeftClickAsync(Point)","SimulateLeftClickAsync":"SimulateLeftClickAsync(Point)","SliceClick":"SliceClick","SliceClickScript":"SliceClickScript","SliceEnter":"SliceEnter","SliceEnterScript":"SliceEnterScript","SliceHover":"SliceHover","SliceHoverScript":"SliceHoverScript","SliceLeave":"SliceLeave","SliceLeaveScript":"SliceLeaveScript","StartAngle":"StartAngle","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","SweepDirection":"SweepDirection","TextStyle":"TextStyle","Type":"Type","ValueMemberPath":"ValueMemberPath"}}],"IgbPieChartCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieChartCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieChartCoreModule()":"IgbPieChartCoreModule()","IgbPieChartCoreModule":"IgbPieChartCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPieChartDashboardTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieChartDashboardTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieChartDashboardTileModule()":"IgbPieChartDashboardTileModule()","IgbPieChartDashboardTileModule":"IgbPieChartDashboardTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPieChartModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieChartModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieChartModule()":"IgbPieChartModule()","IgbPieChartModule":"IgbPieChartModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPieSliceDataContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieSliceDataContext","k":"class","s":"classes","m":{"Item":"Item","ItemScript":"ItemScript","ActualItemBrush":"ActualItemBrush","Outline":"Outline","ItemLabel":"ItemLabel","ItemLabelScript":"ItemLabelScript","ItemBrush":"ItemBrush","Thickness":"Thickness","LegendLabel":"LegendLabel","LegendLabelScript":"LegendLabelScript","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieSliceDataContext()":"IgbPieSliceDataContext()","IgbPieSliceDataContext":"IgbPieSliceDataContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsOthersSlice":"IsOthersSlice","PercentValue":"PercentValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPieSliceOthersContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPieSliceOthersContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPieSliceOthersContext()":"IgbPieSliceOthersContext()","IgbPieSliceOthersContext":"IgbPieSliceOthersContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPinColumnCancellableEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinColumnCancellableEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinColumnCancellableEventArgs()":"IgbPinColumnCancellableEventArgs()","IgbPinColumnCancellableEventArgs":"IgbPinColumnCancellableEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPinColumnCancellableEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinColumnCancellableEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinColumnCancellableEventArgsDetail()":"IgbPinColumnCancellableEventArgsDetail()","IgbPinColumnCancellableEventArgsDetail":"IgbPinColumnCancellableEventArgsDetail()","Cancel":"Cancel","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","InsertAtIndex":"InsertAtIndex","IsPinned":"IsPinned","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPinColumnEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinColumnEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinColumnEventArgs()":"IgbPinColumnEventArgs()","IgbPinColumnEventArgs":"IgbPinColumnEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPinColumnEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinColumnEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinColumnEventArgsDetail()":"IgbPinColumnEventArgsDetail()","IgbPinColumnEventArgsDetail":"IgbPinColumnEventArgsDetail()","Column":"Column","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","InsertAtIndex":"InsertAtIndex","IsPinned":"IsPinned","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPinnedAreaSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinnedAreaSeparator","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinnedAreaSeparator()":"IgbPinnedAreaSeparator()","IgbPinnedAreaSeparator":"IgbPinnedAreaSeparator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPinnedAreaSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinnedAreaSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinnedAreaSeparatorModule()":"IgbPinnedAreaSeparatorModule()","IgbPinnedAreaSeparatorModule":"IgbPinnedAreaSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPinningConfig":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinningConfig","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinningConfig()":"IgbPinningConfig()","IgbPinningConfig":"IgbPinningConfig()","Columns":"Columns","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Rows":"Rows","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPinRowEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinRowEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinRowEventArgs()":"IgbPinRowEventArgs()","IgbPinRowEventArgs":"IgbPinRowEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPinRowEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPinRowEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPinRowEventArgsDetail()":"IgbPinRowEventArgsDetail()","IgbPinRowEventArgsDetail":"IgbPinRowEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","InsertAtIndex":"InsertAtIndex","IsPinned":"IsPinned","Owner":"Owner","Row":"Row","RowID":"RowID","RowKey":"RowKey","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotAggregator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotAggregator","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotAggregator()":"IgbPivotAggregator()","IgbPivotAggregator":"IgbPivotAggregator()","AggregatorName":"AggregatorName","AggregatorScript":"AggregatorScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Key":"Key","Label":"Label","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotConfiguration":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotConfiguration","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotConfiguration()":"IgbPivotConfiguration()","IgbPivotConfiguration":"IgbPivotConfiguration()","ColumnStrategy":"ColumnStrategy","Columns":"Columns","Filters":"Filters","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PivotKeys":"PivotKeys","RowStrategy":"RowStrategy","Rows":"Rows","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Values":"Values"}}],"IgbPivotConfigurationChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotConfigurationChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotConfigurationChangedEventArgs()":"IgbPivotConfigurationChangedEventArgs()","IgbPivotConfigurationChangedEventArgs":"IgbPivotConfigurationChangedEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotConfigurationChangedEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotConfigurationChangedEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotConfigurationChangedEventArgsDetail()":"IgbPivotConfigurationChangedEventArgsDetail()","IgbPivotConfigurationChangedEventArgsDetail":"IgbPivotConfigurationChangedEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PivotConfiguration":"PivotConfiguration","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotDataSelector":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDataSelector","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDataSelector()":"IgbPivotDataSelector()","IgbPivotDataSelector":"IgbPivotDataSelector()","ColumnsExpanded":"ColumnsExpanded","ColumnsExpandedChange":"ColumnsExpandedChange","ColumnsExpandedChangeScript":"ColumnsExpandedChangeScript","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FiltersExpanded":"FiltersExpanded","FiltersExpandedChange":"FiltersExpandedChange","FiltersExpandedChangeScript":"FiltersExpandedChangeScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Grid":"Grid","GridScript":"GridScript","RowsExpanded":"RowsExpanded","RowsExpandedChange":"RowsExpandedChange","RowsExpandedChangeScript":"RowsExpandedChangeScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","ValuesExpanded":"ValuesExpanded","ValuesExpandedChange":"ValuesExpandedChange","ValuesExpandedChangeScript":"ValuesExpandedChangeScript"}}],"IgbPivotDataSelectorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDataSelectorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDataSelectorModule()":"IgbPivotDataSelectorModule()","IgbPivotDataSelectorModule":"IgbPivotDataSelectorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPivotDateDimension":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDateDimension","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ChildLevel":"ChildLevel","MemberName":"MemberName","Filter":"Filter","Sortable":"Sortable","SortDirection":"SortDirection","Width":"Width","Level":"Level","HorizontalSummary":"HorizontalSummary","MemberFunctionScript":"MemberFunctionScript","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDateDimension()":"IgbPivotDateDimension()","IgbPivotDateDimension":"IgbPivotDateDimension()","BaseDimension":"BaseDimension","DataType":"DataType","DisplayName":"DisplayName","Enabled":"Enabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Options":"Options","ResourceStrings":"ResourceStrings","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotDateDimensionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDateDimensionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDateDimensionModule()":"IgbPivotDateDimensionModule()","IgbPivotDateDimensionModule":"IgbPivotDateDimensionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPivotDateDimensionOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDateDimensionOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDateDimensionOptions()":"IgbPivotDateDimensionOptions()","IgbPivotDateDimensionOptions":"IgbPivotDateDimensionOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FullDate":"FullDate","Months":"Months","Quarters":"Quarters","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Total":"Total","Type":"Type","Years":"Years"}}],"IgbPivotDimension":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDimension","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDimension()":"IgbPivotDimension()","IgbPivotDimension":"IgbPivotDimension()","ChildLevel":"ChildLevel","DataType":"DataType","DisplayName":"DisplayName","Enabled":"Enabled","Filter":"Filter","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","HorizontalSummary":"HorizontalSummary","Level":"Level","MemberFunctionScript":"MemberFunctionScript","MemberName":"MemberName","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SortDirection":"SortDirection","Sortable":"Sortable","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width"}}],"IgbPivotDimensionDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDimensionDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDimensionDetail()":"IgbPivotDimensionDetail()","IgbPivotDimensionDetail":"IgbPivotDimensionDetail()","ChildLevel":"ChildLevel","DataType":"DataType","DisplayName":"DisplayName","Enabled":"Enabled","Filter":"Filter","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","HorizontalSummary":"HorizontalSummary","Level":"Level","MemberFunctionScript":"MemberFunctionScript","MemberName":"MemberName","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SortDirection":"SortDirection","Sortable":"Sortable","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Width":"Width"}}],"IgbPivotDimensionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDimensionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDimensionEventArgs()":"IgbPivotDimensionEventArgs()","IgbPivotDimensionEventArgs":"IgbPivotDimensionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotDimensionStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotDimensionStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotDimensionStrategy()":"IgbPivotDimensionStrategy()","IgbPivotDimensionStrategy":"IgbPivotDimensionStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbPivotGrid":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotGrid","k":"class","s":"classes","m":{"GetData()":"GetData()","GetData":"GetData()","SuspendNotifications()":"SuspendNotifications()","SuspendNotifications":"SuspendNotifications()","ResumeNotifications()":"ResumeNotifications()","ResumeNotifications":"ResumeNotifications()","UpdateProperty(object, string, object)":"UpdateProperty(object, string, object)","UpdateProperty":"UpdateProperty(object, string, object)","OnRowAddedOverride(IgbRowDataEventArgs)":"OnRowAddedOverride(IgbRowDataEventArgs)","OnRowAddedOverride":"OnRowAddedOverride(IgbRowDataEventArgs)","PropagateValues(object, Dictionary, bool)":"PropagateValues(object, Dictionary, bool)","PropagateValues":"PropagateValues(object, Dictionary, bool)","AddRow(object)":"AddRow(object)","AddRow":"AddRow(object)","AddRowAsync(object)":"AddRowAsync(object)","AddRowAsync":"AddRowAsync(object)","DeleteRow(object)":"DeleteRow(object)","DeleteRow":"DeleteRow(object)","DeleteRowAsync(object)":"DeleteRowAsync(object)","DeleteRowAsync":"DeleteRowAsync(object)","UpdateCell(object, object, string)":"UpdateCell(object, object, string)","UpdateCell":"UpdateCell(object, object, string)","UpdateCellAsync(object, object, string)":"UpdateCellAsync(object, object, string)","UpdateCellAsync":"UpdateCellAsync(object, object, string)","UpdateRow(Dictionary, object)":"UpdateRow(Dictionary, object)","UpdateRow":"UpdateRow(Dictionary, object)","UpdateRowAsync(Dictionary, object)":"UpdateRowAsync(Dictionary, object)","UpdateRowAsync":"UpdateRowAsync(Dictionary, object)","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetHiddenColumnsCountAsync()":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCountAsync":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCount()":"GetHiddenColumnsCount()","GetHiddenColumnsCount":"GetHiddenColumnsCount()","GetPinnedColumnsCountAsync()":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCountAsync":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCount()":"GetPinnedColumnsCount()","GetPinnedColumnsCount":"GetPinnedColumnsCount()","GetLastSearchInfoAsync()":"GetLastSearchInfoAsync()","GetLastSearchInfoAsync":"GetLastSearchInfoAsync()","GetLastSearchInfo()":"GetLastSearchInfo()","GetLastSearchInfo":"GetLastSearchInfo()","GetFilteredDataAsync()":"GetFilteredDataAsync()","GetFilteredDataAsync":"GetFilteredDataAsync()","GetFilteredData()":"GetFilteredData()","GetFilteredData":"GetFilteredData()","GetFilteredSortedDataAsync()":"GetFilteredSortedDataAsync()","GetFilteredSortedDataAsync":"GetFilteredSortedDataAsync()","GetFilteredSortedData()":"GetFilteredSortedData()","GetFilteredSortedData":"GetFilteredSortedData()","GetVirtualizationStateAsync()":"GetVirtualizationStateAsync()","GetVirtualizationStateAsync":"GetVirtualizationStateAsync()","GetVirtualizationState()":"GetVirtualizationState()","GetVirtualizationState":"GetVirtualizationState()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetPinnedColumnsAsync()":"GetPinnedColumnsAsync()","GetPinnedColumnsAsync":"GetPinnedColumnsAsync()","GetPinnedColumns()":"GetPinnedColumns()","GetPinnedColumns":"GetPinnedColumns()","GetPinnedStartColumnsAsync()":"GetPinnedStartColumnsAsync()","GetPinnedStartColumnsAsync":"GetPinnedStartColumnsAsync()","GetPinnedStartColumns()":"GetPinnedStartColumns()","GetPinnedStartColumns":"GetPinnedStartColumns()","GetPinnedEndColumnsAsync()":"GetPinnedEndColumnsAsync()","GetPinnedEndColumnsAsync":"GetPinnedEndColumnsAsync()","GetPinnedEndColumns()":"GetPinnedEndColumns()","GetPinnedEndColumns":"GetPinnedEndColumns()","GetUnpinnedColumnsAsync()":"GetUnpinnedColumnsAsync()","GetUnpinnedColumnsAsync":"GetUnpinnedColumnsAsync()","GetUnpinnedColumns()":"GetUnpinnedColumns()","GetUnpinnedColumns":"GetUnpinnedColumns()","GetVisibleColumnsAsync()":"GetVisibleColumnsAsync()","GetVisibleColumnsAsync":"GetVisibleColumnsAsync()","GetVisibleColumns()":"GetVisibleColumns()","GetVisibleColumns":"GetVisibleColumns()","GetDataViewAsync()":"GetDataViewAsync()","GetDataViewAsync":"GetDataViewAsync()","GetDataView()":"GetDataView()","GetDataView":"GetDataView()","GetCurrentActualColumnListAsync()":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnListAsync":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnList()":"GetCurrentActualColumnList()","GetCurrentActualColumnList":"GetCurrentActualColumnList()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","ReflowAsync()":"ReflowAsync()","ReflowAsync":"ReflowAsync()","Reflow()":"Reflow()","Reflow":"Reflow()","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","NeedsDynamicContent":"NeedsDynamicContent","ContentColumnList":"ContentColumnList","CellEditDone":"CellEditDone","RowAdded":"RowAdded","ItemRequested":"ItemRequested","RowDeleted":"RowDeleted","DefaultEventBehavior":"DefaultEventBehavior","ParentTypeName":"ParentTypeName","ContentActionStripComponents":"ContentActionStripComponents","ActualActionStripComponents":"ActualActionStripComponents","ContentToolbar":"ContentToolbar","ActualToolbar":"ActualToolbar","ContentPaginationComponents":"ContentPaginationComponents","ActualPaginationComponents":"ActualPaginationComponents","ContentStateComponents":"ContentStateComponents","ActualStateComponents":"ActualStateComponents","SnackbarDisplayTime":"SnackbarDisplayTime","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","Moving":"Moving","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","SummaryRowHeight":"SummaryRowHeight","DataCloneStrategy":"DataCloneStrategy","ClipboardOptions":"ClipboardOptions","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","PrimaryKey":"PrimaryKey","ColumnList":"ColumnList","ActionStripComponents":"ActionStripComponents","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","Toolbar":"Toolbar","PaginationComponents":"PaginationComponents","ResourceStrings":"ResourceStrings","FilteringLogic":"FilteringLogic","FilteringExpressionsTree":"FilteringExpressionsTree","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","Locale":"Locale","PagingMode":"PagingMode","HideRowSelectors":"HideRowSelectors","RowDraggable":"RowDraggable","ValidationTrigger":"ValidationTrigger","RowEditable":"RowEditable","RowHeight":"RowHeight","ColumnWidth":"ColumnWidth","EmptyGridMessage":"EmptyGridMessage","IsLoading":"IsLoading","ShouldGenerate":"ShouldGenerate","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","Pinning":"Pinning","AllowFiltering":"AllowFiltering","AllowAdvancedFiltering":"AllowAdvancedFiltering","FilterMode":"FilterMode","SummaryPosition":"SummaryPosition","SummaryCalculationMode":"SummaryCalculationMode","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","FilterStrategy":"FilterStrategy","SortStrategy":"SortStrategy","SortingOptions":"SortingOptions","SelectedRows":"SelectedRows","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","SortingExpressions":"SortingExpressions","BatchEditing":"BatchEditing","CellSelection":"CellSelection","CellMergeMode":"CellMergeMode","RowSelection":"RowSelection","ColumnSelection":"ColumnSelection","Outlet":"Outlet","TotalRecords":"TotalRecords","SelectRowOnClick":"SelectRowOnClick","ActualColumnList":"ActualColumnList","StateComponents":"StateComponents","SelectedRowsChanged":"SelectedRowsChanged","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","GridScrollScript":"GridScrollScript","GridScroll":"GridScroll","CellClickScript":"CellClickScript","CellClick":"CellClick","RowClickScript":"RowClickScript","RowClick":"RowClick","FormGroupCreatedScript":"FormGroupCreatedScript","FormGroupCreated":"FormGroupCreated","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationStatusChange":"ValidationStatusChange","SelectedScript":"SelectedScript","Selected":"Selected","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectionChanging":"RowSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnPinScript":"ColumnPinScript","ColumnPin":"ColumnPin","ColumnPinnedScript":"ColumnPinnedScript","ColumnPinned":"ColumnPinned","CellEditEnterScript":"CellEditEnterScript","CellEditEnter":"CellEditEnter","CellEditExitScript":"CellEditExitScript","CellEditExit":"CellEditExit","CellEditScript":"CellEditScript","CellEdit":"CellEdit","RowEditEnterScript":"RowEditEnterScript","RowEditEnter":"RowEditEnter","RowEditScript":"RowEditScript","RowEdit":"RowEdit","RowEditDoneScript":"RowEditDoneScript","RowEditDone":"RowEditDone","RowEditExitScript":"RowEditExitScript","RowEditExit":"RowEditExit","ColumnInitScript":"ColumnInitScript","ColumnInit":"ColumnInit","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ColumnsAutogenerated":"ColumnsAutogenerated","SortingScript":"SortingScript","Sorting":"Sorting","SortingDoneScript":"SortingDoneScript","SortingDone":"SortingDone","FilteringScript":"FilteringScript","Filtering":"Filtering","FilteringDoneScript":"FilteringDoneScript","FilteringDone":"FilteringDone","RowDeleteScript":"RowDeleteScript","RowDelete":"RowDelete","RowAddScript":"RowAddScript","RowAdd":"RowAdd","ColumnResizedScript":"ColumnResizedScript","ColumnResized":"ColumnResized","ContextMenuScript":"ContextMenuScript","ContextMenu":"ContextMenu","DoubleClickScript":"DoubleClickScript","DoubleClick":"DoubleClick","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingScript":"ColumnMovingScript","ColumnMoving":"ColumnMoving","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingEnd":"ColumnMovingEnd","GridKeydownScript":"GridKeydownScript","GridKeydown":"GridKeydown","RowDragStartScript":"RowDragStartScript","RowDragStart":"RowDragStart","RowDragEndScript":"RowDragEndScript","RowDragEnd":"RowDragEnd","GridCopyScript":"GridCopyScript","GridCopy":"GridCopy","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChange":"SelectedRowsChange","RowToggleScript":"RowToggleScript","RowToggle":"RowToggle","RowPinningScript":"RowPinningScript","RowPinning":"RowPinning","RowPinnedScript":"RowPinnedScript","RowPinned":"RowPinned","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActiveNodeChange":"ActiveNodeChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingExpressionsChange":"SortingExpressionsChange","ToolbarExportingScript":"ToolbarExportingScript","ToolbarExporting":"ToolbarExporting","RangeSelectedScript":"RangeSelectedScript","RangeSelected":"RangeSelected","RenderedScript":"RenderedScript","Rendered":"Rendered","DataChangingScript":"DataChangingScript","DataChanging":"DataChanging","DataChangedScript":"DataChangedScript","DataChanged":"DataChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotGrid()":"IgbPivotGrid()","IgbPivotGrid":"IgbPivotGrid()","AutoGenerateConfig":"AutoGenerateConfig","AutoSizeRowDimension(IgbPivotDimension)":"AutoSizeRowDimension(IgbPivotDimension)","AutoSizeRowDimension":"AutoSizeRowDimension(IgbPivotDimension)","AutoSizeRowDimensionAsync(IgbPivotDimension)":"AutoSizeRowDimensionAsync(IgbPivotDimension)","AutoSizeRowDimensionAsync":"AutoSizeRowDimensionAsync(IgbPivotDimension)","Data":"Data","DataScript":"DataScript","DefaultExpandState":"DefaultExpandState","DimensionInit":"DimensionInit","DimensionInitScript":"DimensionInitScript","DimensionsChange":"DimensionsChange","DimensionsChangeScript":"DimensionsChangeScript","DimensionsSortingExpressionsChange":"DimensionsSortingExpressionsChange","DimensionsSortingExpressionsChangeScript":"DimensionsSortingExpressionsChangeScript","EmptyPivotGridTemplate":"EmptyPivotGridTemplate","EmptyPivotGridTemplateScript":"EmptyPivotGridTemplateScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterDimension(IgbPivotDimension, object, IgbFilteringExpressionsTreeOrFilteringOperation)":"FilterDimension(IgbPivotDimension, object, IgbFilteringExpressionsTreeOrFilteringOperation)","FilterDimension":"FilterDimension(IgbPivotDimension, object, IgbFilteringExpressionsTreeOrFilteringOperation)","FilterDimensionAsync(IgbPivotDimension, object, IgbFilteringExpressionsTreeOrFilteringOperation)":"FilterDimensionAsync(IgbPivotDimension, object, IgbFilteringExpressionsTreeOrFilteringOperation)","FilterDimensionAsync":"FilterDimensionAsync(IgbPivotDimension, object, IgbFilteringExpressionsTreeOrFilteringOperation)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetAllDimensions()":"GetAllDimensions()","GetAllDimensions":"GetAllDimensions()","GetAllDimensionsAsync()":"GetAllDimensionsAsync()","GetAllDimensionsAsync":"GetAllDimensionsAsync()","GetColumnGroupExpandState(IgbColumn)":"GetColumnGroupExpandState(IgbColumn)","GetColumnGroupExpandState":"GetColumnGroupExpandState(IgbColumn)","GetColumnGroupExpandStateAsync(IgbColumn)":"GetColumnGroupExpandStateAsync(IgbColumn)","GetColumnGroupExpandStateAsync":"GetColumnGroupExpandStateAsync(IgbColumn)","GetCurrentPivotConfiguration()":"GetCurrentPivotConfiguration()","GetCurrentPivotConfiguration":"GetCurrentPivotConfiguration()","GetCurrentPivotConfigurationAsync()":"GetCurrentPivotConfigurationAsync()","GetCurrentPivotConfigurationAsync":"GetCurrentPivotConfigurationAsync()","GetDimensionsSortingExpressions()":"GetDimensionsSortingExpressions()","GetDimensionsSortingExpressions":"GetDimensionsSortingExpressions()","GetDimensionsSortingExpressionsAsync()":"GetDimensionsSortingExpressionsAsync()","GetDimensionsSortingExpressionsAsync":"GetDimensionsSortingExpressionsAsync()","InsertDimensionAt(IgbPivotDimension, PivotDimensionType, double)":"InsertDimensionAt(IgbPivotDimension, PivotDimensionType, double)","InsertDimensionAt":"InsertDimensionAt(IgbPivotDimension, PivotDimensionType, double)","InsertDimensionAtAsync(IgbPivotDimension, PivotDimensionType, double)":"InsertDimensionAtAsync(IgbPivotDimension, PivotDimensionType, double)","InsertDimensionAtAsync":"InsertDimensionAtAsync(IgbPivotDimension, PivotDimensionType, double)","InsertValueAt(IgbPivotValue, double)":"InsertValueAt(IgbPivotValue, double)","InsertValueAt":"InsertValueAt(IgbPivotValue, double)","InsertValueAtAsync(IgbPivotValue, double)":"InsertValueAtAsync(IgbPivotValue, double)","InsertValueAtAsync":"InsertValueAtAsync(IgbPivotValue, double)","MoveDimension(IgbPivotDimension, PivotDimensionType, double)":"MoveDimension(IgbPivotDimension, PivotDimensionType, double)","MoveDimension":"MoveDimension(IgbPivotDimension, PivotDimensionType, double)","MoveDimensionAsync(IgbPivotDimension, PivotDimensionType, double)":"MoveDimensionAsync(IgbPivotDimension, PivotDimensionType, double)","MoveDimensionAsync":"MoveDimensionAsync(IgbPivotDimension, PivotDimensionType, double)","MoveValue(IgbPivotValue, double)":"MoveValue(IgbPivotValue, double)","MoveValue":"MoveValue(IgbPivotValue, double)","MoveValueAsync(IgbPivotValue, double)":"MoveValueAsync(IgbPivotValue, double)","MoveValueAsync":"MoveValueAsync(IgbPivotValue, double)","NotifyDimensionChange(bool)":"NotifyDimensionChange(bool)","NotifyDimensionChange":"NotifyDimensionChange(bool)","NotifyDimensionChangeAsync(bool)":"NotifyDimensionChangeAsync(bool)","NotifyDimensionChangeAsync":"NotifyDimensionChangeAsync(bool)","PivotConfiguration":"PivotConfiguration","PivotConfigurationChange":"PivotConfigurationChange","PivotConfigurationChangeScript":"PivotConfigurationChangeScript","PivotConfigurationChanged":"PivotConfigurationChanged","PivotUI":"PivotUI","RemoveDimension(IgbPivotDimension)":"RemoveDimension(IgbPivotDimension)","RemoveDimension":"RemoveDimension(IgbPivotDimension)","RemoveDimensionAsync(IgbPivotDimension)":"RemoveDimensionAsync(IgbPivotDimension)","RemoveDimensionAsync":"RemoveDimensionAsync(IgbPivotDimension)","RemoveValue(IgbPivotValue)":"RemoveValue(IgbPivotValue)","RemoveValue":"RemoveValue(IgbPivotValue)","RemoveValueAsync(IgbPivotValue)":"RemoveValueAsync(IgbPivotValue)","RemoveValueAsync":"RemoveValueAsync(IgbPivotValue)","RowDimensionHeaderTemplate":"RowDimensionHeaderTemplate","RowDimensionHeaderTemplateScript":"RowDimensionHeaderTemplateScript","SortDimension(IgbPivotDimension, SortingDirection)":"SortDimension(IgbPivotDimension, SortingDirection)","SortDimension":"SortDimension(IgbPivotDimension, SortingDirection)","SortDimensionAsync(IgbPivotDimension, SortingDirection)":"SortDimensionAsync(IgbPivotDimension, SortingDirection)","SortDimensionAsync":"SortDimensionAsync(IgbPivotDimension, SortingDirection)","SuperCompactMode":"SuperCompactMode","ToggleColumn(IgbColumn)":"ToggleColumn(IgbColumn)","ToggleColumn":"ToggleColumn(IgbColumn)","ToggleColumnAsync(IgbColumn)":"ToggleColumnAsync(IgbColumn)","ToggleColumnAsync":"ToggleColumnAsync(IgbColumn)","ToggleDimension(IgbPivotDimension)":"ToggleDimension(IgbPivotDimension)","ToggleDimension":"ToggleDimension(IgbPivotDimension)","ToggleDimensionAsync(IgbPivotDimension)":"ToggleDimensionAsync(IgbPivotDimension)","ToggleDimensionAsync":"ToggleDimensionAsync(IgbPivotDimension)","ToggleRowGroup(IgbColumn, bool)":"ToggleRowGroup(IgbColumn, bool)","ToggleRowGroup":"ToggleRowGroup(IgbColumn, bool)","ToggleRowGroupAsync(IgbColumn, bool)":"ToggleRowGroupAsync(IgbColumn, bool)","ToggleRowGroupAsync":"ToggleRowGroupAsync(IgbColumn, bool)","ToggleValue(IgbPivotValue)":"ToggleValue(IgbPivotValue)","ToggleValue":"ToggleValue(IgbPivotValue)","ToggleValueAsync(IgbPivotValue)":"ToggleValueAsync(IgbPivotValue)","ToggleValueAsync":"ToggleValueAsync(IgbPivotValue)","Type":"Type","ValueChipTemplate":"ValueChipTemplate","ValueChipTemplateScript":"ValueChipTemplateScript","ValueInit":"ValueInit","ValueInitScript":"ValueInitScript","ValuesChange":"ValuesChange","ValuesChangeScript":"ValuesChangeScript"}}],"IgbPivotGridColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotGridColumn","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotGridColumn()":"IgbPivotGridColumn()","IgbPivotGridColumn":"IgbPivotGridColumn()","Dimensions":"Dimensions","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Value":"Value"}}],"IgbPivotGridModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotGridModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotGridModule()":"IgbPivotGridModule()","IgbPivotGridModule":"IgbPivotGridModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPivotGridRecord":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotGridRecord","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotGridRecord()":"IgbPivotGridRecord()","IgbPivotGridRecord":"IgbPivotGridRecord()","DataIndex":"DataIndex","Dimensions":"Dimensions","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Level":"Level","Records":"Records","RecordsScript":"RecordsScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","TotalRecordDimensionName":"TotalRecordDimensionName","Type":"Type"}}],"IgbPivotGridValueTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotGridValueTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotGridValueTemplateContext()":"IgbPivotGridValueTemplateContext()","IgbPivotGridValueTemplateContext":"IgbPivotGridValueTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotKeys":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotKeys","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotKeys()":"IgbPivotKeys()","IgbPivotKeys":"IgbPivotKeys()","Aggregations":"Aggregations","Children":"Children","ColumnDimensionSeparator":"ColumnDimensionSeparator","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Level":"Level","Records":"Records","RowDimensionSeparator":"RowDimensionSeparator","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotUISettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotUISettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotUISettings()":"IgbPivotUISettings()","IgbPivotUISettings":"IgbPivotUISettings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalSummariesPosition":"HorizontalSummariesPosition","RowLayout":"RowLayout","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowConfiguration":"ShowConfiguration","ShowRowHeaders":"ShowRowHeaders","Type":"Type"}}],"IgbPivotValue":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotValue()":"IgbPivotValue()","IgbPivotValue":"IgbPivotValue()","Aggregate":"Aggregate","AggregateList":"AggregateList","DataType":"DataType","DisplayName":"DisplayName","Enabled":"Enabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatterScript":"FormatterScript","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Member":"Member","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Styles":"Styles","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotValueDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotValueDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotValueDetail()":"IgbPivotValueDetail()","IgbPivotValueDetail":"IgbPivotValueDetail()","Aggregate":"Aggregate","AggregateList":"AggregateList","DataType":"DataType","DisplayName":"DisplayName","Enabled":"Enabled","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatterScript":"FormatterScript","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Member":"Member","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Styles":"Styles","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPivotValueEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPivotValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPivotValueEventArgs()":"IgbPivotValueEventArgs()","IgbPivotValueEventArgs":"IgbPivotValueEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPlotAreaMouseButtonEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPlotAreaMouseButtonEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPlotAreaMouseButtonEventArgs()":"IgbPlotAreaMouseButtonEventArgs()","IgbPlotAreaMouseButtonEventArgs":"IgbPlotAreaMouseButtonEventArgs()","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ManipulationOccurred":"ManipulationOccurred","PlotAreaPosition":"PlotAreaPosition","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Viewer":"Viewer"}}],"IgbPlotAreaMouseEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPlotAreaMouseEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPlotAreaMouseEventArgs()":"IgbPlotAreaMouseEventArgs()","IgbPlotAreaMouseEventArgs":"IgbPlotAreaMouseEventArgs()","ChartPosition":"ChartPosition","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsDuringManipulation":"IsDuringManipulation","PlotAreaPosition":"PlotAreaPosition","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Viewer":"Viewer"}}],"IgbPointSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPointSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPointSeries()":"IgbPointSeries()","IgbPointSeries":"IgbPointSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPointSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPointSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPointSeriesModule()":"IgbPointSeriesModule()","IgbPointSeriesModule":"IgbPointSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPolarAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","AngleMemberPath":"AngleMemberPath","RadiusMemberPath":"RadiusMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","RadiusAxis":"RadiusAxis","RadiusAxisScript":"RadiusAxisScript","RadiusAxisName":"RadiusAxisName","UseCartesianInterpolation":"UseCartesianInterpolation","MaximumMarkers":"MaximumMarkers","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","ClipSeriesToBounds":"ClipSeriesToBounds","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AssigningPolarStyleScript":"AssigningPolarStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarAreaSeries()":"IgbPolarAreaSeries()","IgbPolarAreaSeries":"IgbPolarAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbPolarAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarAreaSeriesModule()":"IgbPolarAreaSeriesModule()","IgbPolarAreaSeriesModule":"IgbPolarAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPolarBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarBase","k":"class","s":"classes","m":{"MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarBase()":"IgbPolarBase()","IgbPolarBase":"IgbPolarBase()","ActualItemSearchMode":"ActualItemSearchMode","ActualTrendLineBrush":"ActualTrendLineBrush","AngleAxis":"AngleAxis","AngleAxisName":"AngleAxisName","AngleAxisScript":"AngleAxisScript","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AngleMemberPath":"AngleMemberPath","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarStyleScript":"AssigningPolarStyleScript","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","ClipSeriesToBounds":"ClipSeriesToBounds","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","MaximumMarkers":"MaximumMarkers","RadiusAxis":"RadiusAxis","RadiusAxisName":"RadiusAxisName","RadiusAxisScript":"RadiusAxisScript","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","RadiusMemberPath":"RadiusMemberPath","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","TrendLineBrush":"TrendLineBrush","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","TrendLineZIndex":"TrendLineZIndex","Type":"Type","UseCartesianInterpolation":"UseCartesianInterpolation"}}],"IgbPolarLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarLineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","AngleMemberPath":"AngleMemberPath","RadiusMemberPath":"RadiusMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","RadiusAxis":"RadiusAxis","RadiusAxisScript":"RadiusAxisScript","RadiusAxisName":"RadiusAxisName","UseCartesianInterpolation":"UseCartesianInterpolation","MaximumMarkers":"MaximumMarkers","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","ClipSeriesToBounds":"ClipSeriesToBounds","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AssigningPolarStyleScript":"AssigningPolarStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarLineSeries()":"IgbPolarLineSeries()","IgbPolarLineSeries":"IgbPolarLineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbPolarLineSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarLineSeriesBase","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","AngleMemberPath":"AngleMemberPath","RadiusMemberPath":"RadiusMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","RadiusAxis":"RadiusAxis","RadiusAxisScript":"RadiusAxisScript","RadiusAxisName":"RadiusAxisName","UseCartesianInterpolation":"UseCartesianInterpolation","MaximumMarkers":"MaximumMarkers","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","ClipSeriesToBounds":"ClipSeriesToBounds","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AssigningPolarStyleScript":"AssigningPolarStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarLineSeriesBase()":"IgbPolarLineSeriesBase()","IgbPolarLineSeriesBase":"IgbPolarLineSeriesBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPolarLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarLineSeriesModule()":"IgbPolarLineSeriesModule()","IgbPolarLineSeriesModule":"IgbPolarLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPolarScatterSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarScatterSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","AngleMemberPath":"AngleMemberPath","RadiusMemberPath":"RadiusMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","RadiusAxis":"RadiusAxis","RadiusAxisScript":"RadiusAxisScript","RadiusAxisName":"RadiusAxisName","UseCartesianInterpolation":"UseCartesianInterpolation","MaximumMarkers":"MaximumMarkers","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","ClipSeriesToBounds":"ClipSeriesToBounds","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AssigningPolarStyleScript":"AssigningPolarStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarScatterSeries()":"IgbPolarScatterSeries()","IgbPolarScatterSeries":"IgbPolarScatterSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPolarScatterSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarScatterSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarScatterSeriesModule()":"IgbPolarScatterSeriesModule()","IgbPolarScatterSeriesModule":"IgbPolarScatterSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPolarSplineAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarSplineAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","AngleMemberPath":"AngleMemberPath","RadiusMemberPath":"RadiusMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","RadiusAxis":"RadiusAxis","RadiusAxisScript":"RadiusAxisScript","RadiusAxisName":"RadiusAxisName","UseCartesianInterpolation":"UseCartesianInterpolation","MaximumMarkers":"MaximumMarkers","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","ClipSeriesToBounds":"ClipSeriesToBounds","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AssigningPolarStyleScript":"AssigningPolarStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarSplineAreaSeries()":"IgbPolarSplineAreaSeries()","IgbPolarSplineAreaSeries":"IgbPolarSplineAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Stiffness":"Stiffness","Type":"Type"}}],"IgbPolarSplineAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarSplineAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarSplineAreaSeriesModule()":"IgbPolarSplineAreaSeriesModule()","IgbPolarSplineAreaSeriesModule":"IgbPolarSplineAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPolarSplineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarSplineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","CanUseAsRadiusAxisAsync(object)":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxisAsync":"CanUseAsRadiusAxisAsync(object)","CanUseAsRadiusAxis(object)":"CanUseAsRadiusAxis(object)","CanUseAsRadiusAxis":"CanUseAsRadiusAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","AngleMemberPath":"AngleMemberPath","RadiusMemberPath":"RadiusMemberPath","HighlightedRadiusMemberPath":"HighlightedRadiusMemberPath","HighlightedAngleMemberPath":"HighlightedAngleMemberPath","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","RadiusAxis":"RadiusAxis","RadiusAxisScript":"RadiusAxisScript","RadiusAxisName":"RadiusAxisName","UseCartesianInterpolation":"UseCartesianInterpolation","MaximumMarkers":"MaximumMarkers","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","ClipSeriesToBounds":"ClipSeriesToBounds","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","IsCustomPolarStyleAllowed":"IsCustomPolarStyleAllowed","IsCustomPolarMarkerStyleAllowed":"IsCustomPolarMarkerStyleAllowed","RadiusMemberAsLegendLabel":"RadiusMemberAsLegendLabel","AngleMemberAsLegendLabel":"AngleMemberAsLegendLabel","RadiusMemberAsLegendUnit":"RadiusMemberAsLegendUnit","AngleMemberAsLegendUnit":"AngleMemberAsLegendUnit","AssigningPolarStyleScript":"AssigningPolarStyleScript","AssigningPolarStyle":"AssigningPolarStyle","AssigningPolarMarkerStyleScript":"AssigningPolarMarkerStyleScript","AssigningPolarMarkerStyle":"AssigningPolarMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarSplineSeries()":"IgbPolarSplineSeries()","IgbPolarSplineSeries":"IgbPolarSplineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Stiffness":"Stiffness","Type":"Type"}}],"IgbPolarSplineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPolarSplineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPolarSplineSeriesModule()":"IgbPolarSplineSeriesModule()","IgbPolarSplineSeriesModule":"IgbPolarSplineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPopup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPopup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPopup()":"IgbPopup()","IgbPopup":"IgbPopup()","ActualAmbientShadowColor":"ActualAmbientShadowColor","ActualElevation":"ActualElevation","ActualPenumbraShadowColor":"ActualPenumbraShadowColor","ActualUmbraShadowColor":"ActualUmbraShadowColor","AnimationDuration":"AnimationDuration","AnimationEnabled":"AnimationEnabled","AnimationType":"AnimationType","Background":"Background","Close()":"Close()","Close":"Close()","CloseAsync()":"CloseAsync()","CloseAsync":"CloseAsync()","CornerRadius":"CornerRadius","DefaultEventBehavior":"DefaultEventBehavior","DisableHitTestDuringAnimation":"DisableHitTestDuringAnimation","Elevation":"Elevation","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsClosing":"IsClosing","IsFixed":"IsFixed","IsFocusable":"IsFocusable","IsHitTestVisible":"IsHitTestVisible","IsPointerEnabled":"IsPointerEnabled","IsShowing":"IsShowing","MeasuringContentSize":"MeasuringContentSize","MeasuringContentSizeScript":"MeasuringContentSizeScript","OnClosed":"OnClosed","OnClosedScript":"OnClosedScript","OnPopup":"OnPopup","OnPopupScript":"OnPopupScript","PointerBackground":"PointerBackground","PointerPosition":"PointerPosition","PointerSize":"PointerSize","ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)":"ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)","ShowRelativeToExclusionRect":"ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)","ShowRelativeToExclusionRectAsync(Rect, PopupDirection, PopupAlignment)":"ShowRelativeToExclusionRectAsync(Rect, PopupDirection, PopupAlignment)","ShowRelativeToExclusionRectAsync":"ShowRelativeToExclusionRectAsync(Rect, PopupDirection, PopupAlignment)","Type":"Type","UseTopLayer":"UseTopLayer"}}],"IgbPopupMeasuringContentSizeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPopupMeasuringContentSizeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPopupMeasuringContentSizeEventArgs()":"IgbPopupMeasuringContentSizeEventArgs()","IgbPopupMeasuringContentSizeEventArgs":"IgbPopupMeasuringContentSizeEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPopupModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPopupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPopupModule()":"IgbPopupModule()","IgbPopupModule":"IgbPopupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPositionSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPositionSettings","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPositionSettings()":"IgbPositionSettings()","IgbPositionSettings":"IgbPositionSettings()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalDirection":"HorizontalDirection","HorizontalStartPoint":"HorizontalStartPoint","MinSize":"MinSize","Offset":"Offset","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","VerticalDirection":"VerticalDirection","VerticalStartPoint":"VerticalStartPoint"}}],"IgbPositionStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPositionStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPositionStrategy()":"IgbPositionStrategy()","IgbPositionStrategy":"IgbPositionStrategy()","Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Settings":"Settings","Type":"Type"}}],"IgbPositiveVolumeIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPositiveVolumeIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPositiveVolumeIndexIndicator()":"IgbPositiveVolumeIndexIndicator()","IgbPositiveVolumeIndexIndicator":"IgbPositiveVolumeIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPositiveVolumeIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPositiveVolumeIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPositiveVolumeIndexIndicatorModule()":"IgbPositiveVolumeIndexIndicatorModule()","IgbPositiveVolumeIndexIndicatorModule":"IgbPositiveVolumeIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPriceChannelOverlay":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPriceChannelOverlay","k":"class","s":"classes","m":{"ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","IgnoreFirst":"IgnoreFirst","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPriceChannelOverlay()":"IgbPriceChannelOverlay()","IgbPriceChannelOverlay":"IgbPriceChannelOverlay()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","Period":"Period","Type":"Type"}}],"IgbPriceChannelOverlayModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPriceChannelOverlayModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPriceChannelOverlayModule()":"IgbPriceChannelOverlayModule()","IgbPriceChannelOverlayModule":"IgbPriceChannelOverlayModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPriceVolumeTrendIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPriceVolumeTrendIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPriceVolumeTrendIndicator()":"IgbPriceVolumeTrendIndicator()","IgbPriceVolumeTrendIndicator":"IgbPriceVolumeTrendIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPriceVolumeTrendIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPriceVolumeTrendIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPriceVolumeTrendIndicatorModule()":"IgbPriceVolumeTrendIndicatorModule()","IgbPriceVolumeTrendIndicatorModule":"IgbPriceVolumeTrendIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPrimaryKeyValue":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPrimaryKeyValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPrimaryKeyValue()":"IgbPrimaryKeyValue()","IgbPrimaryKeyValue":"IgbPrimaryKeyValue()","IgbPrimaryKeyValue(string[], object[])":"IgbPrimaryKeyValue(string[], object[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Key":"Key","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbPrimaryKeyValueModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPrimaryKeyValueModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPrimaryKeyValueModule()":"IgbPrimaryKeyValueModule()","IgbPrimaryKeyValueModule":"IgbPrimaryKeyValueModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbProgressBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbProgressBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProgressBase()":"IgbProgressBase()","IgbProgressBase":"IgbProgressBase()","AnimationDuration":"AnimationDuration","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideLabel":"HideLabel","Indeterminate":"Indeterminate","LabelFormat":"LabelFormat","Max":"Max","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","Variant":"Variant"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbProgressBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProgressBase()":"IgbProgressBase()","IgbProgressBase":"IgbProgressBase()","AnimationDuration":"AnimationDuration","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideLabel":"HideLabel","Indeterminate":"Indeterminate","LabelFormat":"LabelFormat","Max":"Max","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","Variant":"Variant"}}],"IgbProgressBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbProgressBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProgressBaseModule()":"IgbProgressBaseModule()","IgbProgressBaseModule":"IgbProgressBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbProgressBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProgressBaseModule()":"IgbProgressBaseModule()","IgbProgressBaseModule":"IgbProgressBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbProgressiveLoadStatusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbProgressiveLoadStatusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProgressiveLoadStatusEventArgs()":"IgbProgressiveLoadStatusEventArgs()","IgbProgressiveLoadStatusEventArgs":"IgbProgressiveLoadStatusEventArgs()","CurrentStatus":"CurrentStatus","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPropertyEditor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditor","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditor()":"IgbPropertyEditor()","IgbPropertyEditor":"IgbPropertyEditor()","ActualDataSource":"ActualDataSource","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","ComponentRenderer":"ComponentRenderer","ComponentRendererScript":"ComponentRendererScript","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DescriptionContext":"DescriptionContext","DescriptionContextScript":"DescriptionContextScript","DescriptionType":"DescriptionType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FilterPlaceholderText":"FilterPlaceholderText","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetDesiredSize()":"GetDesiredSize()","GetDesiredSize":"GetDesiredSize()","GetDesiredSizeAsync()":"GetDesiredSizeAsync()","GetDesiredSizeAsync":"GetDesiredSizeAsync()","IsHorizontal":"IsHorizontal","IsIndirectModeEnabled":"IsIndirectModeEnabled","IsWrappingEnabled":"IsWrappingEnabled","NotifyClearItems()":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","Properties":"Properties","RowHeight":"RowHeight","SearchInputType":"SearchInputType","Target":"Target","TargetScript":"TargetScript","TextColor":"TextColor","Type":"Type"}}],"IgbPropertyEditorDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorDataSource","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorDataSource()":"IgbPropertyEditorDataSource()","IgbPropertyEditorDataSource":"IgbPropertyEditorDataSource()","Context":"Context","ContextScript":"ContextScript","DescriptionType":"DescriptionType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbPropertyEditorDescriptionObject":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorDescriptionObject","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorDescriptionObject()":"IgbPropertyEditorDescriptionObject()","IgbPropertyEditorDescriptionObject":"IgbPropertyEditorDescriptionObject()","DescriptionType":"DescriptionType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Properties":"Properties","Type":"Type"}}],"IgbPropertyEditorDescriptionObjectCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorDescriptionObjectCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbPropertyEditorDescriptionObject)":"InsertItem(int, IgbPropertyEditorDescriptionObject)","InsertItem":"InsertItem(int, IgbPropertyEditorDescriptionObject)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbPropertyEditorDescriptionObject)":"SetItem(int, IgbPropertyEditorDescriptionObject)","SetItem":"SetItem(int, IgbPropertyEditorDescriptionObject)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbPropertyEditorDescriptionObject)":"Add(IgbPropertyEditorDescriptionObject)","Add":"Add(IgbPropertyEditorDescriptionObject)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbPropertyEditorDescriptionObject[], int)":"CopyTo(IgbPropertyEditorDescriptionObject[], int)","CopyTo":"CopyTo(IgbPropertyEditorDescriptionObject[], int)","Contains(IgbPropertyEditorDescriptionObject)":"Contains(IgbPropertyEditorDescriptionObject)","Contains":"Contains(IgbPropertyEditorDescriptionObject)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbPropertyEditorDescriptionObject)":"IndexOf(IgbPropertyEditorDescriptionObject)","IndexOf":"IndexOf(IgbPropertyEditorDescriptionObject)","Insert(int, IgbPropertyEditorDescriptionObject)":"Insert(int, IgbPropertyEditorDescriptionObject)","Insert":"Insert(int, IgbPropertyEditorDescriptionObject)","Remove(IgbPropertyEditorDescriptionObject)":"Remove(IgbPropertyEditorDescriptionObject)","Remove":"Remove(IgbPropertyEditorDescriptionObject)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorDescriptionObjectCollection(object, string)":"IgbPropertyEditorDescriptionObjectCollection(object, string)","IgbPropertyEditorDescriptionObjectCollection":"IgbPropertyEditorDescriptionObjectCollection(object, string)"}}],"IgbPropertyEditorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorModule()":"IgbPropertyEditorModule()","IgbPropertyEditorModule":"IgbPropertyEditorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPropertyEditorPanel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPanel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPanel()":"IgbPropertyEditorPanel()","IgbPropertyEditorPanel":"IgbPropertyEditorPanel()","ActualDataSource":"ActualDataSource","ActualProperties":"ActualProperties","ActualRowHeight":"ActualRowHeight","BackgroundColor":"BackgroundColor","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","ComponentRenderer":"ComponentRenderer","ComponentRendererScript":"ComponentRendererScript","ContentProperties":"ContentProperties","DefaultEventBehavior":"DefaultEventBehavior","DescriptionContext":"DescriptionContext","DescriptionContextScript":"DescriptionContextScript","DescriptionType":"DescriptionType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsHorizontal":"IsHorizontal","IsIndirectModeEnabled":"IsIndirectModeEnabled","IsWrappingEnabled":"IsWrappingEnabled","NotifyClearItems()":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","ParentTypeName":"ParentTypeName","Properties":"Properties","RowHeight":"RowHeight","Target":"Target","TargetScript":"TargetScript","TextColor":"TextColor","Type":"Type","UpdateMode":"UpdateMode"}}],"IgbPropertyEditorPanelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPanelModule()":"IgbPropertyEditorPanelModule()","IgbPropertyEditorPanelModule":"IgbPropertyEditorPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPropertyEditorPropertyDescription":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescription","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescription()":"IgbPropertyEditorPropertyDescription()","IgbPropertyEditorPropertyDescription":"IgbPropertyEditorPropertyDescription()","ButtonClicked":"ButtonClicked","ButtonClickedScript":"ButtonClickedScript","Changed":"Changed","ChangedScript":"ChangedScript","CoercedComplexValue":"CoercedComplexValue","CoercedComplexValues":"CoercedComplexValues","CoercedPrimitiveValue":"CoercedPrimitiveValue","CoercedValueType":"CoercedValueType","CoercingValue":"CoercingValue","CoercingValueScript":"CoercingValueScript","ComplexValue":"ComplexValue","ComplexValues":"ComplexValues","Dispose()":"Dispose()","Dispose":"Dispose()","DropDownNames":"DropDownNames","DropDownValues":"DropDownValues","EditorWidth":"EditorWidth","ElementDescriptionType":"ElementDescriptionType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentPrimitiveValue()":"GetCurrentPrimitiveValue()","GetCurrentPrimitiveValue":"GetCurrentPrimitiveValue()","GetCurrentPrimitiveValueAsync()":"GetCurrentPrimitiveValueAsync()","GetCurrentPrimitiveValueAsync":"GetCurrentPrimitiveValueAsync()","Label":"Label","LabelWidth":"LabelWidth","Max":"Max","Min":"Min","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","PrimitiveValue":"PrimitiveValue","Properties":"Properties","PropertyDescriptionType":"PropertyDescriptionType","PropertyEditorPanelParent":"PropertyEditorPanelParent","PropertyPath":"PropertyPath","ShouldOverrideDefaultEditor":"ShouldOverrideDefaultEditor","Step":"Step","Subtitle":"Subtitle","TargetPropertyUpdating":"TargetPropertyUpdating","TargetPropertyUpdatingScript":"TargetPropertyUpdatingScript","Type":"Type","UseCoercedValue":"UseCoercedValue","ValueType":"ValueType"}}],"IgbPropertyEditorPropertyDescriptionButtonClickEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescriptionButtonClickEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescriptionButtonClickEventArgs()":"IgbPropertyEditorPropertyDescriptionButtonClickEventArgs()","IgbPropertyEditorPropertyDescriptionButtonClickEventArgs":"IgbPropertyEditorPropertyDescriptionButtonClickEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPropertyEditorPropertyDescriptionChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescriptionChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescriptionChangedEventArgs()":"IgbPropertyEditorPropertyDescriptionChangedEventArgs()","IgbPropertyEditorPropertyDescriptionChangedEventArgs":"IgbPropertyEditorPropertyDescriptionChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPropertyEditorPropertyDescriptionCoercingValueEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescriptionCoercingValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescriptionCoercingValueEventArgs()":"IgbPropertyEditorPropertyDescriptionCoercingValueEventArgs()","IgbPropertyEditorPropertyDescriptionCoercingValueEventArgs":"IgbPropertyEditorPropertyDescriptionCoercingValueEventArgs()","ComplexValue":"ComplexValue","ComplexValues":"ComplexValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbPropertyEditorPropertyDescriptionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescriptionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbPropertyEditorPropertyDescription)":"InsertItem(int, IgbPropertyEditorPropertyDescription)","InsertItem":"InsertItem(int, IgbPropertyEditorPropertyDescription)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbPropertyEditorPropertyDescription)":"SetItem(int, IgbPropertyEditorPropertyDescription)","SetItem":"SetItem(int, IgbPropertyEditorPropertyDescription)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbPropertyEditorPropertyDescription)":"Add(IgbPropertyEditorPropertyDescription)","Add":"Add(IgbPropertyEditorPropertyDescription)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbPropertyEditorPropertyDescription[], int)":"CopyTo(IgbPropertyEditorPropertyDescription[], int)","CopyTo":"CopyTo(IgbPropertyEditorPropertyDescription[], int)","Contains(IgbPropertyEditorPropertyDescription)":"Contains(IgbPropertyEditorPropertyDescription)","Contains":"Contains(IgbPropertyEditorPropertyDescription)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbPropertyEditorPropertyDescription)":"IndexOf(IgbPropertyEditorPropertyDescription)","IndexOf":"IndexOf(IgbPropertyEditorPropertyDescription)","Insert(int, IgbPropertyEditorPropertyDescription)":"Insert(int, IgbPropertyEditorPropertyDescription)","Insert":"Insert(int, IgbPropertyEditorPropertyDescription)","Remove(IgbPropertyEditorPropertyDescription)":"Remove(IgbPropertyEditorPropertyDescription)","Remove":"Remove(IgbPropertyEditorPropertyDescription)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescriptionCollection(object, string)":"IgbPropertyEditorPropertyDescriptionCollection(object, string)","IgbPropertyEditorPropertyDescriptionCollection":"IgbPropertyEditorPropertyDescriptionCollection(object, string)"}}],"IgbPropertyEditorPropertyDescriptionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescriptionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescriptionModule()":"IgbPropertyEditorPropertyDescriptionModule()","IgbPropertyEditorPropertyDescriptionModule":"IgbPropertyEditorPropertyDescriptionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()":"IgbPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()","IgbPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs":"IgbPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PropertyPath":"PropertyPath","Target":"Target","TargetScript":"TargetScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbPropertyReferenceFilterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyReferenceFilterExpression","k":"class","s":"classes","m":{"Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","IsWrapper":"IsWrapper","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyReferenceFilterExpression()":"IgbPropertyReferenceFilterExpression()","IgbPropertyReferenceFilterExpression":"IgbPropertyReferenceFilterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsPropertyReference":"IsPropertyReference","Precedence":"Precedence","PropertyReference":"PropertyReference","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbPropertyUpdatedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbPropertyUpdatedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbPropertyUpdatedEventArgs()":"IgbPropertyUpdatedEventArgs()","IgbPropertyUpdatedEventArgs":"IgbPropertyUpdatedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","NewValueScript":"NewValueScript","OldValue":"OldValue","OldValueScript":"OldValueScript","PropertyName":"PropertyName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbProportionalCategoryAngleAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbProportionalCategoryAngleAxis","k":"class","s":"classes","m":{"GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisStartAngleOffset":"CompanionAxisStartAngleOffset","CompanionAxisLabelMode":"CompanionAxisLabelMode","StartAngleOffset":"StartAngleOffset","LabelMode":"LabelMode","Interval":"Interval","ActualInterval":"ActualInterval","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProportionalCategoryAngleAxis()":"IgbProportionalCategoryAngleAxis()","IgbProportionalCategoryAngleAxis":"IgbProportionalCategoryAngleAxis()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetNormalizingValueAtIndex(int, double)":"GetNormalizingValueAtIndex(int, double)","GetNormalizingValueAtIndex":"GetNormalizingValueAtIndex(int, double)","GetNormalizingValueAtIndexAsync(int, double)":"GetNormalizingValueAtIndexAsync(int, double)","GetNormalizingValueAtIndexAsync":"GetNormalizingValueAtIndexAsync(int, double)","GetPercentageValue(int)":"GetPercentageValue(int)","GetPercentageValue":"GetPercentageValue(int)","GetPercentageValueAsync(int)":"GetPercentageValueAsync(int)","GetPercentageValueAsync":"GetPercentageValueAsync(int)","GetScaledAngle(double)":"GetScaledAngle(double)","GetScaledAngle":"GetScaledAngle(double)","GetScaledAngleAsync(double)":"GetScaledAngleAsync(double)","GetScaledAngleAsync":"GetScaledAngleAsync(double)","GetUnscaledAngle(double)":"GetUnscaledAngle(double)","GetUnscaledAngle":"GetUnscaledAngle(double)","GetUnscaledAngleAsync(double)":"GetUnscaledAngleAsync(double)","GetUnscaledAngleAsync":"GetUnscaledAngleAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","IsOthersValue(int)":"IsOthersValue(int)","IsOthersValue":"IsOthersValue(int)","IsOthersValueAsync(int)":"IsOthersValueAsync(int)","IsOthersValueAsync":"IsOthersValueAsync(int)","OthersCategoryText":"OthersCategoryText","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","Type":"Type","ValueMemberPath":"ValueMemberPath"}}],"IgbProportionalCategoryAngleAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbProportionalCategoryAngleAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProportionalCategoryAngleAxisModule()":"IgbProportionalCategoryAngleAxisModule()","IgbProportionalCategoryAngleAxisModule":"IgbProportionalCategoryAngleAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbProvideCalculatorEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbProvideCalculatorEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbProvideCalculatorEventArgs()":"IgbProvideCalculatorEventArgs()","IgbProvideCalculatorEventArgs":"IgbProvideCalculatorEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbQ1Expression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQ1Expression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQ1Expression()":"IgbQ1Expression()","IgbQ1Expression":"IgbQ1Expression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbQ2Expression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQ2Expression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQ2Expression()":"IgbQ2Expression()","IgbQ2Expression":"IgbQ2Expression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbQ3Expression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQ3Expression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQ3Expression()":"IgbQ3Expression()","IgbQ3Expression":"IgbQ3Expression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbQ4Expression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQ4Expression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQ4Expression()":"IgbQ4Expression()","IgbQ4Expression":"IgbQ4Expression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbQuarterToDateExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQuarterToDateExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQuarterToDateExpression()":"IgbQuarterToDateExpression()","IgbQuarterToDateExpression":"IgbQuarterToDateExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbQueryBuilder":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQueryBuilder","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQueryBuilder()":"IgbQueryBuilder()","IgbQueryBuilder":"IgbQueryBuilder()","ActualQueryBuilderHeaderCollection":"ActualQueryBuilderHeaderCollection","CanCommit()":"CanCommit()","CanCommit":"CanCommit()","CanCommitAsync()":"CanCommitAsync()","CanCommitAsync":"CanCommitAsync()","Commit()":"Commit()","Commit":"Commit()","CommitAsync()":"CommitAsync()","CommitAsync":"CommitAsync()","ContentQueryBuilderHeaderCollection":"ContentQueryBuilderHeaderCollection","DefaultEventBehavior":"DefaultEventBehavior","DisableEntityChange":"DisableEntityChange","DisableReturnFieldsChange":"DisableReturnFieldsChange","Discard()":"Discard()","Discard":"Discard()","DiscardAsync()":"DiscardAsync()","DiscardAsync":"DiscardAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Entities":"Entities","ExpressionTree":"ExpressionTree","ExpressionTreeChange":"ExpressionTreeChange","ExpressionTreeChangeScript":"ExpressionTreeChangeScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Locale":"Locale","ParentTypeName":"ParentTypeName","QueryBuilderHeaderCollection":"QueryBuilderHeaderCollection","SearchValueTemplate":"SearchValueTemplate","SearchValueTemplateScript":"SearchValueTemplateScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowEntityChangeDialog":"ShowEntityChangeDialog","Type":"Type"}}],"IgbQueryBuilderHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQueryBuilderHeader","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQueryBuilderHeader()":"IgbQueryBuilderHeader()","IgbQueryBuilderHeader":"IgbQueryBuilderHeader()","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","QueryBuilderParent":"QueryBuilderParent","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShowLegend":"ShowLegend","SupportsVisualChildren":"SupportsVisualChildren","Title":"Title","Type":"Type"}}],"IgbQueryBuilderHeaderCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQueryBuilderHeaderCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbQueryBuilderHeader)":"InsertItem(int, IgbQueryBuilderHeader)","InsertItem":"InsertItem(int, IgbQueryBuilderHeader)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbQueryBuilderHeader)":"SetItem(int, IgbQueryBuilderHeader)","SetItem":"SetItem(int, IgbQueryBuilderHeader)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbQueryBuilderHeader)":"Add(IgbQueryBuilderHeader)","Add":"Add(IgbQueryBuilderHeader)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbQueryBuilderHeader[], int)":"CopyTo(IgbQueryBuilderHeader[], int)","CopyTo":"CopyTo(IgbQueryBuilderHeader[], int)","Contains(IgbQueryBuilderHeader)":"Contains(IgbQueryBuilderHeader)","Contains":"Contains(IgbQueryBuilderHeader)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbQueryBuilderHeader)":"IndexOf(IgbQueryBuilderHeader)","IndexOf":"IndexOf(IgbQueryBuilderHeader)","Insert(int, IgbQueryBuilderHeader)":"Insert(int, IgbQueryBuilderHeader)","Insert":"Insert(int, IgbQueryBuilderHeader)","Remove(IgbQueryBuilderHeader)":"Remove(IgbQueryBuilderHeader)","Remove":"Remove(IgbQueryBuilderHeader)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQueryBuilderHeaderCollection(object, string)":"IgbQueryBuilderHeaderCollection(object, string)","IgbQueryBuilderHeaderCollection":"IgbQueryBuilderHeaderCollection(object, string)"}}],"IgbQueryBuilderHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQueryBuilderHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQueryBuilderHeaderModule()":"IgbQueryBuilderHeaderModule()","IgbQueryBuilderHeaderModule":"IgbQueryBuilderHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbQueryBuilderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQueryBuilderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQueryBuilderModule()":"IgbQueryBuilderModule()","IgbQueryBuilderModule":"IgbQueryBuilderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbQueryBuilderSearchValueContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbQueryBuilderSearchValueContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbQueryBuilderSearchValueContext()":"IgbQueryBuilderSearchValueContext()","IgbQueryBuilderSearchValueContext":"IgbQueryBuilderSearchValueContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SelectedCondition":"SelectedCondition","SelectedField":"SelectedField","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRadialAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialAreaSeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","UseCategoryNormalizedValues":"UseCategoryNormalizedValues","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","CanUseAsValueAxisAsync(object)":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxisAsync":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxis(object)":"CanUseAsValueAxis(object)","CanUseAsValueAxis":"CanUseAsValueAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetAngleFromWorldAsync(Point)":"GetAngleFromWorldAsync(Point)","GetAngleFromWorldAsync":"GetAngleFromWorldAsync(Point)","GetAngleFromWorld(Point)":"GetAngleFromWorld(Point)","GetAngleFromWorld":"GetAngleFromWorld(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutPercentagePrecision":"AutoCalloutPercentagePrecision","AutoCalloutLabelValueSeparator":"AutoCalloutLabelValueSeparator","LegendRadialLabelMode":"LegendRadialLabelMode","CategoryCollisionMode":"CategoryCollisionMode","AutoCalloutRadialLabelMode":"AutoCalloutRadialLabelMode","AutoCalloutOthersLabelFormat":"AutoCalloutOthersLabelFormat","AutoCalloutOthersLabelFormatSpecifiers":"AutoCalloutOthersLabelFormatSpecifiers","ProportionalRadialLabelFormat":"ProportionalRadialLabelFormat","ProportionalRadialLabelFormatSpecifiers":"ProportionalRadialLabelFormatSpecifiers","LegendProportionalRadialLabelFormat":"LegendProportionalRadialLabelFormat","LegendProportionalRadialLabelFormatSpecifiers":"LegendProportionalRadialLabelFormatSpecifiers","OthersProportionalRadialLabelFormat":"OthersProportionalRadialLabelFormat","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersProportionalRadialLabelFormatSpecifiers":"OthersProportionalRadialLabelFormatSpecifiers","OthersLegendProportionalRadialLabelFormat":"OthersLegendProportionalRadialLabelFormat","OthersLegendProportionalRadialLabelFormatSpecifiers":"OthersLegendProportionalRadialLabelFormatSpecifiers","IsCustomRadialStyleAllowed":"IsCustomRadialStyleAllowed","IsCustomRadialMarkerStyleAllowed":"IsCustomRadialMarkerStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","ValueAxis":"ValueAxis","ValueAxisScript":"ValueAxisScript","ValueAxisName":"ValueAxisName","ClipSeriesToBounds":"ClipSeriesToBounds","AssigningRadialStyleScript":"AssigningRadialStyleScript","AssigningRadialStyle":"AssigningRadialStyle","AssigningRadialMarkerStyleScript":"AssigningRadialMarkerStyleScript","AssigningRadialMarkerStyle":"AssigningRadialMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialAreaSeries()":"IgbRadialAreaSeries()","IgbRadialAreaSeries":"IgbRadialAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbRadialAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialAreaSeriesModule()":"IgbRadialAreaSeriesModule()","IgbRadialAreaSeriesModule":"IgbRadialAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialBase","k":"class","s":"classes","m":{"MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialBase()":"IgbRadialBase()","IgbRadialBase":"IgbRadialBase()","AngleAxis":"AngleAxis","AngleAxisName":"AngleAxisName","AngleAxisScript":"AngleAxisScript","AssigningRadialMarkerStyle":"AssigningRadialMarkerStyle","AssigningRadialMarkerStyleScript":"AssigningRadialMarkerStyleScript","AssigningRadialStyle":"AssigningRadialStyle","AssigningRadialStyleScript":"AssigningRadialStyleScript","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutLabelValueSeparator":"AutoCalloutLabelValueSeparator","AutoCalloutOthersLabelFormat":"AutoCalloutOthersLabelFormat","AutoCalloutOthersLabelFormatSpecifiers":"AutoCalloutOthersLabelFormatSpecifiers","AutoCalloutPercentagePrecision":"AutoCalloutPercentagePrecision","AutoCalloutRadialLabelMode":"AutoCalloutRadialLabelMode","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsValueAxis(object)":"CanUseAsValueAxis(object)","CanUseAsValueAxis":"CanUseAsValueAxis(object)","CanUseAsValueAxisAsync(object)":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxisAsync":"CanUseAsValueAxisAsync(object)","CategoryCollisionMode":"CategoryCollisionMode","ClipSeriesToBounds":"ClipSeriesToBounds","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetAngleFromWorld(Point)":"GetAngleFromWorld(Point)","GetAngleFromWorld":"GetAngleFromWorld(Point)","GetAngleFromWorldAsync(Point)":"GetAngleFromWorldAsync(Point)","GetAngleFromWorldAsync":"GetAngleFromWorldAsync(Point)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","IsCustomRadialMarkerStyleAllowed":"IsCustomRadialMarkerStyleAllowed","IsCustomRadialStyleAllowed":"IsCustomRadialStyleAllowed","IsTransitionInEnabled":"IsTransitionInEnabled","LegendProportionalRadialLabelFormat":"LegendProportionalRadialLabelFormat","LegendProportionalRadialLabelFormatSpecifiers":"LegendProportionalRadialLabelFormatSpecifiers","LegendRadialLabelMode":"LegendRadialLabelMode","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersLegendProportionalRadialLabelFormat":"OthersLegendProportionalRadialLabelFormat","OthersLegendProportionalRadialLabelFormatSpecifiers":"OthersLegendProportionalRadialLabelFormatSpecifiers","OthersProportionalRadialLabelFormat":"OthersProportionalRadialLabelFormat","OthersProportionalRadialLabelFormatSpecifiers":"OthersProportionalRadialLabelFormatSpecifiers","ProportionalRadialLabelFormat":"ProportionalRadialLabelFormat","ProportionalRadialLabelFormatSpecifiers":"ProportionalRadialLabelFormatSpecifiers","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","TransitionInMode":"TransitionInMode","Type":"Type","ValueAxis":"ValueAxis","ValueAxisName":"ValueAxisName","ValueAxisScript":"ValueAxisScript"}}],"IgbRadialBaseChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialBaseChart","k":"class","s":"classes","m":{"SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","DefaultEventBehavior":"DefaultEventBehavior","PixelScalingRatio":"PixelScalingRatio","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleTextColor":"SubtitleTextColor","TitleTextColor":"TitleTextColor","LeftMargin":"LeftMargin","TopMargin":"TopMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","HighlightingTransitionDuration":"HighlightingTransitionDuration","SelectionTransitionDuration":"SelectionTransitionDuration","FocusTransitionDuration":"FocusTransitionDuration","SubtitleTextStyle":"SubtitleTextStyle","TitleTextStyle":"TitleTextStyle","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","SortDescriptions":"SortDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupDescriptions":"GroupDescriptions","FilterExpressions":"FilterExpressions","HighlightFilterExpressions":"HighlightFilterExpressions","SummaryDescriptions":"SummaryDescriptions","SelectionMode":"SelectionMode","FocusMode":"FocusMode","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","SelectionBehavior":"SelectionBehavior","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","InitialSortDescriptions":"InitialSortDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialFilterExpressions":"InitialFilterExpressions","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSummaryDescriptions":"InitialSummaryDescriptions","InitialSorts":"InitialSorts","GroupSorts":"GroupSorts","InitialGroups":"InitialGroups","InitialFilter":"InitialFilter","InitialHighlightFilter":"InitialHighlightFilter","InitialSummaries":"InitialSummaries","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","IncludedProperties":"IncludedProperties","ExcludedProperties":"ExcludedProperties","Brushes":"Brushes","Outlines":"Outlines","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","Legend":"Legend","LegendScript":"LegendScript","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","LegendItemVisibility":"LegendItemVisibility","WindowRect":"WindowRect","ChartTitle":"ChartTitle","Subtitle":"Subtitle","TitleAlignment":"TitleAlignment","SubtitleAlignment":"SubtitleAlignment","UnknownValuePlotting":"UnknownValuePlotting","Resolution":"Resolution","Thickness":"Thickness","OutlineMode":"OutlineMode","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerMaxCount":"MarkerMaxCount","AreaFillOpacity":"AreaFillOpacity","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineThickness":"TrendLineThickness","TrendLineTypes":"TrendLineTypes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginBottom":"PlotAreaMarginBottom","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","HighlightingMode":"HighlightingMode","HighlightingBehavior":"HighlightingBehavior","HighlightingFadeOpacity":"HighlightingFadeOpacity","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","TrendLinePeriod":"TrendLinePeriod","ToolTipType":"ToolTipType","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsSnapToData":"CrosshairsSnapToData","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","AutoCalloutsVisible":"AutoCalloutsVisible","CalloutsVisible":"CalloutsVisible","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","CalloutCollisionMode":"CalloutCollisionMode","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsBackground":"CalloutsBackground","CalloutsOutline":"CalloutsOutline","CalloutsTextColor":"CalloutsTextColor","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","SeriesAddedScript":"SeriesAddedScript","SeriesAdded":"SeriesAdded","SeriesRemovedScript":"SeriesRemovedScript","SeriesRemoved":"SeriesRemoved","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerDown":"SeriesPointerDown","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesPointerUp":"SeriesPointerUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","PlotAreaPointerUp":"PlotAreaPointerUp","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLabelUpdating":"CalloutLabelUpdating","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialBaseChart()":"IgbRadialBaseChart()","IgbRadialBaseChart":"IgbRadialBaseChart()","ActualAngleAxisLabelTextColor":"ActualAngleAxisLabelTextColor","ActualValueAxisLabelTextColor":"ActualValueAxisLabelTextColor","AngleAxisExtent":"AngleAxisExtent","AngleAxisFormatLabel":"AngleAxisFormatLabel","AngleAxisFormatLabelScript":"AngleAxisFormatLabelScript","AngleAxisInverted":"AngleAxisInverted","AngleAxisLabel":"AngleAxisLabel","AngleAxisLabelAngle":"AngleAxisLabelAngle","AngleAxisLabelBottomMargin":"AngleAxisLabelBottomMargin","AngleAxisLabelFormat":"AngleAxisLabelFormat","AngleAxisLabelFormatSpecifiers":"AngleAxisLabelFormatSpecifiers","AngleAxisLabelHorizontalAlignment":"AngleAxisLabelHorizontalAlignment","AngleAxisLabelLeftMargin":"AngleAxisLabelLeftMargin","AngleAxisLabelLocation":"AngleAxisLabelLocation","AngleAxisLabelRightMargin":"AngleAxisLabelRightMargin","AngleAxisLabelScript":"AngleAxisLabelScript","AngleAxisLabelTextColor":"AngleAxisLabelTextColor","AngleAxisLabelTextStyle":"AngleAxisLabelTextStyle","AngleAxisLabelTopMargin":"AngleAxisLabelTopMargin","AngleAxisLabelVerticalAlignment":"AngleAxisLabelVerticalAlignment","AngleAxisLabelVisibility":"AngleAxisLabelVisibility","AngleAxisMajorStroke":"AngleAxisMajorStroke","AngleAxisMajorStrokeThickness":"AngleAxisMajorStrokeThickness","AngleAxisMaximumExtent":"AngleAxisMaximumExtent","AngleAxisMaximumExtentPercentage":"AngleAxisMaximumExtentPercentage","AngleAxisMinorStroke":"AngleAxisMinorStroke","AngleAxisMinorStrokeThickness":"AngleAxisMinorStrokeThickness","AngleAxisStrip":"AngleAxisStrip","AngleAxisStroke":"AngleAxisStroke","AngleAxisStrokeThickness":"AngleAxisStrokeThickness","AngleAxisTickLength":"AngleAxisTickLength","AngleAxisTickStroke":"AngleAxisTickStroke","AngleAxisTickStrokeThickness":"AngleAxisTickStrokeThickness","AngleAxisTitle":"AngleAxisTitle","AngleAxisTitleAlignment":"AngleAxisTitleAlignment","AngleAxisTitleAngle":"AngleAxisTitleAngle","AngleAxisTitleBottomMargin":"AngleAxisTitleBottomMargin","AngleAxisTitleLeftMargin":"AngleAxisTitleLeftMargin","AngleAxisTitleMargin":"AngleAxisTitleMargin","AngleAxisTitleRightMargin":"AngleAxisTitleRightMargin","AngleAxisTitleTextColor":"AngleAxisTitleTextColor","AngleAxisTitleTextStyle":"AngleAxisTitleTextStyle","AngleAxisTitleTopMargin":"AngleAxisTitleTopMargin","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetScaledAngle(double)":"GetScaledAngle(double)","GetScaledAngle":"GetScaledAngle(double)","GetScaledAngleAsync(double)":"GetScaledAngleAsync(double)","GetScaledAngleAsync":"GetScaledAngleAsync(double)","GetScaledValue(double)":"GetScaledValue(double)","GetScaledValue":"GetScaledValue(double)","GetScaledValueAsync(double)":"GetScaledValueAsync(double)","GetScaledValueAsync":"GetScaledValueAsync(double)","GetUnscaledAngle(double)":"GetUnscaledAngle(double)","GetUnscaledAngle":"GetUnscaledAngle(double)","GetUnscaledAngleAsync(double)":"GetUnscaledAngleAsync(double)","GetUnscaledAngleAsync":"GetUnscaledAngleAsync(double)","GetUnscaledValue(double)":"GetUnscaledValue(double)","GetUnscaledValue":"GetUnscaledValue(double)","GetUnscaledValueAsync(double)":"GetUnscaledValueAsync(double)","GetUnscaledValueAsync":"GetUnscaledValueAsync(double)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","Type":"Type","ValueAxisExtent":"ValueAxisExtent","ValueAxisFormatLabel":"ValueAxisFormatLabel","ValueAxisFormatLabelScript":"ValueAxisFormatLabelScript","ValueAxisInverted":"ValueAxisInverted","ValueAxisLabel":"ValueAxisLabel","ValueAxisLabelAngle":"ValueAxisLabelAngle","ValueAxisLabelBottomMargin":"ValueAxisLabelBottomMargin","ValueAxisLabelFormat":"ValueAxisLabelFormat","ValueAxisLabelFormatSpecifiers":"ValueAxisLabelFormatSpecifiers","ValueAxisLabelHorizontalAlignment":"ValueAxisLabelHorizontalAlignment","ValueAxisLabelLeftMargin":"ValueAxisLabelLeftMargin","ValueAxisLabelLocation":"ValueAxisLabelLocation","ValueAxisLabelRightMargin":"ValueAxisLabelRightMargin","ValueAxisLabelScript":"ValueAxisLabelScript","ValueAxisLabelTextColor":"ValueAxisLabelTextColor","ValueAxisLabelTextStyle":"ValueAxisLabelTextStyle","ValueAxisLabelTopMargin":"ValueAxisLabelTopMargin","ValueAxisLabelVerticalAlignment":"ValueAxisLabelVerticalAlignment","ValueAxisLabelVisibility":"ValueAxisLabelVisibility","ValueAxisMajorStroke":"ValueAxisMajorStroke","ValueAxisMajorStrokeThickness":"ValueAxisMajorStrokeThickness","ValueAxisMaximumExtent":"ValueAxisMaximumExtent","ValueAxisMaximumExtentPercentage":"ValueAxisMaximumExtentPercentage","ValueAxisMinorStroke":"ValueAxisMinorStroke","ValueAxisMinorStrokeThickness":"ValueAxisMinorStrokeThickness","ValueAxisStrip":"ValueAxisStrip","ValueAxisStroke":"ValueAxisStroke","ValueAxisStrokeThickness":"ValueAxisStrokeThickness","ValueAxisTickLength":"ValueAxisTickLength","ValueAxisTickStroke":"ValueAxisTickStroke","ValueAxisTickStrokeThickness":"ValueAxisTickStrokeThickness","ValueAxisTitle":"ValueAxisTitle","ValueAxisTitleAlignment":"ValueAxisTitleAlignment","ValueAxisTitleAngle":"ValueAxisTitleAngle","ValueAxisTitleBottomMargin":"ValueAxisTitleBottomMargin","ValueAxisTitleLeftMargin":"ValueAxisTitleLeftMargin","ValueAxisTitleMargin":"ValueAxisTitleMargin","ValueAxisTitleRightMargin":"ValueAxisTitleRightMargin","ValueAxisTitleTextColor":"ValueAxisTitleTextColor","ValueAxisTitleTextStyle":"ValueAxisTitleTextStyle","ValueAxisTitleTopMargin":"ValueAxisTitleTopMargin"}}],"IgbRadialColumnSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialColumnSeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","UseCategoryNormalizedValues":"UseCategoryNormalizedValues","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","CanUseAsValueAxisAsync(object)":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxisAsync":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxis(object)":"CanUseAsValueAxis(object)","CanUseAsValueAxis":"CanUseAsValueAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetAngleFromWorldAsync(Point)":"GetAngleFromWorldAsync(Point)","GetAngleFromWorldAsync":"GetAngleFromWorldAsync(Point)","GetAngleFromWorld(Point)":"GetAngleFromWorld(Point)","GetAngleFromWorld":"GetAngleFromWorld(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutPercentagePrecision":"AutoCalloutPercentagePrecision","AutoCalloutLabelValueSeparator":"AutoCalloutLabelValueSeparator","LegendRadialLabelMode":"LegendRadialLabelMode","CategoryCollisionMode":"CategoryCollisionMode","AutoCalloutRadialLabelMode":"AutoCalloutRadialLabelMode","AutoCalloutOthersLabelFormat":"AutoCalloutOthersLabelFormat","AutoCalloutOthersLabelFormatSpecifiers":"AutoCalloutOthersLabelFormatSpecifiers","ProportionalRadialLabelFormat":"ProportionalRadialLabelFormat","ProportionalRadialLabelFormatSpecifiers":"ProportionalRadialLabelFormatSpecifiers","LegendProportionalRadialLabelFormat":"LegendProportionalRadialLabelFormat","LegendProportionalRadialLabelFormatSpecifiers":"LegendProportionalRadialLabelFormatSpecifiers","OthersProportionalRadialLabelFormat":"OthersProportionalRadialLabelFormat","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersProportionalRadialLabelFormatSpecifiers":"OthersProportionalRadialLabelFormatSpecifiers","OthersLegendProportionalRadialLabelFormat":"OthersLegendProportionalRadialLabelFormat","OthersLegendProportionalRadialLabelFormatSpecifiers":"OthersLegendProportionalRadialLabelFormatSpecifiers","IsCustomRadialStyleAllowed":"IsCustomRadialStyleAllowed","IsCustomRadialMarkerStyleAllowed":"IsCustomRadialMarkerStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","ValueAxis":"ValueAxis","ValueAxisScript":"ValueAxisScript","ValueAxisName":"ValueAxisName","ClipSeriesToBounds":"ClipSeriesToBounds","AssigningRadialStyleScript":"AssigningRadialStyleScript","AssigningRadialStyle":"AssigningRadialStyle","AssigningRadialMarkerStyleScript":"AssigningRadialMarkerStyleScript","AssigningRadialMarkerStyle":"AssigningRadialMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialColumnSeries()":"IgbRadialColumnSeries()","IgbRadialColumnSeries":"IgbRadialColumnSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","RadiusX":"RadiusX","RadiusY":"RadiusY","Type":"Type"}}],"IgbRadialColumnSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialColumnSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialColumnSeriesModule()":"IgbRadialColumnSeriesModule()","IgbRadialColumnSeriesModule":"IgbRadialColumnSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialGauge":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGauge","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGauge()":"IgbRadialGauge()","IgbRadialGauge":"IgbRadialGauge()","ActualHighlightValueDisplayMode":"ActualHighlightValueDisplayMode","ActualHighlightValueOpacity":"ActualHighlightValueOpacity","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ActualMaximumValue":"ActualMaximumValue","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMinimumValue":"ActualMinimumValue","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualRanges":"ActualRanges","AlignHighlightLabel":"AlignHighlightLabel","AlignHighlightLabelScript":"AlignHighlightLabelScript","AlignLabel":"AlignLabel","AlignLabelScript":"AlignLabelScript","AlignSubtitle":"AlignSubtitle","AlignSubtitleScript":"AlignSubtitleScript","AlignTitle":"AlignTitle","AlignTitleScript":"AlignTitleScript","BackingBrush":"BackingBrush","BackingCornerRadius":"BackingCornerRadius","BackingInnerExtent":"BackingInnerExtent","BackingOuterExtent":"BackingOuterExtent","BackingOutline":"BackingOutline","BackingOversweep":"BackingOversweep","BackingShape":"BackingShape","BackingStrokeThickness":"BackingStrokeThickness","CenterX":"CenterX","CenterY":"CenterY","ContainerResized()":"ContainerResized()","ContainerResized":"ContainerResized()","ContainerResizedAsync()":"ContainerResizedAsync()","ContainerResizedAsync":"ContainerResizedAsync()","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ContentRanges":"ContentRanges","DefaultEventBehavior":"DefaultEventBehavior","DuplicateLabelOmissionStrategy":"DuplicateLabelOmissionStrategy","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Font":"Font","FontBrush":"FontBrush","FormatHighlightLabel":"FormatHighlightLabel","FormatHighlightLabelScript":"FormatHighlightLabelScript","FormatLabel":"FormatLabel","FormatLabelScript":"FormatLabelScript","FormatSubtitle":"FormatSubtitle","FormatSubtitleScript":"FormatSubtitleScript","FormatTitle":"FormatTitle","FormatTitleScript":"FormatTitleScript","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentHighlightValue()":"GetCurrentHighlightValue()","GetCurrentHighlightValue":"GetCurrentHighlightValue()","GetCurrentHighlightValueAsync()":"GetCurrentHighlightValueAsync()","GetCurrentHighlightValueAsync":"GetCurrentHighlightValueAsync()","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetPointForValue(double, double)":"GetPointForValue(double, double)","GetPointForValue":"GetPointForValue(double, double)","GetPointForValueAsync(double, double)":"GetPointForValueAsync(double, double)","GetPointForValueAsync":"GetPointForValueAsync(double, double)","GetValueForPoint(Point)":"GetValueForPoint(Point)","GetValueForPoint":"GetValueForPoint(Point)","GetValueForPointAsync(Point)":"GetValueForPointAsync(Point)","GetValueForPointAsync":"GetValueForPointAsync(Point)","HighlightLabelAngle":"HighlightLabelAngle","HighlightLabelBrush":"HighlightLabelBrush","HighlightLabelDisplaysValue":"HighlightLabelDisplaysValue","HighlightLabelExtent":"HighlightLabelExtent","HighlightLabelFontFamily":"HighlightLabelFontFamily","HighlightLabelFontSize":"HighlightLabelFontSize","HighlightLabelFontStyle":"HighlightLabelFontStyle","HighlightLabelFontWeight":"HighlightLabelFontWeight","HighlightLabelFormat":"HighlightLabelFormat","HighlightLabelFormatSpecifiers":"HighlightLabelFormatSpecifiers","HighlightLabelSnapsToNeedlePivot":"HighlightLabelSnapsToNeedlePivot","HighlightLabelText":"HighlightLabelText","HighlightNeedleContainsPoint(Point, bool)":"HighlightNeedleContainsPoint(Point, bool)","HighlightNeedleContainsPoint":"HighlightNeedleContainsPoint(Point, bool)","HighlightNeedleContainsPointAsync(Point, bool)":"HighlightNeedleContainsPointAsync(Point, bool)","HighlightNeedleContainsPointAsync":"HighlightNeedleContainsPointAsync(Point, bool)","HighlightValue":"HighlightValue","HighlightValueChanged":"HighlightValueChanged","HighlightValueChangedScript":"HighlightValueChangedScript","HighlightValueDisplayMode":"HighlightValueDisplayMode","HighlightValueOpacity":"HighlightValueOpacity","Interval":"Interval","IsHighlightNeedleDraggingConstrained":"IsHighlightNeedleDraggingConstrained","IsHighlightNeedleDraggingEnabled":"IsHighlightNeedleDraggingEnabled","IsNeedleDraggingConstrained":"IsNeedleDraggingConstrained","IsNeedleDraggingEnabled":"IsNeedleDraggingEnabled","LabelExtent":"LabelExtent","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelInterval":"LabelInterval","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","MinorTickBrush":"MinorTickBrush","MinorTickCount":"MinorTickCount","MinorTickEndExtent":"MinorTickEndExtent","MinorTickStartExtent":"MinorTickStartExtent","MinorTickStrokeThickness":"MinorTickStrokeThickness","NeedleBaseFeatureExtent":"NeedleBaseFeatureExtent","NeedleBaseFeatureWidthRatio":"NeedleBaseFeatureWidthRatio","NeedleBrush":"NeedleBrush","NeedleContainsPoint(Point, bool)":"NeedleContainsPoint(Point, bool)","NeedleContainsPoint":"NeedleContainsPoint(Point, bool)","NeedleContainsPointAsync(Point, bool)":"NeedleContainsPointAsync(Point, bool)","NeedleContainsPointAsync":"NeedleContainsPointAsync(Point, bool)","NeedleEndExtent":"NeedleEndExtent","NeedleEndWidthRatio":"NeedleEndWidthRatio","NeedleOutline":"NeedleOutline","NeedlePivotBrush":"NeedlePivotBrush","NeedlePivotInnerWidthRatio":"NeedlePivotInnerWidthRatio","NeedlePivotOutline":"NeedlePivotOutline","NeedlePivotShape":"NeedlePivotShape","NeedlePivotStrokeThickness":"NeedlePivotStrokeThickness","NeedlePivotWidthRatio":"NeedlePivotWidthRatio","NeedlePointFeatureExtent":"NeedlePointFeatureExtent","NeedlePointFeatureWidthRatio":"NeedlePointFeatureWidthRatio","NeedleShape":"NeedleShape","NeedleStartExtent":"NeedleStartExtent","NeedleStartWidthRatio":"NeedleStartWidthRatio","NeedleStrokeThickness":"NeedleStrokeThickness","OpticalScalingEnabled":"OpticalScalingEnabled","OpticalScalingRatio":"OpticalScalingRatio","OpticalScalingSize":"OpticalScalingSize","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RadiusMultiplier":"RadiusMultiplier","RangeBrushes":"RangeBrushes","RangeOutlines":"RangeOutlines","Ranges":"Ranges","ScaleBrush":"ScaleBrush","ScaleEndAngle":"ScaleEndAngle","ScaleEndExtent":"ScaleEndExtent","ScaleOversweep":"ScaleOversweep","ScaleOversweepShape":"ScaleOversweepShape","ScaleStartAngle":"ScaleStartAngle","ScaleStartExtent":"ScaleStartExtent","ScaleSweepDirection":"ScaleSweepDirection","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","SubtitleAngle":"SubtitleAngle","SubtitleBrush":"SubtitleBrush","SubtitleDisplaysValue":"SubtitleDisplaysValue","SubtitleExtent":"SubtitleExtent","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","SubtitleFormat":"SubtitleFormat","SubtitleFormatSpecifiers":"SubtitleFormatSpecifiers","SubtitleSnapsToNeedlePivot":"SubtitleSnapsToNeedlePivot","SubtitleText":"SubtitleText","TickBrush":"TickBrush","TickEndExtent":"TickEndExtent","TickStartExtent":"TickStartExtent","TickStrokeThickness":"TickStrokeThickness","TitleAngle":"TitleAngle","TitleBrush":"TitleBrush","TitleDisplaysValue":"TitleDisplaysValue","TitleExtent":"TitleExtent","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleFormat":"TitleFormat","TitleFormatSpecifiers":"TitleFormatSpecifiers","TitleSnapsToNeedlePivot":"TitleSnapsToNeedlePivot","TitleText":"TitleText","TransitionDuration":"TransitionDuration","TransitionProgress":"TransitionProgress","Type":"Type","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript"}}],"IgbRadialGaugeCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGaugeCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGaugeCoreModule()":"IgbRadialGaugeCoreModule()","IgbRadialGaugeCoreModule":"IgbRadialGaugeCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialGaugeDashboardTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGaugeDashboardTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGaugeDashboardTileModule()":"IgbRadialGaugeDashboardTileModule()","IgbRadialGaugeDashboardTileModule":"IgbRadialGaugeDashboardTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialGaugeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGaugeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGaugeModule()":"IgbRadialGaugeModule()","IgbRadialGaugeModule":"IgbRadialGaugeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialGaugeRange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGaugeRange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGaugeRange()":"IgbRadialGaugeRange()","IgbRadialGaugeRange":"IgbRadialGaugeRange()","Brush":"Brush","Dispose()":"Dispose()","Dispose":"Dispose()","EndValue":"EndValue","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","InnerEndExtent":"InnerEndExtent","InnerStartExtent":"InnerStartExtent","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OuterEndExtent":"OuterEndExtent","OuterStartExtent":"OuterStartExtent","Outline":"Outline","RadialGaugeParent":"RadialGaugeParent","StartValue":"StartValue","StrokeThickness":"StrokeThickness","Type":"Type"}}],"IgbRadialGaugeRangeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGaugeRangeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbRadialGaugeRange)":"InsertItem(int, IgbRadialGaugeRange)","InsertItem":"InsertItem(int, IgbRadialGaugeRange)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbRadialGaugeRange)":"SetItem(int, IgbRadialGaugeRange)","SetItem":"SetItem(int, IgbRadialGaugeRange)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbRadialGaugeRange)":"Add(IgbRadialGaugeRange)","Add":"Add(IgbRadialGaugeRange)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbRadialGaugeRange[], int)":"CopyTo(IgbRadialGaugeRange[], int)","CopyTo":"CopyTo(IgbRadialGaugeRange[], int)","Contains(IgbRadialGaugeRange)":"Contains(IgbRadialGaugeRange)","Contains":"Contains(IgbRadialGaugeRange)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbRadialGaugeRange)":"IndexOf(IgbRadialGaugeRange)","IndexOf":"IndexOf(IgbRadialGaugeRange)","Insert(int, IgbRadialGaugeRange)":"Insert(int, IgbRadialGaugeRange)","Insert":"Insert(int, IgbRadialGaugeRange)","Remove(IgbRadialGaugeRange)":"Remove(IgbRadialGaugeRange)","Remove":"Remove(IgbRadialGaugeRange)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGaugeRangeCollection(object, string)":"IgbRadialGaugeRangeCollection(object, string)","IgbRadialGaugeRangeCollection":"IgbRadialGaugeRangeCollection(object, string)"}}],"IgbRadialGaugeRangeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialGaugeRangeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialGaugeRangeModule()":"IgbRadialGaugeRangeModule()","IgbRadialGaugeRangeModule":"IgbRadialGaugeRangeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialLineSeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","UseCategoryNormalizedValues":"UseCategoryNormalizedValues","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","CanUseAsValueAxisAsync(object)":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxisAsync":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxis(object)":"CanUseAsValueAxis(object)","CanUseAsValueAxis":"CanUseAsValueAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetAngleFromWorldAsync(Point)":"GetAngleFromWorldAsync(Point)","GetAngleFromWorldAsync":"GetAngleFromWorldAsync(Point)","GetAngleFromWorld(Point)":"GetAngleFromWorld(Point)","GetAngleFromWorld":"GetAngleFromWorld(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutPercentagePrecision":"AutoCalloutPercentagePrecision","AutoCalloutLabelValueSeparator":"AutoCalloutLabelValueSeparator","LegendRadialLabelMode":"LegendRadialLabelMode","CategoryCollisionMode":"CategoryCollisionMode","AutoCalloutRadialLabelMode":"AutoCalloutRadialLabelMode","AutoCalloutOthersLabelFormat":"AutoCalloutOthersLabelFormat","AutoCalloutOthersLabelFormatSpecifiers":"AutoCalloutOthersLabelFormatSpecifiers","ProportionalRadialLabelFormat":"ProportionalRadialLabelFormat","ProportionalRadialLabelFormatSpecifiers":"ProportionalRadialLabelFormatSpecifiers","LegendProportionalRadialLabelFormat":"LegendProportionalRadialLabelFormat","LegendProportionalRadialLabelFormatSpecifiers":"LegendProportionalRadialLabelFormatSpecifiers","OthersProportionalRadialLabelFormat":"OthersProportionalRadialLabelFormat","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersProportionalRadialLabelFormatSpecifiers":"OthersProportionalRadialLabelFormatSpecifiers","OthersLegendProportionalRadialLabelFormat":"OthersLegendProportionalRadialLabelFormat","OthersLegendProportionalRadialLabelFormatSpecifiers":"OthersLegendProportionalRadialLabelFormatSpecifiers","IsCustomRadialStyleAllowed":"IsCustomRadialStyleAllowed","IsCustomRadialMarkerStyleAllowed":"IsCustomRadialMarkerStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","ValueAxis":"ValueAxis","ValueAxisScript":"ValueAxisScript","ValueAxisName":"ValueAxisName","ClipSeriesToBounds":"ClipSeriesToBounds","AssigningRadialStyleScript":"AssigningRadialStyleScript","AssigningRadialStyle":"AssigningRadialStyle","AssigningRadialMarkerStyleScript":"AssigningRadialMarkerStyleScript","AssigningRadialMarkerStyle":"AssigningRadialMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialLineSeries()":"IgbRadialLineSeries()","IgbRadialLineSeries":"IgbRadialLineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbRadialLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialLineSeriesModule()":"IgbRadialLineSeriesModule()","IgbRadialLineSeriesModule":"IgbRadialLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadialPieSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialPieSeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","UseCategoryNormalizedValues":"UseCategoryNormalizedValues","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineZIndex":"TrendLineZIndex","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","CanUseAsValueAxisAsync(object)":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxisAsync":"CanUseAsValueAxisAsync(object)","CanUseAsValueAxis(object)":"CanUseAsValueAxis(object)","CanUseAsValueAxis":"CanUseAsValueAxis(object)","CanUseAsAngleAxisAsync(object)":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxisAsync":"CanUseAsAngleAxisAsync(object)","CanUseAsAngleAxis(object)":"CanUseAsAngleAxis(object)","CanUseAsAngleAxis":"CanUseAsAngleAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetAngleFromWorldAsync(Point)":"GetAngleFromWorldAsync(Point)","GetAngleFromWorldAsync":"GetAngleFromWorldAsync(Point)","GetAngleFromWorld(Point)":"GetAngleFromWorld(Point)","GetAngleFromWorld":"GetAngleFromWorld(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","AutoCalloutLabelPrecision":"AutoCalloutLabelPrecision","AutoCalloutPercentagePrecision":"AutoCalloutPercentagePrecision","AutoCalloutLabelValueSeparator":"AutoCalloutLabelValueSeparator","LegendRadialLabelMode":"LegendRadialLabelMode","CategoryCollisionMode":"CategoryCollisionMode","AutoCalloutRadialLabelMode":"AutoCalloutRadialLabelMode","AutoCalloutOthersLabelFormat":"AutoCalloutOthersLabelFormat","AutoCalloutOthersLabelFormatSpecifiers":"AutoCalloutOthersLabelFormatSpecifiers","ProportionalRadialLabelFormat":"ProportionalRadialLabelFormat","ProportionalRadialLabelFormatSpecifiers":"ProportionalRadialLabelFormatSpecifiers","LegendProportionalRadialLabelFormat":"LegendProportionalRadialLabelFormat","LegendProportionalRadialLabelFormatSpecifiers":"LegendProportionalRadialLabelFormatSpecifiers","OthersProportionalRadialLabelFormat":"OthersProportionalRadialLabelFormat","OthersCategoryBrush":"OthersCategoryBrush","OthersCategoryOutline":"OthersCategoryOutline","OthersProportionalRadialLabelFormatSpecifiers":"OthersProportionalRadialLabelFormatSpecifiers","OthersLegendProportionalRadialLabelFormat":"OthersLegendProportionalRadialLabelFormat","OthersLegendProportionalRadialLabelFormatSpecifiers":"OthersLegendProportionalRadialLabelFormatSpecifiers","IsCustomRadialStyleAllowed":"IsCustomRadialStyleAllowed","IsCustomRadialMarkerStyleAllowed":"IsCustomRadialMarkerStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AngleAxis":"AngleAxis","AngleAxisScript":"AngleAxisScript","AngleAxisName":"AngleAxisName","ValueAxis":"ValueAxis","ValueAxisScript":"ValueAxisScript","ValueAxisName":"ValueAxisName","ClipSeriesToBounds":"ClipSeriesToBounds","AssigningRadialStyleScript":"AssigningRadialStyleScript","AssigningRadialStyle":"AssigningRadialStyle","AssigningRadialMarkerStyleScript":"AssigningRadialMarkerStyleScript","AssigningRadialMarkerStyle":"AssigningRadialMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialPieSeries()":"IgbRadialPieSeries()","IgbRadialPieSeries":"IgbRadialPieSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","LegendEmptyValuesMode":"LegendEmptyValuesMode","LegendLabelMemberPath":"LegendLabelMemberPath","RadiusX":"RadiusX","RadiusY":"RadiusY","Type":"Type","UseInsetOutlines":"UseInsetOutlines"}}],"IgbRadialPieSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadialPieSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadialPieSeriesModule()":"IgbRadialPieSeriesModule()","IgbRadialPieSeriesModule":"IgbRadialPieSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadio":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadio","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadio()":"IgbRadio()","IgbRadio":"IgbRadio()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Checked":"Checked","CheckedChanged":"CheckedChanged","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","Invalid":"Invalid","LabelPosition":"LabelPosition","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRadio","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadio()":"IgbRadio()","IgbRadio":"IgbRadio()","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","Checked":"Checked","CheckedChanged":"CheckedChanged","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","Invalid":"Invalid","LabelPosition":"LabelPosition","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}}],"IgbRadioChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadioChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioChangeEventArgs()":"IgbRadioChangeEventArgs()","IgbRadioChangeEventArgs":"IgbRadioChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRadioChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioChangeEventArgs()":"IgbRadioChangeEventArgs()","IgbRadioChangeEventArgs":"IgbRadioChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRadioChangeEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadioChangeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioChangeEventArgsDetail()":"IgbRadioChangeEventArgsDetail()","IgbRadioChangeEventArgsDetail":"IgbRadioChangeEventArgsDetail()","Checked":"Checked","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRadioChangeEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioChangeEventArgsDetail()":"IgbRadioChangeEventArgsDetail()","IgbRadioChangeEventArgsDetail":"IgbRadioChangeEventArgsDetail()","Checked":"Checked","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbRadioGroup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadioGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioGroup()":"IgbRadioGroup()","IgbRadioGroup":"IgbRadioGroup()","Alignment":"Alignment","Change":"Change","ChangeScript":"ChangeScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRadioGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioGroup()":"IgbRadioGroup()","IgbRadioGroup":"IgbRadioGroup()","Alignment":"Alignment","Change":"Change","ChangeScript":"ChangeScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}}],"IgbRadioGroupModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadioGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioGroupModule()":"IgbRadioGroupModule()","IgbRadioGroupModule":"IgbRadioGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRadioGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioGroupModule()":"IgbRadioGroupModule()","IgbRadioGroupModule":"IgbRadioGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRadioModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRadioModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioModule()":"IgbRadioModule()","IgbRadioModule":"IgbRadioModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRadioModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRadioModule()":"IgbRadioModule()","IgbRadioModule":"IgbRadioModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRangeAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","LowMemberAsLegendLabel":"LowMemberAsLegendLabel","HighMemberAsLegendLabel":"HighMemberAsLegendLabel","LowMemberAsLegendUnit":"LowMemberAsLegendUnit","HighMemberAsLegendUnit":"HighMemberAsLegendUnit","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","LowMemberPath":"LowMemberPath","HighMemberPath":"HighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeAreaSeries()":"IgbRangeAreaSeries()","IgbRangeAreaSeries":"IgbRangeAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbRangeAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeAreaSeriesModule()":"IgbRangeAreaSeriesModule()","IgbRangeAreaSeriesModule":"IgbRangeAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRangeCategorySeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeCategorySeries","k":"class","s":"classes","m":{"GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeCategorySeries()":"IgbRangeCategorySeries()","IgbRangeCategorySeries":"IgbRangeCategorySeries()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","HighMemberPath":"HighMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","LowMemberPath":"LowMemberPath","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","Type":"Type"}}],"IgbRangeColumnSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeColumnSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","LowMemberAsLegendLabel":"LowMemberAsLegendLabel","HighMemberAsLegendLabel":"HighMemberAsLegendLabel","LowMemberAsLegendUnit":"LowMemberAsLegendUnit","HighMemberAsLegendUnit":"HighMemberAsLegendUnit","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","LowMemberPath":"LowMemberPath","HighMemberPath":"HighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeColumnSeries()":"IgbRangeColumnSeries()","IgbRangeColumnSeries":"IgbRangeColumnSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","RadiusX":"RadiusX","RadiusY":"RadiusY","Type":"Type"}}],"IgbRangeColumnSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeColumnSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeColumnSeriesModule()":"IgbRangeColumnSeriesModule()","IgbRangeColumnSeriesModule":"IgbRangeColumnSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRangeSlider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeSlider","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Min":"Min","Max":"Max","LowerBound":"LowerBound","UpperBound":"UpperBound","Disabled":"Disabled","DiscreteTrack":"DiscreteTrack","HideTooltip":"HideTooltip","Step":"Step","PrimaryTicks":"PrimaryTicks","SecondaryTicks":"SecondaryTicks","TickOrientation":"TickOrientation","HidePrimaryLabels":"HidePrimaryLabels","HideSecondaryLabels":"HideSecondaryLabels","Locale":"Locale","ValueFormat":"ValueFormat","TickLabelRotation":"TickLabelRotation","ValueFormatOptions":"ValueFormatOptions","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSlider()":"IgbRangeSlider()","IgbRangeSlider":"IgbRangeSlider()","Change":"Change","ChangeScript":"ChangeScript","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Input":"Input","InputScript":"InputScript","Lower":"Lower","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","ThumbLabelLower":"ThumbLabelLower","ThumbLabelUpper":"ThumbLabelUpper","Type":"Type","Upper":"Upper","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRangeSlider","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Min":"Min","Max":"Max","LowerBound":"LowerBound","UpperBound":"UpperBound","Disabled":"Disabled","DiscreteTrack":"DiscreteTrack","HideTooltip":"HideTooltip","Step":"Step","PrimaryTicks":"PrimaryTicks","SecondaryTicks":"SecondaryTicks","TickOrientation":"TickOrientation","HidePrimaryLabels":"HidePrimaryLabels","HideSecondaryLabels":"HideSecondaryLabels","Locale":"Locale","ValueFormat":"ValueFormat","TickLabelRotation":"TickLabelRotation","ValueFormatOptions":"ValueFormatOptions","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSlider()":"IgbRangeSlider()","IgbRangeSlider":"IgbRangeSlider()","Change":"Change","ChangeScript":"ChangeScript","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Input":"Input","InputScript":"InputScript","Lower":"Lower","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","ThumbLabelLower":"ThumbLabelLower","ThumbLabelUpper":"ThumbLabelUpper","Type":"Type","Upper":"Upper","UseDirectRender":"UseDirectRender"}}],"IgbRangeSliderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeSliderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSliderModule()":"IgbRangeSliderModule()","IgbRangeSliderModule":"IgbRangeSliderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRangeSliderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSliderModule()":"IgbRangeSliderModule()","IgbRangeSliderModule":"IgbRangeSliderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRangeSliderValue":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeSliderValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSliderValue()":"IgbRangeSliderValue()","IgbRangeSliderValue":"IgbRangeSliderValue()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Lower":"Lower","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Upper":"Upper"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRangeSliderValue","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSliderValue()":"IgbRangeSliderValue()","IgbRangeSliderValue":"IgbRangeSliderValue()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Lower":"Lower","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Upper":"Upper"}}],"IgbRangeSliderValueEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRangeSliderValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSliderValueEventArgs()":"IgbRangeSliderValueEventArgs()","IgbRangeSliderValueEventArgs":"IgbRangeSliderValueEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRangeSliderValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRangeSliderValueEventArgs()":"IgbRangeSliderValueEventArgs()","IgbRangeSliderValueEventArgs":"IgbRangeSliderValueEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRateOfChangeAndMomentumIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRateOfChangeAndMomentumIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRateOfChangeAndMomentumIndicator()":"IgbRateOfChangeAndMomentumIndicator()","IgbRateOfChangeAndMomentumIndicator":"IgbRateOfChangeAndMomentumIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbRateOfChangeAndMomentumIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRateOfChangeAndMomentumIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRateOfChangeAndMomentumIndicatorModule()":"IgbRateOfChangeAndMomentumIndicatorModule()","IgbRateOfChangeAndMomentumIndicatorModule":"IgbRateOfChangeAndMomentumIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRating":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRating","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRating()":"IgbRating()","IgbRating":"IgbRating()","AllowReset":"AllowReset","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Hover":"Hover","HoverPreview":"HoverPreview","HoverScript":"HoverScript","Invalid":"Invalid","Label":"Label","Max":"Max","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","Single":"Single","Step":"Step","StepDown(double)":"StepDown(double)","StepDown":"StepDown(double)","StepDownAsync(double)":"StepDownAsync(double)","StepDownAsync":"StepDownAsync(double)","StepUp(double)":"StepUp(double)","StepUp":"StepUp(double)","StepUpAsync(double)":"StepUpAsync(double)","StepUpAsync":"StepUpAsync(double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged","ValueFormat":"ValueFormat"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRating","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRating()":"IgbRating()","IgbRating":"IgbRating()","AllowReset":"AllowReset","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Hover":"Hover","HoverPreview":"HoverPreview","HoverScript":"HoverScript","Invalid":"Invalid","Label":"Label","Max":"Max","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","Single":"Single","Step":"Step","StepDown(double)":"StepDown(double)","StepDown":"StepDown(double)","StepDownAsync(double)":"StepDownAsync(double)","StepDownAsync":"StepDownAsync(double)","StepUp(double)":"StepUp(double)","StepUp":"StepUp(double)","StepUpAsync(double)":"StepUpAsync(double)","StepUpAsync":"StepUpAsync(double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged","ValueFormat":"ValueFormat"}}],"IgbRatingModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRatingModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRatingModule()":"IgbRatingModule()","IgbRatingModule":"IgbRatingModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRatingModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRatingModule()":"IgbRatingModule()","IgbRatingModule":"IgbRatingModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRatingSymbol":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRatingSymbol","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRatingSymbol()":"IgbRatingSymbol()","IgbRatingSymbol":"IgbRatingSymbol()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRatingSymbol","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRatingSymbol()":"IgbRatingSymbol()","IgbRatingSymbol":"IgbRatingSymbol()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbRatingSymbolModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRatingSymbolModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRatingSymbolModule()":"IgbRatingSymbolModule()","IgbRatingSymbolModule":"IgbRatingSymbolModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRatingSymbolModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRatingSymbolModule()":"IgbRatingSymbolModule()","IgbRatingSymbolModule":"IgbRatingSymbolModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRectChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRectChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRectChangedEventArgs()":"IgbRectChangedEventArgs()","IgbRectChangedEventArgs":"IgbRectChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewRect":"NewRect","OldRect":"OldRect","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRefreshCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRefreshCompletedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRefreshCompletedEventArgs()":"IgbRefreshCompletedEventArgs()","IgbRefreshCompletedEventArgs":"IgbRefreshCompletedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRelativeStrengthIndexIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRelativeStrengthIndexIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRelativeStrengthIndexIndicator()":"IgbRelativeStrengthIndexIndicator()","IgbRelativeStrengthIndexIndicator":"IgbRelativeStrengthIndexIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbRelativeStrengthIndexIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRelativeStrengthIndexIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRelativeStrengthIndexIndicatorModule()":"IgbRelativeStrengthIndexIndicatorModule()","IgbRelativeStrengthIndexIndicatorModule":"IgbRelativeStrengthIndexIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRenderRequestedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRenderRequestedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRenderRequestedEventArgs()":"IgbRenderRequestedEventArgs()","IgbRenderRequestedEventArgs":"IgbRenderRequestedEventArgs()","Animate":"Animate","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbResponsivePhase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsivePhase","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsivePhase()":"IgbResponsivePhase()","IgbResponsivePhase":"IgbResponsivePhase()","AddColumnExchanger(IgbColumnExchanger)":"AddColumnExchanger(IgbColumnExchanger)","AddColumnExchanger":"AddColumnExchanger(IgbColumnExchanger)","AddColumnExchangerAsync(IgbColumnExchanger)":"AddColumnExchangerAsync(IgbColumnExchanger)","AddColumnExchangerAsync":"AddColumnExchangerAsync(IgbColumnExchanger)","AddColumnPropertySetter(IgbColumnPropertySetter)":"AddColumnPropertySetter(IgbColumnPropertySetter)","AddColumnPropertySetter":"AddColumnPropertySetter(IgbColumnPropertySetter)","AddColumnPropertySetterAsync(IgbColumnPropertySetter)":"AddColumnPropertySetterAsync(IgbColumnPropertySetter)","AddColumnPropertySetterAsync":"AddColumnPropertySetterAsync(IgbColumnPropertySetter)","ColumnExchanger()":"ColumnExchanger()","ColumnExchanger":"ColumnExchanger()","ColumnExchangerAsync()":"ColumnExchangerAsync()","ColumnExchangerAsync":"ColumnExchangerAsync()","ColumnPropertySetter()":"ColumnPropertySetter()","ColumnPropertySetter":"ColumnPropertySetter()","ColumnPropertySetterAsync()":"ColumnPropertySetterAsync()","ColumnPropertySetterAsync":"ColumnPropertySetterAsync()","DelayMilliseconds":"DelayMilliseconds","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbResponsivePhasesCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsivePhasesCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbResponsivePhase)":"InsertItem(int, IgbResponsivePhase)","InsertItem":"InsertItem(int, IgbResponsivePhase)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbResponsivePhase)":"SetItem(int, IgbResponsivePhase)","SetItem":"SetItem(int, IgbResponsivePhase)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbResponsivePhase)":"Add(IgbResponsivePhase)","Add":"Add(IgbResponsivePhase)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbResponsivePhase[], int)":"CopyTo(IgbResponsivePhase[], int)","CopyTo":"CopyTo(IgbResponsivePhase[], int)","Contains(IgbResponsivePhase)":"Contains(IgbResponsivePhase)","Contains":"Contains(IgbResponsivePhase)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbResponsivePhase)":"IndexOf(IgbResponsivePhase)","IndexOf":"IndexOf(IgbResponsivePhase)","Insert(int, IgbResponsivePhase)":"Insert(int, IgbResponsivePhase)","Insert":"Insert(int, IgbResponsivePhase)","Remove(IgbResponsivePhase)":"Remove(IgbResponsivePhase)","Remove":"Remove(IgbResponsivePhase)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsivePhasesCollection(object, string)":"IgbResponsivePhasesCollection(object, string)","IgbResponsivePhasesCollection":"IgbResponsivePhasesCollection(object, string)"}}],"IgbResponsiveState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsiveState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsiveState()":"IgbResponsiveState()","IgbResponsiveState":"IgbResponsiveState()","AddResponsivePhase(IgbResponsivePhase)":"AddResponsivePhase(IgbResponsivePhase)","AddResponsivePhase":"AddResponsivePhase(IgbResponsivePhase)","AddResponsivePhaseAsync(IgbResponsivePhase)":"AddResponsivePhaseAsync(IgbResponsivePhase)","AddResponsivePhaseAsync":"AddResponsivePhaseAsync(IgbResponsivePhase)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsManualState":"IsManualState","MaximumWidth":"MaximumWidth","MinimumWidth":"MinimumWidth","ResponsivePhase()":"ResponsivePhase()","ResponsivePhase":"ResponsivePhase()","ResponsivePhaseAsync()":"ResponsivePhaseAsync()","ResponsivePhaseAsync":"ResponsivePhaseAsync()","StateEntered":"StateEntered","StateEnteredScript":"StateEnteredScript","StateEntering":"StateEntering","StateEnteringScript":"StateEnteringScript","StateExited":"StateExited","StateExitedScript":"StateExitedScript","Type":"Type"}}],"IgbResponsiveStateEnteredEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsiveStateEnteredEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsiveStateEnteredEventArgs()":"IgbResponsiveStateEnteredEventArgs()","IgbResponsiveStateEnteredEventArgs":"IgbResponsiveStateEnteredEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbResponsiveStateEnteringEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsiveStateEnteringEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsiveStateEnteringEventArgs()":"IgbResponsiveStateEnteringEventArgs()","IgbResponsiveStateEnteringEventArgs":"IgbResponsiveStateEnteringEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbResponsiveStateExitedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsiveStateExitedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsiveStateExitedEventArgs()":"IgbResponsiveStateExitedEventArgs()","IgbResponsiveStateExitedEventArgs":"IgbResponsiveStateExitedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbResponsiveStatesCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbResponsiveStatesCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbResponsiveState)":"InsertItem(int, IgbResponsiveState)","InsertItem":"InsertItem(int, IgbResponsiveState)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbResponsiveState)":"SetItem(int, IgbResponsiveState)","SetItem":"SetItem(int, IgbResponsiveState)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbResponsiveState)":"Add(IgbResponsiveState)","Add":"Add(IgbResponsiveState)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbResponsiveState[], int)":"CopyTo(IgbResponsiveState[], int)","CopyTo":"CopyTo(IgbResponsiveState[], int)","Contains(IgbResponsiveState)":"Contains(IgbResponsiveState)","Contains":"Contains(IgbResponsiveState)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbResponsiveState)":"IndexOf(IgbResponsiveState)","IndexOf":"IndexOf(IgbResponsiveState)","Insert(int, IgbResponsiveState)":"Insert(int, IgbResponsiveState)","Insert":"Insert(int, IgbResponsiveState)","Remove(IgbResponsiveState)":"Remove(IgbResponsiveState)","Remove":"Remove(IgbResponsiveState)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbResponsiveStatesCollection(object, string)":"IgbResponsiveStatesCollection(object, string)","IgbResponsiveStatesCollection":"IgbResponsiveStatesCollection(object, string)"}}],"IgbRing":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRing","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRing()":"IgbRing()","IgbRing":"IgbRing()","Center":"Center","ControlSize":"ControlSize","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Index":"Index","InnerExtend":"InnerExtend","PrepareArcs()":"PrepareArcs()","PrepareArcs":"PrepareArcs()","PrepareArcsAsync()":"PrepareArcsAsync()","PrepareArcsAsync":"PrepareArcsAsync()","RenderArcs()":"RenderArcs()","RenderArcs":"RenderArcs()","RenderArcsAsync()":"RenderArcsAsync()","RenderArcsAsync":"RenderArcsAsync()","RingBreadth":"RingBreadth","RingSeries":"RingSeries","Type":"Type"}}],"IgbRingSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRingSeries","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","DoughnutChartParent":"DoughnutChartParent","ParentTypeName":"ParentTypeName","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentOthersLabelFormatSpecifiers":"ContentOthersLabelFormatSpecifiers","ActualOthersLabelFormatSpecifiers":"ActualOthersLabelFormatSpecifiers","ContentLegendLabelFormatSpecifiers":"ContentLegendLabelFormatSpecifiers","ActualLegendLabelFormatSpecifiers":"ActualLegendLabelFormatSpecifiers","ContentLegendOthersLabelFormatSpecifiers":"ContentLegendOthersLabelFormatSpecifiers","ActualLegendOthersLabelFormatSpecifiers":"ActualLegendOthersLabelFormatSpecifiers","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ValueMemberPath":"ValueMemberPath","LabelMemberPath":"LabelMemberPath","LegendLabelMemberPath":"LegendLabelMemberPath","LabelsPosition":"LabelsPosition","LeaderLineVisibility":"LeaderLineVisibility","LeaderLineFill":"LeaderLineFill","LeaderLineStroke":"LeaderLineStroke","LeaderLineStrokeThickness":"LeaderLineStrokeThickness","LeaderLineOpacity":"LeaderLineOpacity","LeaderLineType":"LeaderLineType","LeaderLineMargin":"LeaderLineMargin","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","OthersCategoryText":"OthersCategoryText","Legend":"Legend","LegendScript":"LegendScript","FormatLabelScript":"FormatLabelScript","FormatLegendLabel":"FormatLegendLabel","FormatLegendLabelScript":"FormatLegendLabelScript","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","OthersLabelFormat":"OthersLabelFormat","OthersLabelFormatSpecifiers":"OthersLabelFormatSpecifiers","LegendLabelFormat":"LegendLabelFormat","LegendLabelFormatSpecifiers":"LegendLabelFormatSpecifiers","LegendOthersLabelFormat":"LegendOthersLabelFormat","LegendOthersLabelFormatSpecifiers":"LegendOthersLabelFormatSpecifiers","LabelExtent":"LabelExtent","StartAngle":"StartAngle","OthersCategoryFill":"OthersCategoryFill","OthersCategoryStroke":"OthersCategoryStroke","OthersCategoryStrokeThickness":"OthersCategoryStrokeThickness","OthersCategoryOpacity":"OthersCategoryOpacity","SelectedSliceFill":"SelectedSliceFill","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","SelectedSliceOpacity":"SelectedSliceOpacity","Brushes":"Brushes","Outlines":"Outlines","LabelOuterColor":"LabelOuterColor","LabelInnerColor":"LabelInnerColor","TextStyle":"TextStyle","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","RadiusFactor":"RadiusFactor","PropertyUpdatedScript":"PropertyUpdatedScript","PropertyUpdated":"PropertyUpdated","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRingSeries()":"IgbRingSeries()","IgbRingSeries":"IgbRingSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Ring":"Ring","Type":"Type"}}],"IgbRingSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRingSeriesBase","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRingSeriesBase()":"IgbRingSeriesBase()","IgbRingSeriesBase":"IgbRingSeriesBase()","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ActualLegendLabelFormatSpecifiers":"ActualLegendLabelFormatSpecifiers","ActualLegendOthersLabelFormatSpecifiers":"ActualLegendOthersLabelFormatSpecifiers","ActualOthersLabelFormatSpecifiers":"ActualOthersLabelFormatSpecifiers","Brushes":"Brushes","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ContentLegendLabelFormatSpecifiers":"ContentLegendLabelFormatSpecifiers","ContentLegendOthersLabelFormatSpecifiers":"ContentLegendOthersLabelFormatSpecifiers","ContentOthersLabelFormatSpecifiers":"ContentOthersLabelFormatSpecifiers","DataSource":"DataSource","DataSourceScript":"DataSourceScript","Dispose()":"Dispose()","Dispose":"Dispose()","DoughnutChartParent":"DoughnutChartParent","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormatLabelScript":"FormatLabelScript","FormatLegendLabel":"FormatLegendLabel","FormatLegendLabelScript":"FormatLegendLabelScript","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","LabelExtent":"LabelExtent","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","LabelInnerColor":"LabelInnerColor","LabelMemberPath":"LabelMemberPath","LabelOuterColor":"LabelOuterColor","LabelsPosition":"LabelsPosition","LeaderLineFill":"LeaderLineFill","LeaderLineMargin":"LeaderLineMargin","LeaderLineOpacity":"LeaderLineOpacity","LeaderLineStroke":"LeaderLineStroke","LeaderLineStrokeThickness":"LeaderLineStrokeThickness","LeaderLineType":"LeaderLineType","LeaderLineVisibility":"LeaderLineVisibility","Legend":"Legend","LegendLabelFormat":"LegendLabelFormat","LegendLabelFormatSpecifiers":"LegendLabelFormatSpecifiers","LegendLabelMemberPath":"LegendLabelMemberPath","LegendOthersLabelFormat":"LegendOthersLabelFormat","LegendOthersLabelFormatSpecifiers":"LegendOthersLabelFormatSpecifiers","LegendScript":"LegendScript","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OthersCategoryFill":"OthersCategoryFill","OthersCategoryOpacity":"OthersCategoryOpacity","OthersCategoryStroke":"OthersCategoryStroke","OthersCategoryStrokeThickness":"OthersCategoryStrokeThickness","OthersCategoryText":"OthersCategoryText","OthersCategoryThreshold":"OthersCategoryThreshold","OthersCategoryType":"OthersCategoryType","OthersLabelFormat":"OthersLabelFormat","OthersLabelFormatSpecifiers":"OthersLabelFormatSpecifiers","Outlines":"Outlines","ParentTypeName":"ParentTypeName","PropertyUpdated":"PropertyUpdated","PropertyUpdatedScript":"PropertyUpdatedScript","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RadiusFactor":"RadiusFactor","SelectedSliceFill":"SelectedSliceFill","SelectedSliceOpacity":"SelectedSliceOpacity","SelectedSliceStroke":"SelectedSliceStroke","SelectedSliceStrokeThickness":"SelectedSliceStrokeThickness","StartAngle":"StartAngle","TextStyle":"TextStyle","Type":"Type","ValueMemberPath":"ValueMemberPath"}}],"IgbRingSeriesCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRingSeriesCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbRingSeriesBase)":"InsertItem(int, IgbRingSeriesBase)","InsertItem":"InsertItem(int, IgbRingSeriesBase)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbRingSeriesBase)":"SetItem(int, IgbRingSeriesBase)","SetItem":"SetItem(int, IgbRingSeriesBase)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbRingSeriesBase)":"Add(IgbRingSeriesBase)","Add":"Add(IgbRingSeriesBase)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbRingSeriesBase[], int)":"CopyTo(IgbRingSeriesBase[], int)","CopyTo":"CopyTo(IgbRingSeriesBase[], int)","Contains(IgbRingSeriesBase)":"Contains(IgbRingSeriesBase)","Contains":"Contains(IgbRingSeriesBase)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbRingSeriesBase)":"IndexOf(IgbRingSeriesBase)","IndexOf":"IndexOf(IgbRingSeriesBase)","Insert(int, IgbRingSeriesBase)":"Insert(int, IgbRingSeriesBase)","Insert":"Insert(int, IgbRingSeriesBase)","Remove(IgbRingSeriesBase)":"Remove(IgbRingSeriesBase)","Remove":"Remove(IgbRingSeriesBase)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRingSeriesCollection(object, string)":"IgbRingSeriesCollection(object, string)","IgbRingSeriesCollection":"IgbRingSeriesCollection(object, string)"}}],"IgbRingSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRingSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRingSeriesModule()":"IgbRingSeriesModule()","IgbRingSeriesModule":"IgbRingSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRipple":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRipple","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRipple()":"IgbRipple()","IgbRipple":"IgbRipple()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRipple","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRipple()":"IgbRipple()","IgbRipple":"IgbRipple()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbRippleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRippleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRippleModule()":"IgbRippleModule()","IgbRippleModule":"IgbRippleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbRippleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRippleModule()":"IgbRippleModule()","IgbRippleModule":"IgbRippleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRowDataCancelableEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDataCancelableEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDataCancelableEventArgs()":"IgbRowDataCancelableEventArgs()","IgbRowDataCancelableEventArgs":"IgbRowDataCancelableEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDataCancelableEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDataCancelableEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDataCancelableEventArgsDetail()":"IgbRowDataCancelableEventArgsDetail()","IgbRowDataCancelableEventArgsDetail":"IgbRowDataCancelableEventArgsDetail()","CellID":"CellID","Data":"Data","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsAddRow":"IsAddRow","NewValue":"NewValue","OldValue":"OldValue","Owner":"Owner","PrimaryKey":"PrimaryKey","RowData":"RowData","RowKey":"RowKey","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDataEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDataEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDataEventArgs()":"IgbRowDataEventArgs()","IgbRowDataEventArgs":"IgbRowDataEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDataEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDataEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDataEventArgsDetail()":"IgbRowDataEventArgsDetail()","IgbRowDataEventArgsDetail":"IgbRowDataEventArgsDetail()","Data":"Data","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PrimaryKey":"PrimaryKey","RowData":"RowData","RowKey":"RowKey","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDirective":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDirective","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDirective()":"IgbRowDirective()","IgbRowDirective":"IgbRowDirective()","BeginAddRow()":"BeginAddRow()","BeginAddRow":"BeginAddRow()","BeginAddRowAsync()":"BeginAddRowAsync()","BeginAddRowAsync":"BeginAddRowAsync()","Data":"Data","Del()":"Del()","Del":"Del()","DelAsync()":"DelAsync()","DelAsync":"DelAsync()","Disabled":"Disabled","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Index":"Index","IsCellActive(object)":"IsCellActive(object)","IsCellActive":"IsCellActive(object)","IsCellActiveAsync(object)":"IsCellActiveAsync(object)","IsCellActiveAsync":"IsCellActiveAsync(object)","Pin()":"Pin()","Pin":"Pin()","PinAsync()":"PinAsync()","PinAsync":"PinAsync()","Pinned":"Pinned","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Unpin()":"Unpin()","Unpin":"Unpin()","UnpinAsync()":"UnpinAsync()","UnpinAsync":"UnpinAsync()","Update(object)":"Update(object)","Update":"Update(object)","UpdateAsync(object)":"UpdateAsync(object)","UpdateAsync":"UpdateAsync(object)"}}],"IgbRowDragEndEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDragEndEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDragEndEventArgs()":"IgbRowDragEndEventArgs()","IgbRowDragEndEventArgs":"IgbRowDragEndEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDragEndEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDragEndEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDragEndEventArgsDetail()":"IgbRowDragEndEventArgsDetail()","IgbRowDragEndEventArgsDetail":"IgbRowDragEndEventArgsDetail()","Animation":"Animation","DragData":"DragData","DragDirective":"DragDirective","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDragStartEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDragStartEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDragStartEventArgs()":"IgbRowDragStartEventArgs()","IgbRowDragStartEventArgs":"IgbRowDragStartEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowDragStartEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowDragStartEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowDragStartEventArgsDetail()":"IgbRowDragStartEventArgsDetail()","IgbRowDragStartEventArgsDetail":"IgbRowDragStartEventArgsDetail()","Cancel":"Cancel","DragData":"DragData","DragDirective":"DragDirective","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Owner":"Owner","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowExportingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowExportingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowExportingEventArgs()":"IgbRowExportingEventArgs()","IgbRowExportingEventArgs":"IgbRowExportingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowExportingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowExportingEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowExportingEventArgsDetail()":"IgbRowExportingEventArgsDetail()","IgbRowExportingEventArgsDetail":"IgbRowExportingEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowData":"RowData","RowIndex":"RowIndex","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowIsland":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowIsland","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowIsland()":"IgbRowIsland()","IgbRowIsland":"IgbRowIsland()","ActionStripComponents":"ActionStripComponents","ActiveNodeChange":"ActiveNodeChange","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActualActionStripComponents":"ActualActionStripComponents","ActualChildLayoutList":"ActualChildLayoutList","ActualPaginationComponents":"ActualPaginationComponents","ActualToolbar":"ActualToolbar","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AllowAdvancedFiltering":"AllowAdvancedFiltering","AllowFiltering":"AllowFiltering","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","BatchEditing":"BatchEditing","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","CellClick":"CellClick","CellClickScript":"CellClickScript","CellEdit":"CellEdit","CellEditEnter":"CellEditEnter","CellEditEnterScript":"CellEditEnterScript","CellEditExit":"CellEditExit","CellEditExitScript":"CellEditExitScript","CellEditScript":"CellEditScript","CellMergeMode":"CellMergeMode","CellSelection":"CellSelection","ChildDataKey":"ChildDataKey","ChildLayoutList":"ChildLayoutList","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClipboardOptions":"ClipboardOptions","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","ColumnInit":"ColumnInit","ColumnInitScript":"ColumnInitScript","ColumnList":"ColumnList","ColumnMoving":"ColumnMoving","ColumnMovingEnd":"ColumnMovingEnd","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingScript":"ColumnMovingScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnPin":"ColumnPin","ColumnPinScript":"ColumnPinScript","ColumnPinned":"ColumnPinned","ColumnPinnedScript":"ColumnPinnedScript","ColumnResized":"ColumnResized","ColumnResizedScript":"ColumnResizedScript","ColumnSelection":"ColumnSelection","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnWidth":"ColumnWidth","ColumnsAutogenerated":"ColumnsAutogenerated","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ContentActionStripComponents":"ContentActionStripComponents","ContentChildLayoutList":"ContentChildLayoutList","ContentPaginationComponents":"ContentPaginationComponents","ContentToolbar":"ContentToolbar","ContextMenu":"ContextMenu","ContextMenuScript":"ContextMenuScript","DataChanged":"DataChanged","DataChangedScript":"DataChangedScript","DataChanging":"DataChanging","DataChangingScript":"DataChangingScript","DataCloneStrategy":"DataCloneStrategy","DataPreLoad":"DataPreLoad","DataPreLoadScript":"DataPreLoadScript","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","Dispose()":"Dispose()","Dispose":"Dispose()","DoubleClick":"DoubleClick","DoubleClickScript":"DoubleClickScript","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","EmptyGridMessage":"EmptyGridMessage","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpandChildren":"ExpandChildren","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterMode":"FilterMode","FilterStrategy":"FilterStrategy","Filtering":"Filtering","FilteringDone":"FilteringDone","FilteringDoneScript":"FilteringDoneScript","FilteringExpressionsTree":"FilteringExpressionsTree","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringLogic":"FilteringLogic","FilteringScript":"FilteringScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FormGroupCreated":"FormGroupCreated","FormGroupCreatedScript":"FormGroupCreatedScript","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GridCopy":"GridCopy","GridCopyScript":"GridCopyScript","GridCreated":"GridCreated","GridCreatedScript":"GridCreatedScript","GridInitialized":"GridInitialized","GridInitializedScript":"GridInitializedScript","GridKeydown":"GridKeydown","GridKeydownScript":"GridKeydownScript","GridScroll":"GridScroll","GridScrollScript":"GridScrollScript","HasChildrenKey":"HasChildrenKey","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","Height":"Height","HideRowSelectors":"HideRowSelectors","HierarchicalGridParent":"HierarchicalGridParent","IsLoading":"IsLoading","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","Locale":"Locale","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","Moving":"Moving","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","PaginationComponents":"PaginationComponents","PagingMode":"PagingMode","ParentTypeName":"ParentTypeName","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","Pinning":"Pinning","PrimaryKey":"PrimaryKey","RangeSelected":"RangeSelected","RangeSelectedScript":"RangeSelectedScript","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","Rendered":"Rendered","RenderedScript":"RenderedScript","ResourceStrings":"ResourceStrings","RowAdd":"RowAdd","RowAddScript":"RowAddScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowClick":"RowClick","RowClickScript":"RowClickScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","RowDelete":"RowDelete","RowDeleteScript":"RowDeleteScript","RowDragEnd":"RowDragEnd","RowDragEndScript":"RowDragEndScript","RowDragStart":"RowDragStart","RowDragStartScript":"RowDragStartScript","RowDraggable":"RowDraggable","RowEdit":"RowEdit","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowEditDone":"RowEditDone","RowEditDoneScript":"RowEditDoneScript","RowEditEnter":"RowEditEnter","RowEditEnterScript":"RowEditEnterScript","RowEditExit":"RowEditExit","RowEditExitScript":"RowEditExitScript","RowEditScript":"RowEditScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowEditable":"RowEditable","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowHeight":"RowHeight","RowIslandParent":"RowIslandParent","RowPinned":"RowPinned","RowPinnedScript":"RowPinnedScript","RowPinning":"RowPinning","RowPinningScript":"RowPinningScript","RowSelection":"RowSelection","RowSelectionChanging":"RowSelectionChanging","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","RowToggle":"RowToggle","RowToggleScript":"RowToggleScript","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRowOnClick":"SelectRowOnClick","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","Selected":"Selected","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedRows":"SelectedRows","SelectedRowsChange":"SelectedRowsChange","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChanged":"SelectedRowsChanged","SelectedScript":"SelectedScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ShouldGenerate":"ShouldGenerate","ShowExpandAll":"ShowExpandAll","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","SnackbarDisplayTime":"SnackbarDisplayTime","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","SortStrategy":"SortStrategy","Sorting":"Sorting","SortingDone":"SortingDone","SortingDoneScript":"SortingDoneScript","SortingExpressions":"SortingExpressions","SortingExpressionsChange":"SortingExpressionsChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingOptions":"SortingOptions","SortingScript":"SortingScript","SummaryCalculationMode":"SummaryCalculationMode","SummaryPosition":"SummaryPosition","SummaryRowHeight":"SummaryRowHeight","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","Toolbar":"Toolbar","ToolbarExporting":"ToolbarExporting","ToolbarExportingScript":"ToolbarExportingScript","TotalRecords":"TotalRecords","Type":"Type","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","ValidationStatusChange":"ValidationStatusChange","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationTrigger":"ValidationTrigger","Width":"Width"}}],"IgbRowIslandCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowIslandCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbRowIsland)":"InsertItem(int, IgbRowIsland)","InsertItem":"InsertItem(int, IgbRowIsland)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbRowIsland)":"SetItem(int, IgbRowIsland)","SetItem":"SetItem(int, IgbRowIsland)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbRowIsland)":"Add(IgbRowIsland)","Add":"Add(IgbRowIsland)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbRowIsland[], int)":"CopyTo(IgbRowIsland[], int)","CopyTo":"CopyTo(IgbRowIsland[], int)","Contains(IgbRowIsland)":"Contains(IgbRowIsland)","Contains":"Contains(IgbRowIsland)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbRowIsland)":"IndexOf(IgbRowIsland)","IndexOf":"IndexOf(IgbRowIsland)","Insert(int, IgbRowIsland)":"Insert(int, IgbRowIsland)","Insert":"Insert(int, IgbRowIsland)","Remove(IgbRowIsland)":"Remove(IgbRowIsland)","Remove":"Remove(IgbRowIsland)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowIslandCollection(object, string)":"IgbRowIslandCollection(object, string)","IgbRowIslandCollection":"IgbRowIslandCollection(object, string)"}}],"IgbRowIslandModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowIslandModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowIslandModule()":"IgbRowIslandModule()","IgbRowIslandModule":"IgbRowIslandModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRowSelectionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSelectionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSelectionEventArgs()":"IgbRowSelectionEventArgs()","IgbRowSelectionEventArgs":"IgbRowSelectionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowSelectionEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSelectionEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSelectionEventArgsDetail()":"IgbRowSelectionEventArgsDetail()","IgbRowSelectionEventArgsDetail":"IgbRowSelectionEventArgsDetail()","Added":"Added","AddedScript":"AddedScript","AllRowsSelected":"AllRowsSelected","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewSelection":"NewSelection","NewSelectionScript":"NewSelectionScript","OldSelection":"OldSelection","OldSelectionScript":"OldSelectionScript","Owner":"Owner","Removed":"Removed","RemovedScript":"RemovedScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowSelectorTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSelectorTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSelectorTemplateContext()":"IgbRowSelectorTemplateContext()","IgbRowSelectorTemplateContext":"IgbRowSelectorTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowSelectorTemplateDetails":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSelectorTemplateDetails","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSelectorTemplateDetails()":"IgbRowSelectorTemplateDetails()","IgbRowSelectorTemplateDetails":"IgbRowSelectorTemplateDetails()","Deselect()":"Deselect()","Deselect":"Deselect()","DeselectAsync()":"DeselectAsync()","DeselectAsync":"DeselectAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Index":"Index","Key":"Key","RowID":"RowID","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbRowSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSeparator","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSeparator()":"IgbRowSeparator()","IgbRowSeparator":"IgbRowSeparator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbRowSeparatorInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSeparatorInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSeparatorInfo()":"IgbRowSeparatorInfo()","IgbRowSeparatorInfo":"IgbRowSeparatorInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowSeparatorModule()":"IgbRowSeparatorModule()","IgbRowSeparatorModule":"IgbRowSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbRowToggleEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowToggleEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowToggleEventArgs()":"IgbRowToggleEventArgs()","IgbRowToggleEventArgs":"IgbRowToggleEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowToggleEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowToggleEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowToggleEventArgsDetail()":"IgbRowToggleEventArgsDetail()","IgbRowToggleEventArgsDetail":"IgbRowToggleEventArgsDetail()","Cancel":"Cancel","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RowID":"RowID","RowKey":"RowKey","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbRowType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbRowType","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbRowType()":"IgbRowType()","IgbRowType":"IgbRowType()","AddRowUI":"AddRowUI","Cells":"Cells","Children":"Children","Data":"Data","Del()":"Del()","Del":"Del()","DelAsync()":"DelAsync()","DelAsync":"DelAsync()","Deleted":"Deleted","Disabled":"Disabled","EphemeralKey":"EphemeralKey","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focused":"Focused","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Grid":"Grid","GroupRow":"GroupRow","HasChildren":"HasChildren","InEditMode":"InEditMode","Index":"Index","IsGroupByRow":"IsGroupByRow","IsSummaryRow":"IsSummaryRow","Key":"Key","MethodTarget":"MethodTarget","Pin()":"Pin()","Pin":"Pin()","PinAsync()":"PinAsync()","PinAsync":"PinAsync()","Pinned":"Pinned","RowParent":"RowParent","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TreeRow":"TreeRow","Type":"Type","Unpin()":"Unpin()","Unpin":"Unpin()","UnpinAsync()":"UnpinAsync()","UnpinAsync":"UnpinAsync()","Update(object)":"Update(object)","Update":"Update(object)","UpdateAsync(object)":"UpdateAsync(object)","UpdateAsync":"UpdateAsync(object)","Validation":"Validation","ViewIndex":"ViewIndex"}}],"IgbScaleLegend":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScaleLegend","k":"class","s":"classes","m":{"FlushTextContentChangedCheckAsync()":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheckAsync":"FlushTextContentChangedCheckAsync()","FlushTextContentChangedCheck()":"FlushTextContentChangedCheck()","FlushTextContentChangedCheck":"FlushTextContentChangedCheck()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","DefaultEventBehavior":"DefaultEventBehavior","LegendItemMouseLeftButtonDownScript":"LegendItemMouseLeftButtonDownScript","LegendItemMouseLeftButtonDown":"LegendItemMouseLeftButtonDown","LegendItemMouseLeftButtonUpScript":"LegendItemMouseLeftButtonUpScript","LegendItemMouseLeftButtonUp":"LegendItemMouseLeftButtonUp","LegendItemMouseEnterScript":"LegendItemMouseEnterScript","LegendItemMouseEnter":"LegendItemMouseEnter","LegendItemMouseLeaveScript":"LegendItemMouseLeaveScript","LegendItemMouseLeave":"LegendItemMouseLeave","LegendItemMouseMoveScript":"LegendItemMouseMoveScript","LegendItemMouseMove":"LegendItemMouseMove","LegendTextContentChangedScript":"LegendTextContentChangedScript","LegendTextContentChanged":"LegendTextContentChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScaleLegend()":"IgbScaleLegend()","IgbScaleLegend":"IgbScaleLegend()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbScaleLegendModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScaleLegendModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScaleLegendModule()":"IgbScaleLegendModule()","IgbScaleLegendModule":"IgbScaleLegendModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScalerParams":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScalerParams","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScalerParams()":"IgbScalerParams()","IgbScalerParams":"IgbScalerParams()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ReferenceValue":"ReferenceValue","Type":"Type"}}],"IgbScatterAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","TrianglesSource":"TrianglesSource","TrianglesSourceScript":"TrianglesSourceScript","TriangleVertexMemberPath1":"TriangleVertexMemberPath1","TriangleVertexMemberPath2":"TriangleVertexMemberPath2","TriangleVertexMemberPath3":"TriangleVertexMemberPath3","XMemberAsLegendLabel":"XMemberAsLegendLabel","YMemberAsLegendLabel":"YMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","YMemberAsLegendUnit":"YMemberAsLegendUnit","TriangulationStatusChangedScript":"TriangulationStatusChangedScript","TriangulationStatusChanged":"TriangulationStatusChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterAreaSeries()":"IgbScatterAreaSeries()","IgbScatterAreaSeries":"IgbScatterAreaSeries()","ActualColorScale":"ActualColorScale","AttachImage(object)":"AttachImage(object)","AttachImage":"AttachImage(object)","AttachImageAsync(object)":"AttachImageAsync(object)","AttachImageAsync":"AttachImageAsync(object)","ColorMemberAsLegendLabel":"ColorMemberAsLegendLabel","ColorMemberAsLegendUnit":"ColorMemberAsLegendUnit","ColorMemberPath":"ColorMemberPath","ColorScale":"ColorScale","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","Type":"Type","UpdateActualColorScale()":"UpdateActualColorScale()","UpdateActualColorScale":"UpdateActualColorScale()","UpdateActualColorScaleAsync()":"UpdateActualColorScaleAsync()","UpdateActualColorScaleAsync":"UpdateActualColorScaleAsync()"}}],"IgbScatterAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterAreaSeriesModule()":"IgbScatterAreaSeriesModule()","IgbScatterAreaSeriesModule":"IgbScatterAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterBase","k":"class","s":"classes","m":{"MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterBase()":"IgbScatterBase()","IgbScatterBase":"IgbScatterBase()","ActualItemSearchMode":"ActualItemSearchMode","ActualTrendLineBrush":"ActualTrendLineBrush","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterStyleScript":"AssigningScatterStyleScript","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","HighlightedXMemberPath":"HighlightedXMemberPath","HighlightedYMemberPath":"HighlightedYMemberPath","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","MaximumMarkers":"MaximumMarkers","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","TrendLineBrush":"TrendLineBrush","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","TrendLineZIndex":"TrendLineZIndex","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","XMemberAsLegendLabel":"XMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","XMemberPath":"XMemberPath","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript","YMemberAsLegendLabel":"YMemberAsLegendLabel","YMemberAsLegendUnit":"YMemberAsLegendUnit","YMemberPath":"YMemberPath"}}],"IgbScatterContourSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterContourSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","TrianglesSource":"TrianglesSource","TrianglesSourceScript":"TrianglesSourceScript","TriangleVertexMemberPath1":"TriangleVertexMemberPath1","TriangleVertexMemberPath2":"TriangleVertexMemberPath2","TriangleVertexMemberPath3":"TriangleVertexMemberPath3","XMemberAsLegendLabel":"XMemberAsLegendLabel","YMemberAsLegendLabel":"YMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","YMemberAsLegendUnit":"YMemberAsLegendUnit","TriangulationStatusChangedScript":"TriangulationStatusChangedScript","TriangulationStatusChanged":"TriangulationStatusChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterContourSeries()":"IgbScatterContourSeries()","IgbScatterContourSeries":"IgbScatterContourSeries()","ActualFillScale":"ActualFillScale","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FillScale":"FillScale","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","Type":"Type","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","ValueMemberPath":"ValueMemberPath","ValueResolver":"ValueResolver"}}],"IgbScatterContourSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterContourSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterContourSeriesModule()":"IgbScatterContourSeriesModule()","IgbScatterContourSeriesModule":"IgbScatterContourSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterLineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath","HighlightedXMemberPath":"HighlightedXMemberPath","HighlightedYMemberPath":"HighlightedYMemberPath","XMemberAsLegendLabel":"XMemberAsLegendLabel","YMemberAsLegendLabel":"YMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","YMemberAsLegendUnit":"YMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","TrendLineZIndex":"TrendLineZIndex","MaximumMarkers":"MaximumMarkers","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ActualItemSearchMode":"ActualItemSearchMode","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","AssigningScatterStyleScript":"AssigningScatterStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterLineSeries()":"IgbScatterLineSeries()","IgbScatterLineSeries":"IgbScatterLineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting"}}],"IgbScatterLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterLineSeriesModule()":"IgbScatterLineSeriesModule()","IgbScatterLineSeriesModule":"IgbScatterLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterPolygonSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterPolygonSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ShapeMemberPath":"ShapeMemberPath","HighlightedShapeMemberPath":"HighlightedShapeMemberPath","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","ShapeFilterResolution":"ShapeFilterResolution","AssigningShapeStyleScript":"AssigningShapeStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","StyleShapeScript":"StyleShapeScript","StyleShape":"StyleShape","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterPolygonSeries()":"IgbScatterPolygonSeries()","IgbScatterPolygonSeries":"IgbScatterPolygonSeries()","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerOutline":"ActualMarkerOutline","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","MarkerBrush":"MarkerBrush","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","MarkerFillMode":"MarkerFillMode","MarkerOutline":"MarkerOutline","MarkerOutlineMode":"MarkerOutlineMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","MarkerType":"MarkerType","ShapeStyle":"ShapeStyle","Type":"Type"}}],"IgbScatterPolygonSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterPolygonSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterPolygonSeriesModule()":"IgbScatterPolygonSeriesModule()","IgbScatterPolygonSeriesModule":"IgbScatterPolygonSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterPolylineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterPolylineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ShapeMemberPath":"ShapeMemberPath","HighlightedShapeMemberPath":"HighlightedShapeMemberPath","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","ShapeFilterResolution":"ShapeFilterResolution","AssigningShapeStyleScript":"AssigningShapeStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","StyleShapeScript":"StyleShapeScript","StyleShape":"StyleShape","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterPolylineSeries()":"IgbScatterPolylineSeries()","IgbScatterPolylineSeries":"IgbScatterPolylineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ShapeStyle":"ShapeStyle","Type":"Type"}}],"IgbScatterPolylineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterPolylineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterPolylineSeriesModule()":"IgbScatterPolylineSeriesModule()","IgbScatterPolylineSeriesModule":"IgbScatterPolylineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath","HighlightedXMemberPath":"HighlightedXMemberPath","HighlightedYMemberPath":"HighlightedYMemberPath","XMemberAsLegendLabel":"XMemberAsLegendLabel","YMemberAsLegendLabel":"YMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","YMemberAsLegendUnit":"YMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","TrendLineZIndex":"TrendLineZIndex","MaximumMarkers":"MaximumMarkers","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ActualItemSearchMode":"ActualItemSearchMode","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","AssigningScatterStyleScript":"AssigningScatterStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterSeries()":"IgbScatterSeries()","IgbScatterSeries":"IgbScatterSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbScatterSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterSeriesModule()":"IgbScatterSeriesModule()","IgbScatterSeriesModule":"IgbScatterSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterSplineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterSplineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","XMemberPath":"XMemberPath","YMemberPath":"YMemberPath","HighlightedXMemberPath":"HighlightedXMemberPath","HighlightedYMemberPath":"HighlightedYMemberPath","XMemberAsLegendLabel":"XMemberAsLegendLabel","YMemberAsLegendLabel":"YMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","YMemberAsLegendUnit":"YMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","TrendLineZIndex":"TrendLineZIndex","MaximumMarkers":"MaximumMarkers","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ActualItemSearchMode":"ActualItemSearchMode","IsCustomScatterStyleAllowed":"IsCustomScatterStyleAllowed","IsCustomScatterMarkerStyleAllowed":"IsCustomScatterMarkerStyleAllowed","AssigningScatterStyleScript":"AssigningScatterStyleScript","AssigningScatterStyle":"AssigningScatterStyle","AssigningScatterMarkerStyleScript":"AssigningScatterMarkerStyleScript","AssigningScatterMarkerStyle":"AssigningScatterMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterSplineSeries()":"IgbScatterSplineSeries()","IgbScatterSplineSeries":"IgbScatterSplineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Stiffness":"Stiffness","Type":"Type"}}],"IgbScatterSplineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterSplineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterSplineSeriesModule()":"IgbScatterSplineSeriesModule()","IgbScatterSplineSeriesModule":"IgbScatterSplineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbScatterTriangulationSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScatterTriangulationSeries","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScatterTriangulationSeries()":"IgbScatterTriangulationSeries()","IgbScatterTriangulationSeries":"IgbScatterTriangulationSeries()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","TriangleVertexMemberPath1":"TriangleVertexMemberPath1","TriangleVertexMemberPath2":"TriangleVertexMemberPath2","TriangleVertexMemberPath3":"TriangleVertexMemberPath3","TrianglesSource":"TrianglesSource","TrianglesSourceScript":"TrianglesSourceScript","TriangulationStatusChanged":"TriangulationStatusChanged","TriangulationStatusChangedScript":"TriangulationStatusChangedScript","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","XMemberAsLegendLabel":"XMemberAsLegendLabel","XMemberAsLegendUnit":"XMemberAsLegendUnit","XMemberPath":"XMemberPath","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript","YMemberAsLegendLabel":"YMemberAsLegendLabel","YMemberAsLegendUnit":"YMemberAsLegendUnit","YMemberPath":"YMemberPath"}}],"IgbScrollStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbScrollStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbScrollStrategy()":"IgbScrollStrategy()","IgbScrollStrategy":"IgbScrollStrategy()","Attach()":"Attach()","Attach":"Attach()","AttachAsync()":"AttachAsync()","AttachAsync":"AttachAsync()","Detach()":"Detach()","Detach":"Detach()","DetachAsync()":"DetachAsync()","DetachAsync":"DetachAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbSearchInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSearchInfo","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SearchText":"SearchText","CaseSensitive":"CaseSensitive","ExactMatch":"ExactMatch","MatchCount":"MatchCount","Content":"Content","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSearchInfo()":"IgbSearchInfo()","IgbSearchInfo":"IgbSearchInfo()","ActiveMatchIndex":"ActiveMatchIndex","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MatchInfoCache":"MatchInfoCache","MatchInfoCacheScript":"MatchInfoCacheScript","Type":"Type"}}],"IgbSectionFooter":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSectionFooter","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSectionFooter()":"IgbSectionFooter()","IgbSectionFooter":"IgbSectionFooter()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSectionFooterModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSectionFooterModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSectionFooterModule()":"IgbSectionFooterModule()","IgbSectionFooterModule":"IgbSectionFooterModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSectionHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSectionHeader","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSectionHeader()":"IgbSectionHeader()","IgbSectionHeader":"IgbSectionHeader()","ActualSelectedBackground":"ActualSelectedBackground","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsCollapsable":"IsCollapsable","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","SelectedBackground":"SelectedBackground","SummaryDisplayMode":"SummaryDisplayMode","Type":"Type"}}],"IgbSectionHeaderCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSectionHeaderCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSectionHeaderCellInfo()":"IgbSectionHeaderCellInfo()","IgbSectionHeaderCellInfo":"IgbSectionHeaderCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ResolvedSummaryText":"ResolvedSummaryText","ResolvedText":"ResolvedText","SummaryDisplayMode":"SummaryDisplayMode","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSectionHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSectionHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSectionHeaderModule()":"IgbSectionHeaderModule()","IgbSectionHeaderModule":"IgbSectionHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSectionInformation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSectionInformation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSectionInformation()":"IgbSectionInformation()","IgbSectionInformation":"IgbSectionInformation()","EndIndex":"EndIndex","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupKeyProperties":"GroupKeyProperties","GroupKeyValues":"GroupKeyValues","GroupKeyValuesScript":"GroupKeyValuesScript","StartIndex":"StartIndex","SummaryResults":"SummaryResults","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelect":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelect","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelect()":"IgbSelect()","IgbSelect":"IgbSelect()","Autofocus":"Autofocus","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","ClearSelectionAsync()":"ClearSelectionAsync()","ClearSelectionAsync":"ClearSelectionAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","Distance":"Distance","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetGroups()":"GetGroups()","GetGroups":"GetGroups()","GetGroupsAsync()":"GetGroupsAsync()","GetGroupsAsync":"GetGroupsAsync()","GetItems()":"GetItems()","GetItems":"GetItems()","GetItemsAsync()":"GetItemsAsync()","GetItemsAsync":"GetItemsAsync()","GetSelectedItem()":"GetSelectedItem()","GetSelectedItem":"GetSelectedItem()","GetSelectedItemAsync()":"GetSelectedItemAsync()","GetSelectedItemAsync":"GetSelectedItemAsync()","Invalid":"Invalid","Label":"Label","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Outlined":"Outlined","ParentTypeName":"ParentTypeName","Placeholder":"Placeholder","Placement":"Placement","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ScrollStrategy":"ScrollStrategy","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelect","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","EmitEvent":"EmitEvent","KeepOpenOnSelect":"KeepOpenOnSelect","KeepOpenOnOutsideClick":"KeepOpenOnOutsideClick","Open":"Open","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelect()":"IgbSelect()","IgbSelect":"IgbSelect()","Autofocus":"Autofocus","Blur":"Blur","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","ClearSelectionAsync()":"ClearSelectionAsync()","ClearSelectionAsync":"ClearSelectionAsync()","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","Distance":"Distance","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusScript":"FocusScript","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GetGroups()":"GetGroups()","GetGroups":"GetGroups()","GetGroupsAsync()":"GetGroupsAsync()","GetGroupsAsync":"GetGroupsAsync()","GetItems()":"GetItems()","GetItems":"GetItems()","GetItemsAsync()":"GetItemsAsync()","GetItemsAsync":"GetItemsAsync()","GetSelectedItem()":"GetSelectedItem()","GetSelectedItem":"GetSelectedItem()","GetSelectedItemAsync()":"GetSelectedItemAsync()","GetSelectedItemAsync":"GetSelectedItemAsync()","Invalid":"Invalid","Label":"Label","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Outlined":"Outlined","ParentTypeName":"ParentTypeName","Placeholder":"Placeholder","Placement":"Placement","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ScrollStrategy":"ScrollStrategy","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}}],"IgbSelectAllCheckboxChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectAllCheckboxChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectAllCheckboxChangedEventArgs()":"IgbSelectAllCheckboxChangedEventArgs()","IgbSelectAllCheckboxChangedEventArgs":"IgbSelectAllCheckboxChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsChecked":"IsChecked","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectedItemChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectedItemChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectedItemChangedEventArgs()":"IgbSelectedItemChangedEventArgs()","IgbSelectedItemChangedEventArgs":"IgbSelectedItemChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewItem":"NewItem","OldItem":"OldItem","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectedItemChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectedItemChangingEventArgs","k":"class","s":"classes","m":{"OldItem":"OldItem","NewItem":"NewItem","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectedItemChangingEventArgs()":"IgbSelectedItemChangingEventArgs()","IgbSelectedItemChangingEventArgs":"IgbSelectedItemChangingEventArgs()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectedItemsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectedItemsChangedEventArgs()":"IgbSelectedItemsChangedEventArgs()","IgbSelectedItemsChangedEventArgs":"IgbSelectedItemsChangedEventArgs()","CurrentItems":"CurrentItems","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewItems":"NewItems","OldItems":"OldItems","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectedItemsChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectedItemsChangingEventArgs","k":"class","s":"classes","m":{"OldItems":"OldItems","NewItems":"NewItems","CurrentItems":"CurrentItems","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectedItemsChangingEventArgs()":"IgbSelectedItemsChangingEventArgs()","IgbSelectedItemsChangingEventArgs":"IgbSelectedItemsChangingEventArgs()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectedValueChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectedValueChangedEventArgs()":"IgbSelectedValueChangedEventArgs()","IgbSelectedValueChangedEventArgs":"IgbSelectedValueChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","OldValue":"OldValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectGroup":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectGroup()":"IgbSelectGroup()","IgbSelectGroup":"IgbSelectGroup()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Items":"Items","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectGroup","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectGroup()":"IgbSelectGroup()","IgbSelectGroup":"IgbSelectGroup()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Items":"Items","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbSelectGroupModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectGroupModule()":"IgbSelectGroupModule()","IgbSelectGroupModule":"IgbSelectGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectGroupModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectGroupModule()":"IgbSelectGroupModule()","IgbSelectGroupModule":"IgbSelectGroupModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSelectHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectHeader()":"IgbSelectHeader()","IgbSelectHeader":"IgbSelectHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectHeader","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectHeader()":"IgbSelectHeader()","IgbSelectHeader":"IgbSelectHeader()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbSelectHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectHeaderModule()":"IgbSelectHeaderModule()","IgbSelectHeaderModule":"IgbSelectHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectHeaderModule()":"IgbSelectHeaderModule()","IgbSelectHeaderModule":"IgbSelectHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSelectItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectItem","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Active":"Active","Disabled":"Disabled","Selected":"Selected","Value":"Value","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectItem()":"IgbSelectItem()","IgbSelectItem":"IgbSelectItem()","DirectRenderElementName":"DirectRenderElementName","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SelectParent":"SelectParent","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectItem","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Active":"Active","Disabled":"Disabled","Selected":"Selected","Value":"Value","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectItem()":"IgbSelectItem()","IgbSelectItem":"IgbSelectItem()","DirectRenderElementName":"DirectRenderElementName","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SelectParent":"SelectParent","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbSelectItemComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectItemComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectItemComponentEventArgs()":"IgbSelectItemComponentEventArgs()","IgbSelectItemComponentEventArgs":"IgbSelectItemComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectItemComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectItemComponentEventArgs()":"IgbSelectItemComponentEventArgs()","IgbSelectItemComponentEventArgs":"IgbSelectItemComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSelectItemModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectItemModule()":"IgbSelectItemModule()","IgbSelectItemModule":"IgbSelectItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectItemModule()":"IgbSelectItemModule()","IgbSelectItemModule":"IgbSelectItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSelectModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSelectModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectModule()":"IgbSelectModule()","IgbSelectModule":"IgbSelectModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSelectModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSelectModule()":"IgbSelectModule()","IgbSelectModule":"IgbSelectModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeries","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeries()":"IgbSeries()","IgbSeries":"IgbSeries()","ActualAreaFillOpacity":"ActualAreaFillOpacity","ActualBrush":"ActualBrush","ActualFocusBrush":"ActualFocusBrush","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","ActualHighlightingMode":"ActualHighlightingMode","ActualHitTestMode":"ActualHitTestMode","ActualLayers":"ActualLayers","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","ActualOutline":"ActualOutline","ActualResolution":"ActualResolution","ActualSelectionBrush":"ActualSelectionBrush","ActualSelectionMode":"ActualSelectionMode","ActualThickness":"ActualThickness","AreaFillOpacity":"AreaFillOpacity","AttachTooltipToRoot":"AttachTooltipToRoot","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","Brush":"Brush","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","DashArray":"DashArray","DataLegendGroup":"DataLegendGroup","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Dispose()":"Dispose()","Dispose":"Dispose()","ExpectFunctions":"ExpectFunctions","FinalValue":"FinalValue","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusBrush":"FocusBrush","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","HitTestMode":"HitTestMode","Index":"Index","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","IsDropShadowEnabled":"IsDropShadowEnabled","IsHighlightingEnabled":"IsHighlightingEnabled","Layers":"Layers","Legend":"Legend","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","LegendItemVisibility":"LegendItemVisibility","LegendScript":"LegendScript","LineCap":"LineCap","LineJoin":"LineJoin","MarkerFillOpacity":"MarkerFillOpacity","MouseOverEnabled":"MouseOverEnabled","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Opacity":"Opacity","Outline":"Outline","OutlineMode":"OutlineMode","PercentChange":"PercentChange","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RenderRequested":"RenderRequested","RenderRequestedScript":"RenderRequestedScript","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","Resolution":"Resolution","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","SafeActualBrush":"SafeActualBrush","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","SelectionBrush":"SelectionBrush","SelectionThickness":"SelectionThickness","SeriesViewerParent":"SeriesViewerParent","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShowDefaultTooltip":"ShowDefaultTooltip","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","Thickness":"Thickness","Title":"Title","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","TooltipTemplate":"TooltipTemplate","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInDuration":"TransitionInDuration","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutCompleted":"TransitionOutCompleted","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutDuration":"TransitionOutDuration","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionOutSpeedType":"TransitionOutSpeedType","Type":"Type","UseItemWiseColors":"UseItemWiseColors","UseSingleShadow":"UseSingleShadow","Visibility":"Visibility","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMode":"VisibleRangeMode"}}],"IgbSeriesCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbSeries)":"InsertItem(int, IgbSeries)","InsertItem":"InsertItem(int, IgbSeries)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbSeries)":"SetItem(int, IgbSeries)","SetItem":"SetItem(int, IgbSeries)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbSeries)":"Add(IgbSeries)","Add":"Add(IgbSeries)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbSeries[], int)":"CopyTo(IgbSeries[], int)","CopyTo":"CopyTo(IgbSeries[], int)","Contains(IgbSeries)":"Contains(IgbSeries)","Contains":"Contains(IgbSeries)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbSeries)":"IndexOf(IgbSeries)","IndexOf":"IndexOf(IgbSeries)","Insert(int, IgbSeries)":"Insert(int, IgbSeries)","Insert":"Insert(int, IgbSeries)","Remove(IgbSeries)":"Remove(IgbSeries)","Remove":"Remove(IgbSeries)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesCollection(object, string)":"IgbSeriesCollection(object, string)","IgbSeriesCollection":"IgbSeriesCollection(object, string)"}}],"IgbSeriesLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesLayer","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesLayer()":"IgbSeriesLayer()","IgbSeriesLayer":"IgbSeriesLayer()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PropertyOverlays":"PropertyOverlays","Type":"Type","ZIndex":"ZIndex"}}],"IgbSeriesLayerCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesLayerCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbSeriesLayer)":"InsertItem(int, IgbSeriesLayer)","InsertItem":"InsertItem(int, IgbSeriesLayer)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbSeriesLayer)":"SetItem(int, IgbSeriesLayer)","SetItem":"SetItem(int, IgbSeriesLayer)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbSeriesLayer)":"Add(IgbSeriesLayer)","Add":"Add(IgbSeriesLayer)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbSeriesLayer[], int)":"CopyTo(IgbSeriesLayer[], int)","CopyTo":"CopyTo(IgbSeriesLayer[], int)","Contains(IgbSeriesLayer)":"Contains(IgbSeriesLayer)","Contains":"Contains(IgbSeriesLayer)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbSeriesLayer)":"IndexOf(IgbSeriesLayer)","IndexOf":"IndexOf(IgbSeriesLayer)","Insert(int, IgbSeriesLayer)":"Insert(int, IgbSeriesLayer)","Insert":"Insert(int, IgbSeriesLayer)","Remove(IgbSeriesLayer)":"Remove(IgbSeriesLayer)","Remove":"Remove(IgbSeriesLayer)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesLayerCollection(object, string)":"IgbSeriesLayerCollection(object, string)","IgbSeriesLayerCollection":"IgbSeriesLayerCollection(object, string)"}}],"IgbSeriesLayerPropertyOverlay":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesLayerPropertyOverlay","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesLayerPropertyOverlay()":"IgbSeriesLayerPropertyOverlay()","IgbSeriesLayerPropertyOverlay":"IgbSeriesLayerPropertyOverlay()","CurrentValuePropertyName":"CurrentValuePropertyName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsAlwaysApplied":"IsAlwaysApplied","IsSourceOverlay":"IsSourceOverlay","PropertyName":"PropertyName","PropertyUpdated":"PropertyUpdated","PropertyUpdatedScript":"PropertyUpdatedScript","Type":"Type","Value":"Value","ValueResolving":"ValueResolving","ValueResolvingScript":"ValueResolvingScript","ValueScript":"ValueScript"}}],"IgbSeriesLayerPropertyOverlayCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesLayerPropertyOverlayCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbSeriesLayerPropertyOverlay)":"InsertItem(int, IgbSeriesLayerPropertyOverlay)","InsertItem":"InsertItem(int, IgbSeriesLayerPropertyOverlay)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbSeriesLayerPropertyOverlay)":"SetItem(int, IgbSeriesLayerPropertyOverlay)","SetItem":"SetItem(int, IgbSeriesLayerPropertyOverlay)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbSeriesLayerPropertyOverlay)":"Add(IgbSeriesLayerPropertyOverlay)","Add":"Add(IgbSeriesLayerPropertyOverlay)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbSeriesLayerPropertyOverlay[], int)":"CopyTo(IgbSeriesLayerPropertyOverlay[], int)","CopyTo":"CopyTo(IgbSeriesLayerPropertyOverlay[], int)","Contains(IgbSeriesLayerPropertyOverlay)":"Contains(IgbSeriesLayerPropertyOverlay)","Contains":"Contains(IgbSeriesLayerPropertyOverlay)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbSeriesLayerPropertyOverlay)":"IndexOf(IgbSeriesLayerPropertyOverlay)","IndexOf":"IndexOf(IgbSeriesLayerPropertyOverlay)","Insert(int, IgbSeriesLayerPropertyOverlay)":"Insert(int, IgbSeriesLayerPropertyOverlay)","Insert":"Insert(int, IgbSeriesLayerPropertyOverlay)","Remove(IgbSeriesLayerPropertyOverlay)":"Remove(IgbSeriesLayerPropertyOverlay)","Remove":"Remove(IgbSeriesLayerPropertyOverlay)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesLayerPropertyOverlayCollection(object, string)":"IgbSeriesLayerPropertyOverlayCollection(object, string)","IgbSeriesLayerPropertyOverlayCollection":"IgbSeriesLayerPropertyOverlayCollection(object, string)"}}],"IgbSeriesLayerPropertyOverlayValueResolvingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesLayerPropertyOverlayValueResolvingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesLayerPropertyOverlayValueResolvingEventArgs()":"IgbSeriesLayerPropertyOverlayValueResolvingEventArgs()","IgbSeriesLayerPropertyOverlayValueResolvingEventArgs":"IgbSeriesLayerPropertyOverlayValueResolvingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbSeriesMatcher":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesMatcher","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesMatcher()":"IgbSeriesMatcher()","IgbSeriesMatcher":"IgbSeriesMatcher()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","MemberPath":"MemberPath","MemberPathType":"MemberPathType","Title":"Title","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSeriesMatcherModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesMatcherModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesMatcherModule()":"IgbSeriesMatcherModule()","IgbSeriesMatcherModule":"IgbSeriesMatcherModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSeriesViewer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesViewer","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesViewer()":"IgbSeriesViewer()","IgbSeriesViewer":"IgbSeriesViewer()","ActualContentHitTestMode":"ActualContentHitTestMode","ActualInteractionPixelScalingRatio":"ActualInteractionPixelScalingRatio","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualSeries":"ActualSeries","ActualWindowPositionHorizontal":"ActualWindowPositionHorizontal","ActualWindowPositionVertical":"ActualWindowPositionVertical","ActualWindowRect":"ActualWindowRect","ActualWindowRectChanged":"ActualWindowRectChanged","ActualWindowRectChangedScript":"ActualWindowRectChangedScript","ActualWindowRectMinHeight":"ActualWindowRectMinHeight","ActualWindowRectMinWidth":"ActualWindowRectMinWidth","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","AutoMarginHeight":"AutoMarginHeight","AutoMarginWidth":"AutoMarginWidth","AxisLabelMouseClick":"AxisLabelMouseClick","AxisLabelMouseClickScript":"AxisLabelMouseClickScript","AxisLabelMouseDown":"AxisLabelMouseDown","AxisLabelMouseDownScript":"AxisLabelMouseDownScript","AxisLabelMouseEnter":"AxisLabelMouseEnter","AxisLabelMouseEnterScript":"AxisLabelMouseEnterScript","AxisLabelMouseLeave":"AxisLabelMouseLeave","AxisLabelMouseLeaveScript":"AxisLabelMouseLeaveScript","AxisLabelMouseOver":"AxisLabelMouseOver","AxisLabelMouseOverScript":"AxisLabelMouseOverScript","AxisLabelMouseUp":"AxisLabelMouseUp","AxisLabelMouseUpScript":"AxisLabelMouseUpScript","AxisPanelMouseClick":"AxisPanelMouseClick","AxisPanelMouseClickScript":"AxisPanelMouseClickScript","AxisPanelMouseDown":"AxisPanelMouseDown","AxisPanelMouseDownScript":"AxisPanelMouseDownScript","AxisPanelMouseEnter":"AxisPanelMouseEnter","AxisPanelMouseEnterScript":"AxisPanelMouseEnterScript","AxisPanelMouseLeave":"AxisPanelMouseLeave","AxisPanelMouseLeaveScript":"AxisPanelMouseLeaveScript","AxisPanelMouseOver":"AxisPanelMouseOver","AxisPanelMouseOverScript":"AxisPanelMouseOverScript","AxisPanelMouseUp":"AxisPanelMouseUp","AxisPanelMouseUpScript":"AxisPanelMouseUpScript","BottomMargin":"BottomMargin","Brushes":"Brushes","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelCreatingAnnotation()":"CancelCreatingAnnotation()","CancelCreatingAnnotation":"CancelCreatingAnnotation()","CancelCreatingAnnotationAsync()":"CancelCreatingAnnotationAsync()","CancelCreatingAnnotationAsync":"CancelCreatingAnnotationAsync()","CancelDeletingAnnotation()":"CancelDeletingAnnotation()","CancelDeletingAnnotation":"CancelDeletingAnnotation()","CancelDeletingAnnotationAsync()":"CancelDeletingAnnotationAsync()","CancelDeletingAnnotationAsync":"CancelDeletingAnnotationAsync()","CancelManipulation()":"CancelManipulation()","CancelManipulation":"CancelManipulation()","CancelManipulationAsync()":"CancelManipulationAsync()","CancelManipulationAsync":"CancelManipulationAsync()","CaptureImage(IgbCaptureImageSettings)":"CaptureImage(IgbCaptureImageSettings)","CaptureImage":"CaptureImage(IgbCaptureImageSettings)","CaptureImageAsync(IgbCaptureImageSettings)":"CaptureImageAsync(IgbCaptureImageSettings)","CaptureImageAsync":"CaptureImageAsync(IgbCaptureImageSettings)","ChartTitle":"ChartTitle","ClearTileZoomCache()":"ClearTileZoomCache()","ClearTileZoomCache":"ClearTileZoomCache()","ClearTileZoomCacheAsync()":"ClearTileZoomCacheAsync()","ClearTileZoomCacheAsync":"ClearTileZoomCacheAsync()","ContentHitTestMode":"ContentHitTestMode","ContentSeries":"ContentSeries","CrosshairPoint":"CrosshairPoint","CrosshairVisibility":"CrosshairVisibility","DefaultEventBehavior":"DefaultEventBehavior","DefaultInteraction":"DefaultInteraction","Destroy()":"Destroy()","Destroy":"Destroy()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","DragModifier":"DragModifier","EffectiveViewport":"EffectiveViewport","EndTiledZoomingIfRunning()":"EndTiledZoomingIfRunning()","EndTiledZoomingIfRunning":"EndTiledZoomingIfRunning()","EndTiledZoomingIfRunningAsync()":"EndTiledZoomingIfRunningAsync()","EndTiledZoomingIfRunningAsync":"EndTiledZoomingIfRunningAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishCreatingAnnotation()":"FinishCreatingAnnotation()","FinishCreatingAnnotation":"FinishCreatingAnnotation()","FinishCreatingAnnotationAsync()":"FinishCreatingAnnotationAsync()","FinishCreatingAnnotationAsync":"FinishCreatingAnnotationAsync()","FinishDeletingAnnotation()":"FinishDeletingAnnotation()","FinishDeletingAnnotation":"FinishDeletingAnnotation()","FinishDeletingAnnotationAsync()":"FinishDeletingAnnotationAsync()","FinishDeletingAnnotationAsync":"FinishDeletingAnnotationAsync()","FireMouseLeaveOnManipulationStart":"FireMouseLeaveOnManipulationStart","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","FocusBrush":"FocusBrush","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","FocusMode":"FocusMode","FocusTransitionDuration":"FocusTransitionDuration","FocusedSeriesItems":"FocusedSeriesItems","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FullSeries":"FullSeries","GetActualWindowScaleHorizontal()":"GetActualWindowScaleHorizontal()","GetActualWindowScaleHorizontal":"GetActualWindowScaleHorizontal()","GetActualWindowScaleHorizontalAsync()":"GetActualWindowScaleHorizontalAsync()","GetActualWindowScaleHorizontalAsync":"GetActualWindowScaleHorizontalAsync()","GetActualWindowScaleVertical()":"GetActualWindowScaleVertical()","GetActualWindowScaleVertical":"GetActualWindowScaleVertical()","GetActualWindowScaleVerticalAsync()":"GetActualWindowScaleVerticalAsync()","GetActualWindowScaleVerticalAsync":"GetActualWindowScaleVerticalAsync()","GetAllAxes()":"GetAllAxes()","GetAllAxes":"GetAllAxes()","GetAllSeries()":"GetAllSeries()","GetAllSeries":"GetAllSeries()","GetAnimationIdleVersionNumber()":"GetAnimationIdleVersionNumber()","GetAnimationIdleVersionNumber":"GetAnimationIdleVersionNumber()","GetAnimationIdleVersionNumberAsync()":"GetAnimationIdleVersionNumberAsync()","GetAnimationIdleVersionNumberAsync":"GetAnimationIdleVersionNumberAsync()","GetCurrentActualWindowRect()":"GetCurrentActualWindowRect()","GetCurrentActualWindowRect":"GetCurrentActualWindowRect()","GetCurrentActualWindowRectAsync()":"GetCurrentActualWindowRectAsync()","GetCurrentActualWindowRectAsync":"GetCurrentActualWindowRectAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentViewportRect()":"GetCurrentViewportRect()","GetCurrentViewportRect":"GetCurrentViewportRect()","GetCurrentViewportRectAsync()":"GetCurrentViewportRectAsync()","GetCurrentViewportRectAsync":"GetCurrentViewportRectAsync()","GetCurrentWindowRect()":"GetCurrentWindowRect()","GetCurrentWindowRect":"GetCurrentWindowRect()","GetCurrentWindowRectAsync()":"GetCurrentWindowRectAsync()","GetCurrentWindowRectAsync":"GetCurrentWindowRectAsync()","GridAreaRectChanged":"GridAreaRectChanged","GridAreaRectChangedScript":"GridAreaRectChangedScript","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","HighlightingBehavior":"HighlightingBehavior","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","HighlightingFadeOpacity":"HighlightingFadeOpacity","HighlightingMode":"HighlightingMode","HighlightingTransitionDuration":"HighlightingTransitionDuration","HorizontalCrosshairBrush":"HorizontalCrosshairBrush","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","ImageCaptured":"ImageCaptured","ImageCapturedScript":"ImageCapturedScript","InteractionOverride":"InteractionOverride","InteractionPixelScalingRatio":"InteractionPixelScalingRatio","IsAnimationActive()":"IsAnimationActive()","IsAnimationActive":"IsAnimationActive()","IsAnimationActiveAsync()":"IsAnimationActiveAsync()","IsAnimationActiveAsync":"IsAnimationActiveAsync()","IsAntiAliasingEnabledDuringInteraction":"IsAntiAliasingEnabledDuringInteraction","IsPagePanningAllowed":"IsPagePanningAllowed","IsSurfaceInteractionDisabled":"IsSurfaceInteractionDisabled","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","IsWindowSyncedToVisibleRange":"IsWindowSyncedToVisibleRange","LeftMargin":"LeftMargin","Legend":"Legend","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendScript":"LegendScript","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","NotifyContainerResized()":"NotifyContainerResized()","NotifyContainerResized":"NotifyContainerResized()","NotifyContainerResizedAsync()":"NotifyContainerResizedAsync()","NotifyContainerResizedAsync":"NotifyContainerResizedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","Outlines":"Outlines","PanModifier":"PanModifier","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","PlotAreaBackground":"PlotAreaBackground","PlotAreaClicked":"PlotAreaClicked","PlotAreaClickedScript":"PlotAreaClickedScript","PlotAreaMouseEnter":"PlotAreaMouseEnter","PlotAreaMouseEnterScript":"PlotAreaMouseEnterScript","PlotAreaMouseLeave":"PlotAreaMouseLeave","PlotAreaMouseLeaveScript":"PlotAreaMouseLeaveScript","PlotAreaMouseLeftButtonDown":"PlotAreaMouseLeftButtonDown","PlotAreaMouseLeftButtonDownScript":"PlotAreaMouseLeftButtonDownScript","PlotAreaMouseLeftButtonUp":"PlotAreaMouseLeftButtonUp","PlotAreaMouseLeftButtonUpScript":"PlotAreaMouseLeftButtonUpScript","PlotAreaMouseOver":"PlotAreaMouseOver","PlotAreaMouseOverScript":"PlotAreaMouseOverScript","PreferHigherResolutionTiles":"PreferHigherResolutionTiles","PreviewPathFill":"PreviewPathFill","PreviewPathOpacity":"PreviewPathOpacity","PreviewPathStroke":"PreviewPathStroke","PreviewRect":"PreviewRect","RefreshCompleted":"RefreshCompleted","RefreshCompletedScript":"RefreshCompletedScript","RenderToImage(double, double)":"RenderToImage(double, double)","RenderToImage":"RenderToImage(double, double)","RenderToImageAsync(double, double)":"RenderToImageAsync(double, double)","RenderToImageAsync":"RenderToImageAsync(double, double)","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResizeIdle":"ResizeIdle","ResizeIdleMilliseconds":"ResizeIdleMilliseconds","ResizeIdleScript":"ResizeIdleScript","RightButtonDefaultInteraction":"RightButtonDefaultInteraction","RightMargin":"RightMargin","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","ScrollbarsAnimationDuration":"ScrollbarsAnimationDuration","SelectedSeriesItems":"SelectedSeriesItems","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectionBehavior":"SelectionBehavior","SelectionBrush":"SelectionBrush","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","SelectionMode":"SelectionMode","SelectionModifier":"SelectionModifier","SelectionTransitionDuration":"SelectionTransitionDuration","Series":"Series","SeriesClick":"SeriesClick","SeriesClickScript":"SeriesClickScript","SeriesCursorMouseMove":"SeriesCursorMouseMove","SeriesCursorMouseMoveScript":"SeriesCursorMouseMoveScript","SeriesMouseEnter":"SeriesMouseEnter","SeriesMouseEnterScript":"SeriesMouseEnterScript","SeriesMouseLeave":"SeriesMouseLeave","SeriesMouseLeaveScript":"SeriesMouseLeaveScript","SeriesMouseLeftButtonDown":"SeriesMouseLeftButtonDown","SeriesMouseLeftButtonDownScript":"SeriesMouseLeftButtonDownScript","SeriesMouseLeftButtonUp":"SeriesMouseLeftButtonUp","SeriesMouseLeftButtonUpScript":"SeriesMouseLeftButtonUpScript","SeriesMouseMove":"SeriesMouseMove","SeriesMouseMoveScript":"SeriesMouseMoveScript","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","ShouldMatchZOrderToSeriesOrder":"ShouldMatchZOrderToSeriesOrder","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateMouseLeave()":"SimulateMouseLeave()","SimulateMouseLeave":"SimulateMouseLeave()","SimulateMouseLeaveAsync()":"SimulateMouseLeaveAsync()","SimulateMouseLeaveAsync":"SimulateMouseLeaveAsync()","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SizeChanged":"SizeChanged","SizeChangedScript":"SizeChangedScript","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartTiledZoomingIfNecessary()":"StartTiledZoomingIfNecessary()","StartTiledZoomingIfNecessary":"StartTiledZoomingIfNecessary()","StartTiledZoomingIfNecessaryAsync()":"StartTiledZoomingIfNecessaryAsync()","StartTiledZoomingIfNecessaryAsync":"StartTiledZoomingIfNecessaryAsync()","Subtitle":"Subtitle","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleHorizontalAlignment":"SubtitleHorizontalAlignment","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleTextColor":"SubtitleTextColor","SubtitleTextStyle":"SubtitleTextStyle","SubtitleTopMargin":"SubtitleTopMargin","SyncChannel":"SyncChannel","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTextColor":"TitleTextColor","TitleTextStyle":"TitleTextStyle","TitleTopMargin":"TitleTopMargin","TopMargin":"TopMargin","Type":"Type","UseTiledZooming":"UseTiledZooming","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","VerticalCrosshairBrush":"VerticalCrosshairBrush","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","ViewerManipulationEnding":"ViewerManipulationEnding","ViewerManipulationEndingScript":"ViewerManipulationEndingScript","ViewerManipulationStarting":"ViewerManipulationStarting","ViewerManipulationStartingScript":"ViewerManipulationStartingScript","ViewportRect":"ViewportRect","WindowPositionHorizontal":"WindowPositionHorizontal","WindowPositionVertical":"WindowPositionVertical","WindowRect":"WindowRect","WindowRectChanged":"WindowRectChanged","WindowRectChangedScript":"WindowRectChangedScript","WindowRectMinHeight":"WindowRectMinHeight","WindowRectMinWidth":"WindowRectMinWidth","WindowResponse":"WindowResponse","WindowSizeMinHeight":"WindowSizeMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","ZoomCoercionMode":"ZoomCoercionMode","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomTileCacheSize":"ZoomTileCacheSize"}}],"IgbSeriesViewerManipulationEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesViewerManipulationEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesViewerManipulationEventArgs()":"IgbSeriesViewerManipulationEventArgs()","IgbSeriesViewerManipulationEventArgs":"IgbSeriesViewerManipulationEventArgs()","DragSelectRectangle":"DragSelectRectangle","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsDragSelect":"IsDragSelect","IsDragSelectCancelled":"IsDragSelectCancelled","IsDragZoom":"IsDragZoom","IsZoomPan":"IsZoomPan","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSeriesViewerSelectedSeriesItemsChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesViewerSelectedSeriesItemsChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesViewerSelectedSeriesItemsChangedEventArgs()":"IgbSeriesViewerSelectedSeriesItemsChangedEventArgs()","IgbSeriesViewerSelectedSeriesItemsChangedEventArgs":"IgbSeriesViewerSelectedSeriesItemsChangedEventArgs()","CurrentItems":"CurrentItems","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewItems":"NewItems","OldItems":"OldItems","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSeriesViewerSelectedSeriesItemsChangingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSeriesViewerSelectedSeriesItemsChangingEventArgs","k":"class","s":"classes","m":{"OldItems":"OldItems","NewItems":"NewItems","CurrentItems":"CurrentItems","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSeriesViewerSelectedSeriesItemsChangingEventArgs()":"IgbSeriesViewerSelectedSeriesItemsChangingEventArgs()","IgbSeriesViewerSelectedSeriesItemsChangingEventArgs":"IgbSeriesViewerSelectedSeriesItemsChangingEventArgs()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbShapeDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbShapeDataSource","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbShapeDataSource()":"IgbShapeDataSource()","IgbShapeDataSource":"IgbShapeDataSource()","ComputedWorldRect":"ComputedWorldRect","DatabaseSource":"DatabaseSource","DeferImportCompleted":"DeferImportCompleted","Filter":"Filter","FilterScript":"FilterScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetLargestShapeBoundsForRecord(int)":"GetLargestShapeBoundsForRecord(int)","GetLargestShapeBoundsForRecord":"GetLargestShapeBoundsForRecord(int)","GetLargestShapeBoundsForRecordAsync(int)":"GetLargestShapeBoundsForRecordAsync(int)","GetLargestShapeBoundsForRecordAsync":"GetLargestShapeBoundsForRecordAsync(int)","GetMaxLongitude(int, bool, double, double)":"GetMaxLongitude(int, bool, double, double)","GetMaxLongitude":"GetMaxLongitude(int, bool, double, double)","GetMaxLongitudeAsync(int, bool, double, double)":"GetMaxLongitudeAsync(int, bool, double, double)","GetMaxLongitudeAsync":"GetMaxLongitudeAsync(int, bool, double, double)","GetRecord(int)":"GetRecord(int)","GetRecord":"GetRecord(int)","GetRecordAsync(int)":"GetRecordAsync(int)","GetRecordAsync":"GetRecordAsync(int)","GetRecordBounds(int)":"GetRecordBounds(int)","GetRecordBounds":"GetRecordBounds(int)","GetRecordBoundsAsync(int)":"GetRecordBoundsAsync(int)","GetRecordBoundsAsync":"GetRecordBoundsAsync(int)","GetRecordFieldNames(int)":"GetRecordFieldNames(int)","GetRecordFieldNames":"GetRecordFieldNames(int)","GetRecordFieldNamesAsync(int)":"GetRecordFieldNamesAsync(int)","GetRecordFieldNamesAsync":"GetRecordFieldNamesAsync(int)","GetRecordValue(int, string)":"GetRecordValue(int, string)","GetRecordValue":"GetRecordValue(int, string)","GetRecordValueAsync(int, string)":"GetRecordValueAsync(int, string)","GetRecordValueAsync":"GetRecordValueAsync(int, string)","GetRecordValues(string)":"GetRecordValues(string)","GetRecordValues":"GetRecordValues(string)","GetRecordValuesAsync(string)":"GetRecordValuesAsync(string)","GetRecordValuesAsync":"GetRecordValuesAsync(string)","GetRecordsCount()":"GetRecordsCount()","GetRecordsCount":"GetRecordsCount()","GetRecordsCountAsync()":"GetRecordsCountAsync()","GetRecordsCountAsync":"GetRecordsCountAsync()","GetWorldBounds(bool)":"GetWorldBounds(bool)","GetWorldBounds":"GetWorldBounds(bool)","GetWorldBoundsAsync(bool)":"GetWorldBoundsAsync(bool)","GetWorldBoundsAsync":"GetWorldBoundsAsync(bool)","ImportCompleted":"ImportCompleted","ImportCompletedScript":"ImportCompletedScript","ImportPending":"ImportPending","ImportPendingScript":"ImportPendingScript","RemoveRecord(int)":"RemoveRecord(int)","RemoveRecord":"RemoveRecord(int)","RemoveRecordAsync(int)":"RemoveRecordAsync(int)","RemoveRecordAsync":"RemoveRecordAsync(int)","SendImportCompleted()":"SendImportCompleted()","SendImportCompleted":"SendImportCompleted()","SendImportCompletedAsync()":"SendImportCompletedAsync()","SendImportCompletedAsync":"SendImportCompletedAsync()","SetRecordValue(int, string, object)":"SetRecordValue(int, string, object)","SetRecordValue":"SetRecordValue(int, string, object)","SetRecordValueAsync(int, string, object)":"SetRecordValueAsync(int, string, object)","SetRecordValueAsync":"SetRecordValueAsync(int, string, object)","SetRecordValues(string, object[])":"SetRecordValues(string, object[])","SetRecordValues":"SetRecordValues(string, object[])","SetRecordValuesAsync(string, object[])":"SetRecordValuesAsync(string, object[])","SetRecordValuesAsync":"SetRecordValuesAsync(string, object[])","SetWorldBounds(bool, Rect)":"SetWorldBounds(bool, Rect)","SetWorldBounds":"SetWorldBounds(bool, Rect)","SetWorldBoundsAsync(bool, Rect)":"SetWorldBoundsAsync(bool, Rect)","SetWorldBoundsAsync":"SetWorldBoundsAsync(bool, Rect)","ShapefileSource":"ShapefileSource","ShiftAllShapes(double, double)":"ShiftAllShapes(double, double)","ShiftAllShapes":"ShiftAllShapes(double, double)","ShiftAllShapesAsync(double, double)":"ShiftAllShapesAsync(double, double)","ShiftAllShapesAsync":"ShiftAllShapesAsync(double, double)","ShiftShapes(int, double, double)":"ShiftShapes(int, double, double)","ShiftShapes":"ShiftShapes(int, double, double)","ShiftShapesAsync(int, double, double)":"ShiftShapesAsync(int, double, double)","ShiftShapesAsync":"ShiftShapesAsync(int, double, double)","Type":"Type","WorldRect":"WorldRect"}}],"IgbShapeDataSourceModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbShapeDataSourceModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbShapeDataSourceModule()":"IgbShapeDataSourceModule()","IgbShapeDataSourceModule":"IgbShapeDataSourceModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbShapefileRecord":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbShapefileRecord","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbShapefileRecord()":"IgbShapefileRecord()","IgbShapefileRecord":"IgbShapefileRecord()","Bounds":"Bounds","FieldValues":"FieldValues","FieldValuesScript":"FieldValuesScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetFieldValue(string)":"GetFieldValue(string)","GetFieldValue":"GetFieldValue(string)","GetFieldValueAsync(string)":"GetFieldValueAsync(string)","GetFieldValueAsync":"GetFieldValueAsync(string)","SetFieldValue(string, object)":"SetFieldValue(string, object)","SetFieldValue":"SetFieldValue(string, object)","SetFieldValueAsync(string, object)":"SetFieldValueAsync(string, object)","SetFieldValueAsync":"SetFieldValueAsync(string, object)","Type":"Type"}}],"IgbShapeFilterRecordEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbShapeFilterRecordEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbShapeFilterRecordEventArgs()":"IgbShapeFilterRecordEventArgs()","IgbShapeFilterRecordEventArgs":"IgbShapeFilterRecordEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Record":"Record","ShouldInclude":"ShouldInclude","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbShapeSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbShapeSeriesBase","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbShapeSeriesBase()":"IgbShapeSeriesBase()","IgbShapeSeriesBase":"IgbShapeSeriesBase()","ActualItemSearchMode":"ActualItemSearchMode","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeStyleScript":"AssigningShapeStyleScript","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","HighlightedShapeMemberPath":"HighlightedShapeMemberPath","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","ItemSearchMode":"ItemSearchMode","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ItemSearchThreshold":"ItemSearchThreshold","ShapeFilterResolution":"ShapeFilterResolution","ShapeMemberPath":"ShapeMemberPath","StyleShape":"StyleShape","StyleShapeScript":"StyleShapeScript","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbSize":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSize","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSize()":"IgbSize()","IgbSize":"IgbSize()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Height":"Height","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Width":"Width"}}],"IgbSizeScale":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSizeScale","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSizeScale()":"IgbSizeScale()","IgbSizeScale":"IgbSizeScale()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentGlobalMaximum()":"GetCurrentGlobalMaximum()","GetCurrentGlobalMaximum":"GetCurrentGlobalMaximum()","GetCurrentGlobalMaximumAsync()":"GetCurrentGlobalMaximumAsync()","GetCurrentGlobalMaximumAsync":"GetCurrentGlobalMaximumAsync()","GetCurrentGlobalMinimum()":"GetCurrentGlobalMinimum()","GetCurrentGlobalMinimum":"GetCurrentGlobalMinimum()","GetCurrentGlobalMinimumAsync()":"GetCurrentGlobalMinimumAsync()","GetCurrentGlobalMinimumAsync":"GetCurrentGlobalMinimumAsync()","GlobalMaximum":"GlobalMaximum","GlobalMinimum":"GlobalMinimum","IsLogarithmic":"IsLogarithmic","LogarithmBase":"LogarithmBase","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","Type":"Type"}}],"IgbSizeScaleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSizeScaleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSizeScaleModule()":"IgbSizeScaleModule()","IgbSizeScaleModule":"IgbSizeScaleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSliceClickEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliceClickEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliceClickEventArgs()":"IgbSliceClickEventArgs()","IgbSliceClickEventArgs":"IgbSliceClickEventArgs()","Bounds":"Bounds","DataContext":"DataContext","DataContextScript":"DataContextScript","EndAngle":"EndAngle","Fill":"Fill","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","IsExploded":"IsExploded","IsOthersSlice":"IsOthersSlice","IsSelected":"IsSelected","Origin":"Origin","OriginalEvent":"OriginalEvent","OriginalEventScript":"OriginalEventScript","Outline":"Outline","Radius":"Radius","StartAngle":"StartAngle","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSliceEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliceEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliceEventArgs()":"IgbSliceEventArgs()","IgbSliceEventArgs":"IgbSliceEventArgs()","Bounds":"Bounds","DataContext":"DataContext","DataContextScript":"DataContextScript","EndAngle":"EndAngle","Fill":"Fill","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","IsExploded":"IsExploded","IsOthersSlice":"IsOthersSlice","IsSelected":"IsSelected","Origin":"Origin","OriginalEvent":"OriginalEvent","OriginalEventScript":"OriginalEventScript","Outline":"Outline","Position":"Position","Radius":"Radius","StartAngle":"StartAngle","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSlider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSlider","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Min":"Min","Max":"Max","LowerBound":"LowerBound","UpperBound":"UpperBound","Disabled":"Disabled","DiscreteTrack":"DiscreteTrack","HideTooltip":"HideTooltip","Step":"Step","PrimaryTicks":"PrimaryTicks","SecondaryTicks":"SecondaryTicks","TickOrientation":"TickOrientation","HidePrimaryLabels":"HidePrimaryLabels","HideSecondaryLabels":"HideSecondaryLabels","Locale":"Locale","ValueFormat":"ValueFormat","TickLabelRotation":"TickLabelRotation","ValueFormatOptions":"ValueFormatOptions","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSlider()":"IgbSlider()","IgbSlider":"IgbSlider()","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Input":"Input","InputScript":"InputScript","Invalid":"Invalid","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","StepDown(double)":"StepDown(double)","StepDown":"StepDown(double)","StepDownAsync(double)":"StepDownAsync(double)","StepDownAsync":"StepDownAsync(double)","StepUp(double)":"StepUp(double)","StepUp":"StepUp(double)","StepUpAsync(double)":"StepUpAsync(double)","StepUpAsync":"StepUpAsync(double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSlider","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","DefaultEventBehavior":"DefaultEventBehavior","Min":"Min","Max":"Max","LowerBound":"LowerBound","UpperBound":"UpperBound","Disabled":"Disabled","DiscreteTrack":"DiscreteTrack","HideTooltip":"HideTooltip","Step":"Step","PrimaryTicks":"PrimaryTicks","SecondaryTicks":"SecondaryTicks","TickOrientation":"TickOrientation","HidePrimaryLabels":"HidePrimaryLabels","HideSecondaryLabels":"HideSecondaryLabels","Locale":"Locale","ValueFormat":"ValueFormat","TickLabelRotation":"TickLabelRotation","ValueFormatOptions":"ValueFormatOptions","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSlider()":"IgbSlider()","IgbSlider":"IgbSlider()","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Input":"Input","InputScript":"InputScript","Invalid":"Invalid","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","StepDown(double)":"StepDown(double)","StepDown":"StepDown(double)","StepDownAsync(double)":"StepDownAsync(double)","StepDownAsync":"StepDownAsync(double)","StepUp(double)":"StepUp(double)","StepUp":"StepUp(double)","StepUpAsync(double)":"StepUpAsync(double)","StepUpAsync":"StepUpAsync(double)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value","ValueChanged":"ValueChanged"}}],"IgbSliderBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliderBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderBase()":"IgbSliderBase()","IgbSliderBase":"IgbSliderBase()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","DiscreteTrack":"DiscreteTrack","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HidePrimaryLabels":"HidePrimaryLabels","HideSecondaryLabels":"HideSecondaryLabels","HideTooltip":"HideTooltip","Locale":"Locale","LowerBound":"LowerBound","Max":"Max","Min":"Min","PrimaryTicks":"PrimaryTicks","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SecondaryTicks":"SecondaryTicks","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Step":"Step","SupportsVisualChildren":"SupportsVisualChildren","TickLabelRotation":"TickLabelRotation","TickOrientation":"TickOrientation","Type":"Type","UpperBound":"UpperBound","UseDirectRender":"UseDirectRender","ValueFormat":"ValueFormat","ValueFormatOptions":"ValueFormatOptions"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSliderBase","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderBase()":"IgbSliderBase()","IgbSliderBase":"IgbSliderBase()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","DiscreteTrack":"DiscreteTrack","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HidePrimaryLabels":"HidePrimaryLabels","HideSecondaryLabels":"HideSecondaryLabels","HideTooltip":"HideTooltip","Locale":"Locale","LowerBound":"LowerBound","Max":"Max","Min":"Min","PrimaryTicks":"PrimaryTicks","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SecondaryTicks":"SecondaryTicks","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Step":"Step","SupportsVisualChildren":"SupportsVisualChildren","TickLabelRotation":"TickLabelRotation","TickOrientation":"TickOrientation","Type":"Type","UpperBound":"UpperBound","UseDirectRender":"UseDirectRender","ValueFormat":"ValueFormat","ValueFormatOptions":"ValueFormatOptions"}}],"IgbSliderBaseModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliderBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderBaseModule()":"IgbSliderBaseModule()","IgbSliderBaseModule":"IgbSliderBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSliderBaseModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderBaseModule()":"IgbSliderBaseModule()","IgbSliderBaseModule":"IgbSliderBaseModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSliderLabel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliderLabel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderLabel()":"IgbSliderLabel()","IgbSliderLabel":"IgbSliderLabel()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSliderLabel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderLabel()":"IgbSliderLabel()","IgbSliderLabel":"IgbSliderLabel()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbSliderLabelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliderLabelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderLabelModule()":"IgbSliderLabelModule()","IgbSliderLabelModule":"IgbSliderLabelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSliderLabelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderLabelModule()":"IgbSliderLabelModule()","IgbSliderLabelModule":"IgbSliderLabelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSliderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSliderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderModule()":"IgbSliderModule()","IgbSliderModule":"IgbSliderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSliderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSliderModule()":"IgbSliderModule()","IgbSliderModule":"IgbSliderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSlowStochasticOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSlowStochasticOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSlowStochasticOscillatorIndicator()":"IgbSlowStochasticOscillatorIndicator()","IgbSlowStochasticOscillatorIndicator":"IgbSlowStochasticOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbSlowStochasticOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSlowStochasticOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSlowStochasticOscillatorIndicatorModule()":"IgbSlowStochasticOscillatorIndicatorModule()","IgbSlowStochasticOscillatorIndicatorModule":"IgbSlowStochasticOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSnackbar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSnackbar","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","Open":"Open","DisplayTime":"DisplayTime","KeepOpen":"KeepOpen","Position":"Position","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSnackbar()":"IgbSnackbar()","IgbSnackbar":"IgbSnackbar()","Action":"Action","ActionScript":"ActionScript","ActionText":"ActionText","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSnackbar","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","Open":"Open","DisplayTime":"DisplayTime","KeepOpen":"KeepOpen","Position":"Position","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSnackbar()":"IgbSnackbar()","IgbSnackbar":"IgbSnackbar()","Action":"Action","ActionScript":"ActionScript","ActionText":"ActionText","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbSnackbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSnackbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSnackbarModule()":"IgbSnackbarModule()","IgbSnackbarModule":"IgbSnackbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSnackbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSnackbarModule()":"IgbSnackbarModule()","IgbSnackbarModule":"IgbSnackbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSortIndicatorRenderCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortIndicatorRenderCompletedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortIndicatorRenderCompletedEventArgs()":"IgbSortIndicatorRenderCompletedEventArgs()","IgbSortIndicatorRenderCompletedEventArgs":"IgbSortIndicatorRenderCompletedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSortingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortingEventArgs()":"IgbSortingEventArgs()","IgbSortingEventArgs":"IgbSortingEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSortingEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortingEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortingEventArgsDetail()":"IgbSortingEventArgsDetail()","IgbSortingEventArgsDetail":"IgbSortingEventArgsDetail()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","GroupingExpressions":"GroupingExpressions","Owner":"Owner","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SortingExpressions":"SortingExpressions","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSortingExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortingExpression","k":"class","s":"classes","m":{"Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortingExpression()":"IgbSortingExpression()","IgbSortingExpression":"IgbSortingExpression()","Dir":"Dir","FieldName":"FieldName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IgnoreCase":"IgnoreCase","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Strategy":"Strategy","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSortingExpressionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortingExpressionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortingExpressionEventArgs()":"IgbSortingExpressionEventArgs()","IgbSortingExpressionEventArgs":"IgbSortingExpressionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSortingOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortingOptions","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortingOptions()":"IgbSortingOptions()","IgbSortingOptions":"IgbSortingOptions()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Mode":"Mode","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbSortingStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSortingStrategy","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSortingStrategy()":"IgbSortingStrategy()","IgbSortingStrategy":"IgbSortingStrategy()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbSparkline":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSparkline","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSparkline()":"IgbSparkline()","IgbSparkline":"IgbSparkline()","ActualHorizontalLabelFormatSpecifiers":"ActualHorizontalLabelFormatSpecifiers","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualVerticalLabelFormatSpecifiers":"ActualVerticalLabelFormatSpecifiers","Brush":"Brush","ContentHorizontalLabelFormatSpecifiers":"ContentHorizontalLabelFormatSpecifiers","ContentVerticalLabelFormatSpecifiers":"ContentVerticalLabelFormatSpecifiers","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","DisplayNormalRangeInFront":"DisplayNormalRangeInFront","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FirstMarkerBrush":"FirstMarkerBrush","FirstMarkerSize":"FirstMarkerSize","FirstMarkerVisibility":"FirstMarkerVisibility","FormatLabel":"FormatLabel","FormatLabelScript":"FormatLabelScript","HighMarkerBrush":"HighMarkerBrush","HighMarkerSize":"HighMarkerSize","HighMarkerVisibility":"HighMarkerVisibility","HorizontalAxisBrush":"HorizontalAxisBrush","HorizontalAxisLabel":"HorizontalAxisLabel","HorizontalAxisLabelScript":"HorizontalAxisLabelScript","HorizontalAxisVisibility":"HorizontalAxisVisibility","HorizontalLabelFormat":"HorizontalLabelFormat","HorizontalLabelFormatSpecifiers":"HorizontalLabelFormatSpecifiers","LabelMemberPath":"LabelMemberPath","LastMarkerBrush":"LastMarkerBrush","LastMarkerSize":"LastMarkerSize","LastMarkerVisibility":"LastMarkerVisibility","LineThickness":"LineThickness","LowMarkerBrush":"LowMarkerBrush","LowMarkerSize":"LowMarkerSize","LowMarkerVisibility":"LowMarkerVisibility","MarkerBrush":"MarkerBrush","MarkerSize":"MarkerSize","MarkerVisibility":"MarkerVisibility","Maximum":"Maximum","Minimum":"Minimum","NegativeBrush":"NegativeBrush","NegativeMarkerBrush":"NegativeMarkerBrush","NegativeMarkerSize":"NegativeMarkerSize","NegativeMarkerVisibility":"NegativeMarkerVisibility","NormalRangeFill":"NormalRangeFill","NormalRangeMaximum":"NormalRangeMaximum","NormalRangeMinimum":"NormalRangeMinimum","NormalRangeVisibility":"NormalRangeVisibility","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","TrendLineBrush":"TrendLineBrush","TrendLinePeriod":"TrendLinePeriod","TrendLineThickness":"TrendLineThickness","TrendLineType":"TrendLineType","Type":"Type","UnknownValuePlotting":"UnknownValuePlotting","ValueMemberPath":"ValueMemberPath","VerticalAxisBrush":"VerticalAxisBrush","VerticalAxisLabel":"VerticalAxisLabel","VerticalAxisLabelScript":"VerticalAxisLabelScript","VerticalAxisVisibility":"VerticalAxisVisibility","VerticalLabelFormat":"VerticalLabelFormat","VerticalLabelFormatSpecifiers":"VerticalLabelFormatSpecifiers"}}],"IgbSparklineCoreModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSparklineCoreModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSparklineCoreModule()":"IgbSparklineCoreModule()","IgbSparklineCoreModule":"IgbSparklineCoreModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSparklineModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSparklineModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSparklineModule()":"IgbSparklineModule()","IgbSparklineModule":"IgbSparklineModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSplineAreaFragment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineAreaFragment","k":"class","s":"classes","m":{"GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","SplineType":"SplineType","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineAreaFragment()":"IgbSplineAreaFragment()","IgbSplineAreaFragment":"IgbSplineAreaFragment()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSplineAreaFragmentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineAreaFragmentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineAreaFragmentModule()":"IgbSplineAreaFragmentModule()","IgbSplineAreaFragmentModule":"IgbSplineAreaFragmentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSplineAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineAreaSeries","k":"class","s":"classes","m":{"IsSplineShapePartOfRange":"IsSplineShapePartOfRange","SplineType":"SplineType","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineAreaSeries()":"IgbSplineAreaSeries()","IgbSplineAreaSeries":"IgbSplineAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSplineAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineAreaSeriesModule()":"IgbSplineAreaSeriesModule()","IgbSplineAreaSeriesModule":"IgbSplineAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSplineFragment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineFragment","k":"class","s":"classes","m":{"GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","SplineType":"SplineType","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineFragment()":"IgbSplineFragment()","IgbSplineFragment":"IgbSplineFragment()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSplineFragmentBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineFragmentBase","k":"class","s":"classes","m":{"IsSplineShapePartOfRange":"IsSplineShapePartOfRange","SplineType":"SplineType","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineFragmentBase()":"IgbSplineFragmentBase()","IgbSplineFragmentBase":"IgbSplineFragmentBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","Type":"Type"}}],"IgbSplineFragmentModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineFragmentModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineFragmentModule()":"IgbSplineFragmentModule()","IgbSplineFragmentModule":"IgbSplineFragmentModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSplineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineSeries","k":"class","s":"classes","m":{"IsSplineShapePartOfRange":"IsSplineShapePartOfRange","SplineType":"SplineType","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineSeries()":"IgbSplineSeries()","IgbSplineSeries":"IgbSplineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSplineSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineSeriesBase","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineSeriesBase()":"IgbSplineSeriesBase()","IgbSplineSeriesBase":"IgbSplineSeriesBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","SplineType":"SplineType","Type":"Type"}}],"IgbSplineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplineSeriesModule()":"IgbSplineSeriesModule()","IgbSplineSeriesModule":"IgbSplineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSplitPane":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplitPane","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplitPane()":"IgbSplitPane()","IgbSplitPane":"IgbSplitPane()","AllowEmpty":"AllowEmpty","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FloatingHeight":"FloatingHeight","FloatingLocation":"FloatingLocation","FloatingResizable":"FloatingResizable","FloatingWidth":"FloatingWidth","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Id":"Id","IsMaximized":"IsMaximized","Orientation":"Orientation","PaneType":"PaneType","Panes":"Panes","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Size":"Size","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UseFixedSize":"UseFixedSize","WithPanes(params IgbDockManagerPane[])":"WithPanes(params IgbDockManagerPane[])","WithPanes":"WithPanes(params IgbDockManagerPane[])"}}],"IgbSplitPaneCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplitPaneCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbSplitPane)":"InsertItem(int, IgbSplitPane)","InsertItem":"InsertItem(int, IgbSplitPane)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbSplitPane)":"SetItem(int, IgbSplitPane)","SetItem":"SetItem(int, IgbSplitPane)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbSplitPane)":"Add(IgbSplitPane)","Add":"Add(IgbSplitPane)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbSplitPane[], int)":"CopyTo(IgbSplitPane[], int)","CopyTo":"CopyTo(IgbSplitPane[], int)","Contains(IgbSplitPane)":"Contains(IgbSplitPane)","Contains":"Contains(IgbSplitPane)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbSplitPane)":"IndexOf(IgbSplitPane)","IndexOf":"IndexOf(IgbSplitPane)","Insert(int, IgbSplitPane)":"Insert(int, IgbSplitPane)","Insert":"Insert(int, IgbSplitPane)","Remove(IgbSplitPane)":"Remove(IgbSplitPane)","Remove":"Remove(IgbSplitPane)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplitPaneCollection()":"IgbSplitPaneCollection()","IgbSplitPaneCollection":"IgbSplitPaneCollection()","IgbSplitPaneCollection(object, string)":"IgbSplitPaneCollection(object, string)"}}],"IgbSplitPaneModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplitPaneModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplitPaneModule()":"IgbSplitPaneModule()","IgbSplitPaneModule":"IgbSplitPaneModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSplitterResizeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSplitterResizeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSplitterResizeEventArgs()":"IgbSplitterResizeEventArgs()","IgbSplitterResizeEventArgs":"IgbSplitterResizeEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Orientation":"Orientation","Pane":"Pane","PaneHeight":"PaneHeight","PaneWidth":"PaneWidth","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbStacked100AreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100AreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100AreaSeries()":"IgbStacked100AreaSeries()","IgbStacked100AreaSeries":"IgbStacked100AreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStacked100AreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100AreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100AreaSeriesModule()":"IgbStacked100AreaSeriesModule()","IgbStacked100AreaSeriesModule":"IgbStacked100AreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStacked100BarSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100BarSeries","k":"class","s":"classes","m":{"ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RadiusX":"RadiusX","RadiusY":"RadiusY","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100BarSeries()":"IgbStacked100BarSeries()","IgbStacked100BarSeries":"IgbStacked100BarSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStacked100BarSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100BarSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100BarSeriesModule()":"IgbStacked100BarSeriesModule()","IgbStacked100BarSeriesModule":"IgbStacked100BarSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStacked100ColumnSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100ColumnSeries","k":"class","s":"classes","m":{"GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","RadiusX":"RadiusX","RadiusY":"RadiusY","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100ColumnSeries()":"IgbStacked100ColumnSeries()","IgbStacked100ColumnSeries":"IgbStacked100ColumnSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStacked100ColumnSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100ColumnSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100ColumnSeriesModule()":"IgbStacked100ColumnSeriesModule()","IgbStacked100ColumnSeriesModule":"IgbStacked100ColumnSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStacked100LineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100LineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100LineSeries()":"IgbStacked100LineSeries()","IgbStacked100LineSeries":"IgbStacked100LineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStacked100LineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100LineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100LineSeriesModule()":"IgbStacked100LineSeriesModule()","IgbStacked100LineSeriesModule":"IgbStacked100LineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStacked100SplineAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100SplineAreaSeries","k":"class","s":"classes","m":{"IsSplineShapePartOfRange":"IsSplineShapePartOfRange","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100SplineAreaSeries()":"IgbStacked100SplineAreaSeries()","IgbStacked100SplineAreaSeries":"IgbStacked100SplineAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStacked100SplineAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100SplineAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100SplineAreaSeriesModule()":"IgbStacked100SplineAreaSeriesModule()","IgbStacked100SplineAreaSeriesModule":"IgbStacked100SplineAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStacked100SplineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100SplineSeries","k":"class","s":"classes","m":{"IsSplineShapePartOfRange":"IsSplineShapePartOfRange","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100SplineSeries()":"IgbStacked100SplineSeries()","IgbStacked100SplineSeries":"IgbStacked100SplineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStacked100SplineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStacked100SplineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStacked100SplineSeriesModule()":"IgbStacked100SplineSeriesModule()","IgbStacked100SplineSeriesModule":"IgbStacked100SplineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedAreaSeries()":"IgbStackedAreaSeries()","IgbStackedAreaSeries":"IgbStackedAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStackedAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedAreaSeriesModule()":"IgbStackedAreaSeriesModule()","IgbStackedAreaSeriesModule":"IgbStackedAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedBarSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedBarSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedBarSeries()":"IgbStackedBarSeries()","IgbStackedBarSeries":"IgbStackedBarSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","RadiusX":"RadiusX","RadiusY":"RadiusY","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","Type":"Type"}}],"IgbStackedBarSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedBarSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedBarSeriesModule()":"IgbStackedBarSeriesModule()","IgbStackedBarSeriesModule":"IgbStackedBarSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedColumnSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedColumnSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedColumnSeries()":"IgbStackedColumnSeries()","IgbStackedColumnSeries":"IgbStackedColumnSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","RadiusX":"RadiusX","RadiusY":"RadiusY","Type":"Type"}}],"IgbStackedColumnSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedColumnSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedColumnSeriesModule()":"IgbStackedColumnSeriesModule()","IgbStackedColumnSeriesModule":"IgbStackedColumnSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedFragmentSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedFragmentSeries","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedFragmentSeries()":"IgbStackedFragmentSeries()","IgbStackedFragmentSeries":"IgbStackedFragmentSeries()","ActualAreaFillOpacity":"ActualAreaFillOpacity","ActualBrush":"ActualBrush","ActualDataLegendGroup":"ActualDataLegendGroup","ActualHighlightedValuesDataLegendGroup":"ActualHighlightedValuesDataLegendGroup","ActualHighlightedValuesDisplayMode":"ActualHighlightedValuesDisplayMode","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","ActualIsDropShadowEnabled":"ActualIsDropShadowEnabled","ActualIsSplineShapePartOfRange":"ActualIsSplineShapePartOfRange","ActualIsTransitionInEnabled":"ActualIsTransitionInEnabled","ActualLegendItemBadgeMode":"ActualLegendItemBadgeMode","ActualLegendItemBadgeShape":"ActualLegendItemBadgeShape","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemTemplate":"ActualLegendItemTemplate","ActualLegendItemTemplateScript":"ActualLegendItemTemplateScript","ActualLegendItemVisibility":"ActualLegendItemVisibility","ActualLineCap":"ActualLineCap","ActualMarkerBrush":"ActualMarkerBrush","ActualMarkerFillMode":"ActualMarkerFillMode","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","ActualMarkerOutline":"ActualMarkerOutline","ActualMarkerOutlineMode":"ActualMarkerOutlineMode","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","ActualMarkerThickness":"ActualMarkerThickness","ActualMarkerType":"ActualMarkerType","ActualOpacity":"ActualOpacity","ActualOutline":"ActualOutline","ActualOutlineMode":"ActualOutlineMode","ActualRadiusX":"ActualRadiusX","ActualRadiusY":"ActualRadiusY","ActualShadowBlur":"ActualShadowBlur","ActualShadowColor":"ActualShadowColor","ActualShadowOffsetX":"ActualShadowOffsetX","ActualShadowOffsetY":"ActualShadowOffsetY","ActualThickness":"ActualThickness","ActualTransitionDuration":"ActualTransitionDuration","ActualTransitionEasingFunction":"ActualTransitionEasingFunction","ActualTransitionEasingFunctionScript":"ActualTransitionEasingFunctionScript","ActualTransitionInDuration":"ActualTransitionInDuration","ActualTransitionInEasingFunction":"ActualTransitionInEasingFunction","ActualTransitionInEasingFunctionScript":"ActualTransitionInEasingFunctionScript","ActualTransitionInMode":"ActualTransitionInMode","ActualTransitionInSpeedType":"ActualTransitionInSpeedType","ActualUseSingleShadow":"ActualUseSingleShadow","ActualValueMemberAsLegendLabel":"ActualValueMemberAsLegendLabel","ActualValueMemberAsLegendUnit":"ActualValueMemberAsLegendUnit","ActualVisibility":"ActualVisibility","AreaFillOpacity":"AreaFillOpacity","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","Brush":"Brush","DashArray":"DashArray","DataLegendGroup":"DataLegendGroup","DataSource":"DataSource","DataSourceScript":"DataSourceScript","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsDropShadowEnabled":"IsDropShadowEnabled","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","IsTransitionInEnabled":"IsTransitionInEnabled","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","LegendItemVisibility":"LegendItemVisibility","LineCap":"LineCap","MarkerBrush":"MarkerBrush","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerOutline":"MarkerOutline","MarkerOutlineMode":"MarkerOutlineMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","MarkerType":"MarkerType","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Opacity":"Opacity","Outline":"Outline","OutlineMode":"OutlineMode","ParentOrLocalBrush":"ParentOrLocalBrush","PropertyUpdated":"PropertyUpdated","PropertyUpdatedScript":"PropertyUpdatedScript","RadiusX":"RadiusX","RadiusY":"RadiusY","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","StackedSeriesBaseParent":"StackedSeriesBaseParent","Thickness":"Thickness","Title":"Title","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInDuration":"TransitionInDuration","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionInMode":"TransitionInMode","TransitionInSpeedType":"TransitionInSpeedType","Type":"Type","UseSingleShadow":"UseSingleShadow","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","ValueMemberPath":"ValueMemberPath","Visibility":"Visibility"}}],"IgbStackedFragmentSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedFragmentSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedFragmentSeriesModule()":"IgbStackedFragmentSeriesModule()","IgbStackedFragmentSeriesModule":"IgbStackedFragmentSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedLineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedLineSeries()":"IgbStackedLineSeries()","IgbStackedLineSeries":"IgbStackedLineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStackedLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedLineSeriesModule()":"IgbStackedLineSeriesModule()","IgbStackedLineSeriesModule":"IgbStackedLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSeriesBase","k":"class","s":"classes","m":{"GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSeriesBase()":"IgbStackedSeriesBase()","IgbStackedSeriesBase":"IgbStackedSeriesBase()","ActualSeries":"ActualSeries","AutoGenerateSeries":"AutoGenerateSeries","ContentSeries":"ContentSeries","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","ParentTypeName":"ParentTypeName","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReverseLegendOrder":"ReverseLegendOrder","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","Series":"Series","SeriesCreated":"SeriesCreated","SeriesCreatedScript":"SeriesCreatedScript","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","Type":"Type"}}],"IgbStackedSeriesCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSeriesCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbStackedFragmentSeries)":"InsertItem(int, IgbStackedFragmentSeries)","InsertItem":"InsertItem(int, IgbStackedFragmentSeries)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbStackedFragmentSeries)":"SetItem(int, IgbStackedFragmentSeries)","SetItem":"SetItem(int, IgbStackedFragmentSeries)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbStackedFragmentSeries)":"Add(IgbStackedFragmentSeries)","Add":"Add(IgbStackedFragmentSeries)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbStackedFragmentSeries[], int)":"CopyTo(IgbStackedFragmentSeries[], int)","CopyTo":"CopyTo(IgbStackedFragmentSeries[], int)","Contains(IgbStackedFragmentSeries)":"Contains(IgbStackedFragmentSeries)","Contains":"Contains(IgbStackedFragmentSeries)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbStackedFragmentSeries)":"IndexOf(IgbStackedFragmentSeries)","IndexOf":"IndexOf(IgbStackedFragmentSeries)","Insert(int, IgbStackedFragmentSeries)":"Insert(int, IgbStackedFragmentSeries)","Insert":"Insert(int, IgbStackedFragmentSeries)","Remove(IgbStackedFragmentSeries)":"Remove(IgbStackedFragmentSeries)","Remove":"Remove(IgbStackedFragmentSeries)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSeriesCollection(object, string)":"IgbStackedSeriesCollection(object, string)","IgbStackedSeriesCollection":"IgbStackedSeriesCollection(object, string)"}}],"IgbStackedSeriesCreatedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSeriesCreatedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSeriesCreatedEventArgs()":"IgbStackedSeriesCreatedEventArgs()","IgbStackedSeriesCreatedEventArgs":"IgbStackedSeriesCreatedEventArgs()","Brush":"Brush","DashArray":"DashArray","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Index":"Index","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","LegendItemVisibility":"LegendItemVisibility","LineCap":"LineCap","MarkerBrush":"MarkerBrush","MarkerOutline":"MarkerOutline","MarkerStyle":"MarkerStyle","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","MarkerType":"MarkerType","Outline":"Outline","Thickness":"Thickness","Title":"Title","TitleScript":"TitleScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","Type":"Type"}}],"IgbStackedSplineAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSplineAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSplineAreaSeries()":"IgbStackedSplineAreaSeries()","IgbStackedSplineAreaSeries":"IgbStackedSplineAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","Type":"Type"}}],"IgbStackedSplineAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSplineAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSplineAreaSeriesModule()":"IgbStackedSplineAreaSeriesModule()","IgbStackedSplineAreaSeriesModule":"IgbStackedSplineAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStackedSplineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSplineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSplineSeries()":"IgbStackedSplineSeries()","IgbStackedSplineSeries":"IgbStackedSplineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsSplineShapePartOfRange":"IsSplineShapePartOfRange","Type":"Type"}}],"IgbStackedSplineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStackedSplineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStackedSplineSeriesModule()":"IgbStackedSplineSeriesModule()","IgbStackedSplineSeriesModule":"IgbStackedSplineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStandardDeviationIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStandardDeviationIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStandardDeviationIndicator()":"IgbStandardDeviationIndicator()","IgbStandardDeviationIndicator":"IgbStandardDeviationIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbStandardDeviationIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStandardDeviationIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStandardDeviationIndicatorModule()":"IgbStandardDeviationIndicatorModule()","IgbStandardDeviationIndicatorModule":"IgbStandardDeviationIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStateCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStateCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbGridState)":"InsertItem(int, IgbGridState)","InsertItem":"InsertItem(int, IgbGridState)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbGridState)":"SetItem(int, IgbGridState)","SetItem":"SetItem(int, IgbGridState)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbGridState)":"Add(IgbGridState)","Add":"Add(IgbGridState)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbGridState[], int)":"CopyTo(IgbGridState[], int)","CopyTo":"CopyTo(IgbGridState[], int)","Contains(IgbGridState)":"Contains(IgbGridState)","Contains":"Contains(IgbGridState)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbGridState)":"IndexOf(IgbGridState)","IndexOf":"IndexOf(IgbGridState)","Insert(int, IgbGridState)":"Insert(int, IgbGridState)","Insert":"Insert(int, IgbGridState)","Remove(IgbGridState)":"Remove(IgbGridState)","Remove":"Remove(IgbGridState)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStateCollection(object, string)":"IgbStateCollection(object, string)","IgbStateCollection":"IgbStateCollection(object, string)"}}],"IgbStep":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStep","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStep()":"IgbStep()","IgbStep":"IgbStep()","Active":"Active","Complete":"Complete","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Invalid":"Invalid","Optional":"Optional","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbStep","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStep()":"IgbStep()","IgbStep":"IgbStep()","Active":"Active","Complete":"Complete","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Invalid":"Invalid","Optional":"Optional","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbStepAreaSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepAreaSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepAreaSeries()":"IgbStepAreaSeries()","IgbStepAreaSeries":"IgbStepAreaSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStepAreaSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepAreaSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepAreaSeriesModule()":"IgbStepAreaSeriesModule()","IgbStepAreaSeriesModule":"IgbStepAreaSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStepLineSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepLineSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepLineSeries()":"IgbStepLineSeries()","IgbStepLineSeries":"IgbStepLineSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStepLineSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepLineSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepLineSeriesModule()":"IgbStepLineSeriesModule()","IgbStepLineSeriesModule":"IgbStepLineSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStepModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepModule()":"IgbStepModule()","IgbStepModule":"IgbStepModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbStepModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepModule()":"IgbStepModule()","IgbStepModule":"IgbStepModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStepper":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepper","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepper()":"IgbStepper()","IgbStepper":"IgbStepper()","ActiveStepChanged":"ActiveStepChanged","ActiveStepChangedScript":"ActiveStepChangedScript","ActiveStepChanging":"ActiveStepChanging","ActiveStepChangingScript":"ActiveStepChangingScript","AnimationDuration":"AnimationDuration","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","ContentTop":"ContentTop","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalAnimation":"HorizontalAnimation","Linear":"Linear","NavigateTo(double)":"NavigateTo(double)","NavigateTo":"NavigateTo(double)","NavigateToAsync(double)":"NavigateToAsync(double)","NavigateToAsync":"NavigateToAsync(double)","Next()":"Next()","Next":"Next()","NextAsync()":"NextAsync()","NextAsync":"NextAsync()","Orientation":"Orientation","Prev()":"Prev()","Prev":"Prev()","PrevAsync()":"PrevAsync()","PrevAsync":"PrevAsync()","Reset()":"Reset()","Reset":"Reset()","ResetAsync()":"ResetAsync()","ResetAsync":"ResetAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","StepType":"StepType","Steps":"Steps","SupportsVisualChildren":"SupportsVisualChildren","TitlePosition":"TitlePosition","Type":"Type","UseDirectRender":"UseDirectRender","VerticalAnimation":"VerticalAnimation"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbStepper","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepper()":"IgbStepper()","IgbStepper":"IgbStepper()","ActiveStepChanged":"ActiveStepChanged","ActiveStepChangedScript":"ActiveStepChangedScript","ActiveStepChanging":"ActiveStepChanging","ActiveStepChangingScript":"ActiveStepChangingScript","AnimationDuration":"AnimationDuration","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","ContentTop":"ContentTop","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HorizontalAnimation":"HorizontalAnimation","Linear":"Linear","NavigateTo(double)":"NavigateTo(double)","NavigateTo":"NavigateTo(double)","NavigateToAsync(double)":"NavigateToAsync(double)","NavigateToAsync":"NavigateToAsync(double)","Next()":"Next()","Next":"Next()","NextAsync()":"NextAsync()","NextAsync":"NextAsync()","Orientation":"Orientation","Prev()":"Prev()","Prev":"Prev()","PrevAsync()":"PrevAsync()","PrevAsync":"PrevAsync()","Reset()":"Reset()","Reset":"Reset()","ResetAsync()":"ResetAsync()","ResetAsync":"ResetAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","StepType":"StepType","Steps":"Steps","SupportsVisualChildren":"SupportsVisualChildren","TitlePosition":"TitlePosition","Type":"Type","UseDirectRender":"UseDirectRender","VerticalAnimation":"VerticalAnimation"}}],"IgbStepperModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStepperModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepperModule()":"IgbStepperModule()","IgbStepperModule":"IgbStepperModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbStepperModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStepperModule()":"IgbStepperModule()","IgbStepperModule":"IgbStepperModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStochRSIIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStochRSIIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStochRSIIndicator()":"IgbStochRSIIndicator()","IgbStochRSIIndicator":"IgbStochRSIIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbStochRSIIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStochRSIIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStochRSIIndicatorModule()":"IgbStochRSIIndicatorModule()","IgbStochRSIIndicatorModule":"IgbStochRSIIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbStockChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStockChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStockChangedEventArgs()":"IgbStockChangedEventArgs()","IgbStockChangedEventArgs":"IgbStockChangedEventArgs()","AddedSymbols":"AddedSymbols","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","RemovedSymbols":"RemovedSymbols","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbStraightNumericAxisBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStraightNumericAxisBase","k":"class","s":"classes","m":{"GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualIntervalAsync()":"GetCurrentActualIntervalAsync()","GetCurrentActualIntervalAsync":"GetCurrentActualIntervalAsync()","GetCurrentActualInterval()":"GetCurrentActualInterval()","GetCurrentActualInterval":"GetCurrentActualInterval()","GetCurrentActualMinorIntervalAsync()":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorIntervalAsync":"GetCurrentActualMinorIntervalAsync()","GetCurrentActualMinorInterval()":"GetCurrentActualMinorInterval()","GetCurrentActualMinorInterval":"GetCurrentActualMinorInterval()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","AutoRangeBufferMode":"AutoRangeBufferMode","MinimumValue":"MinimumValue","ActualMinimumValue":"ActualMinimumValue","ActualVisibleMinimumValue":"ActualVisibleMinimumValue","MaximumValue":"MaximumValue","ActualMaximumValue":"ActualMaximumValue","ActualVisibleMaximumValue":"ActualVisibleMaximumValue","Interval":"Interval","ActualInterval":"ActualInterval","ActualMaxPrecision":"ActualMaxPrecision","MaxPrecision":"MaxPrecision","ShouldApplyMaxPrecisionWhenZoomed":"ShouldApplyMaxPrecisionWhenZoomed","MinorInterval":"MinorInterval","ActualMinorInterval":"ActualMinorInterval","ReferenceValue":"ReferenceValue","IsLogarithmic":"IsLogarithmic","ActualIsLogarithmic":"ActualIsLogarithmic","FavorLabellingScaleEnd":"FavorLabellingScaleEnd","LogarithmBase":"LogarithmBase","CompanionAxisInterval":"CompanionAxisInterval","CompanionAxisMinorInterval":"CompanionAxisMinorInterval","CompanionAxisMinimumValue":"CompanionAxisMinimumValue","CompanionAxisMaximumValue":"CompanionAxisMaximumValue","CompanionAxisIsLogarithmic":"CompanionAxisIsLogarithmic","CompanionAxisLogarithmBase":"CompanionAxisLogarithmBase","FormatAbbreviatedLabelScript":"FormatAbbreviatedLabelScript","AbbreviatedLabelFormat":"AbbreviatedLabelFormat","AbbreviatedLabelFormatSpecifiers":"AbbreviatedLabelFormatSpecifiers","IsFormattingAbbreviatedLargeNumber":"IsFormattingAbbreviatedLargeNumber","AbbreviateLargeNumbers":"AbbreviateLargeNumbers","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualIntervalChangedScript":"ActualIntervalChangedScript","ActualIntervalChanged":"ActualIntervalChanged","ActualMinorIntervalChangedScript":"ActualMinorIntervalChangedScript","ActualMinorIntervalChanged":"ActualMinorIntervalChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStraightNumericAxisBase()":"IgbStraightNumericAxisBase()","IgbStraightNumericAxisBase":"IgbStraightNumericAxisBase()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ScaleMode":"ScaleMode","Type":"Type"}}],"IgbStrategyBasedIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStrategyBasedIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStrategyBasedIndicator()":"IgbStrategyBasedIndicator()","IgbStrategyBasedIndicator":"IgbStrategyBasedIndicator()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStyle","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStyle()":"IgbStyle()","IgbStyle":"IgbStyle()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStyleSelector":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStyleSelector","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStyleSelector()":"IgbStyleSelector()","IgbStyleSelector":"IgbStyleSelector()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbStyleShapeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbStyleShapeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbStyleShapeEventArgs()":"IgbStyleShapeEventArgs()","IgbStyleShapeEventArgs":"IgbStyleShapeEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Item":"Item","ItemScript":"ItemScript","ShapeFill":"ShapeFill","ShapeOpacity":"ShapeOpacity","ShapeStroke":"ShapeStroke","ShapeStrokeThickness":"ShapeStrokeThickness","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSubDomainsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSubDomainsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, string)":"InsertItem(int, string)","InsertItem":"InsertItem(int, string)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, string)":"SetItem(int, string)","SetItem":"SetItem(int, string)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(string)":"Add(string)","Add":"Add(string)","Clear()":"Clear()","Clear":"Clear()","CopyTo(string[], int)":"CopyTo(string[], int)","CopyTo":"CopyTo(string[], int)","Contains(string)":"Contains(string)","Contains":"Contains(string)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(string)":"IndexOf(string)","IndexOf":"IndexOf(string)","Insert(int, string)":"Insert(int, string)","Insert":"Insert(int, string)","Remove(string)":"Remove(string)","Remove":"Remove(string)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSubDomainsCollection(object, string)":"IgbSubDomainsCollection(object, string)","IgbSubDomainsCollection":"IgbSubDomainsCollection(object, string)"}}],"IgbSummaryCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryCellInfo()":"IgbSummaryCellInfo()","IgbSummaryCellInfo":"IgbSummaryCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ResolvedSummaryLabel":"ResolvedSummaryLabel","ResolvedSummaryValue":"ResolvedSummaryValue","SummaryLabelFontFamily":"SummaryLabelFontFamily","SummaryLabelFontSize":"SummaryLabelFontSize","SummaryLabelFontStyle":"SummaryLabelFontStyle","SummaryLabelFontWeight":"SummaryLabelFontWeight","SummaryLabelTextColor":"SummaryLabelTextColor","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSummaryChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryChangedEventArgs()":"IgbSummaryChangedEventArgs()","IgbSummaryChangedEventArgs":"IgbSummaryChangedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ID":"ID","IsEnabled":"IsEnabled","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSummaryChooserModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryChooserModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryChooserModule()":"IgbSummaryChooserModule()","IgbSummaryChooserModule":"IgbSummaryChooserModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSummaryData":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryData","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryData()":"IgbSummaryData()","IgbSummaryData":"IgbSummaryData()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FormattedText":"FormattedText","FormattedValue":"FormattedValue","SummaryName":"SummaryName","SummaryOperand":"SummaryOperand","SummaryValue":"SummaryValue","SummaryValueScript":"SummaryValueScript","Type":"Type"}}],"IgbSummaryExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryExpression","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryExpression()":"IgbSummaryExpression()","IgbSummaryExpression":"IgbSummaryExpression()","FieldName":"FieldName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSummaryResult":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryResult","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryResult()":"IgbSummaryResult()","IgbSummaryResult":"IgbSummaryResult()","DefaultFormatting":"DefaultFormatting","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Key":"Key","Label":"Label","Result":"Result","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSummaryRow":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryRow","k":"class","s":"classes","m":{"TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryRow()":"IgbSummaryRow()","IgbSummaryRow":"IgbSummaryRow()","ActualSelectedBackground":"ActualSelectedBackground","ActualSummaryLabelTextColor":"ActualSummaryLabelTextColor","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","SelectedBackground":"SelectedBackground","SummaryLabelFontFamily":"SummaryLabelFontFamily","SummaryLabelFontSize":"SummaryLabelFontSize","SummaryLabelFontStyle":"SummaryLabelFontStyle","SummaryLabelFontWeight":"SummaryLabelFontWeight","SummaryLabelTextColor":"SummaryLabelTextColor","Type":"Type"}}],"IgbSummaryRowRoot":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryRowRoot","k":"class","s":"classes","m":{"SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","SummaryLabelTextColor":"SummaryLabelTextColor","ActualSummaryLabelTextColor":"ActualSummaryLabelTextColor","SummaryLabelFontFamily":"SummaryLabelFontFamily","SummaryLabelFontSize":"SummaryLabelFontSize","SummaryLabelFontStyle":"SummaryLabelFontStyle","SummaryLabelFontWeight":"SummaryLabelFontWeight","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryRowRoot()":"IgbSummaryRowRoot()","IgbSummaryRowRoot":"IgbSummaryRowRoot()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSummaryRowRootModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryRowRootModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryRowRootModule()":"IgbSummaryRowRootModule()","IgbSummaryRowRootModule":"IgbSummaryRowRootModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSummaryRowSection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryRowSection","k":"class","s":"classes","m":{"SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","SummaryLabelTextColor":"SummaryLabelTextColor","ActualSummaryLabelTextColor":"ActualSummaryLabelTextColor","SummaryLabelFontFamily":"SummaryLabelFontFamily","SummaryLabelFontSize":"SummaryLabelFontSize","SummaryLabelFontStyle":"SummaryLabelFontStyle","SummaryLabelFontWeight":"SummaryLabelFontWeight","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryRowSection()":"IgbSummaryRowSection()","IgbSummaryRowSection":"IgbSummaryRowSection()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbSummaryRowSectionModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryRowSectionModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryRowSectionModule()":"IgbSummaryRowSectionModule()","IgbSummaryRowSectionModule":"IgbSummaryRowSectionModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbSummaryTemplateContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSummaryTemplateContext","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSummaryTemplateContext()":"IgbSummaryTemplateContext()","IgbSummaryTemplateContext":"IgbSummaryTemplateContext()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Implicit":"Implicit","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbSwitch":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSwitch","k":"class","s":"classes","m":{"GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","DefaultEventBehavior":"DefaultEventBehavior","Value":"Value","Checked":"Checked","LabelPosition":"LabelPosition","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","CheckedChanged":"CheckedChanged","ChangeScript":"ChangeScript","Change":"Change","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSwitch()":"IgbSwitch()","IgbSwitch":"IgbSwitch()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSwitch","k":"class","s":"classes","m":{"GetCurrentCheckedAsync()":"GetCurrentCheckedAsync()","GetCurrentCheckedAsync":"GetCurrentCheckedAsync()","GetCurrentChecked()":"GetCurrentChecked()","GetCurrentChecked":"GetCurrentChecked()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","Click()":"Click()","Click":"Click()","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","DefaultEventBehavior":"DefaultEventBehavior","Value":"Value","Checked":"Checked","LabelPosition":"LabelPosition","Disabled":"Disabled","Required":"Required","Invalid":"Invalid","CheckedChanged":"CheckedChanged","ChangeScript":"ChangeScript","Change":"Change","FocusScript":"FocusScript","Focus":"Focus","BlurScript":"BlurScript","Blur":"Blur","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSwitch()":"IgbSwitch()","IgbSwitch":"IgbSwitch()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbSwitchModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbSwitchModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSwitchModule()":"IgbSwitchModule()","IgbSwitchModule":"IgbSwitchModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbSwitchModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbSwitchModule()":"IgbSwitchModule()","IgbSwitchModule":"IgbSwitchModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTab":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTab","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTab()":"IgbTab()","IgbTab":"IgbTab()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Label":"Label","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SelectedChanged":"SelectedChanged","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TabsParent":"TabsParent","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTab","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTab()":"IgbTab()","IgbTab":"IgbTab()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Label":"Label","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SelectedChanged":"SelectedChanged","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TabsParent":"TabsParent","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbTabComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabComponentEventArgs()":"IgbTabComponentEventArgs()","IgbTabComponentEventArgs":"IgbTabComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabComponentEventArgs()":"IgbTabComponentEventArgs()","IgbTabComponentEventArgs":"IgbTabComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTabGroupPane":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabGroupPane","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabGroupPane()":"IgbTabGroupPane()","IgbTabGroupPane":"IgbTabGroupPane()","AllowEmpty":"AllowEmpty","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Id":"Id","IsMaximized":"IsMaximized","PaneType":"PaneType","Panes":"Panes","SelectedIndex":"SelectedIndex","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Size":"Size","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","WithPanes(params IgbContentPane[])":"WithPanes(params IgbContentPane[])","WithPanes":"WithPanes(params IgbContentPane[])"}}],"IgbTabGroupPaneModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabGroupPaneModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabGroupPaneModule()":"IgbTabGroupPaneModule()","IgbTabGroupPaneModule":"IgbTabGroupPaneModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTabHeaderConnectionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabHeaderConnectionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabHeaderConnectionEventArgs()":"IgbTabHeaderConnectionEventArgs()","IgbTabHeaderConnectionEventArgs":"IgbTabHeaderConnectionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTabHeaderConnectionEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabHeaderConnectionEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabHeaderConnectionEventArgsDetail()":"IgbTabHeaderConnectionEventArgsDetail()","IgbTabHeaderConnectionEventArgsDetail":"IgbTabHeaderConnectionEventArgsDetail()","Element":"Element","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Pane":"Pane","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTabHeaderElement":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabHeaderElement","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabHeaderElement()":"IgbTabHeaderElement()","IgbTabHeaderElement":"IgbTabHeaderElement()","DragService":"DragService","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabHeaderElement","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabHeaderElement()":"IgbTabHeaderElement()","IgbTabHeaderElement":"IgbTabHeaderElement()","DragService":"DragService","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTabHeaderElementModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabHeaderElementModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabHeaderElementModule()":"IgbTabHeaderElementModule()","IgbTabHeaderElementModule":"IgbTabHeaderElementModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabHeaderElementModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabHeaderElementModule()":"IgbTabHeaderElementModule()","IgbTabHeaderElementModule":"IgbTabHeaderElementModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTabModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabModule()":"IgbTabModule()","IgbTabModule":"IgbTabModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabModule()":"IgbTabModule()","IgbTabModule":"IgbTabModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTabs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabs","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabs()":"IgbTabs()","IgbTabs":"IgbTabs()","Activation":"Activation","ActualTabsCollection":"ActualTabsCollection","Alignment":"Alignment","Change":"Change","ChangeScript":"ChangeScript","ContentTabsCollection":"ContentTabsCollection","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSelected()":"GetSelected()","GetSelected":"GetSelected()","GetSelectedAsync()":"GetSelectedAsync()","GetSelectedAsync":"GetSelectedAsync()","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select(string)":"Select(string)","Select":"Select(string)","SelectAsync(string)":"SelectAsync(string)","SelectAsync":"SelectAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TabsCollection":"TabsCollection","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabs","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabs()":"IgbTabs()","IgbTabs":"IgbTabs()","Activation":"Activation","ActualTabsCollection":"ActualTabsCollection","Alignment":"Alignment","Change":"Change","ChangeScript":"ChangeScript","ContentTabsCollection":"ContentTabsCollection","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSelected()":"GetSelected()","GetSelected":"GetSelected()","GetSelectedAsync()":"GetSelectedAsync()","GetSelectedAsync":"GetSelectedAsync()","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Select(string)":"Select(string)","Select":"Select(string)","SelectAsync(string)":"SelectAsync(string)","SelectAsync":"SelectAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TabsCollection":"TabsCollection","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbTabs_TabCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabs_TabCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTab)":"InsertItem(int, IgbTab)","InsertItem":"InsertItem(int, IgbTab)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTab)":"SetItem(int, IgbTab)","SetItem":"SetItem(int, IgbTab)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTab)":"Add(IgbTab)","Add":"Add(IgbTab)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTab[], int)":"CopyTo(IgbTab[], int)","CopyTo":"CopyTo(IgbTab[], int)","Contains(IgbTab)":"Contains(IgbTab)","Contains":"Contains(IgbTab)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTab)":"IndexOf(IgbTab)","IndexOf":"IndexOf(IgbTab)","Insert(int, IgbTab)":"Insert(int, IgbTab)","Insert":"Insert(int, IgbTab)","Remove(IgbTab)":"Remove(IgbTab)","Remove":"Remove(IgbTab)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabs_TabCollection(object, string)":"IgbTabs_TabCollection(object, string)","IgbTabs_TabCollection":"IgbTabs_TabCollection(object, string)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabs_TabCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTab)":"InsertItem(int, IgbTab)","InsertItem":"InsertItem(int, IgbTab)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTab)":"SetItem(int, IgbTab)","SetItem":"SetItem(int, IgbTab)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTab)":"Add(IgbTab)","Add":"Add(IgbTab)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTab[], int)":"CopyTo(IgbTab[], int)","CopyTo":"CopyTo(IgbTab[], int)","Contains(IgbTab)":"Contains(IgbTab)","Contains":"Contains(IgbTab)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTab)":"IndexOf(IgbTab)","IndexOf":"IndexOf(IgbTab)","Insert(int, IgbTab)":"Insert(int, IgbTab)","Insert":"Insert(int, IgbTab)","Remove(IgbTab)":"Remove(IgbTab)","Remove":"Remove(IgbTab)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabs_TabCollection(object, string)":"IgbTabs_TabCollection(object, string)","IgbTabs_TabCollection":"IgbTabs_TabCollection(object, string)"}}],"IgbTabsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTabsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabsModule()":"IgbTabsModule()","IgbTabsModule":"IgbTabsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTabsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTabsModule()":"IgbTabsModule()","IgbTabsModule":"IgbTabsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTemplateCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateCellInfo()":"IgbTemplateCellInfo()","IgbTemplateCellInfo":"IgbTemplateCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgbTemplateCellUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateCellUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateCellUpdatingEventArgs()":"IgbTemplateCellUpdatingEventArgs()","IgbTemplateCellUpdatingEventArgs":"IgbTemplateCellUpdatingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateColumn","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","DataGridParent":"DataGridParent","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","Field":"Field","HeaderText":"HeaderText","ActualHeaderText":"ActualHeaderText","SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","RowHoverBackground":"RowHoverBackground","ActualHoverBackground":"ActualHoverBackground","RowHoverTextColor":"RowHoverTextColor","ActualRowHoverTextColor":"ActualRowHoverTextColor","AnimationSettings":"AnimationSettings","Width":"Width","MinWidth":"MinWidth","IsFromMarkup":"IsFromMarkup","IsAutoGenerated":"IsAutoGenerated","Filter":"Filter","FilterExpression":"FilterExpression","Header":"Header","IsFilteringEnabled":"IsFilteringEnabled","IsResizingEnabled":"IsResizingEnabled","IsHidden":"IsHidden","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","Pinned":"Pinned","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ColumnOptionsBackground":"ColumnOptionsBackground","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","IsEditable":"IsEditable","DeletedTextColor":"DeletedTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","EditOpacity":"EditOpacity","ActualEditOpacity":"ActualEditOpacity","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","MergedCellMode":"MergedCellMode","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingBottom":"MergedCellPaddingBottom","FilterComparisonType":"FilterComparisonType","FilterOperands":"FilterOperands","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","FormatCellScript":"FormatCellScript","FormatCell":"FormatCell","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHeaderTextChanged":"ActualHeaderTextChanged","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateColumn()":"IgbTemplateColumn()","IgbTemplateColumn":"IgbTemplateColumn()","CellUpdating":"CellUpdating","CellUpdatingScript":"CellUpdatingScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ParentTypeName":"ParentTypeName","Template":"Template","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateColumnModule()":"IgbTemplateColumnModule()","IgbTemplateColumnModule":"IgbTemplateColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTemplateContent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateContent","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateContent()":"IgbTemplateContent()","IgbTemplateContent":"IgbTemplateContent()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","Context":"Context","Template":"Template","Update()":"Update()","Update":"Update()"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTemplateContent","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateContent()":"IgbTemplateContent()","IgbTemplateContent":"IgbTemplateContent()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","Context":"Context","Template":"Template","Update()":"Update()","Update":"Update()"}}],"IgbTemplateHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateHeader","k":"class","s":"classes","m":{"SortIndicatorColor":"SortIndicatorColor","ActualSortIndicatorColor":"ActualSortIndicatorColor","SortIndicatorStyle":"SortIndicatorStyle","ActualSortIndicatorStyle":"ActualSortIndicatorStyle","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateHeader()":"IgbTemplateHeader()","IgbTemplateHeader":"IgbTemplateHeader()","CellUpdating":"CellUpdating","CellUpdatingScript":"CellUpdatingScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateHeaderCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateHeaderCellInfo","k":"class","s":"classes","m":{"Value":"Value","ValueScript":"ValueScript","IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateHeaderCellInfo()":"IgbTemplateHeaderCellInfo()","IgbTemplateHeaderCellInfo":"IgbTemplateHeaderCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsFilterUIVisible":"IsFilterUIVisible","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateHeaderCellUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateHeaderCellUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateHeaderCellUpdatingEventArgs()":"IgbTemplateHeaderCellUpdatingEventArgs()","IgbTemplateHeaderCellUpdatingEventArgs":"IgbTemplateHeaderCellUpdatingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateHeaderModule()":"IgbTemplateHeaderModule()","IgbTemplateHeaderModule":"IgbTemplateHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTemplateSectionHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateSectionHeader","k":"class","s":"classes","m":{"SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","IsCollapsable":"IsCollapsable","SummaryDisplayMode":"SummaryDisplayMode","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateSectionHeader()":"IgbTemplateSectionHeader()","IgbTemplateSectionHeader":"IgbTemplateSectionHeader()","CellUpdating":"CellUpdating","CellUpdatingScript":"CellUpdatingScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbTemplateSectionHeaderCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateSectionHeaderCellInfo","k":"class","s":"classes","m":{"ResolvedText":"ResolvedText","ResolvedSummaryText":"ResolvedSummaryText","SummaryDisplayMode":"SummaryDisplayMode","IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateSectionHeaderCellInfo()":"IgbTemplateSectionHeaderCellInfo()","IgbTemplateSectionHeaderCellInfo":"IgbTemplateSectionHeaderCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateSectionHeaderCellUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateSectionHeaderCellUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateSectionHeaderCellUpdatingEventArgs()":"IgbTemplateSectionHeaderCellUpdatingEventArgs()","IgbTemplateSectionHeaderCellUpdatingEventArgs":"IgbTemplateSectionHeaderCellUpdatingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTemplateSectionHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTemplateSectionHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTemplateSectionHeaderModule()":"IgbTemplateSectionHeaderModule()","IgbTemplateSectionHeaderModule":"IgbTemplateSectionHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTextarea":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextarea","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextarea()":"IgbTextarea()","IgbTextarea":"IgbTextarea()","Autocapitalize":"Autocapitalize","Autocomplete":"Autocomplete","Blur":"Blur","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusScript":"FocusScript","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Input":"Input","InputMode":"InputMode","InputScript":"InputScript","Invalid":"Invalid","Label":"Label","MaxLength":"MaxLength","MinLength":"MinLength","Outlined":"Outlined","Placeholder":"Placeholder","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","Resize":"Resize","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Rows":"Rows","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Spellcheck":"Spellcheck","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","ValidateOnly":"ValidateOnly","Value":"Value","ValueChanged":"ValueChanged","Wrap":"Wrap"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTextarea","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextarea()":"IgbTextarea()","IgbTextarea":"IgbTextarea()","Autocapitalize":"Autocapitalize","Autocomplete":"Autocomplete","Blur":"Blur","BlurScript":"BlurScript","Change":"Change","ChangeScript":"ChangeScript","CheckValidity()":"CheckValidity()","CheckValidity":"CheckValidity()","CheckValidityAsync()":"CheckValidityAsync()","CheckValidityAsync":"CheckValidityAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Focus":"Focus","FocusScript":"FocusScript","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","Input":"Input","InputMode":"InputMode","InputScript":"InputScript","Invalid":"Invalid","Label":"Label","MaxLength":"MaxLength","MinLength":"MinLength","Outlined":"Outlined","Placeholder":"Placeholder","ReadOnly":"ReadOnly","ReportValidity()":"ReportValidity()","ReportValidity":"ReportValidity()","ReportValidityAsync()":"ReportValidityAsync()","ReportValidityAsync":"ReportValidityAsync()","Required":"Required","Resize":"Resize","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Rows":"Rows","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SetCustomValidity(string)":"SetCustomValidity(string)","SetCustomValidity":"SetCustomValidity(string)","SetCustomValidityAsync(string)":"SetCustomValidityAsync(string)","SetCustomValidityAsync":"SetCustomValidityAsync(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetRangeText(string, double, double, RangeTextSelectMode)":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeText":"SetRangeText(string, double, double, RangeTextSelectMode)","SetRangeTextAsync(string, double, double, RangeTextSelectMode)":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetRangeTextAsync":"SetRangeTextAsync(string, double, double, RangeTextSelectMode)","SetSelectionRange(double, double, SelectionRangeDirection)":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRange":"SetSelectionRange(double, double, SelectionRangeDirection)","SetSelectionRangeAsync(double, double, SelectionRangeDirection)":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","SetSelectionRangeAsync":"SetSelectionRangeAsync(double, double, SelectionRangeDirection)","Spellcheck":"Spellcheck","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","ValidateOnly":"ValidateOnly","Value":"Value","ValueChanged":"ValueChanged","Wrap":"Wrap"}}],"IgbTextareaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextareaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextareaModule()":"IgbTextareaModule()","IgbTextareaModule":"IgbTextareaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTextareaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextareaModule()":"IgbTextareaModule()","IgbTextareaModule":"IgbTextareaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTextCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextCellInfo()":"IgbTextCellInfo()","IgbTextCellInfo":"IgbTextCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","TextValue":"TextValue","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTextColumn":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextColumn","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","GetCurrentActualHeaderTextAsync()":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderTextAsync":"GetCurrentActualHeaderTextAsync()","GetCurrentActualHeaderText()":"GetCurrentActualHeaderText()","GetCurrentActualHeaderText":"GetCurrentActualHeaderText()","GetUniqueKeyAsync()":"GetUniqueKeyAsync()","GetUniqueKeyAsync":"GetUniqueKeyAsync()","GetUniqueKey()":"GetUniqueKey()","GetUniqueKey":"GetUniqueKey()","SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValueAsync":"SetNamedHeaderValueAsync(string, CellPropertyAnimationType, object)","SetNamedHeaderValue(string, CellPropertyAnimationType, object)":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","SetNamedHeaderValue":"SetNamedHeaderValue(string, CellPropertyAnimationType, object)","HasNamedHeaderValuesAsync()":"HasNamedHeaderValuesAsync()","HasNamedHeaderValuesAsync":"HasNamedHeaderValuesAsync()","HasNamedHeaderValues()":"HasNamedHeaderValues()","HasNamedHeaderValues":"HasNamedHeaderValues()","HasNamedHeaderValueAsync(string)":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValueAsync":"HasNamedHeaderValueAsync(string)","HasNamedHeaderValue(string)":"HasNamedHeaderValue(string)","HasNamedHeaderValue":"HasNamedHeaderValue(string)","RemoveNamedHeaderValueAsync(string)":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValueAsync":"RemoveNamedHeaderValueAsync(string)","RemoveNamedHeaderValue(string)":"RemoveNamedHeaderValue(string)","RemoveNamedHeaderValue":"RemoveNamedHeaderValue(string)","GetNamedHeaderValueAsync(string)":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValueAsync":"GetNamedHeaderValueAsync(string)","GetNamedHeaderValue(string)":"GetNamedHeaderValue(string)","GetNamedHeaderValue":"GetNamedHeaderValue(string)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","DataGridParent":"DataGridParent","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","Field":"Field","HeaderText":"HeaderText","ActualHeaderText":"ActualHeaderText","SelectedBackground":"SelectedBackground","ActualSelectedBackground":"ActualSelectedBackground","RowHoverBackground":"RowHoverBackground","ActualHoverBackground":"ActualHoverBackground","RowHoverTextColor":"RowHoverTextColor","ActualRowHoverTextColor":"ActualRowHoverTextColor","AnimationSettings":"AnimationSettings","Width":"Width","MinWidth":"MinWidth","IsFromMarkup":"IsFromMarkup","IsAutoGenerated":"IsAutoGenerated","Filter":"Filter","FilterExpression":"FilterExpression","Header":"Header","IsFilteringEnabled":"IsFilteringEnabled","IsResizingEnabled":"IsResizingEnabled","IsHidden":"IsHidden","ShouldRemoveWhenHidden":"ShouldRemoveWhenHidden","SortDirection":"SortDirection","Pinned":"Pinned","ActualColumnOptionsIconAlignment":"ActualColumnOptionsIconAlignment","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ActualColumnOptionsIconColor":"ActualColumnOptionsIconColor","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ActualColumnOptionsIconBehavior":"ActualColumnOptionsIconBehavior","ActualIsColumnOptionsEnabled":"ActualIsColumnOptionsEnabled","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","ActualIsColumnOptionsSummariesEnabled":"ActualIsColumnOptionsSummariesEnabled","IsColumnOptionsSummariesEnabled":"IsColumnOptionsSummariesEnabled","ActualIsColumnOptionsGroupingEnabled":"ActualIsColumnOptionsGroupingEnabled","IsColumnOptionsGroupingEnabled":"IsColumnOptionsGroupingEnabled","ActualColumnOptionsBackground":"ActualColumnOptionsBackground","ColumnOptionsBackground":"ColumnOptionsBackground","ActualColumnOptionsTextColor":"ActualColumnOptionsTextColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ActualColumnOptionsSeparatorColor":"ActualColumnOptionsSeparatorColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ActualColumnOptionsGroupHeaderBackground":"ActualColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ActualColumnOptionsGroupHeaderTextColor":"ActualColumnOptionsGroupHeaderTextColor","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ActualColumnOptionsAccentColor":"ActualColumnOptionsAccentColor","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","IsEditable":"IsEditable","DeletedTextColor":"DeletedTextColor","ActualDeletedTextColor":"ActualDeletedTextColor","EditOpacity":"EditOpacity","ActualEditOpacity":"ActualEditOpacity","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","MergedCellMode":"MergedCellMode","MergedCellEvaluationCriteria":"MergedCellEvaluationCriteria","MergedCellVerticalAlignment":"MergedCellVerticalAlignment","MergedCellPaddingLeft":"MergedCellPaddingLeft","MergedCellPaddingTop":"MergedCellPaddingTop","MergedCellPaddingRight":"MergedCellPaddingRight","MergedCellPaddingBottom":"MergedCellPaddingBottom","FilterComparisonType":"FilterComparisonType","FilterOperands":"FilterOperands","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","FormatCellScript":"FormatCellScript","FormatCell":"FormatCell","ActualHeaderTextChangedScript":"ActualHeaderTextChangedScript","ActualHeaderTextChanged":"ActualHeaderTextChanged","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextColumn()":"IgbTextColumn()","IgbTextColumn":"IgbTextColumn()","ActualEditorDataSource":"ActualEditorDataSource","EditorDataSource":"EditorDataSource","EditorDataSourceScript":"EditorDataSourceScript","EditorTextField":"EditorTextField","EditorType":"EditorType","EditorValueField":"EditorValueField","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ParentTypeName":"ParentTypeName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTextColumnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextColumnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextColumnModule()":"IgbTextColumnModule()","IgbTextColumnModule":"IgbTextColumnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTextHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextHeader","k":"class","s":"classes","m":{"SortIndicatorColor":"SortIndicatorColor","ActualSortIndicatorColor":"ActualSortIndicatorColor","SortIndicatorStyle":"SortIndicatorStyle","ActualSortIndicatorStyle":"ActualSortIndicatorStyle","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","TransitionStyleOutAsync(IgbGridConditionalStyle)":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOutAsync":"TransitionStyleOutAsync(IgbGridConditionalStyle)","TransitionStyleOut(IgbGridConditionalStyle)":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleOut":"TransitionStyleOut(IgbGridConditionalStyle)","TransitionStyleInAsync(IgbGridConditionalStyle)":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleInAsync":"TransitionStyleInAsync(IgbGridConditionalStyle)","TransitionStyleIn(IgbGridConditionalStyle)":"TransitionStyleIn(IgbGridConditionalStyle)","TransitionStyleIn":"TransitionStyleIn(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync(IgbGridConditionalStyle)":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOutAsync":"IsStyleTransitioningOutAsync(IgbGridConditionalStyle)","IsStyleTransitioningOut(IgbGridConditionalStyle)":"IsStyleTransitioningOut(IgbGridConditionalStyle)","IsStyleTransitioningOut":"IsStyleTransitioningOut(IgbGridConditionalStyle)","SetNamedValueAsync(string, CellPropertyAnimationType, object)":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValueAsync":"SetNamedValueAsync(string, CellPropertyAnimationType, object)","SetNamedValue(string, CellPropertyAnimationType, object)":"SetNamedValue(string, CellPropertyAnimationType, object)","SetNamedValue":"SetNamedValue(string, CellPropertyAnimationType, object)","HasNamedValuesAsync()":"HasNamedValuesAsync()","HasNamedValuesAsync":"HasNamedValuesAsync()","HasNamedValues()":"HasNamedValues()","HasNamedValues":"HasNamedValues()","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","ParentTypeName":"ParentTypeName","ContentConditionalStyles":"ContentConditionalStyles","ActualConditionalStyles":"ActualConditionalStyles","Background":"Background","ConditionalStyles":"ConditionalStyles","Border":"Border","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","ActualBorder":"ActualBorder","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBackground":"ActualBackground","ActualActivationBorder":"ActualActivationBorder","ActualErrorBorder":"ActualErrorBorder","StickyRowBackground":"StickyRowBackground","ActualStickyRowBackground":"ActualStickyRowBackground","PinnedRowBackground":"PinnedRowBackground","ActualPinnedRowBackground":"ActualPinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","ActualLastStickyRowBackground":"ActualLastStickyRowBackground","ContentOpacity":"ContentOpacity","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","LineBreakMode":"LineBreakMode","ActualLineBreakMode":"ActualLineBreakMode","TextColor":"TextColor","ActualTextColor":"ActualTextColor","IsBarSupported":"IsBarSupported","BarBackground":"BarBackground","ActualBarBackground":"ActualBarBackground","BarOutline":"BarOutline","ActualBarOutline":"ActualBarOutline","BarStrokeThickness":"BarStrokeThickness","ActualBarStrokeThickness":"ActualBarStrokeThickness","BarCornerRadius":"BarCornerRadius","ActualBarCornerRadius":"ActualBarCornerRadius","PinnedRowOpacity":"PinnedRowOpacity","ActualPinnedRowOpacity":"ActualPinnedRowOpacity","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","DataBindingScript":"DataBindingScript","DataBinding":"DataBinding","DataBoundScript":"DataBoundScript","DataBound":"DataBound","CellStyleKeyRequestedScript":"CellStyleKeyRequestedScript","CellStyleKeyRequested":"CellStyleKeyRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextHeader()":"IgbTextHeader()","IgbTextHeader":"IgbTextHeader()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTextHeaderCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextHeaderCellInfo","k":"class","s":"classes","m":{"TextValue":"TextValue","IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextHeaderCellInfo()":"IgbTextHeaderCellInfo()","IgbTextHeaderCellInfo":"IgbTextHeaderCellInfo()","ColumnOptionsAccentColor":"ColumnOptionsAccentColor","ColumnOptionsBackground":"ColumnOptionsBackground","ColumnOptionsGroupHeaderBackground":"ColumnOptionsGroupHeaderBackground","ColumnOptionsGroupHeaderTextColor":"ColumnOptionsGroupHeaderTextColor","ColumnOptionsIconAlignment":"ColumnOptionsIconAlignment","ColumnOptionsIconBehavior":"ColumnOptionsIconBehavior","ColumnOptionsIconColor":"ColumnOptionsIconColor","ColumnOptionsSeparatorColor":"ColumnOptionsSeparatorColor","ColumnOptionsTextColor":"ColumnOptionsTextColor","ColumnOptionsTheme":"ColumnOptionsTheme","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsColumnOptionsEnabled":"IsColumnOptionsEnabled","SortIndicatorStyle":"SortIndicatorStyle","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTextHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextHeaderModule()":"IgbTextHeaderModule()","IgbTextHeaderModule":"IgbTextHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTextIconSetConditionalStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextIconSetConditionalStyle","k":"class","s":"classes","m":{"ActualNeedsFieldMaximumAsync()":"ActualNeedsFieldMaximumAsync()","ActualNeedsFieldMaximumAsync":"ActualNeedsFieldMaximumAsync()","ActualNeedsFieldMaximum()":"ActualNeedsFieldMaximum()","ActualNeedsFieldMaximum":"ActualNeedsFieldMaximum()","ActualNeedsFieldMinimumAsync()":"ActualNeedsFieldMinimumAsync()","ActualNeedsFieldMinimumAsync":"ActualNeedsFieldMinimumAsync()","ActualNeedsFieldMinimum()":"ActualNeedsFieldMinimum()","ActualNeedsFieldMinimum":"ActualNeedsFieldMinimum()","ActualNeedsFieldSumAsync()":"ActualNeedsFieldSumAsync()","ActualNeedsFieldSumAsync":"ActualNeedsFieldSumAsync()","ActualNeedsFieldSum()":"ActualNeedsFieldSum()","ActualNeedsFieldSum":"ActualNeedsFieldSum()","RequiresGlobalValuesAsync()":"RequiresGlobalValuesAsync()","RequiresGlobalValuesAsync":"RequiresGlobalValuesAsync()","RequiresGlobalValues()":"RequiresGlobalValues()","RequiresGlobalValues":"RequiresGlobalValues()","ParentTypeName":"ParentTypeName","ContentProperties":"ContentProperties","ActualProperties":"ActualProperties","StyleKey":"StyleKey","IsTransitionInEnabled":"IsTransitionInEnabled","Properties":"Properties","ConditionString":"ConditionString","Condition":"Condition","IsFieldMinimumNeeded":"IsFieldMinimumNeeded","IsFieldMaximumNeeded":"IsFieldMaximumNeeded","IsFieldSumNeeded":"IsFieldSumNeeded","PropertyUpdatedScript":"PropertyUpdatedScript","PropertyUpdated":"PropertyUpdated","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextIconSetConditionalStyle()":"IgbTextIconSetConditionalStyle()","IgbTextIconSetConditionalStyle":"IgbTextIconSetConditionalStyle()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSubStyles()":"GetSubStyles()","GetSubStyles":"GetSubStyles()","GetSubStylesAsync()":"GetSubStylesAsync()","GetSubStylesAsync":"GetSubStylesAsync()","IconType":"IconType","Type":"Type"}}],"IgbTextIconSetConditionalStyleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTextIconSetConditionalStyleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTextIconSetConditionalStyleModule()":"IgbTextIconSetConditionalStyleModule()","IgbTextIconSetConditionalStyleModule":"IgbTextIconSetConditionalStyleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbThemeProvider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbThemeProvider","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbThemeProvider()":"IgbThemeProvider()","IgbThemeProvider":"IgbThemeProvider()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Theme":"Theme","Type":"Type","UseDirectRender":"UseDirectRender","Variant":"Variant"}}],"IgbThemeProviderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbThemeProviderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbThemeProviderModule()":"IgbThemeProviderModule()","IgbThemeProviderModule":"IgbThemeProviderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbThisMonthExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbThisMonthExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbThisMonthExpression()":"IgbThisMonthExpression()","IgbThisMonthExpression":"IgbThisMonthExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbThisQuarterExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbThisQuarterExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbThisQuarterExpression()":"IgbThisQuarterExpression()","IgbThisQuarterExpression":"IgbThisQuarterExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbThisWeekExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbThisWeekExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbThisWeekExpression()":"IgbThisWeekExpression()","IgbThisWeekExpression":"IgbThisWeekExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbThisYearExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbThisYearExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbThisYearExpression()":"IgbThisYearExpression()","IgbThisYearExpression":"IgbThisYearExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTile":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTile","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTile()":"IgbTile()","IgbTile":"IgbTile()","ColSpan":"ColSpan","ColStart":"ColStart","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisableFullscreen":"DisableFullscreen","DisableMaximize":"DisableMaximize","DisableResize":"DisableResize","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetFullscreen()":"GetFullscreen()","GetFullscreen":"GetFullscreen()","GetFullscreenAsync()":"GetFullscreenAsync()","GetFullscreenAsync":"GetFullscreenAsync()","Maximized":"Maximized","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Position":"Position","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","RowSpan":"RowSpan","RowStart":"RowStart","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TileDragCancel":"TileDragCancel","TileDragCancelScript":"TileDragCancelScript","TileDragEnd":"TileDragEnd","TileDragEndScript":"TileDragEndScript","TileDragStart":"TileDragStart","TileDragStartScript":"TileDragStartScript","TileFullscreen":"TileFullscreen","TileFullscreenScript":"TileFullscreenScript","TileManagerParent":"TileManagerParent","TileMaximize":"TileMaximize","TileMaximizeScript":"TileMaximizeScript","TileResizeCancel":"TileResizeCancel","TileResizeCancelScript":"TileResizeCancelScript","TileResizeEnd":"TileResizeEnd","TileResizeEndScript":"TileResizeEndScript","TileResizeStart":"TileResizeStart","TileResizeStartScript":"TileResizeStartScript","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTile","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTile()":"IgbTile()","IgbTile":"IgbTile()","ColSpan":"ColSpan","ColStart":"ColStart","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisableFullscreen":"DisableFullscreen","DisableMaximize":"DisableMaximize","DisableResize":"DisableResize","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetFullscreen()":"GetFullscreen()","GetFullscreen":"GetFullscreen()","GetFullscreenAsync()":"GetFullscreenAsync()","GetFullscreenAsync":"GetFullscreenAsync()","Maximized":"Maximized","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Position":"Position","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","RowSpan":"RowSpan","RowStart":"RowStart","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TileDragCancel":"TileDragCancel","TileDragCancelScript":"TileDragCancelScript","TileDragEnd":"TileDragEnd","TileDragEndScript":"TileDragEndScript","TileDragStart":"TileDragStart","TileDragStartScript":"TileDragStartScript","TileFullscreen":"TileFullscreen","TileFullscreenScript":"TileFullscreenScript","TileManagerParent":"TileManagerParent","TileMaximize":"TileMaximize","TileMaximizeScript":"TileMaximizeScript","TileResizeCancel":"TileResizeCancel","TileResizeCancelScript":"TileResizeCancelScript","TileResizeEnd":"TileResizeEnd","TileResizeEndScript":"TileResizeEndScript","TileResizeStart":"TileResizeStart","TileResizeStartScript":"TileResizeStartScript","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbTileChangeStateEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileChangeStateEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileChangeStateEventArgs()":"IgbTileChangeStateEventArgs()","IgbTileChangeStateEventArgs":"IgbTileChangeStateEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTileChangeStateEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileChangeStateEventArgs()":"IgbTileChangeStateEventArgs()","IgbTileChangeStateEventArgs":"IgbTileChangeStateEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTileChangeStateEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileChangeStateEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileChangeStateEventArgsDetail()":"IgbTileChangeStateEventArgsDetail()","IgbTileChangeStateEventArgsDetail":"IgbTileChangeStateEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","State":"State","Tile":"Tile","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTileChangeStateEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileChangeStateEventArgsDetail()":"IgbTileChangeStateEventArgsDetail()","IgbTileChangeStateEventArgsDetail":"IgbTileChangeStateEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","State":"State","Tile":"Tile","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTileComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileComponentEventArgs()":"IgbTileComponentEventArgs()","IgbTileComponentEventArgs":"IgbTileComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTileComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileComponentEventArgs()":"IgbTileComponentEventArgs()","IgbTileComponentEventArgs":"IgbTileComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTileGeneratorMapImagery":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileGeneratorMapImagery","k":"class","s":"classes","m":{"ClearTileCacheAsync()":"ClearTileCacheAsync()","ClearTileCacheAsync":"ClearTileCacheAsync()","ClearTileCache()":"ClearTileCache()","ClearTileCache":"ClearTileCache()","WindowRect":"WindowRect","Referer":"Referer","IsHorizontalWrappingEnabled":"IsHorizontalWrappingEnabled","UserAgent":"UserAgent","Opacity":"Opacity","ImageTilesReadyScript":"ImageTilesReadyScript","ImageTilesReady":"ImageTilesReady","ImagesChangedScript":"ImagesChangedScript","ImagesChanged":"ImagesChanged","CancellingImageScript":"CancellingImageScript","CancellingImage":"CancellingImage","DownloadingImageScript":"DownloadingImageScript","DownloadingImage":"DownloadingImage","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileGeneratorMapImagery()":"IgbTileGeneratorMapImagery()","IgbTileGeneratorMapImagery":"IgbTileGeneratorMapImagery()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TileGenerator":"TileGenerator","Type":"Type"}}],"IgbTileGeneratorMapImageryModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileGeneratorMapImageryModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileGeneratorMapImageryModule()":"IgbTileGeneratorMapImageryModule()","IgbTileGeneratorMapImageryModule":"IgbTileGeneratorMapImageryModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTileManager":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileManager","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileManager()":"IgbTileManager()","IgbTileManager":"IgbTileManager()","ColumnCount":"ColumnCount","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DragMode":"DragMode","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Gap":"Gap","GetTiles()":"GetTiles()","GetTiles":"GetTiles()","GetTilesAsync()":"GetTilesAsync()","GetTilesAsync":"GetTilesAsync()","LoadLayout(string)":"LoadLayout(string)","LoadLayout":"LoadLayout(string)","LoadLayoutAsync(string)":"LoadLayoutAsync(string)","LoadLayoutAsync":"LoadLayoutAsync(string)","MinColumnWidth":"MinColumnWidth","MinRowHeight":"MinRowHeight","ParentTypeName":"ParentTypeName","ResizeMode":"ResizeMode","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SaveLayout()":"SaveLayout()","SaveLayout":"SaveLayout()","SaveLayoutAsync()":"SaveLayoutAsync()","SaveLayoutAsync":"SaveLayoutAsync()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TileDragCancel":"TileDragCancel","TileDragCancelScript":"TileDragCancelScript","TileDragEnd":"TileDragEnd","TileDragEndScript":"TileDragEndScript","TileDragStart":"TileDragStart","TileDragStartScript":"TileDragStartScript","TileFullscreen":"TileFullscreen","TileFullscreenScript":"TileFullscreenScript","TileMaximize":"TileMaximize","TileMaximizeScript":"TileMaximizeScript","TileResizeCancel":"TileResizeCancel","TileResizeCancelScript":"TileResizeCancelScript","TileResizeEnd":"TileResizeEnd","TileResizeEndScript":"TileResizeEndScript","TileResizeStart":"TileResizeStart","TileResizeStartScript":"TileResizeStartScript","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTileManager","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileManager()":"IgbTileManager()","IgbTileManager":"IgbTileManager()","ColumnCount":"ColumnCount","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DragMode":"DragMode","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Gap":"Gap","GetTiles()":"GetTiles()","GetTiles":"GetTiles()","GetTilesAsync()":"GetTilesAsync()","GetTilesAsync":"GetTilesAsync()","LoadLayout(string)":"LoadLayout(string)","LoadLayout":"LoadLayout(string)","LoadLayoutAsync(string)":"LoadLayoutAsync(string)","LoadLayoutAsync":"LoadLayoutAsync(string)","MinColumnWidth":"MinColumnWidth","MinRowHeight":"MinRowHeight","ParentTypeName":"ParentTypeName","ResizeMode":"ResizeMode","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SaveLayout()":"SaveLayout()","SaveLayout":"SaveLayout()","SaveLayoutAsync()":"SaveLayoutAsync()","SaveLayoutAsync":"SaveLayoutAsync()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","TileDragCancel":"TileDragCancel","TileDragCancelScript":"TileDragCancelScript","TileDragEnd":"TileDragEnd","TileDragEndScript":"TileDragEndScript","TileDragStart":"TileDragStart","TileDragStartScript":"TileDragStartScript","TileFullscreen":"TileFullscreen","TileFullscreenScript":"TileFullscreenScript","TileMaximize":"TileMaximize","TileMaximizeScript":"TileMaximizeScript","TileResizeCancel":"TileResizeCancel","TileResizeCancelScript":"TileResizeCancelScript","TileResizeEnd":"TileResizeEnd","TileResizeEndScript":"TileResizeEndScript","TileResizeStart":"TileResizeStart","TileResizeStartScript":"TileResizeStartScript","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbTileManagerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileManagerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileManagerModule()":"IgbTileManagerModule()","IgbTileManagerModule":"IgbTileManagerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTileManagerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileManagerModule()":"IgbTileManagerModule()","IgbTileManagerModule":"IgbTileManagerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTileModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileModule()":"IgbTileModule()","IgbTileModule":"IgbTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTileModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileModule()":"IgbTileModule()","IgbTileModule":"IgbTileModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTileSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","IsCustomShapeStyleAllowed":"IsCustomShapeStyleAllowed","IsCustomShapeMarkerStyleAllowed":"IsCustomShapeMarkerStyleAllowed","FillMemberPath":"FillMemberPath","FillScale":"FillScale","FillScaleUseGlobalValues":"FillScaleUseGlobalValues","ActualItemSearchMode":"ActualItemSearchMode","ItemSearchMode":"ItemSearchMode","ItemSearchThreshold":"ItemSearchThreshold","ItemSearchPointsThreshold":"ItemSearchPointsThreshold","ShapeMemberPath":"ShapeMemberPath","HighlightedShapeMemberPath":"HighlightedShapeMemberPath","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","ShapeFilterResolution":"ShapeFilterResolution","AssigningShapeStyleScript":"AssigningShapeStyleScript","AssigningShapeStyle":"AssigningShapeStyle","AssigningShapeMarkerStyleScript":"AssigningShapeMarkerStyleScript","AssigningShapeMarkerStyle":"AssigningShapeMarkerStyle","StyleShapeScript":"StyleShapeScript","StyleShape":"StyleShape","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileSeries()":"IgbTileSeries()","IgbTileSeries":"IgbTileSeries()","DeferredRefresh()":"DeferredRefresh()","DeferredRefresh":"DeferredRefresh()","DeferredRefreshAsync()":"DeferredRefreshAsync()","DeferredRefreshAsync":"DeferredRefreshAsync()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","TileImagery":"TileImagery","Type":"Type"}}],"IgbTileSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTileSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTileSeriesModule()":"IgbTileSeriesModule()","IgbTileSeriesModule":"IgbTileSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTimeAxisBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisBase","k":"class","s":"classes","m":{"GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisBase()":"IgbTimeAxisBase()","IgbTimeAxisBase":"IgbTimeAxisBase()","ActualMaximumValue":"ActualMaximumValue","ActualMaximumValueChanged":"ActualMaximumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMinimumValue":"ActualMinimumValue","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","DateTimeMemberPath":"DateTimeMemberPath","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetIndexClosestToUnscaledValue(double)":"GetIndexClosestToUnscaledValue(double)","GetIndexClosestToUnscaledValue":"GetIndexClosestToUnscaledValue(double)","GetIndexClosestToUnscaledValueAsync(double)":"GetIndexClosestToUnscaledValueAsync(double)","GetIndexClosestToUnscaledValueAsync":"GetIndexClosestToUnscaledValueAsync(double)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","IsDataPreSorted":"IsDataPreSorted","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","NotifyDataChanged()":"NotifyDataChanged()","NotifyDataChanged":"NotifyDataChanged()","NotifyDataChangedAsync()":"NotifyDataChangedAsync()","NotifyDataChangedAsync":"NotifyDataChangedAsync()","Type":"Type"}}],"IgbTimeAxisBreak":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisBreak","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisBreak()":"IgbTimeAxisBreak()","IgbTimeAxisBreak":"IgbTimeAxisBreak()","End":"End","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Interval":"Interval","Start":"Start","Type":"Type"}}],"IgbTimeAxisBreakCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisBreakCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTimeAxisBreak)":"InsertItem(int, IgbTimeAxisBreak)","InsertItem":"InsertItem(int, IgbTimeAxisBreak)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTimeAxisBreak)":"SetItem(int, IgbTimeAxisBreak)","SetItem":"SetItem(int, IgbTimeAxisBreak)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTimeAxisBreak)":"Add(IgbTimeAxisBreak)","Add":"Add(IgbTimeAxisBreak)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTimeAxisBreak[], int)":"CopyTo(IgbTimeAxisBreak[], int)","CopyTo":"CopyTo(IgbTimeAxisBreak[], int)","Contains(IgbTimeAxisBreak)":"Contains(IgbTimeAxisBreak)","Contains":"Contains(IgbTimeAxisBreak)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTimeAxisBreak)":"IndexOf(IgbTimeAxisBreak)","IndexOf":"IndexOf(IgbTimeAxisBreak)","Insert(int, IgbTimeAxisBreak)":"Insert(int, IgbTimeAxisBreak)","Insert":"Insert(int, IgbTimeAxisBreak)","Remove(IgbTimeAxisBreak)":"Remove(IgbTimeAxisBreak)","Remove":"Remove(IgbTimeAxisBreak)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisBreakCollection(object, string)":"IgbTimeAxisBreakCollection(object, string)","IgbTimeAxisBreakCollection":"IgbTimeAxisBreakCollection(object, string)"}}],"IgbTimeAxisBreakModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisBreakModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisBreakModule()":"IgbTimeAxisBreakModule()","IgbTimeAxisBreakModule":"IgbTimeAxisBreakModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTimeAxisInterval":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisInterval","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisInterval()":"IgbTimeAxisInterval()","IgbTimeAxisInterval":"IgbTimeAxisInterval()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Interval":"Interval","IntervalType":"IntervalType","Range":"Range","Type":"Type"}}],"IgbTimeAxisIntervalCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisIntervalCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTimeAxisInterval)":"InsertItem(int, IgbTimeAxisInterval)","InsertItem":"InsertItem(int, IgbTimeAxisInterval)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTimeAxisInterval)":"SetItem(int, IgbTimeAxisInterval)","SetItem":"SetItem(int, IgbTimeAxisInterval)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTimeAxisInterval)":"Add(IgbTimeAxisInterval)","Add":"Add(IgbTimeAxisInterval)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTimeAxisInterval[], int)":"CopyTo(IgbTimeAxisInterval[], int)","CopyTo":"CopyTo(IgbTimeAxisInterval[], int)","Contains(IgbTimeAxisInterval)":"Contains(IgbTimeAxisInterval)","Contains":"Contains(IgbTimeAxisInterval)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTimeAxisInterval)":"IndexOf(IgbTimeAxisInterval)","IndexOf":"IndexOf(IgbTimeAxisInterval)","Insert(int, IgbTimeAxisInterval)":"Insert(int, IgbTimeAxisInterval)","Insert":"Insert(int, IgbTimeAxisInterval)","Remove(IgbTimeAxisInterval)":"Remove(IgbTimeAxisInterval)","Remove":"Remove(IgbTimeAxisInterval)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisIntervalCollection(object, string)":"IgbTimeAxisIntervalCollection(object, string)","IgbTimeAxisIntervalCollection":"IgbTimeAxisIntervalCollection(object, string)"}}],"IgbTimeAxisIntervalModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisIntervalModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisIntervalModule()":"IgbTimeAxisIntervalModule()","IgbTimeAxisIntervalModule":"IgbTimeAxisIntervalModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTimeAxisLabelFormat":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisLabelFormat","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisLabelFormat()":"IgbTimeAxisLabelFormat()","IgbTimeAxisLabelFormat":"IgbTimeAxisLabelFormat()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Format":"Format","LabelFormatOverride":"LabelFormatOverride","LabelFormatOverrideScript":"LabelFormatOverrideScript","Range":"Range","RepeatedDayFormat":"RepeatedDayFormat","RepeatedMonthFormat":"RepeatedMonthFormat","RepeatedYearFormat":"RepeatedYearFormat","Type":"Type"}}],"IgbTimeAxisLabelFormatCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisLabelFormatCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTimeAxisLabelFormat)":"InsertItem(int, IgbTimeAxisLabelFormat)","InsertItem":"InsertItem(int, IgbTimeAxisLabelFormat)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTimeAxisLabelFormat)":"SetItem(int, IgbTimeAxisLabelFormat)","SetItem":"SetItem(int, IgbTimeAxisLabelFormat)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTimeAxisLabelFormat)":"Add(IgbTimeAxisLabelFormat)","Add":"Add(IgbTimeAxisLabelFormat)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTimeAxisLabelFormat[], int)":"CopyTo(IgbTimeAxisLabelFormat[], int)","CopyTo":"CopyTo(IgbTimeAxisLabelFormat[], int)","Contains(IgbTimeAxisLabelFormat)":"Contains(IgbTimeAxisLabelFormat)","Contains":"Contains(IgbTimeAxisLabelFormat)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTimeAxisLabelFormat)":"IndexOf(IgbTimeAxisLabelFormat)","IndexOf":"IndexOf(IgbTimeAxisLabelFormat)","Insert(int, IgbTimeAxisLabelFormat)":"Insert(int, IgbTimeAxisLabelFormat)","Insert":"Insert(int, IgbTimeAxisLabelFormat)","Remove(IgbTimeAxisLabelFormat)":"Remove(IgbTimeAxisLabelFormat)","Remove":"Remove(IgbTimeAxisLabelFormat)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisLabelFormatCollection(object, string)":"IgbTimeAxisLabelFormatCollection(object, string)","IgbTimeAxisLabelFormatCollection":"IgbTimeAxisLabelFormatCollection(object, string)"}}],"IgbTimeAxisLabelFormatModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeAxisLabelFormatModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeAxisLabelFormatModule()":"IgbTimeAxisLabelFormatModule()","IgbTimeAxisLabelFormatModule":"IgbTimeAxisLabelFormatModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTimeXAxis":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeXAxis","k":"class","s":"classes","m":{"GetCurrentActualMinimumValueAsync()":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValueAsync":"GetCurrentActualMinimumValueAsync()","GetCurrentActualMinimumValue()":"GetCurrentActualMinimumValue()","GetCurrentActualMinimumValue":"GetCurrentActualMinimumValue()","GetCurrentActualMaximumValueAsync()":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValueAsync":"GetCurrentActualMaximumValueAsync()","GetCurrentActualMaximumValue()":"GetCurrentActualMaximumValue()","GetCurrentActualMaximumValue":"GetCurrentActualMaximumValue()","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetFullRangeAsync()":"GetFullRangeAsync()","GetFullRangeAsync":"GetFullRangeAsync()","GetFullRange()":"GetFullRange()","GetFullRange":"GetFullRange()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","NotifyDataChangedAsync()":"NotifyDataChangedAsync()","NotifyDataChangedAsync":"NotifyDataChangedAsync()","NotifyDataChanged()":"NotifyDataChanged()","NotifyDataChanged":"NotifyDataChanged()","DateTimeMemberPath":"DateTimeMemberPath","IsDataPreSorted":"IsDataPreSorted","ActualMinimumValue":"ActualMinimumValue","ActualMaximumValue":"ActualMaximumValue","MinimumValue":"MinimumValue","MaximumValue":"MaximumValue","ActualMinimumValueChangedScript":"ActualMinimumValueChangedScript","ActualMinimumValueChanged":"ActualMinimumValueChanged","ActualMaximumValueChangedScript":"ActualMaximumValueChangedScript","ActualMaximumValueChanged":"ActualMaximumValueChanged","GetCurrentItemsCountAsync()":"GetCurrentItemsCountAsync()","GetCurrentItemsCountAsync":"GetCurrentItemsCountAsync()","GetCurrentItemsCount()":"GetCurrentItemsCount()","GetCurrentItemsCount":"GetCurrentItemsCount()","GetCategoryBoundingBoxAsync(Point, bool, double)":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBoxAsync":"GetCategoryBoundingBoxAsync(Point, bool, double)","GetCategoryBoundingBox(Point, bool, double)":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBox":"GetCategoryBoundingBox(Point, bool, double)","GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelperAsync":"GetCategoryBoundingBoxHelperAsync(Point, bool, double, bool)","GetCategoryBoundingBoxHelper(Point, bool, double, bool)":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","GetCategoryBoundingBoxHelper":"GetCategoryBoundingBoxHelper(Point, bool, double, bool)","UnscaleValueAsync(double)":"UnscaleValueAsync(double)","UnscaleValueAsync":"UnscaleValueAsync(double)","UnscaleValue(double)":"UnscaleValue(double)","UnscaleValue":"UnscaleValue(double)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","DataSource":"DataSource","DataSourceScript":"DataSourceScript","ItemsCount":"ItemsCount","Gap":"Gap","MaximumGap":"MaximumGap","MinimumGapSize":"MinimumGapSize","Overlap":"Overlap","UseClusteringMode":"UseClusteringMode","ItemsCountChangedScript":"ItemsCountChangedScript","ItemsCountChanged":"ItemsCountChanged","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","RenderAxisAsync()":"RenderAxisAsync()","RenderAxisAsync":"RenderAxisAsync()","RenderAxis()":"RenderAxis()","RenderAxis":"RenderAxis()","ResetCachedEnhancedIntervalAsync()":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedIntervalAsync":"ResetCachedEnhancedIntervalAsync()","ResetCachedEnhancedInterval()":"ResetCachedEnhancedInterval()","ResetCachedEnhancedInterval":"ResetCachedEnhancedInterval()","ScaleValueAsync(double)":"ScaleValueAsync(double)","ScaleValueAsync":"ScaleValueAsync(double)","ScaleValue(double)":"ScaleValue(double)","ScaleValue":"ScaleValue(double)","SeriesViewerParent":"SeriesViewerParent","ParentTypeName":"ParentTypeName","Label":"Label","ContentLabelFormatSpecifiers":"ContentLabelFormatSpecifiers","ActualLabelFormatSpecifiers":"ActualLabelFormatSpecifiers","ContentAnnotations":"ContentAnnotations","ActualAnnotations":"ActualAnnotations","FormatLabelScript":"FormatLabelScript","Title":"Title","Stroke":"Stroke","ActualStroke":"ActualStroke","StrokeThickness":"StrokeThickness","StrokeDashArray":"StrokeDashArray","Strip":"Strip","MajorStroke":"MajorStroke","ActualMajorStroke":"ActualMajorStroke","MajorStrokeThickness":"MajorStrokeThickness","MajorStrokeDashArray":"MajorStrokeDashArray","MinorStroke":"MinorStroke","ActualMinorStroke":"ActualMinorStroke","MinorStrokeThickness":"MinorStrokeThickness","MinorStrokeDashArray":"MinorStrokeDashArray","TickStroke":"TickStroke","TickStrokeThickness":"TickStrokeThickness","TickStrokeDashArray":"TickStrokeDashArray","TickLength":"TickLength","IsDisabled":"IsDisabled","IsInverted":"IsInverted","ShouldAvoidAnnotationCollisions":"ShouldAvoidAnnotationCollisions","ShouldKeepAnnotationsInView":"ShouldKeepAnnotationsInView","UsePerLabelHeightMeasurement":"UsePerLabelHeightMeasurement","UseEnhancedIntervalManagement":"UseEnhancedIntervalManagement","EnhancedIntervalMinimumCharacters":"EnhancedIntervalMinimumCharacters","EnhancedIntervalPreferMoreCategoryLabels":"EnhancedIntervalPreferMoreCategoryLabels","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LabelLocation":"LabelLocation","LabelVisibility":"LabelVisibility","LabelShowFirstLabel":"LabelShowFirstLabel","LabelAngle":"LabelAngle","LabelExtent":"LabelExtent","LabelMaximumExtent":"LabelMaximumExtent","LabelMaximumExtentPercentage":"LabelMaximumExtentPercentage","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","CrossingAxis":"CrossingAxis","CrossingAxisScript":"CrossingAxisScript","CrossingAxisName":"CrossingAxisName","CrossingValue":"CrossingValue","TitlePosition":"TitlePosition","TitleFontFamily":"TitleFontFamily","TitleFontSize":"TitleFontSize","TitleFontStyle":"TitleFontStyle","TitleFontWeight":"TitleFontWeight","TitleTextColor":"TitleTextColor","TitleLocation":"TitleLocation","TitleVisibility":"TitleVisibility","TitleShowFirstLabel":"TitleShowFirstLabel","TitleAngle":"TitleAngle","TitleExtent":"TitleExtent","TitleMaximumExtent":"TitleMaximumExtent","TitleMaximumExtentPercentage":"TitleMaximumExtentPercentage","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","TitleHorizontalAlignment":"TitleHorizontalAlignment","TitleVerticalAlignment":"TitleVerticalAlignment","ShouldAutoTruncateAnnotations":"ShouldAutoTruncateAnnotations","Annotations":"Annotations","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","LabelFormat":"LabelFormat","LabelFormatSpecifiers":"LabelFormatSpecifiers","IsCompanionAxis":"IsCompanionAxis","CompanionAxisEnabled":"CompanionAxisEnabled","CompanionAxisLabelOpposite":"CompanionAxisLabelOpposite","CompanionAxisIsInverted":"CompanionAxisIsInverted","CompanionAxisCrossingAxis":"CompanionAxisCrossingAxis","CompanionAxisCrossingAxisScript":"CompanionAxisCrossingAxisScript","CompanionAxisCrossingAxisName":"CompanionAxisCrossingAxisName","CompanionAxisCrossingValue":"CompanionAxisCrossingValue","CompanionAxisLabelVisible":"CompanionAxisLabelVisible","CompanionAxisLabelAngle":"CompanionAxisLabelAngle","CompanionAxisLabelExtent":"CompanionAxisLabelExtent","CompanionAxisLabelLocation":"CompanionAxisLabelLocation","CompanionAxisLabelVerticalAlignment":"CompanionAxisLabelVerticalAlignment","CompanionAxisLabelHorizontalAlignment":"CompanionAxisLabelHorizontalAlignment","CompanionAxisLabelColor":"CompanionAxisLabelColor","CompanionAxisSyncronizedWithPrimaryAxis":"CompanionAxisSyncronizedWithPrimaryAxis","CompanionAxisStrip":"CompanionAxisStrip","CompanionAxisStroke":"CompanionAxisStroke","CompanionAxisMinExtent":"CompanionAxisMinExtent","CompanionAxisStrokeThickness":"CompanionAxisStrokeThickness","CompanionAxisMajorStroke":"CompanionAxisMajorStroke","CompanionAxisMajorStrokeThickness":"CompanionAxisMajorStrokeThickness","CompanionAxisMinorStroke":"CompanionAxisMinorStroke","CompanionAxisMinorStrokeThickness":"CompanionAxisMinorStrokeThickness","CompanionAxisTickStroke":"CompanionAxisTickStroke","CompanionAxisTickLength":"CompanionAxisTickLength","CompanionAxisTickStrokeThickness":"CompanionAxisTickStrokeThickness","CompanionAxisTitle":"CompanionAxisTitle","CompanionAxisShouldAvoidAnnotationCollisions":"CompanionAxisShouldAvoidAnnotationCollisions","CompanionAxisShouldAutoTruncateAnnotations":"CompanionAxisShouldAutoTruncateAnnotations","CompanionAxisShouldKeepAnnotationsInView":"CompanionAxisShouldKeepAnnotationsInView","RangeChangedScript":"RangeChangedScript","RangeChanged":"RangeChanged","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeXAxis()":"IgbTimeXAxis()","IgbTimeXAxis":"IgbTimeXAxis()","Breaks":"Breaks","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetIndexClosestToUnscaledValue(double)":"GetIndexClosestToUnscaledValue(double)","GetIndexClosestToUnscaledValue":"GetIndexClosestToUnscaledValue(double)","GetIndexClosestToUnscaledValueAsync(double)":"GetIndexClosestToUnscaledValueAsync(double)","GetIndexClosestToUnscaledValueAsync":"GetIndexClosestToUnscaledValueAsync(double)","GetValueLabel(double)":"GetValueLabel(double)","GetValueLabel":"GetValueLabel(double)","GetValueLabelAsync(double)":"GetValueLabelAsync(double)","GetValueLabelAsync":"GetValueLabelAsync(double)","Intervals":"Intervals","LabelFormats":"LabelFormats","LabellingMode":"LabellingMode","Type":"Type"}}],"IgbTimeXAxisModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTimeXAxisModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTimeXAxisModule()":"IgbTimeXAxisModule()","IgbTimeXAxisModule":"IgbTimeXAxisModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToast":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToast","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","Open":"Open","DisplayTime":"DisplayTime","KeepOpen":"KeepOpen","Position":"Position","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToast()":"IgbToast()","IgbToast":"IgbToast()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbToast","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","Show()":"Show()","Show":"Show()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","Hide()":"Hide()","Hide":"Hide()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Toggle()":"Toggle()","Toggle":"Toggle()","DefaultEventBehavior":"DefaultEventBehavior","Open":"Open","DisplayTime":"DisplayTime","KeepOpen":"KeepOpen","Position":"Position","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToast()":"IgbToast()","IgbToast":"IgbToast()","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbToastModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToastModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToastModule()":"IgbToastModule()","IgbToastModule":"IgbToastModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbToastModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToastModule()":"IgbToastModule()","IgbToastModule":"IgbToastModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTodayExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTodayExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTodayExpression()":"IgbTodayExpression()","IgbTodayExpression":"IgbTodayExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToggleButton":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToggleButton","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleButton()":"IgbToggleButton()","IgbToggleButton":"IgbToggleButton()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbToggleButton","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleButton()":"IgbToggleButton()","IgbToggleButton":"IgbToggleButton()","BlurComponent()":"BlurComponent()","BlurComponent":"BlurComponent()","BlurComponentAsync()":"BlurComponentAsync()","BlurComponentAsync":"BlurComponentAsync()","Click()":"Click()","Click":"Click()","ClickAsync()":"ClickAsync()","ClickAsync":"ClickAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FocusComponent(IgbFocusOptions)":"FocusComponent(IgbFocusOptions)","FocusComponent":"FocusComponent(IgbFocusOptions)","FocusComponentAsync(IgbFocusOptions)":"FocusComponentAsync(IgbFocusOptions)","FocusComponentAsync":"FocusComponentAsync(IgbFocusOptions)","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}}],"IgbToggleButtonModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToggleButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleButtonModule()":"IgbToggleButtonModule()","IgbToggleButtonModule":"IgbToggleButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbToggleButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleButtonModule()":"IgbToggleButtonModule()","IgbToggleButtonModule":"IgbToggleButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToggleViewCancelableEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToggleViewCancelableEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleViewCancelableEventArgs()":"IgbToggleViewCancelableEventArgs()","IgbToggleViewCancelableEventArgs":"IgbToggleViewCancelableEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToggleViewCancelableEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToggleViewCancelableEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleViewCancelableEventArgsDetail()":"IgbToggleViewCancelableEventArgsDetail()","IgbToggleViewCancelableEventArgsDetail":"IgbToggleViewCancelableEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Id":"Id","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToggleViewEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToggleViewEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleViewEventArgs()":"IgbToggleViewEventArgs()","IgbToggleViewEventArgs":"IgbToggleViewEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToggleViewEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToggleViewEventArgsDetail","k":"class","s":"classes","m":{"SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","Owner":"Owner","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToggleViewEventArgsDetail()":"IgbToggleViewEventArgsDetail()","IgbToggleViewEventArgsDetail":"IgbToggleViewEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Id":"Id","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTomorrowExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTomorrowExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTomorrowExpression()":"IgbTomorrowExpression()","IgbTomorrowExpression":"IgbTomorrowExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolAction","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolAction()":"IgbToolAction()","IgbToolAction":"IgbToolAction()","AccentColor":"AccentColor","Actions":"Actions","ActualAccentColor":"ActualAccentColor","ActualActions":"ActualActions","ActualBackground":"ActualBackground","ActualDensity":"ActualDensity","ActualDisabledTextColor":"ActualDisabledTextColor","ActualHighlightColor":"ActualHighlightColor","ActualHighlightRadius":"ActualHighlightRadius","ActualHighlightWidth":"ActualHighlightWidth","ActualHoverBackground":"ActualHoverBackground","ActualIconFill":"ActualIconFill","ActualIconHeight":"ActualIconHeight","ActualIconStroke":"ActualIconStroke","ActualIconWidth":"ActualIconWidth","ActualPaddingBottom":"ActualPaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingRight":"ActualPaddingRight","ActualPaddingTop":"ActualPaddingTop","ActualSubtitleTextColor":"ActualSubtitleTextColor","ActualTextColor":"ActualTextColor","AfterId":"AfterId","Background":"Background","BeforeId":"BeforeId","CloseOnExecute":"CloseOnExecute","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandId":"CommandId","ContentActions":"ContentActions","ContextBindings":"ContextBindings","Density":"Density","DisabledTextColor":"DisabledTextColor","Dispose()":"Dispose()","Dispose":"Dispose()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","Height":"Height","HighlightColor":"HighlightColor","HighlightRadius":"HighlightRadius","HighlightWidth":"HighlightWidth","HoverBackground":"HoverBackground","IconCollectionName":"IconCollectionName","IconFill":"IconFill","IconFillColors":"IconFillColors","IconHeight":"IconHeight","IconName":"IconName","IconStroke":"IconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconViewBoxHeight":"IconViewBoxHeight","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconWidth":"IconWidth","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","OnCommand":"OnCommand","OnCommandScript":"OnCommandScript","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OverlayId":"OverlayId","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","ParentId":"ParentId","ParentTypeName":"ParentTypeName","Performed":"Performed","PerformedScript":"PerformedScript","SubPanelRowHeight":"SubPanelRowHeight","Subtitle":"Subtitle","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","SubtitleTextColor":"SubtitleTextColor","TextColor":"TextColor","Title":"Title","TitleHorizontalAlignment":"TitleHorizontalAlignment","ToolActionParent":"ToolActionParent","ToolbarParent":"ToolbarParent","Type":"Type","Visibility":"Visibility","Width":"Width"}}],"IgbToolActionButton":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionButton","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionButton()":"IgbToolActionButton()","IgbToolActionButton":"IgbToolActionButton()","CornerRadius":"CornerRadius","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbToolActionButtonInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionButtonInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionButtonInfo()":"IgbToolActionButtonInfo()","IgbToolActionButtonInfo":"IgbToolActionButtonInfo()","DisplayType":"DisplayType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionButtonModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionButtonModule()":"IgbToolActionButtonModule()","IgbToolActionButtonModule":"IgbToolActionButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionButtonPair":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionButtonPair","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionButtonPair()":"IgbToolActionButtonPair()","IgbToolActionButtonPair":"IgbToolActionButtonPair()","ActualLeftIconFill":"ActualLeftIconFill","ActualLeftIconStroke":"ActualLeftIconStroke","ActualRightIconFill":"ActualRightIconFill","ActualRightIconStroke":"ActualRightIconStroke","CornerRadius":"CornerRadius","DisplayType":"DisplayType","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsToggleDisabled":"IsToggleDisabled","LeftCommandArgument":"LeftCommandArgument","LeftIconCollectionName":"LeftIconCollectionName","LeftIconFill":"LeftIconFill","LeftIconFillColors":"LeftIconFillColors","LeftIconName":"LeftIconName","LeftIconStroke":"LeftIconStroke","LeftIconStrokeColors":"LeftIconStrokeColors","LeftIconStrokeWidth":"LeftIconStrokeWidth","LeftIconViewBoxHeight":"LeftIconViewBoxHeight","LeftIconViewBoxLeft":"LeftIconViewBoxLeft","LeftIconViewBoxTop":"LeftIconViewBoxTop","LeftIconViewBoxWidth":"LeftIconViewBoxWidth","LeftIsDisabled":"LeftIsDisabled","LeftIsSelected":"LeftIsSelected","LeftTitle":"LeftTitle","RightCommandArgument":"RightCommandArgument","RightIconCollectionName":"RightIconCollectionName","RightIconFill":"RightIconFill","RightIconFillColors":"RightIconFillColors","RightIconName":"RightIconName","RightIconStroke":"RightIconStroke","RightIconStrokeColors":"RightIconStrokeColors","RightIconStrokeWidth":"RightIconStrokeWidth","RightIconViewBoxHeight":"RightIconViewBoxHeight","RightIconViewBoxLeft":"RightIconViewBoxLeft","RightIconViewBoxTop":"RightIconViewBoxTop","RightIconViewBoxWidth":"RightIconViewBoxWidth","RightIsDisabled":"RightIsDisabled","RightIsSelected":"RightIsSelected","RightTitle":"RightTitle","Type":"Type"}}],"IgbToolActionButtonPairInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionButtonPairInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionButtonPairInfo()":"IgbToolActionButtonPairInfo()","IgbToolActionButtonPairInfo":"IgbToolActionButtonPairInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsToggleDisabled":"IsToggleDisabled","LeftCommandArgument":"LeftCommandArgument","LeftIconCollectionName":"LeftIconCollectionName","LeftIconFill":"LeftIconFill","LeftIconName":"LeftIconName","LeftIconStroke":"LeftIconStroke","LeftIconStrokeWidth":"LeftIconStrokeWidth","LeftIconViewBoxHeight":"LeftIconViewBoxHeight","LeftIconViewBoxLeft":"LeftIconViewBoxLeft","LeftIconViewBoxTop":"LeftIconViewBoxTop","LeftIconViewBoxWidth":"LeftIconViewBoxWidth","LeftTitle":"LeftTitle","RightCommandArgument":"RightCommandArgument","RightIconCollectionName":"RightIconCollectionName","RightIconFill":"RightIconFill","RightIconName":"RightIconName","RightIconStroke":"RightIconStroke","RightIconStrokeWidth":"RightIconStrokeWidth","RightIconViewBoxHeight":"RightIconViewBoxHeight","RightIconViewBoxLeft":"RightIconViewBoxLeft","RightIconViewBoxTop":"RightIconViewBoxTop","RightIconViewBoxWidth":"RightIconViewBoxWidth","RightTitle":"RightTitle","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionButtonPairModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionButtonPairModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionButtonPairModule()":"IgbToolActionButtonPairModule()","IgbToolActionButtonPairModule":"IgbToolActionButtonPairModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionCheckbox":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCheckbox","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCheckbox()":"IgbToolActionCheckbox()","IgbToolActionCheckbox":"IgbToolActionCheckbox()","ActualCheckedBackgroundColor":"ActualCheckedBackgroundColor","ActualCheckedBorderColor":"ActualCheckedBorderColor","ActualUncheckedBackgroundColor":"ActualUncheckedBackgroundColor","ActualUncheckedBorderColor":"ActualUncheckedBorderColor","CheckedBackgroundColor":"CheckedBackgroundColor","CheckedBorderColor":"CheckedBorderColor","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsChecked":"IsChecked","Type":"Type","UncheckedBackgroundColor":"UncheckedBackgroundColor","UncheckedBorderColor":"UncheckedBorderColor"}}],"IgbToolActionCheckboxInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCheckboxInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCheckboxInfo()":"IgbToolActionCheckboxInfo()","IgbToolActionCheckboxInfo":"IgbToolActionCheckboxInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsChecked":"IsChecked","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionCheckboxList":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCheckboxList","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCheckboxList()":"IgbToolActionCheckboxList()","IgbToolActionCheckboxList":"IgbToolActionCheckboxList()","ActualCheckedBackgroundColor":"ActualCheckedBackgroundColor","ActualCheckedBorderColor":"ActualCheckedBorderColor","ActualUncheckedBackgroundColor":"ActualUncheckedBackgroundColor","ActualUncheckedBorderColor":"ActualUncheckedBorderColor","CheckedBackgroundColor":"CheckedBackgroundColor","CheckedBorderColor":"CheckedBorderColor","DataMemberPath":"DataMemberPath","DataSource":"DataSource","DataSourceScript":"DataSourceScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IndexType":"IndexType","PrimaryKey":"PrimaryKey","SelectedKeys":"SelectedKeys","SelectedMemberPath":"SelectedMemberPath","ShowSelectAll":"ShowSelectAll","Type":"Type","UncheckedBackgroundColor":"UncheckedBackgroundColor","UncheckedBorderColor":"UncheckedBorderColor"}}],"IgbToolActionCheckboxListInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCheckboxListInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCheckboxListInfo()":"IgbToolActionCheckboxListInfo()","IgbToolActionCheckboxListInfo":"IgbToolActionCheckboxListInfo()","DataMemberPath":"DataMemberPath","DataSource":"DataSource","DataSourceScript":"DataSourceScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PrimaryKey":"PrimaryKey","SelectedMemberPath":"SelectedMemberPath","ShowSelectAll":"ShowSelectAll","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionCheckboxListModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCheckboxListModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCheckboxListModule()":"IgbToolActionCheckboxListModule()","IgbToolActionCheckboxListModule":"IgbToolActionCheckboxListModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionCheckboxModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCheckboxModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCheckboxModule()":"IgbToolActionCheckboxModule()","IgbToolActionCheckboxModule":"IgbToolActionCheckboxModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbToolAction)":"InsertItem(int, IgbToolAction)","InsertItem":"InsertItem(int, IgbToolAction)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbToolAction)":"SetItem(int, IgbToolAction)","SetItem":"SetItem(int, IgbToolAction)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbToolAction)":"Add(IgbToolAction)","Add":"Add(IgbToolAction)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbToolAction[], int)":"CopyTo(IgbToolAction[], int)","CopyTo":"CopyTo(IgbToolAction[], int)","Contains(IgbToolAction)":"Contains(IgbToolAction)","Contains":"Contains(IgbToolAction)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbToolAction)":"IndexOf(IgbToolAction)","IndexOf":"IndexOf(IgbToolAction)","Insert(int, IgbToolAction)":"Insert(int, IgbToolAction)","Insert":"Insert(int, IgbToolAction)","Remove(IgbToolAction)":"Remove(IgbToolAction)","Remove":"Remove(IgbToolAction)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCollection(object, string)":"IgbToolActionCollection(object, string)","IgbToolActionCollection":"IgbToolActionCollection(object, string)"}}],"IgbToolActionColorEditor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionColorEditor","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionColorEditor()":"IgbToolActionColorEditor()","IgbToolActionColorEditor":"IgbToolActionColorEditor()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","Value":"Value"}}],"IgbToolActionColorEditorInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionColorEditorInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionColorEditorInfo()":"IgbToolActionColorEditorInfo()","IgbToolActionColorEditorInfo":"IgbToolActionColorEditorInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbToolActionColorEditorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionColorEditorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionColorEditorModule()":"IgbToolActionColorEditorModule()","IgbToolActionColorEditorModule":"IgbToolActionColorEditorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionCombo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionCombo","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionCombo()":"IgbToolActionCombo()","IgbToolActionCombo":"IgbToolActionCombo()","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DisplayMemberPath":"DisplayMemberPath","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SelectedValues":"SelectedValues","Type":"Type","ValueMemberPath":"ValueMemberPath"}}],"IgbToolActionComboInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionComboInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionComboInfo()":"IgbToolActionComboInfo()","IgbToolActionComboInfo":"IgbToolActionComboInfo()","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DisplayMemberPath":"DisplayMemberPath","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SelectedValues":"SelectedValues","SelectedValuesScript":"SelectedValuesScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","ValueMemberPath":"ValueMemberPath"}}],"IgbToolActionComboModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionComboModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionComboModule()":"IgbToolActionComboModule()","IgbToolActionComboModule":"IgbToolActionComboModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionEventDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionEventDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionEventDetail()":"IgbToolActionEventDetail()","IgbToolActionEventDetail":"IgbToolActionEventDetail()","ActionId":"ActionId","ActionType":"ActionType","BoolValue":"BoolValue","DateTimeValue":"DateTimeValue","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsModified":"IsModified","NumberValue":"NumberValue","StringValue":"StringValue","Type":"Type","UntypedValue":"UntypedValue","UntypedValueScript":"UntypedValueScript"}}],"IgbToolActionEventDetailCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionEventDetailCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbToolActionEventDetail)":"InsertItem(int, IgbToolActionEventDetail)","InsertItem":"InsertItem(int, IgbToolActionEventDetail)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbToolActionEventDetail)":"SetItem(int, IgbToolActionEventDetail)","SetItem":"SetItem(int, IgbToolActionEventDetail)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbToolActionEventDetail)":"Add(IgbToolActionEventDetail)","Add":"Add(IgbToolActionEventDetail)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbToolActionEventDetail[], int)":"CopyTo(IgbToolActionEventDetail[], int)","CopyTo":"CopyTo(IgbToolActionEventDetail[], int)","Contains(IgbToolActionEventDetail)":"Contains(IgbToolActionEventDetail)","Contains":"Contains(IgbToolActionEventDetail)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbToolActionEventDetail)":"IndexOf(IgbToolActionEventDetail)","IndexOf":"IndexOf(IgbToolActionEventDetail)","Insert(int, IgbToolActionEventDetail)":"Insert(int, IgbToolActionEventDetail)","Insert":"Insert(int, IgbToolActionEventDetail)","Remove(IgbToolActionEventDetail)":"Remove(IgbToolActionEventDetail)","Remove":"Remove(IgbToolActionEventDetail)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionEventDetailCollection(object, string)":"IgbToolActionEventDetailCollection(object, string)","IgbToolActionEventDetailCollection":"IgbToolActionEventDetailCollection(object, string)"}}],"IgbToolActionFieldSelector":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelector","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelector()":"IgbToolActionFieldSelector()","IgbToolActionFieldSelector":"IgbToolActionFieldSelector()","ActualPaddingBottom":"ActualPaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingRight":"ActualPaddingRight","ActualPaddingTop":"ActualPaddingTop","Aggregations":"Aggregations","DataSource":"DataSource","DataSourceScript":"DataSourceScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FieldType":"FieldType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","LegendTarget":"LegendTarget","LegendTargetScript":"LegendTargetScript","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","SelectedAggregations":"SelectedAggregations","SingleSelection":"SingleSelection","Type":"Type","UpdateDataSource":"UpdateDataSource"}}],"IgbToolActionFieldSelectorAggregation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorAggregation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorAggregation()":"IgbToolActionFieldSelectorAggregation()","IgbToolActionFieldSelectorAggregation":"IgbToolActionFieldSelectorAggregation()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Label":"Label","Operand":"Operand","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionFieldSelectorAggregationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorAggregationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorAggregationModule()":"IgbToolActionFieldSelectorAggregationModule()","IgbToolActionFieldSelectorAggregationModule":"IgbToolActionFieldSelectorAggregationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionFieldSelectorAggregationsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorAggregationsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbToolActionFieldSelectorAggregation)":"InsertItem(int, IgbToolActionFieldSelectorAggregation)","InsertItem":"InsertItem(int, IgbToolActionFieldSelectorAggregation)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbToolActionFieldSelectorAggregation)":"SetItem(int, IgbToolActionFieldSelectorAggregation)","SetItem":"SetItem(int, IgbToolActionFieldSelectorAggregation)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbToolActionFieldSelectorAggregation)":"Add(IgbToolActionFieldSelectorAggregation)","Add":"Add(IgbToolActionFieldSelectorAggregation)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbToolActionFieldSelectorAggregation[], int)":"CopyTo(IgbToolActionFieldSelectorAggregation[], int)","CopyTo":"CopyTo(IgbToolActionFieldSelectorAggregation[], int)","Contains(IgbToolActionFieldSelectorAggregation)":"Contains(IgbToolActionFieldSelectorAggregation)","Contains":"Contains(IgbToolActionFieldSelectorAggregation)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbToolActionFieldSelectorAggregation)":"IndexOf(IgbToolActionFieldSelectorAggregation)","IndexOf":"IndexOf(IgbToolActionFieldSelectorAggregation)","Insert(int, IgbToolActionFieldSelectorAggregation)":"Insert(int, IgbToolActionFieldSelectorAggregation)","Insert":"Insert(int, IgbToolActionFieldSelectorAggregation)","Remove(IgbToolActionFieldSelectorAggregation)":"Remove(IgbToolActionFieldSelectorAggregation)","Remove":"Remove(IgbToolActionFieldSelectorAggregation)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorAggregationsCollection(object, string)":"IgbToolActionFieldSelectorAggregationsCollection(object, string)","IgbToolActionFieldSelectorAggregationsCollection":"IgbToolActionFieldSelectorAggregationsCollection(object, string)"}}],"IgbToolActionFieldSelectorInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorInfo()":"IgbToolActionFieldSelectorInfo()","IgbToolActionFieldSelectorInfo":"IgbToolActionFieldSelectorInfo()","Aggregations":"Aggregations","AggregationsScript":"AggregationsScript","DataSource":"DataSource","DataSourceScript":"DataSourceScript","FieldType":"FieldType","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Rules":"Rules","RulesScript":"RulesScript","SelectedAggregations":"SelectedAggregations","SelectedAggregationsScript":"SelectedAggregationsScript","SingleSelection":"SingleSelection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","UpdateDataSource":"UpdateDataSource"}}],"IgbToolActionFieldSelectorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorModule()":"IgbToolActionFieldSelectorModule()","IgbToolActionFieldSelectorModule":"IgbToolActionFieldSelectorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionFieldSelectorSelectedAggregation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorSelectedAggregation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorSelectedAggregation()":"IgbToolActionFieldSelectorSelectedAggregation()","IgbToolActionFieldSelectorSelectedAggregation":"IgbToolActionFieldSelectorSelectedAggregation()","AggregationName":"AggregationName","AggregationOperand":"AggregationOperand","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Field":"Field","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionFieldSelectorSelectedAggregationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorSelectedAggregationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorSelectedAggregationModule()":"IgbToolActionFieldSelectorSelectedAggregationModule()","IgbToolActionFieldSelectorSelectedAggregationModule":"IgbToolActionFieldSelectorSelectedAggregationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionFieldSelectorSelectedAggregationsCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionFieldSelectorSelectedAggregationsCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbToolActionFieldSelectorSelectedAggregation)":"InsertItem(int, IgbToolActionFieldSelectorSelectedAggregation)","InsertItem":"InsertItem(int, IgbToolActionFieldSelectorSelectedAggregation)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbToolActionFieldSelectorSelectedAggregation)":"SetItem(int, IgbToolActionFieldSelectorSelectedAggregation)","SetItem":"SetItem(int, IgbToolActionFieldSelectorSelectedAggregation)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbToolActionFieldSelectorSelectedAggregation)":"Add(IgbToolActionFieldSelectorSelectedAggregation)","Add":"Add(IgbToolActionFieldSelectorSelectedAggregation)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbToolActionFieldSelectorSelectedAggregation[], int)":"CopyTo(IgbToolActionFieldSelectorSelectedAggregation[], int)","CopyTo":"CopyTo(IgbToolActionFieldSelectorSelectedAggregation[], int)","Contains(IgbToolActionFieldSelectorSelectedAggregation)":"Contains(IgbToolActionFieldSelectorSelectedAggregation)","Contains":"Contains(IgbToolActionFieldSelectorSelectedAggregation)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbToolActionFieldSelectorSelectedAggregation)":"IndexOf(IgbToolActionFieldSelectorSelectedAggregation)","IndexOf":"IndexOf(IgbToolActionFieldSelectorSelectedAggregation)","Insert(int, IgbToolActionFieldSelectorSelectedAggregation)":"Insert(int, IgbToolActionFieldSelectorSelectedAggregation)","Insert":"Insert(int, IgbToolActionFieldSelectorSelectedAggregation)","Remove(IgbToolActionFieldSelectorSelectedAggregation)":"Remove(IgbToolActionFieldSelectorSelectedAggregation)","Remove":"Remove(IgbToolActionFieldSelectorSelectedAggregation)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionFieldSelectorSelectedAggregationsCollection(object, string)":"IgbToolActionFieldSelectorSelectedAggregationsCollection(object, string)","IgbToolActionFieldSelectorSelectedAggregationsCollection":"IgbToolActionFieldSelectorSelectedAggregationsCollection(object, string)"}}],"IgbToolActionGroupHeader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionGroupHeader","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionGroupHeader()":"IgbToolActionGroupHeader()","IgbToolActionGroupHeader":"IgbToolActionGroupHeader()","ActualBackIconColor":"ActualBackIconColor","BackIconColor":"BackIconColor","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbToolActionGroupHeaderInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionGroupHeaderInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionGroupHeaderInfo()":"IgbToolActionGroupHeaderInfo()","IgbToolActionGroupHeaderInfo":"IgbToolActionGroupHeaderInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionGroupHeaderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionGroupHeaderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionGroupHeaderModule()":"IgbToolActionGroupHeaderModule()","IgbToolActionGroupHeaderModule":"IgbToolActionGroupHeaderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionIconButton":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionIconButton","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionIconButton()":"IgbToolActionIconButton()","IgbToolActionIconButton":"IgbToolActionIconButton()","ActualContentPaddingBottom":"ActualContentPaddingBottom","ActualContentPaddingLeft":"ActualContentPaddingLeft","ActualContentPaddingRight":"ActualContentPaddingRight","ActualContentPaddingTop":"ActualContentPaddingTop","ActualTooltipDelay":"ActualTooltipDelay","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","ContentPaddingBottom":"ContentPaddingBottom","ContentPaddingLeft":"ContentPaddingLeft","ContentPaddingRight":"ContentPaddingRight","ContentPaddingTop":"ContentPaddingTop","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","PopupOpening":"PopupOpening","PopupOpeningScript":"PopupOpeningScript","TooltipDelay":"TooltipDelay","Type":"Type"}}],"IgbToolActionIconButtonInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionIconButtonInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionIconButtonInfo()":"IgbToolActionIconButtonInfo()","IgbToolActionIconButtonInfo":"IgbToolActionIconButtonInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsMenuOpenOnStart":"IsMenuOpenOnStart","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TooltipDelay":"TooltipDelay","Type":"Type"}}],"IgbToolActionIconButtonModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionIconButtonModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionIconButtonModule()":"IgbToolActionIconButtonModule()","IgbToolActionIconButtonModule":"IgbToolActionIconButtonModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionIconMenu":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionIconMenu","k":"class","s":"classes","m":{"OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","TooltipDelay":"TooltipDelay","ActualTooltipDelay":"ActualTooltipDelay","ContentPaddingLeft":"ContentPaddingLeft","ActualContentPaddingLeft":"ActualContentPaddingLeft","ContentPaddingTop":"ContentPaddingTop","ActualContentPaddingTop":"ActualContentPaddingTop","ContentPaddingRight":"ContentPaddingRight","ActualContentPaddingRight":"ActualContentPaddingRight","ContentPaddingBottom":"ContentPaddingBottom","ActualContentPaddingBottom":"ActualContentPaddingBottom","PopupOpeningScript":"PopupOpeningScript","PopupOpening":"PopupOpening","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionIconMenu()":"IgbToolActionIconMenu()","IgbToolActionIconMenu":"IgbToolActionIconMenu()","ActualArrowStroke":"ActualArrowStroke","ArrowStroke":"ArrowStroke","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ShowArrowIcon":"ShowArrowIcon","Type":"Type"}}],"IgbToolActionIconMenuInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionIconMenuInfo","k":"class","s":"classes","m":{"TooltipDelay":"TooltipDelay","IsMenuOpenOnStart":"IsMenuOpenOnStart","ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionIconMenuInfo()":"IgbToolActionIconMenuInfo()","IgbToolActionIconMenuInfo":"IgbToolActionIconMenuInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ShowArrowIcon":"ShowArrowIcon","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionIconMenuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionIconMenuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionIconMenuModule()":"IgbToolActionIconMenuModule()","IgbToolActionIconMenuModule":"IgbToolActionIconMenuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionInfo()":"IgbToolActionInfo()","IgbToolActionInfo":"IgbToolActionInfo()","Actions":"Actions","CloseOnExecute":"CloseOnExecute","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","CommandId":"CommandId","ContextBindings":"ContextBindings","Density":"Density","DisabledTextColor":"DisabledTextColor","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Height":"Height","IconCollectionName":"IconCollectionName","IconFill":"IconFill","IconHeight":"IconHeight","IconName":"IconName","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","IconViewBoxHeight":"IconViewBoxHeight","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconWidth":"IconWidth","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","PaddingBottom":"PaddingBottom","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingTop":"PaddingTop","ParentId":"ParentId","SubPanelRowHeight":"SubPanelRowHeight","Subtitle":"Subtitle","TextColor":"TextColor","Title":"Title","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionLabel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionLabel","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionLabel()":"IgbToolActionLabel()","IgbToolActionLabel":"IgbToolActionLabel()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbToolActionLabelInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionLabelInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionLabelInfo()":"IgbToolActionLabelInfo()","IgbToolActionLabelInfo":"IgbToolActionLabelInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionLabelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionLabelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionLabelModule()":"IgbToolActionLabelModule()","IgbToolActionLabelModule":"IgbToolActionLabelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionNumberInput":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionNumberInput","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionNumberInput()":"IgbToolActionNumberInput()","IgbToolActionNumberInput":"IgbToolActionNumberInput()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","Value":"Value"}}],"IgbToolActionNumberInputInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionNumberInputInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionNumberInputInfo()":"IgbToolActionNumberInputInfo()","IgbToolActionNumberInputInfo":"IgbToolActionNumberInputInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbToolActionNumberInputModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionNumberInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionNumberInputModule()":"IgbToolActionNumberInputModule()","IgbToolActionNumberInputModule":"IgbToolActionNumberInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionPerformedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionPerformedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionPerformedEventArgs()":"IgbToolActionPerformedEventArgs()","IgbToolActionPerformedEventArgs":"IgbToolActionPerformedEventArgs()","Detail":"Detail","DetailCollection":"DetailCollection","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsAggregate":"IsAggregate","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionPopupOpeningEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionPopupOpeningEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionPopupOpeningEventArgs()":"IgbToolActionPopupOpeningEventArgs()","IgbToolActionPopupOpeningEventArgs":"IgbToolActionPopupOpeningEventArgs()","Cancel":"Cancel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SourceAction":"SourceAction","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionRadio":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionRadio","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionRadio()":"IgbToolActionRadio()","IgbToolActionRadio":"IgbToolActionRadio()","ActualCheckedBackgroundColor":"ActualCheckedBackgroundColor","ActualCheckedBorderColor":"ActualCheckedBorderColor","ActualUncheckedBackgroundColor":"ActualUncheckedBackgroundColor","ActualUncheckedBorderColor":"ActualUncheckedBorderColor","Channel":"Channel","CheckedBackgroundColor":"CheckedBackgroundColor","CheckedBorderColor":"CheckedBorderColor","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsChecked":"IsChecked","IsManual":"IsManual","Type":"Type","UncheckedBackgroundColor":"UncheckedBackgroundColor","UncheckedBorderColor":"UncheckedBorderColor"}}],"IgbToolActionRadioInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionRadioInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionRadioInfo()":"IgbToolActionRadioInfo()","IgbToolActionRadioInfo":"IgbToolActionRadioInfo()","Channel":"Channel","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsChecked":"IsChecked","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionRadioModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionRadioModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionRadioModule()":"IgbToolActionRadioModule()","IgbToolActionRadioModule":"IgbToolActionRadioModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionSeparator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionSeparator","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionSeparator()":"IgbToolActionSeparator()","IgbToolActionSeparator":"IgbToolActionSeparator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsGroupHeaderSeparator":"IsGroupHeaderSeparator","Size":"Size","Type":"Type"}}],"IgbToolActionSeparatorInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionSeparatorInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionSeparatorInfo()":"IgbToolActionSeparatorInfo()","IgbToolActionSeparatorInfo":"IgbToolActionSeparatorInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsGroupHeaderSeparator":"IsGroupHeaderSeparator","Size":"Size","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionSeparatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionSeparatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionSeparatorModule()":"IgbToolActionSeparatorModule()","IgbToolActionSeparatorModule":"IgbToolActionSeparatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionSubPanel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionSubPanel","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionSubPanel()":"IgbToolActionSubPanel()","IgbToolActionSubPanel":"IgbToolActionSubPanel()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ItemSpacing":"ItemSpacing","Type":"Type"}}],"IgbToolActionSubPanelInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionSubPanelInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionSubPanelInfo()":"IgbToolActionSubPanelInfo()","IgbToolActionSubPanelInfo":"IgbToolActionSubPanelInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolActionSubPanelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionSubPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionSubPanelModule()":"IgbToolActionSubPanelModule()","IgbToolActionSubPanelModule":"IgbToolActionSubPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolActionTextInput":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionTextInput","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OpenSubMenuAsync()":"OpenSubMenuAsync()","OpenSubMenuAsync":"OpenSubMenuAsync()","OpenSubMenu()":"OpenSubMenu()","OpenSubMenu":"OpenSubMenu()","CloseSubmenuAsync()":"CloseSubmenuAsync()","CloseSubmenuAsync":"CloseSubmenuAsync()","CloseSubmenu()":"CloseSubmenu()","CloseSubmenu":"CloseSubmenu()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ToolbarParent":"ToolbarParent","ToolActionParent":"ToolActionParent","ParentTypeName":"ParentTypeName","ContentActions":"ContentActions","ActualActions":"ActualActions","ContextBindings":"ContextBindings","Actions":"Actions","Width":"Width","Height":"Height","SubPanelRowHeight":"SubPanelRowHeight","ParentId":"ParentId","BeforeId":"BeforeId","AfterId":"AfterId","OverlayId":"OverlayId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","PaddingLeft":"PaddingLeft","ActualPaddingLeft":"ActualPaddingLeft","PaddingRight":"PaddingRight","ActualPaddingRight":"ActualPaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingBottom":"ActualPaddingBottom","PaddingTop":"PaddingTop","ActualPaddingTop":"ActualPaddingTop","ActualHoverBackground":"ActualHoverBackground","HoverBackground":"HoverBackground","ActualBackground":"ActualBackground","Background":"Background","ActualTextColor":"ActualTextColor","TextColor":"TextColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","SubtitleTextColor":"SubtitleTextColor","ActualDisabledTextColor":"ActualDisabledTextColor","DisabledTextColor":"DisabledTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","ActualAccentColor":"ActualAccentColor","AccentColor":"AccentColor","Density":"Density","ActualDensity":"ActualDensity","Title":"Title","Subtitle":"Subtitle","TitleHorizontalAlignment":"TitleHorizontalAlignment","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconFill":"IconFill","ActualIconFill":"ActualIconFill","IconFillColors":"IconFillColors","IconStroke":"IconStroke","ActualIconStroke":"ActualIconStroke","IconStrokeColors":"IconStrokeColors","IconStrokeWidth":"IconStrokeWidth","IconWidth":"IconWidth","ActualIconWidth":"ActualIconWidth","IconHeight":"IconHeight","ActualIconHeight":"ActualIconHeight","Visibility":"Visibility","CloseOnExecute":"CloseOnExecute","HighlightWidth":"HighlightWidth","ActualHighlightWidth":"ActualHighlightWidth","HighlightRadius":"HighlightRadius","ActualHighlightRadius":"ActualHighlightRadius","HighlightColor":"HighlightColor","ActualHighlightColor":"ActualHighlightColor","OnCommandScript":"OnCommandScript","OnCommand":"OnCommand","PerformedScript":"PerformedScript","Performed":"Performed","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionTextInput()":"IgbToolActionTextInput()","IgbToolActionTextInput":"IgbToolActionTextInput()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type","Value":"Value"}}],"IgbToolActionTextInputInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionTextInputInfo","k":"class","s":"classes","m":{"ParentId":"ParentId","CommandId":"CommandId","CommandArgument":"CommandArgument","CommandArgumentValue":"CommandArgumentValue","CommandArgumentValueScript":"CommandArgumentValueScript","PaddingLeft":"PaddingLeft","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","PaddingTop":"PaddingTop","Title":"Title","Subtitle":"Subtitle","IconName":"IconName","IconCollectionName":"IconCollectionName","IconViewBoxLeft":"IconViewBoxLeft","IconViewBoxTop":"IconViewBoxTop","IconViewBoxWidth":"IconViewBoxWidth","IconViewBoxHeight":"IconViewBoxHeight","IconWidth":"IconWidth","IconHeight":"IconHeight","IconFill":"IconFill","IconStroke":"IconStroke","IconStrokeWidth":"IconStrokeWidth","SubPanelRowHeight":"SubPanelRowHeight","Height":"Height","IsDisabled":"IsDisabled","IsHighlighted":"IsHighlighted","TextColor":"TextColor","DisabledTextColor":"DisabledTextColor","CloseOnExecute":"CloseOnExecute","Density":"Density","Actions":"Actions","ContextBindings":"ContextBindings","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionTextInputInfo()":"IgbToolActionTextInputInfo()","IgbToolActionTextInputInfo":"IgbToolActionTextInputInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbToolActionTextInputModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolActionTextInputModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolActionTextInputModule()":"IgbToolActionTextInputModule()","IgbToolActionTextInputModule":"IgbToolActionTextInputModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolbar":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolbar","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolbar()":"IgbToolbar()","IgbToolbar":"IgbToolbar()","AccentColor":"AccentColor","Actions":"Actions","ActualActions":"ActualActions","AutoGeneratedActions":"AutoGeneratedActions","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","CheckedBackgroundColor":"CheckedBackgroundColor","CheckedBorderColor":"CheckedBorderColor","CloseSubmenus()":"CloseSubmenus()","CloseSubmenus":"CloseSubmenus()","CloseSubmenusAsync()":"CloseSubmenusAsync()","CloseSubmenusAsync":"CloseSubmenusAsync()","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DisabledTextColor":"DisabledTextColor","DropdownClickBuffer":"DropdownClickBuffer","DropdownDelay":"DropdownDelay","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FlushRefresh()":"FlushRefresh()","FlushRefresh":"FlushRefresh()","FlushRefreshAsync()":"FlushRefreshAsync()","FlushRefreshAsync":"FlushRefreshAsync()","GetBoolContextItem(string)":"GetBoolContextItem(string)","GetBoolContextItem":"GetBoolContextItem(string)","GetBoolContextItemAsync(string)":"GetBoolContextItemAsync(string)","GetBoolContextItemAsync":"GetBoolContextItemAsync(string)","GetBrushContextItem(string)":"GetBrushContextItem(string)","GetBrushContextItem":"GetBrushContextItem(string)","GetBrushContextItemAsync(string)":"GetBrushContextItemAsync(string)","GetBrushContextItemAsync":"GetBrushContextItemAsync(string)","GetColorContextItem(string)":"GetColorContextItem(string)","GetColorContextItem":"GetColorContextItem(string)","GetColorContextItemAsync(string)":"GetColorContextItemAsync(string)","GetColorContextItemAsync":"GetColorContextItemAsync(string)","GetDataContextItem(string)":"GetDataContextItem(string)","GetDataContextItem":"GetDataContextItem(string)","GetDataContextItemAsync(string)":"GetDataContextItemAsync(string)","GetDataContextItemAsync":"GetDataContextItemAsync(string)","GetDataURLFromCache(string, string)":"GetDataURLFromCache(string, string)","GetDataURLFromCache":"GetDataURLFromCache(string, string)","GetDataURLFromCacheAsync(string, string)":"GetDataURLFromCacheAsync(string, string)","GetDataURLFromCacheAsync":"GetDataURLFromCacheAsync(string, string)","GetDesiredSize()":"GetDesiredSize()","GetDesiredSize":"GetDesiredSize()","GetDesiredSizeAsync()":"GetDesiredSizeAsync()","GetDesiredSizeAsync":"GetDesiredSizeAsync()","GetDoubleContextItem(string)":"GetDoubleContextItem(string)","GetDoubleContextItem":"GetDoubleContextItem(string)","GetDoubleContextItemAsync(string)":"GetDoubleContextItemAsync(string)","GetDoubleContextItemAsync":"GetDoubleContextItemAsync(string)","GetExternalDataContextItem(string)":"GetExternalDataContextItem(string)","GetExternalDataContextItem":"GetExternalDataContextItem(string)","GetExternalDataContextItemAsync(string)":"GetExternalDataContextItemAsync(string)","GetExternalDataContextItemAsync":"GetExternalDataContextItemAsync(string)","GetExternalDoubleContextItem(string)":"GetExternalDoubleContextItem(string)","GetExternalDoubleContextItem":"GetExternalDoubleContextItem(string)","GetExternalDoubleContextItemAsync(string)":"GetExternalDoubleContextItemAsync(string)","GetExternalDoubleContextItemAsync":"GetExternalDoubleContextItemAsync(string)","GetExternalIntContextItem(string)":"GetExternalIntContextItem(string)","GetExternalIntContextItem":"GetExternalIntContextItem(string)","GetExternalIntContextItemAsync(string)":"GetExternalIntContextItemAsync(string)","GetExternalIntContextItemAsync":"GetExternalIntContextItemAsync(string)","GetIconFromCache(string, string)":"GetIconFromCache(string, string)","GetIconFromCache":"GetIconFromCache(string, string)","GetIconFromCacheAsync(string, string)":"GetIconFromCacheAsync(string, string)","GetIconFromCacheAsync":"GetIconFromCacheAsync(string, string)","GetIconSource(string, string)":"GetIconSource(string, string)","GetIconSource":"GetIconSource(string, string)","GetIconSourceAsync(string, string)":"GetIconSourceAsync(string, string)","GetIconSourceAsync":"GetIconSourceAsync(string, string)","GetIntContextItem(string)":"GetIntContextItem(string)","GetIntContextItem":"GetIntContextItem(string)","GetIntContextItemAsync(string)":"GetIntContextItemAsync(string)","GetIntContextItemAsync":"GetIntContextItemAsync(string)","GetMultiPathSVGFromCache(string, string)":"GetMultiPathSVGFromCache(string, string)","GetMultiPathSVGFromCache":"GetMultiPathSVGFromCache(string, string)","GetMultiPathSVGFromCacheAsync(string, string)":"GetMultiPathSVGFromCacheAsync(string, string)","GetMultiPathSVGFromCacheAsync":"GetMultiPathSVGFromCacheAsync(string, string)","GetStringContextItem(string)":"GetStringContextItem(string)","GetStringContextItem":"GetStringContextItem(string)","GetStringContextItemAsync(string)":"GetStringContextItemAsync(string)","GetStringContextItemAsync":"GetStringContextItemAsync(string)","GroupHeaderBackgroundColor":"GroupHeaderBackgroundColor","GroupHeaderFontFamily":"GroupHeaderFontFamily","GroupHeaderFontSize":"GroupHeaderFontSize","GroupHeaderFontStyle":"GroupHeaderFontStyle","GroupHeaderFontWeight":"GroupHeaderFontWeight","GroupHeaderSubtitleTextColor":"GroupHeaderSubtitleTextColor","GroupHeaderTextColor":"GroupHeaderTextColor","HighlightColor":"HighlightColor","HighlightRadius":"HighlightRadius","HighlightWidth":"HighlightWidth","HoverBackgroundColor":"HoverBackgroundColor","IconFill":"IconFill","IconStroke":"IconStroke","IsOpen()":"IsOpen()","IsOpen":"IsOpen()","IsOpenAsync()":"IsOpenAsync()","IsOpenAsync":"IsOpenAsync()","MenuArrowStroke":"MenuArrowStroke","OnCommand":"OnCommand","OnCommandScript":"OnCommandScript","OnCommandStateChanged(string, ToolCommandStateType, object)":"OnCommandStateChanged(string, ToolCommandStateType, object)","OnCommandStateChanged":"OnCommandStateChanged(string, ToolCommandStateType, object)","OnCommandStateChangedAsync(string, ToolCommandStateType, object)":"OnCommandStateChangedAsync(string, ToolCommandStateType, object)","OnCommandStateChangedAsync":"OnCommandStateChangedAsync(string, ToolCommandStateType, object)","Orientation":"Orientation","ParentTypeName":"ParentTypeName","RegisterIconFromDataURL(string, string, string)":"RegisterIconFromDataURL(string, string, string)","RegisterIconFromDataURL":"RegisterIconFromDataURL(string, string, string)","RegisterIconFromDataURLAsync(string, string, string)":"RegisterIconFromDataURLAsync(string, string, string)","RegisterIconFromDataURLAsync":"RegisterIconFromDataURLAsync(string, string, string)","RegisterIconFromText(string, string, string)":"RegisterIconFromText(string, string, string)","RegisterIconFromText":"RegisterIconFromText(string, string, string)","RegisterIconFromTextAsync(string, string, string)":"RegisterIconFromTextAsync(string, string, string)","RegisterIconFromTextAsync":"RegisterIconFromTextAsync(string, string, string)","RegisterIconSource(string, string, object)":"RegisterIconSource(string, string, object)","RegisterIconSource":"RegisterIconSource(string, string, object)","RegisterIconSourceAsync(string, string, object)":"RegisterIconSourceAsync(string, string, object)","RegisterIconSourceAsync":"RegisterIconSourceAsync(string, string, object)","RegisterMultiPathSVG(string, string, string[])":"RegisterMultiPathSVG(string, string, string[])","RegisterMultiPathSVG":"RegisterMultiPathSVG(string, string, string[])","RegisterMultiPathSVGAsync(string, string, string[])":"RegisterMultiPathSVGAsync(string, string, string[])","RegisterMultiPathSVGAsync":"RegisterMultiPathSVGAsync(string, string, string[])","RowHeight":"RowHeight","ScrollbarStyle":"ScrollbarStyle","SeparatorBackgroundColor":"SeparatorBackgroundColor","SeparatorHorizontalPaddingBottom":"SeparatorHorizontalPaddingBottom","SeparatorHorizontalPaddingLeft":"SeparatorHorizontalPaddingLeft","SeparatorHorizontalPaddingRight":"SeparatorHorizontalPaddingRight","SeparatorHorizontalPaddingTop":"SeparatorHorizontalPaddingTop","SeparatorVerticalPaddingBottom":"SeparatorVerticalPaddingBottom","SeparatorVerticalPaddingLeft":"SeparatorVerticalPaddingLeft","SeparatorVerticalPaddingRight":"SeparatorVerticalPaddingRight","SeparatorVerticalPaddingTop":"SeparatorVerticalPaddingTop","SetBoolContextItem(string, bool)":"SetBoolContextItem(string, bool)","SetBoolContextItem":"SetBoolContextItem(string, bool)","SetBoolContextItemAsync(string, bool)":"SetBoolContextItemAsync(string, bool)","SetBoolContextItemAsync":"SetBoolContextItemAsync(string, bool)","SetBrushContextItem(string, string)":"SetBrushContextItem(string, string)","SetBrushContextItem":"SetBrushContextItem(string, string)","SetBrushContextItemAsync(string, string)":"SetBrushContextItemAsync(string, string)","SetBrushContextItemAsync":"SetBrushContextItemAsync(string, string)","SetColorContextItem(string, string)":"SetColorContextItem(string, string)","SetColorContextItem":"SetColorContextItem(string, string)","SetColorContextItemAsync(string, string)":"SetColorContextItemAsync(string, string)","SetColorContextItemAsync":"SetColorContextItemAsync(string, string)","SetDataContextItem(string, object)":"SetDataContextItem(string, object)","SetDataContextItem":"SetDataContextItem(string, object)","SetDataContextItemAsync(string, object)":"SetDataContextItemAsync(string, object)","SetDataContextItemAsync":"SetDataContextItemAsync(string, object)","SetDoubleContextItem(string, double)":"SetDoubleContextItem(string, double)","SetDoubleContextItem":"SetDoubleContextItem(string, double)","SetDoubleContextItemAsync(string, double)":"SetDoubleContextItemAsync(string, double)","SetDoubleContextItemAsync":"SetDoubleContextItemAsync(string, double)","SetExternalDataContextItem(string, object)":"SetExternalDataContextItem(string, object)","SetExternalDataContextItem":"SetExternalDataContextItem(string, object)","SetExternalDataContextItemAsync(string, object)":"SetExternalDataContextItemAsync(string, object)","SetExternalDataContextItemAsync":"SetExternalDataContextItemAsync(string, object)","SetExternalDoubleContextItem(string, object)":"SetExternalDoubleContextItem(string, object)","SetExternalDoubleContextItem":"SetExternalDoubleContextItem(string, object)","SetExternalDoubleContextItemAsync(string, object)":"SetExternalDoubleContextItemAsync(string, object)","SetExternalDoubleContextItemAsync":"SetExternalDoubleContextItemAsync(string, object)","SetExternalIntContextItem(string, object)":"SetExternalIntContextItem(string, object)","SetExternalIntContextItem":"SetExternalIntContextItem(string, object)","SetExternalIntContextItemAsync(string, object)":"SetExternalIntContextItemAsync(string, object)","SetExternalIntContextItemAsync":"SetExternalIntContextItemAsync(string, object)","SetIntContextItem(string, int)":"SetIntContextItem(string, int)","SetIntContextItem":"SetIntContextItem(string, int)","SetIntContextItemAsync(string, int)":"SetIntContextItemAsync(string, int)","SetIntContextItemAsync":"SetIntContextItemAsync(string, int)","SetStringContextItem(string, string)":"SetStringContextItem(string, string)","SetStringContextItem":"SetStringContextItem(string, string)","SetStringContextItemAsync(string, string)":"SetStringContextItemAsync(string, string)","SetStringContextItemAsync":"SetStringContextItemAsync(string, string)","ShowOnHover":"ShowOnHover","ShowTooltipOnHover":"ShowTooltipOnHover","StopPropagation":"StopPropagation","SubMenuClosing":"SubMenuClosing","SubMenuClosingScript":"SubMenuClosingScript","SubMenuOpening":"SubMenuOpening","SubMenuOpeningScript":"SubMenuOpeningScript","SubmenuBackgroundColor":"SubmenuBackgroundColor","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","SubtitleTextColor":"SubtitleTextColor","Target":"Target","TargetScript":"TargetScript","TextColor":"TextColor","ToolTipBackgroundColor":"ToolTipBackgroundColor","ToolTipCornerRadius":"ToolTipCornerRadius","ToolTipElevation":"ToolTipElevation","ToolTipTextColor":"ToolTipTextColor","Type":"Type","UncheckedBackgroundColor":"UncheckedBackgroundColor","UncheckedBorderColor":"UncheckedBorderColor"}}],"IgbToolbarModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolbarModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolbarModule()":"IgbToolbarModule()","IgbToolbarModule":"IgbToolbarModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbToolbarSubMenuClosingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolbarSubMenuClosingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolbarSubMenuClosingEventArgs()":"IgbToolbarSubMenuClosingEventArgs()","IgbToolbarSubMenuClosingEventArgs":"IgbToolbarSubMenuClosingEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolbarSubMenuOpeningEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolbarSubMenuOpeningEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolbarSubMenuOpeningEventArgs()":"IgbToolbarSubMenuOpeningEventArgs()","IgbToolbarSubMenuOpeningEventArgs":"IgbToolbarSubMenuOpeningEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolCommand":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolCommand","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolCommand()":"IgbToolCommand()","IgbToolCommand":"IgbToolCommand()","ArgumentsList":"ArgumentsList","CommandId":"CommandId","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolCommandArgument":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolCommandArgument","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolCommandArgument()":"IgbToolCommandArgument()","IgbToolCommandArgument":"IgbToolCommandArgument()","ArgumentName":"ArgumentName","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbToolCommandArgumentCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolCommandArgumentCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbToolCommandArgument)":"InsertItem(int, IgbToolCommandArgument)","InsertItem":"InsertItem(int, IgbToolCommandArgument)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbToolCommandArgument)":"SetItem(int, IgbToolCommandArgument)","SetItem":"SetItem(int, IgbToolCommandArgument)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbToolCommandArgument)":"Add(IgbToolCommandArgument)","Add":"Add(IgbToolCommandArgument)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbToolCommandArgument[], int)":"CopyTo(IgbToolCommandArgument[], int)","CopyTo":"CopyTo(IgbToolCommandArgument[], int)","Contains(IgbToolCommandArgument)":"Contains(IgbToolCommandArgument)","Contains":"Contains(IgbToolCommandArgument)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbToolCommandArgument)":"IndexOf(IgbToolCommandArgument)","IndexOf":"IndexOf(IgbToolCommandArgument)","Insert(int, IgbToolCommandArgument)":"Insert(int, IgbToolCommandArgument)","Insert":"Insert(int, IgbToolCommandArgument)","Remove(IgbToolCommandArgument)":"Remove(IgbToolCommandArgument)","Remove":"Remove(IgbToolCommandArgument)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolCommandArgumentCollection(object, string)":"IgbToolCommandArgumentCollection(object, string)","IgbToolCommandArgumentCollection":"IgbToolCommandArgumentCollection(object, string)"}}],"IgbToolCommandEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolCommandEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolCommandEventArgs()":"IgbToolCommandEventArgs()","IgbToolCommandEventArgs":"IgbToolCommandEventArgs()","CloseOnExecute":"CloseOnExecute","Command":"Command","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolContextBinding":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolContextBinding","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolContextBinding()":"IgbToolContextBinding()","IgbToolContextBinding":"IgbToolContextBinding()","BindingMode":"BindingMode","ContextKey":"ContextKey","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","PropertyName":"PropertyName","PropertyUpdated":"PropertyUpdated","PropertyUpdatedScript":"PropertyUpdatedScript","Type":"Type"}}],"IgbToolContextBindingCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolContextBindingCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbToolContextBinding)":"InsertItem(int, IgbToolContextBinding)","InsertItem":"InsertItem(int, IgbToolContextBinding)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbToolContextBinding)":"SetItem(int, IgbToolContextBinding)","SetItem":"SetItem(int, IgbToolContextBinding)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbToolContextBinding)":"Add(IgbToolContextBinding)","Add":"Add(IgbToolContextBinding)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbToolContextBinding[], int)":"CopyTo(IgbToolContextBinding[], int)","CopyTo":"CopyTo(IgbToolContextBinding[], int)","Contains(IgbToolContextBinding)":"Contains(IgbToolContextBinding)","Contains":"Contains(IgbToolContextBinding)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbToolContextBinding)":"IndexOf(IgbToolContextBinding)","IndexOf":"IndexOf(IgbToolContextBinding)","Insert(int, IgbToolContextBinding)":"Insert(int, IgbToolContextBinding)","Insert":"Insert(int, IgbToolContextBinding)","Remove(IgbToolContextBinding)":"Remove(IgbToolContextBinding)","Remove":"Remove(IgbToolContextBinding)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolContextBindingCollection(object, string)":"IgbToolContextBindingCollection(object, string)","IgbToolContextBindingCollection":"IgbToolContextBindingCollection(object, string)"}}],"IgbToolContextBindingInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolContextBindingInfo","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolContextBindingInfo()":"IgbToolContextBindingInfo()","IgbToolContextBindingInfo":"IgbToolContextBindingInfo()","BindingMode":"BindingMode","ContextKey":"ContextKey","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","PropertyName":"PropertyName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolPanel":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolPanel","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolPanel()":"IgbToolPanel()","IgbToolPanel":"IgbToolPanel()","AccentColor":"AccentColor","Actions":"Actions","ActualAccentColor":"ActualAccentColor","ActualBackgroundColor":"ActualBackgroundColor","ActualCheckedBackgroundColor":"ActualCheckedBackgroundColor","ActualCheckedBorderColor":"ActualCheckedBorderColor","ActualDensity":"ActualDensity","ActualDisabledTextColor":"ActualDisabledTextColor","ActualDropdownDelay":"ActualDropdownDelay","ActualGroupHeaderBackgroundColor":"ActualGroupHeaderBackgroundColor","ActualGroupHeaderSeparatorBackgroundColor":"ActualGroupHeaderSeparatorBackgroundColor","ActualGroupHeaderSubtitleTextColor":"ActualGroupHeaderSubtitleTextColor","ActualGroupHeaderTextColor":"ActualGroupHeaderTextColor","ActualHighlightColor":"ActualHighlightColor","ActualHighlightRadius":"ActualHighlightRadius","ActualHighlightWidth":"ActualHighlightWidth","ActualHoverBackgroundColor":"ActualHoverBackgroundColor","ActualIconFill":"ActualIconFill","ActualIconStroke":"ActualIconStroke","ActualMenuArrowStroke":"ActualMenuArrowStroke","ActualSeparatorBackgroundColor":"ActualSeparatorBackgroundColor","ActualSeparatorHorizontalPaddingBottom":"ActualSeparatorHorizontalPaddingBottom","ActualSeparatorHorizontalPaddingLeft":"ActualSeparatorHorizontalPaddingLeft","ActualSeparatorHorizontalPaddingRight":"ActualSeparatorHorizontalPaddingRight","ActualSeparatorHorizontalPaddingTop":"ActualSeparatorHorizontalPaddingTop","ActualSeparatorVerticalPaddingBottom":"ActualSeparatorVerticalPaddingBottom","ActualSeparatorVerticalPaddingLeft":"ActualSeparatorVerticalPaddingLeft","ActualSeparatorVerticalPaddingRight":"ActualSeparatorVerticalPaddingRight","ActualSeparatorVerticalPaddingTop":"ActualSeparatorVerticalPaddingTop","ActualSubmenuBackgroundColor":"ActualSubmenuBackgroundColor","ActualSubtitleTextColor":"ActualSubtitleTextColor","ActualTextColor":"ActualTextColor","ActualToolTipBackgroundColor":"ActualToolTipBackgroundColor","ActualToolTipCornerRadius":"ActualToolTipCornerRadius","ActualToolTipElevation":"ActualToolTipElevation","ActualToolTipTextColor":"ActualToolTipTextColor","ActualUncheckedBackgroundColor":"ActualUncheckedBackgroundColor","ActualUncheckedBorderColor":"ActualUncheckedBorderColor","BackgroundColor":"BackgroundColor","BaseTheme":"BaseTheme","CellFontFamily":"CellFontFamily","CellFontSize":"CellFontSize","CellFontStyle":"CellFontStyle","CellFontWeight":"CellFontWeight","CheckedBackgroundColor":"CheckedBackgroundColor","CheckedBorderColor":"CheckedBorderColor","CloseSubmenus()":"CloseSubmenus()","CloseSubmenus":"CloseSubmenus()","CloseSubmenusAsync()":"CloseSubmenusAsync()","CloseSubmenusAsync":"CloseSubmenusAsync()","ContentRefreshed":"ContentRefreshed","ContentRefreshedScript":"ContentRefreshedScript","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","DisabledTextColor":"DisabledTextColor","DropdownClickBuffer":"DropdownClickBuffer","DropdownDelay":"DropdownDelay","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","ExportVisualData()":"ExportVisualData()","ExportVisualData":"ExportVisualData()","ExportVisualDataAsync()":"ExportVisualDataAsync()","ExportVisualDataAsync":"ExportVisualDataAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FlushRefresh()":"FlushRefresh()","FlushRefresh":"FlushRefresh()","FlushRefreshAsync()":"FlushRefreshAsync()","FlushRefreshAsync":"FlushRefreshAsync()","GetBoolContextItem(string)":"GetBoolContextItem(string)","GetBoolContextItem":"GetBoolContextItem(string)","GetBoolContextItemAsync(string)":"GetBoolContextItemAsync(string)","GetBoolContextItemAsync":"GetBoolContextItemAsync(string)","GetBrushContextItem(string)":"GetBrushContextItem(string)","GetBrushContextItem":"GetBrushContextItem(string)","GetBrushContextItemAsync(string)":"GetBrushContextItemAsync(string)","GetBrushContextItemAsync":"GetBrushContextItemAsync(string)","GetColorContextItem(string)":"GetColorContextItem(string)","GetColorContextItem":"GetColorContextItem(string)","GetColorContextItemAsync(string)":"GetColorContextItemAsync(string)","GetColorContextItemAsync":"GetColorContextItemAsync(string)","GetDataContextItem(string)":"GetDataContextItem(string)","GetDataContextItem":"GetDataContextItem(string)","GetDataContextItemAsync(string)":"GetDataContextItemAsync(string)","GetDataContextItemAsync":"GetDataContextItemAsync(string)","GetDoubleContextItem(string)":"GetDoubleContextItem(string)","GetDoubleContextItem":"GetDoubleContextItem(string)","GetDoubleContextItemAsync(string)":"GetDoubleContextItemAsync(string)","GetDoubleContextItemAsync":"GetDoubleContextItemAsync(string)","GetIntContextItem(string)":"GetIntContextItem(string)","GetIntContextItem":"GetIntContextItem(string)","GetIntContextItemAsync(string)":"GetIntContextItemAsync(string)","GetIntContextItemAsync":"GetIntContextItemAsync(string)","GetStringContextItem(string)":"GetStringContextItem(string)","GetStringContextItem":"GetStringContextItem(string)","GetStringContextItemAsync(string)":"GetStringContextItemAsync(string)","GetStringContextItemAsync":"GetStringContextItemAsync(string)","GroupHeaderBackgroundColor":"GroupHeaderBackgroundColor","GroupHeaderFontFamily":"GroupHeaderFontFamily","GroupHeaderFontSize":"GroupHeaderFontSize","GroupHeaderFontStyle":"GroupHeaderFontStyle","GroupHeaderFontWeight":"GroupHeaderFontWeight","GroupHeaderSeparatorBackgroundColor":"GroupHeaderSeparatorBackgroundColor","GroupHeaderSubtitleTextColor":"GroupHeaderSubtitleTextColor","GroupHeaderTextColor":"GroupHeaderTextColor","HighlightColor":"HighlightColor","HighlightRadius":"HighlightRadius","HighlightWidth":"HighlightWidth","HoverBackgroundColor":"HoverBackgroundColor","IconFill":"IconFill","IconStroke":"IconStroke","ItemSpacing":"ItemSpacing","MenuArrowStroke":"MenuArrowStroke","NestedActionMode":"NestedActionMode","OnCommand":"OnCommand","OnCommandScript":"OnCommandScript","Orientation":"Orientation","Refresh()":"Refresh()","Refresh":"Refresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","RowHeight":"RowHeight","ScrollbarStyle":"ScrollbarStyle","SeparatorBackgroundColor":"SeparatorBackgroundColor","SeparatorHorizontalPaddingBottom":"SeparatorHorizontalPaddingBottom","SeparatorHorizontalPaddingLeft":"SeparatorHorizontalPaddingLeft","SeparatorHorizontalPaddingRight":"SeparatorHorizontalPaddingRight","SeparatorHorizontalPaddingTop":"SeparatorHorizontalPaddingTop","SeparatorVerticalPaddingBottom":"SeparatorVerticalPaddingBottom","SeparatorVerticalPaddingLeft":"SeparatorVerticalPaddingLeft","SeparatorVerticalPaddingRight":"SeparatorVerticalPaddingRight","SeparatorVerticalPaddingTop":"SeparatorVerticalPaddingTop","SetBoolContextItem(string, bool)":"SetBoolContextItem(string, bool)","SetBoolContextItem":"SetBoolContextItem(string, bool)","SetBoolContextItemAsync(string, bool)":"SetBoolContextItemAsync(string, bool)","SetBoolContextItemAsync":"SetBoolContextItemAsync(string, bool)","SetBrushContextItem(string, string)":"SetBrushContextItem(string, string)","SetBrushContextItem":"SetBrushContextItem(string, string)","SetBrushContextItemAsync(string, string)":"SetBrushContextItemAsync(string, string)","SetBrushContextItemAsync":"SetBrushContextItemAsync(string, string)","SetColorContextItem(string, string)":"SetColorContextItem(string, string)","SetColorContextItem":"SetColorContextItem(string, string)","SetColorContextItemAsync(string, string)":"SetColorContextItemAsync(string, string)","SetColorContextItemAsync":"SetColorContextItemAsync(string, string)","SetDataContextItem(string, object)":"SetDataContextItem(string, object)","SetDataContextItem":"SetDataContextItem(string, object)","SetDataContextItemAsync(string, object)":"SetDataContextItemAsync(string, object)","SetDataContextItemAsync":"SetDataContextItemAsync(string, object)","SetDoubleContextItem(string, double)":"SetDoubleContextItem(string, double)","SetDoubleContextItem":"SetDoubleContextItem(string, double)","SetDoubleContextItemAsync(string, double)":"SetDoubleContextItemAsync(string, double)","SetDoubleContextItemAsync":"SetDoubleContextItemAsync(string, double)","SetIntContextItem(string, int)":"SetIntContextItem(string, int)","SetIntContextItem":"SetIntContextItem(string, int)","SetIntContextItemAsync(string, int)":"SetIntContextItemAsync(string, int)","SetIntContextItemAsync":"SetIntContextItemAsync(string, int)","SetStringContextItem(string, string)":"SetStringContextItem(string, string)","SetStringContextItem":"SetStringContextItem(string, string)","SetStringContextItemAsync(string, string)":"SetStringContextItemAsync(string, string)","SetStringContextItemAsync":"SetStringContextItemAsync(string, string)","ShowOnHover":"ShowOnHover","ShowTooltipOnHover":"ShowTooltipOnHover","StopPropagation":"StopPropagation","SubmenuBackgroundColor":"SubmenuBackgroundColor","SubtitleFontFamily":"SubtitleFontFamily","SubtitleFontSize":"SubtitleFontSize","SubtitleFontStyle":"SubtitleFontStyle","SubtitleFontWeight":"SubtitleFontWeight","SubtitleTextColor":"SubtitleTextColor","TextColor":"TextColor","ToolTipBackgroundColor":"ToolTipBackgroundColor","ToolTipCornerRadius":"ToolTipCornerRadius","ToolTipElevation":"ToolTipElevation","ToolTipTextColor":"ToolTipTextColor","Type":"Type","UncheckedBackgroundColor":"UncheckedBackgroundColor","UncheckedBorderColor":"UncheckedBorderColor"}}],"IgbToolPanelContentRefreshedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolPanelContentRefreshedEventArgs()":"IgbToolPanelContentRefreshedEventArgs()","IgbToolPanelContentRefreshedEventArgs":"IgbToolPanelContentRefreshedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolPanelContextChangedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolPanelContextChangedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolPanelContextChangedEventArgs()":"IgbToolPanelContextChangedEventArgs()","IgbToolPanelContextChangedEventArgs":"IgbToolPanelContextChangedEventArgs()","ContextKey":"ContextKey","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewValue":"NewValue","NewValueScript":"NewValueScript","OldValue":"OldValue","OldValueScript":"OldValueScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolPanelContextSwappedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolPanelContextSwappedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolPanelContextSwappedEventArgs()":"IgbToolPanelContextSwappedEventArgs()","IgbToolPanelContextSwappedEventArgs":"IgbToolPanelContextSwappedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbToolPanelModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbToolPanelModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbToolPanelModule()":"IgbToolPanelModule()","IgbToolPanelModule":"IgbToolPanelModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTooltip":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTooltip","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTooltip()":"IgbTooltip()","IgbTooltip":"IgbTooltip()","Anchor":"Anchor","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisableArrow":"DisableArrow","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","HideDelay":"HideDelay","HideTriggers":"HideTriggers","Message":"Message","Offset":"Offset","Open":"Open","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Placement":"Placement","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show(string)":"Show(string)","Show":"Show(string)","ShowAsync(string)":"ShowAsync(string)","ShowAsync":"ShowAsync(string)","ShowDelay":"ShowDelay","ShowTriggers":"ShowTriggers","Sticky":"Sticky","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender","WithArrow":"WithArrow"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTooltip","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTooltip()":"IgbTooltip()","IgbTooltip":"IgbTooltip()","Anchor":"Anchor","Closed":"Closed","ClosedScript":"ClosedScript","Closing":"Closing","ClosingScript":"ClosingScript","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","DisableArrow":"DisableArrow","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","HideDelay":"HideDelay","HideTriggers":"HideTriggers","Message":"Message","Offset":"Offset","Open":"Open","Opened":"Opened","OpenedScript":"OpenedScript","Opening":"Opening","OpeningScript":"OpeningScript","Placement":"Placement","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Show(string)":"Show(string)","Show":"Show(string)","ShowAsync(string)":"ShowAsync(string)","ShowAsync":"ShowAsync(string)","ShowDelay":"ShowDelay","ShowTriggers":"ShowTriggers","Sticky":"Sticky","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","Type":"Type","UseDirectRender":"UseDirectRender","WithArrow":"WithArrow"}}],"IgbTooltipModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTooltipModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTooltipModule()":"IgbTooltipModule()","IgbTooltipModule":"IgbTooltipModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTooltipModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTooltipModule()":"IgbTooltipModule()","IgbTooltipModule":"IgbTooltipModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTrailingTwelveMonthsExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTrailingTwelveMonthsExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTrailingTwelveMonthsExpression()":"IgbTrailingTwelveMonthsExpression()","IgbTrailingTwelveMonthsExpression":"IgbTrailingTwelveMonthsExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTransactionService":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTransactionService","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTransactionService()":"IgbTransactionService()","IgbTransactionService":"IgbTransactionService()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbTransactionState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTransactionState","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTransactionState()":"IgbTransactionState()","IgbTransactionState":"IgbTransactionState()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Id":"Id","IdScript":"IdScript","TransactionType":"TransactionType","Type":"Type","Value":"Value","ValueScript":"ValueScript","Version":"Version","VersionScript":"VersionScript"}}],"IgbTransitionOutCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTransitionOutCompletedEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTransitionOutCompletedEventArgs()":"IgbTransitionOutCompletedEventArgs()","IgbTransitionOutCompletedEventArgs":"IgbTransitionOutCompletedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTree":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTree","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTree()":"IgbTree()","IgbTree":"IgbTree()","ActiveItem":"ActiveItem","ActiveItemScript":"ActiveItemScript","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","ContentItems":"ContentItems","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExpandToItem(IgbTreeItem)":"ExpandToItem(IgbTreeItem)","ExpandToItem":"ExpandToItem(IgbTreeItem)","ExpandToItemAsync(IgbTreeItem)":"ExpandToItemAsync(IgbTreeItem)","ExpandToItemAsync":"ExpandToItemAsync(IgbTreeItem)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ItemCollapsed":"ItemCollapsed","ItemCollapsedScript":"ItemCollapsedScript","ItemCollapsing":"ItemCollapsing","ItemCollapsingScript":"ItemCollapsingScript","ItemExpanded":"ItemExpanded","ItemExpandedScript":"ItemExpandedScript","ItemExpanding":"ItemExpanding","ItemExpandingScript":"ItemExpandingScript","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selection":"Selection","SelectionChanged":"SelectionChanged","SelectionChangedScript":"SelectionChangedScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SingleBranchExpand":"SingleBranchExpand","SupportsVisualChildren":"SupportsVisualChildren","ToggleNodeOnClick":"ToggleNodeOnClick","Type":"Type","UseDirectRender":"UseDirectRender"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTree","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTree()":"IgbTree()","IgbTree":"IgbTree()","ActiveItem":"ActiveItem","ActiveItemScript":"ActiveItemScript","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","ContentItems":"ContentItems","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExpandToItem(IgbTreeItem)":"ExpandToItem(IgbTreeItem)","ExpandToItem":"ExpandToItem(IgbTreeItem)","ExpandToItemAsync(IgbTreeItem)":"ExpandToItemAsync(IgbTreeItem)","ExpandToItemAsync":"ExpandToItemAsync(IgbTreeItem)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ItemCollapsed":"ItemCollapsed","ItemCollapsedScript":"ItemCollapsedScript","ItemCollapsing":"ItemCollapsing","ItemCollapsingScript":"ItemCollapsingScript","ItemExpanded":"ItemExpanded","ItemExpandedScript":"ItemExpandedScript","ItemExpanding":"ItemExpanding","ItemExpandingScript":"ItemExpandingScript","ParentTypeName":"ParentTypeName","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selection":"Selection","SelectionChanged":"SelectionChanged","SelectionChangedScript":"SelectionChangedScript","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SingleBranchExpand":"SingleBranchExpand","SupportsVisualChildren":"SupportsVisualChildren","ToggleNodeOnClick":"ToggleNodeOnClick","Type":"Type","UseDirectRender":"UseDirectRender"}}],"IgbTreeGrid":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeGrid","k":"class","s":"classes","m":{"SuspendNotifications()":"SuspendNotifications()","SuspendNotifications":"SuspendNotifications()","ResumeNotifications()":"ResumeNotifications()","ResumeNotifications":"ResumeNotifications()","UpdateProperty(object, string, object)":"UpdateProperty(object, string, object)","UpdateProperty":"UpdateProperty(object, string, object)","OnRowAddedOverride(IgbRowDataEventArgs)":"OnRowAddedOverride(IgbRowDataEventArgs)","OnRowAddedOverride":"OnRowAddedOverride(IgbRowDataEventArgs)","PropagateValues(object, Dictionary, bool)":"PropagateValues(object, Dictionary, bool)","PropagateValues":"PropagateValues(object, Dictionary, bool)","AddRow(object)":"AddRow(object)","AddRow":"AddRow(object)","AddRowAsync(object)":"AddRowAsync(object)","AddRowAsync":"AddRowAsync(object)","DeleteRow(object)":"DeleteRow(object)","DeleteRow":"DeleteRow(object)","DeleteRowAsync(object)":"DeleteRowAsync(object)","DeleteRowAsync":"DeleteRowAsync(object)","UpdateCell(object, object, string)":"UpdateCell(object, object, string)","UpdateCell":"UpdateCell(object, object, string)","UpdateCellAsync(object, object, string)":"UpdateCellAsync(object, object, string)","UpdateCellAsync":"UpdateCellAsync(object, object, string)","UpdateRow(Dictionary, object)":"UpdateRow(Dictionary, object)","UpdateRow":"UpdateRow(Dictionary, object)","UpdateRowAsync(Dictionary, object)":"UpdateRowAsync(Dictionary, object)","UpdateRowAsync":"UpdateRowAsync(Dictionary, object)","GetCurrentSelectedRowsAsync()":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRowsAsync":"GetCurrentSelectedRowsAsync()","GetCurrentSelectedRows()":"GetCurrentSelectedRows()","GetCurrentSelectedRows":"GetCurrentSelectedRows()","GetHiddenColumnsCountAsync()":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCountAsync":"GetHiddenColumnsCountAsync()","GetHiddenColumnsCount()":"GetHiddenColumnsCount()","GetHiddenColumnsCount":"GetHiddenColumnsCount()","GetPinnedColumnsCountAsync()":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCountAsync":"GetPinnedColumnsCountAsync()","GetPinnedColumnsCount()":"GetPinnedColumnsCount()","GetPinnedColumnsCount":"GetPinnedColumnsCount()","GetLastSearchInfoAsync()":"GetLastSearchInfoAsync()","GetLastSearchInfoAsync":"GetLastSearchInfoAsync()","GetLastSearchInfo()":"GetLastSearchInfo()","GetLastSearchInfo":"GetLastSearchInfo()","GetFilteredDataAsync()":"GetFilteredDataAsync()","GetFilteredDataAsync":"GetFilteredDataAsync()","GetFilteredData()":"GetFilteredData()","GetFilteredData":"GetFilteredData()","GetFilteredSortedDataAsync()":"GetFilteredSortedDataAsync()","GetFilteredSortedDataAsync":"GetFilteredSortedDataAsync()","GetFilteredSortedData()":"GetFilteredSortedData()","GetFilteredSortedData":"GetFilteredSortedData()","GetVirtualizationStateAsync()":"GetVirtualizationStateAsync()","GetVirtualizationStateAsync":"GetVirtualizationStateAsync()","GetVirtualizationState()":"GetVirtualizationState()","GetVirtualizationState":"GetVirtualizationState()","GetDefaultRowHeightAsync()":"GetDefaultRowHeightAsync()","GetDefaultRowHeightAsync":"GetDefaultRowHeightAsync()","GetDefaultRowHeight()":"GetDefaultRowHeight()","GetDefaultRowHeight":"GetDefaultRowHeight()","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GetColumns()":"GetColumns()","GetColumns":"GetColumns()","GetPinnedColumnsAsync()":"GetPinnedColumnsAsync()","GetPinnedColumnsAsync":"GetPinnedColumnsAsync()","GetPinnedColumns()":"GetPinnedColumns()","GetPinnedColumns":"GetPinnedColumns()","GetPinnedStartColumnsAsync()":"GetPinnedStartColumnsAsync()","GetPinnedStartColumnsAsync":"GetPinnedStartColumnsAsync()","GetPinnedStartColumns()":"GetPinnedStartColumns()","GetPinnedStartColumns":"GetPinnedStartColumns()","GetPinnedEndColumnsAsync()":"GetPinnedEndColumnsAsync()","GetPinnedEndColumnsAsync":"GetPinnedEndColumnsAsync()","GetPinnedEndColumns()":"GetPinnedEndColumns()","GetPinnedEndColumns":"GetPinnedEndColumns()","GetUnpinnedColumnsAsync()":"GetUnpinnedColumnsAsync()","GetUnpinnedColumnsAsync":"GetUnpinnedColumnsAsync()","GetUnpinnedColumns()":"GetUnpinnedColumns()","GetUnpinnedColumns":"GetUnpinnedColumns()","GetVisibleColumnsAsync()":"GetVisibleColumnsAsync()","GetVisibleColumnsAsync":"GetVisibleColumnsAsync()","GetVisibleColumns()":"GetVisibleColumns()","GetVisibleColumns":"GetVisibleColumns()","GetDataViewAsync()":"GetDataViewAsync()","GetDataViewAsync":"GetDataViewAsync()","GetDataView()":"GetDataView()","GetDataView":"GetDataView()","GetCurrentActualColumnListAsync()":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnListAsync":"GetCurrentActualColumnListAsync()","GetCurrentActualColumnList()":"GetCurrentActualColumnList()","GetCurrentActualColumnList":"GetCurrentActualColumnList()","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","IsRecordPinnedByIndexAsync(double)":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndexAsync":"IsRecordPinnedByIndexAsync(double)","IsRecordPinnedByIndex(double)":"IsRecordPinnedByIndex(double)","IsRecordPinnedByIndex":"IsRecordPinnedByIndex(double)","ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibilityAsync":"ToggleColumnVisibilityAsync(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ToggleColumnVisibility":"ToggleColumnVisibility(IgbColumnVisibilityChangedEventArgs)","ExpandRowAsync(object)":"ExpandRowAsync(object)","ExpandRowAsync":"ExpandRowAsync(object)","ExpandRow(object)":"ExpandRow(object)","ExpandRow":"ExpandRow(object)","CollapseRowAsync(object)":"CollapseRowAsync(object)","CollapseRowAsync":"CollapseRowAsync(object)","CollapseRow(object)":"CollapseRow(object)","CollapseRow":"CollapseRow(object)","ToggleRowAsync(object)":"ToggleRowAsync(object)","ToggleRowAsync":"ToggleRowAsync(object)","ToggleRow(object)":"ToggleRow(object)","ToggleRow":"ToggleRow(object)","GetHeaderGroupWidthAsync(IgbColumn)":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidthAsync":"GetHeaderGroupWidthAsync(IgbColumn)","GetHeaderGroupWidth(IgbColumn)":"GetHeaderGroupWidth(IgbColumn)","GetHeaderGroupWidth":"GetHeaderGroupWidth(IgbColumn)","GetColumnByNameAsync(string)":"GetColumnByNameAsync(string)","GetColumnByNameAsync":"GetColumnByNameAsync(string)","GetColumnByName(string)":"GetColumnByName(string)","GetColumnByName":"GetColumnByName(string)","GetColumnByVisibleIndexAsync(double)":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndexAsync":"GetColumnByVisibleIndexAsync(double)","GetColumnByVisibleIndex(double)":"GetColumnByVisibleIndex(double)","GetColumnByVisibleIndex":"GetColumnByVisibleIndex(double)","RecalculateAutoSizesAsync()":"RecalculateAutoSizesAsync()","RecalculateAutoSizesAsync":"RecalculateAutoSizesAsync()","RecalculateAutoSizes()":"RecalculateAutoSizes()","RecalculateAutoSizes":"RecalculateAutoSizes()","MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumnAsync":"MoveColumnAsync(IgbColumn, IgbColumn, DropPosition?)","MoveColumn(IgbColumn, IgbColumn, DropPosition?)":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MoveColumn":"MoveColumn(IgbColumn, IgbColumn, DropPosition?)","MarkForCheckAsync()":"MarkForCheckAsync()","MarkForCheckAsync":"MarkForCheckAsync()","MarkForCheck()":"MarkForCheck()","MarkForCheck":"MarkForCheck()","GetRowDataAsync(object)":"GetRowDataAsync(object)","GetRowDataAsync":"GetRowDataAsync(object)","GetRowData(object)":"GetRowData(object)","GetRowData":"GetRowData(object)","SortAsync(IgbSortingExpression[])":"SortAsync(IgbSortingExpression[])","SortAsync":"SortAsync(IgbSortingExpression[])","Sort(IgbSortingExpression[])":"Sort(IgbSortingExpression[])","Sort":"Sort(IgbSortingExpression[])","FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterAsync":"FilterAsync(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","Filter":"Filter(string, object, IgbFilteringExpressionsTreeOrFilteringOperation, bool)","FilterGlobalAsync(object, object, object)":"FilterGlobalAsync(object, object, object)","FilterGlobalAsync":"FilterGlobalAsync(object, object, object)","FilterGlobal(object, object, object)":"FilterGlobal(object, object, object)","FilterGlobal":"FilterGlobal(object, object, object)","EnableSummariesAsync(object[])":"EnableSummariesAsync(object[])","EnableSummariesAsync":"EnableSummariesAsync(object[])","EnableSummaries(object[])":"EnableSummaries(object[])","EnableSummaries":"EnableSummaries(object[])","DisableSummariesAsync(object[])":"DisableSummariesAsync(object[])","DisableSummariesAsync":"DisableSummariesAsync(object[])","DisableSummaries(object[])":"DisableSummaries(object[])","DisableSummaries":"DisableSummaries(object[])","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearFilter(string)":"ClearFilter(string)","ClearFilter":"ClearFilter(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","ClearSort(string)":"ClearSort(string)","ClearSort":"ClearSort(string)","PinColumnAsync(string, double, ColumnPinningPosition?)":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumnAsync":"PinColumnAsync(string, double, ColumnPinningPosition?)","PinColumn(string, double, ColumnPinningPosition?)":"PinColumn(string, double, ColumnPinningPosition?)","PinColumn":"PinColumn(string, double, ColumnPinningPosition?)","UnpinColumnAsync(string, double)":"UnpinColumnAsync(string, double)","UnpinColumnAsync":"UnpinColumnAsync(string, double)","UnpinColumn(string, double)":"UnpinColumn(string, double)","UnpinColumn":"UnpinColumn(string, double)","ReflowAsync()":"ReflowAsync()","ReflowAsync":"ReflowAsync()","Reflow()":"Reflow()","Reflow":"Reflow()","FindNextAsync(string, bool, bool)":"FindNextAsync(string, bool, bool)","FindNextAsync":"FindNextAsync(string, bool, bool)","FindNext(string, bool, bool)":"FindNext(string, bool, bool)","FindNext":"FindNext(string, bool, bool)","FindPrevAsync(string, bool, bool)":"FindPrevAsync(string, bool, bool)","FindPrevAsync":"FindPrevAsync(string, bool, bool)","FindPrev(string, bool, bool)":"FindPrev(string, bool, bool)","FindPrev":"FindPrev(string, bool, bool)","RefreshSearchAsync(bool, bool)":"RefreshSearchAsync(bool, bool)","RefreshSearchAsync":"RefreshSearchAsync(bool, bool)","RefreshSearch(bool, bool)":"RefreshSearch(bool, bool)","RefreshSearch":"RefreshSearch(bool, bool)","ClearSearchAsync()":"ClearSearchAsync()","ClearSearchAsync":"ClearSearchAsync()","ClearSearch()":"ClearSearch()","ClearSearch":"ClearSearch()","GetPinnedStartWidthAsync(bool)":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidthAsync":"GetPinnedStartWidthAsync(bool)","GetPinnedStartWidth(bool)":"GetPinnedStartWidth(bool)","GetPinnedStartWidth":"GetPinnedStartWidth(bool)","GetPinnedEndWidthAsync(bool)":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidthAsync":"GetPinnedEndWidthAsync(bool)","GetPinnedEndWidth(bool)":"GetPinnedEndWidth(bool)","GetPinnedEndWidth":"GetPinnedEndWidth(bool)","SelectRowsAsync(object[], bool)":"SelectRowsAsync(object[], bool)","SelectRowsAsync":"SelectRowsAsync(object[], bool)","SelectRows(object[], bool)":"SelectRows(object[], bool)","SelectRows":"SelectRows(object[], bool)","DeselectRowsAsync(object[])":"DeselectRowsAsync(object[])","DeselectRowsAsync":"DeselectRowsAsync(object[])","DeselectRows(object[])":"DeselectRows(object[])","DeselectRows":"DeselectRows(object[])","SelectAllRowsAsync(bool)":"SelectAllRowsAsync(bool)","SelectAllRowsAsync":"SelectAllRowsAsync(bool)","SelectAllRows(bool)":"SelectAllRows(bool)","SelectAllRows":"SelectAllRows(bool)","DeselectAllRowsAsync(bool)":"DeselectAllRowsAsync(bool)","DeselectAllRowsAsync":"DeselectAllRowsAsync(bool)","DeselectAllRows(bool)":"DeselectAllRows(bool)","DeselectAllRows":"DeselectAllRows(bool)","ClearCellSelectionAsync()":"ClearCellSelectionAsync()","ClearCellSelectionAsync":"ClearCellSelectionAsync()","ClearCellSelection()":"ClearCellSelection()","ClearCellSelection":"ClearCellSelection()","SelectRangeAsync(IgbGridSelectionRange[])":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRangeAsync":"SelectRangeAsync(IgbGridSelectionRange[])","SelectRange(IgbGridSelectionRange[])":"SelectRange(IgbGridSelectionRange[])","SelectRange":"SelectRange(IgbGridSelectionRange[])","GetSelectedRangesAsync()":"GetSelectedRangesAsync()","GetSelectedRangesAsync":"GetSelectedRangesAsync()","GetSelectedRanges()":"GetSelectedRanges()","GetSelectedRanges":"GetSelectedRanges()","SelectedColumnsAsync()":"SelectedColumnsAsync()","SelectedColumnsAsync":"SelectedColumnsAsync()","SelectedColumns()":"SelectedColumns()","SelectedColumns":"SelectedColumns()","SelectColumnsAsync(string[], bool)":"SelectColumnsAsync(string[], bool)","SelectColumnsAsync":"SelectColumnsAsync(string[], bool)","SelectColumns(string[], bool)":"SelectColumns(string[], bool)","SelectColumns":"SelectColumns(string[], bool)","DeselectColumnsAsync(string[])":"DeselectColumnsAsync(string[])","DeselectColumnsAsync":"DeselectColumnsAsync(string[])","DeselectColumns(string[])":"DeselectColumns(string[])","DeselectColumns":"DeselectColumns(string[])","DeselectAllColumnsAsync()":"DeselectAllColumnsAsync()","DeselectAllColumnsAsync":"DeselectAllColumnsAsync()","DeselectAllColumns()":"DeselectAllColumns()","DeselectAllColumns":"DeselectAllColumns()","SelectAllColumnsAsync()":"SelectAllColumnsAsync()","SelectAllColumnsAsync":"SelectAllColumnsAsync()","SelectAllColumns()":"SelectAllColumns()","SelectAllColumns":"SelectAllColumns()","GetSelectedColumnsDataAsync(bool, bool)":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsDataAsync":"GetSelectedColumnsDataAsync(bool, bool)","GetSelectedColumnsData(bool, bool)":"GetSelectedColumnsData(bool, bool)","GetSelectedColumnsData":"GetSelectedColumnsData(bool, bool)","NavigateToAsync(double, double, object)":"NavigateToAsync(double, double, object)","NavigateToAsync":"NavigateToAsync(double, double, object)","NavigateTo(double, double, object)":"NavigateTo(double, double, object)","NavigateTo":"NavigateTo(double, double, object)","GetNextCellAsync(double, double, object)":"GetNextCellAsync(double, double, object)","GetNextCellAsync":"GetNextCellAsync(double, double, object)","GetNextCell(double, double, object)":"GetNextCell(double, double, object)","GetNextCell":"GetNextCell(double, double, object)","GetPreviousCellAsync(double, double, object)":"GetPreviousCellAsync(double, double, object)","GetPreviousCellAsync":"GetPreviousCellAsync(double, double, object)","GetPreviousCell(double, double, object)":"GetPreviousCell(double, double, object)","GetPreviousCell":"GetPreviousCell(double, double, object)","OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialogAsync":"OpenAdvancedFilteringDialogAsync(IgbOverlaySettings)","OpenAdvancedFilteringDialog(IgbOverlaySettings)":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","OpenAdvancedFilteringDialog":"OpenAdvancedFilteringDialog(IgbOverlaySettings)","CloseAdvancedFilteringDialogAsync(bool)":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialogAsync":"CloseAdvancedFilteringDialogAsync(bool)","CloseAdvancedFilteringDialog(bool)":"CloseAdvancedFilteringDialog(bool)","CloseAdvancedFilteringDialog":"CloseAdvancedFilteringDialog(bool)","BeginAddRowByIdAsync(object, bool)":"BeginAddRowByIdAsync(object, bool)","BeginAddRowByIdAsync":"BeginAddRowByIdAsync(object, bool)","BeginAddRowById(object, bool)":"BeginAddRowById(object, bool)","BeginAddRowById":"BeginAddRowById(object, bool)","NeedsDynamicContent":"NeedsDynamicContent","ContentColumnList":"ContentColumnList","CellEditDone":"CellEditDone","RowAdded":"RowAdded","ItemRequested":"ItemRequested","RowDeleted":"RowDeleted","DefaultEventBehavior":"DefaultEventBehavior","ParentTypeName":"ParentTypeName","ContentActionStripComponents":"ContentActionStripComponents","ActualActionStripComponents":"ActualActionStripComponents","ContentToolbar":"ContentToolbar","ActualToolbar":"ActualToolbar","ContentPaginationComponents":"ContentPaginationComponents","ActualPaginationComponents":"ActualPaginationComponents","ContentStateComponents":"ContentStateComponents","ActualStateComponents":"ActualStateComponents","SnackbarDisplayTime":"SnackbarDisplayTime","AutoGenerate":"AutoGenerate","AutoGenerateExclude":"AutoGenerateExclude","Moving":"Moving","EmptyGridTemplate":"EmptyGridTemplate","EmptyGridTemplateScript":"EmptyGridTemplateScript","AddRowEmptyTemplate":"AddRowEmptyTemplate","AddRowEmptyTemplateScript":"AddRowEmptyTemplateScript","LoadingGridTemplate":"LoadingGridTemplate","LoadingGridTemplateScript":"LoadingGridTemplateScript","SummaryRowHeight":"SummaryRowHeight","DataCloneStrategy":"DataCloneStrategy","ClipboardOptions":"ClipboardOptions","RowClasses":"RowClasses","RowClassesScript":"RowClassesScript","RowStyles":"RowStyles","RowStylesScript":"RowStylesScript","PrimaryKey":"PrimaryKey","ColumnList":"ColumnList","ActionStripComponents":"ActionStripComponents","DragGhostCustomTemplate":"DragGhostCustomTemplate","DragGhostCustomTemplateScript":"DragGhostCustomTemplateScript","RowEditTextTemplate":"RowEditTextTemplate","RowEditTextTemplateScript":"RowEditTextTemplateScript","RowAddTextTemplate":"RowAddTextTemplate","RowAddTextTemplateScript":"RowAddTextTemplateScript","RowEditActionsTemplate":"RowEditActionsTemplate","RowEditActionsTemplateScript":"RowEditActionsTemplateScript","RowExpandedIndicatorTemplate":"RowExpandedIndicatorTemplate","RowExpandedIndicatorTemplateScript":"RowExpandedIndicatorTemplateScript","RowCollapsedIndicatorTemplate":"RowCollapsedIndicatorTemplate","RowCollapsedIndicatorTemplateScript":"RowCollapsedIndicatorTemplateScript","HeaderExpandedIndicatorTemplate":"HeaderExpandedIndicatorTemplate","HeaderExpandedIndicatorTemplateScript":"HeaderExpandedIndicatorTemplateScript","HeaderCollapsedIndicatorTemplate":"HeaderCollapsedIndicatorTemplate","HeaderCollapsedIndicatorTemplateScript":"HeaderCollapsedIndicatorTemplateScript","ExcelStyleHeaderIconTemplate":"ExcelStyleHeaderIconTemplate","ExcelStyleHeaderIconTemplateScript":"ExcelStyleHeaderIconTemplateScript","SortAscendingHeaderIconTemplate":"SortAscendingHeaderIconTemplate","SortAscendingHeaderIconTemplateScript":"SortAscendingHeaderIconTemplateScript","SortDescendingHeaderIconTemplate":"SortDescendingHeaderIconTemplate","SortDescendingHeaderIconTemplateScript":"SortDescendingHeaderIconTemplateScript","SortHeaderIconTemplate":"SortHeaderIconTemplate","SortHeaderIconTemplateScript":"SortHeaderIconTemplateScript","Toolbar":"Toolbar","PaginationComponents":"PaginationComponents","ResourceStrings":"ResourceStrings","FilteringLogic":"FilteringLogic","FilteringExpressionsTree":"FilteringExpressionsTree","AdvancedFilteringExpressionsTree":"AdvancedFilteringExpressionsTree","Locale":"Locale","PagingMode":"PagingMode","HideRowSelectors":"HideRowSelectors","RowDraggable":"RowDraggable","ValidationTrigger":"ValidationTrigger","RowEditable":"RowEditable","RowHeight":"RowHeight","ColumnWidth":"ColumnWidth","EmptyGridMessage":"EmptyGridMessage","IsLoading":"IsLoading","ShouldGenerate":"ShouldGenerate","EmptyFilteredGridMessage":"EmptyFilteredGridMessage","Pinning":"Pinning","AllowFiltering":"AllowFiltering","AllowAdvancedFiltering":"AllowAdvancedFiltering","FilterMode":"FilterMode","SummaryPosition":"SummaryPosition","SummaryCalculationMode":"SummaryCalculationMode","ShowSummaryOnCollapse":"ShowSummaryOnCollapse","FilterStrategy":"FilterStrategy","SortStrategy":"SortStrategy","SortingOptions":"SortingOptions","SelectedRows":"SelectedRows","HeadSelectorTemplate":"HeadSelectorTemplate","HeadSelectorTemplateScript":"HeadSelectorTemplateScript","RowSelectorTemplate":"RowSelectorTemplate","RowSelectorTemplateScript":"RowSelectorTemplateScript","DragIndicatorIconTemplate":"DragIndicatorIconTemplate","DragIndicatorIconTemplateScript":"DragIndicatorIconTemplateScript","SortingExpressions":"SortingExpressions","BatchEditing":"BatchEditing","CellSelection":"CellSelection","CellMergeMode":"CellMergeMode","RowSelection":"RowSelection","ColumnSelection":"ColumnSelection","Outlet":"Outlet","TotalRecords":"TotalRecords","SelectRowOnClick":"SelectRowOnClick","ActualColumnList":"ActualColumnList","StateComponents":"StateComponents","SelectedRowsChanged":"SelectedRowsChanged","FilteringExpressionsTreeChangeScript":"FilteringExpressionsTreeChangeScript","FilteringExpressionsTreeChange":"FilteringExpressionsTreeChange","AdvancedFilteringExpressionsTreeChangeScript":"AdvancedFilteringExpressionsTreeChangeScript","AdvancedFilteringExpressionsTreeChange":"AdvancedFilteringExpressionsTreeChange","GridScrollScript":"GridScrollScript","GridScroll":"GridScroll","CellClickScript":"CellClickScript","CellClick":"CellClick","RowClickScript":"RowClickScript","RowClick":"RowClick","FormGroupCreatedScript":"FormGroupCreatedScript","FormGroupCreated":"FormGroupCreated","ValidationStatusChangeScript":"ValidationStatusChangeScript","ValidationStatusChange":"ValidationStatusChange","SelectedScript":"SelectedScript","Selected":"Selected","RowSelectionChangingScript":"RowSelectionChangingScript","RowSelectionChanging":"RowSelectionChanging","ColumnSelectionChangingScript":"ColumnSelectionChangingScript","ColumnSelectionChanging":"ColumnSelectionChanging","ColumnPinScript":"ColumnPinScript","ColumnPin":"ColumnPin","ColumnPinnedScript":"ColumnPinnedScript","ColumnPinned":"ColumnPinned","CellEditEnterScript":"CellEditEnterScript","CellEditEnter":"CellEditEnter","CellEditExitScript":"CellEditExitScript","CellEditExit":"CellEditExit","CellEditScript":"CellEditScript","CellEdit":"CellEdit","RowEditEnterScript":"RowEditEnterScript","RowEditEnter":"RowEditEnter","RowEditScript":"RowEditScript","RowEdit":"RowEdit","RowEditDoneScript":"RowEditDoneScript","RowEditDone":"RowEditDone","RowEditExitScript":"RowEditExitScript","RowEditExit":"RowEditExit","ColumnInitScript":"ColumnInitScript","ColumnInit":"ColumnInit","ColumnsAutogeneratedScript":"ColumnsAutogeneratedScript","ColumnsAutogenerated":"ColumnsAutogenerated","SortingScript":"SortingScript","Sorting":"Sorting","SortingDoneScript":"SortingDoneScript","SortingDone":"SortingDone","FilteringScript":"FilteringScript","Filtering":"Filtering","FilteringDoneScript":"FilteringDoneScript","FilteringDone":"FilteringDone","RowDeleteScript":"RowDeleteScript","RowDelete":"RowDelete","RowAddScript":"RowAddScript","RowAdd":"RowAdd","ColumnResizedScript":"ColumnResizedScript","ColumnResized":"ColumnResized","ContextMenuScript":"ContextMenuScript","ContextMenu":"ContextMenu","DoubleClickScript":"DoubleClickScript","DoubleClick":"DoubleClick","ColumnVisibilityChangingScript":"ColumnVisibilityChangingScript","ColumnVisibilityChanging":"ColumnVisibilityChanging","ColumnVisibilityChangedScript":"ColumnVisibilityChangedScript","ColumnVisibilityChanged":"ColumnVisibilityChanged","ColumnMovingStartScript":"ColumnMovingStartScript","ColumnMovingStart":"ColumnMovingStart","ColumnMovingScript":"ColumnMovingScript","ColumnMoving":"ColumnMoving","ColumnMovingEndScript":"ColumnMovingEndScript","ColumnMovingEnd":"ColumnMovingEnd","GridKeydownScript":"GridKeydownScript","GridKeydown":"GridKeydown","RowDragStartScript":"RowDragStartScript","RowDragStart":"RowDragStart","RowDragEndScript":"RowDragEndScript","RowDragEnd":"RowDragEnd","GridCopyScript":"GridCopyScript","GridCopy":"GridCopy","SelectedRowsChangeScript":"SelectedRowsChangeScript","SelectedRowsChange":"SelectedRowsChange","RowToggleScript":"RowToggleScript","RowToggle":"RowToggle","RowPinningScript":"RowPinningScript","RowPinning":"RowPinning","RowPinnedScript":"RowPinnedScript","RowPinned":"RowPinned","ActiveNodeChangeScript":"ActiveNodeChangeScript","ActiveNodeChange":"ActiveNodeChange","SortingExpressionsChangeScript":"SortingExpressionsChangeScript","SortingExpressionsChange":"SortingExpressionsChange","ToolbarExportingScript":"ToolbarExportingScript","ToolbarExporting":"ToolbarExporting","RangeSelectedScript":"RangeSelectedScript","RangeSelected":"RangeSelected","RenderedScript":"RenderedScript","Rendered":"Rendered","DataChangingScript":"DataChangingScript","DataChanging":"DataChanging","DataChangedScript":"DataChangedScript","DataChanged":"DataChanged","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeGrid()":"IgbTreeGrid()","IgbTreeGrid":"IgbTreeGrid()","AddRow(object, object)":"AddRow(object, object)","AddRowAsync(object, object)":"AddRowAsync(object, object)","BeginAddRowByIndex(double, bool)":"BeginAddRowByIndex(double, bool)","BeginAddRowByIndex":"BeginAddRowByIndex(double, bool)","BeginAddRowByIndexAsync(double, bool)":"BeginAddRowByIndexAsync(double, bool)","BeginAddRowByIndexAsync":"BeginAddRowByIndexAsync(double, bool)","CascadeOnDelete":"CascadeOnDelete","ChildDataKey":"ChildDataKey","CollapseAll()":"CollapseAll()","CollapseAll":"CollapseAll()","CollapseAllAsync()":"CollapseAllAsync()","CollapseAllAsync":"CollapseAllAsync()","Data":"Data","DataScript":"DataScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExpandAll()":"ExpandAll()","ExpandAll":"ExpandAll()","ExpandAllAsync()":"ExpandAllAsync()","ExpandAllAsync":"ExpandAllAsync()","ExpansionDepth":"ExpansionDepth","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ForeignKey":"ForeignKey","GetCellByColumn(double, string)":"GetCellByColumn(double, string)","GetCellByColumn":"GetCellByColumn(double, string)","GetCellByColumnAsync(double, string)":"GetCellByColumnAsync(double, string)","GetCellByColumnAsync":"GetCellByColumnAsync(double, string)","GetCellByKey(object, string)":"GetCellByKey(object, string)","GetCellByKey":"GetCellByKey(object, string)","GetCellByKeyAsync(object, string)":"GetCellByKeyAsync(object, string)","GetCellByKeyAsync":"GetCellByKeyAsync(object, string)","GetData()":"GetData()","GetData":"GetData()","GetDefaultExpandState(IgbTreeGridRecord)":"GetDefaultExpandState(IgbTreeGridRecord)","GetDefaultExpandState":"GetDefaultExpandState(IgbTreeGridRecord)","GetDefaultExpandStateAsync(IgbTreeGridRecord)":"GetDefaultExpandStateAsync(IgbTreeGridRecord)","GetDefaultExpandStateAsync":"GetDefaultExpandStateAsync(IgbTreeGridRecord)","GetRowByIndex(double)":"GetRowByIndex(double)","GetRowByIndex":"GetRowByIndex(double)","GetRowByIndexAsync(double)":"GetRowByIndexAsync(double)","GetRowByIndexAsync":"GetRowByIndexAsync(double)","GetRowByKey(object)":"GetRowByKey(object)","GetRowByKey":"GetRowByKey(object)","GetRowByKeyAsync(object)":"GetRowByKeyAsync(object)","GetRowByKeyAsync":"GetRowByKeyAsync(object)","GetSelectedCells()":"GetSelectedCells()","GetSelectedCells":"GetSelectedCells()","GetSelectedCellsAsync()":"GetSelectedCellsAsync()","GetSelectedCellsAsync":"GetSelectedCellsAsync()","GetSelectedData(bool, bool)":"GetSelectedData(bool, bool)","GetSelectedData":"GetSelectedData(bool, bool)","GetSelectedDataAsync(bool, bool)":"GetSelectedDataAsync(bool, bool)","GetSelectedDataAsync":"GetSelectedDataAsync(bool, bool)","HasChildrenKey":"HasChildrenKey","Id":"Id","PinRow(object, double)":"PinRow(object, double)","PinRow":"PinRow(object, double)","PinRowAsync(object, double)":"PinRowAsync(object, double)","PinRowAsync":"PinRowAsync(object, double)","ProcessedRootRecords":"ProcessedRootRecords","RootRecords":"RootRecords","RowLoadingIndicatorTemplate":"RowLoadingIndicatorTemplate","RowLoadingIndicatorTemplateScript":"RowLoadingIndicatorTemplateScript","Type":"Type","UnpinRow(object)":"UnpinRow(object)","UnpinRow":"UnpinRow(object)","UnpinRowAsync(object)":"UnpinRowAsync(object)","UnpinRowAsync":"UnpinRowAsync(object)"}}],"IgbTreeGridModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeGridModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeGridModule()":"IgbTreeGridModule()","IgbTreeGridModule":"IgbTreeGridModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTreeGridRecord":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeGridRecord","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeGridRecord()":"IgbTreeGridRecord()","IgbTreeGridRecord":"IgbTreeGridRecord()","Children":"Children","Data":"Data","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsFilteredOutParent":"IsFilteredOutParent","Key":"Key","Level":"Level","RecordParent":"RecordParent","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTreeItem":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItem()":"IgbTreeItem()","IgbTreeItem":"IgbTreeItem()","Active":"Active","Collapse()":"Collapse()","Collapse":"Collapse()","CollapseAsync()":"CollapseAsync()","CollapseAsync":"CollapseAsync()","CollapseWithEvent()":"CollapseWithEvent()","CollapseWithEvent":"CollapseWithEvent()","CollapseWithEventAsync()":"CollapseWithEventAsync()","CollapseWithEventAsync":"CollapseWithEventAsync()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","DisconnectedCallback()":"DisconnectedCallback()","DisconnectedCallback":"DisconnectedCallback()","DisconnectedCallbackAsync()":"DisconnectedCallbackAsync()","DisconnectedCallbackAsync":"DisconnectedCallbackAsync()","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Expand()":"Expand()","Expand":"Expand()","ExpandAsync()":"ExpandAsync()","ExpandAsync":"ExpandAsync()","ExpandWithEvent()":"ExpandWithEvent()","ExpandWithEvent":"ExpandWithEvent()","ExpandWithEventAsync()":"ExpandWithEventAsync()","ExpandWithEventAsync":"ExpandWithEventAsync()","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetPath()":"GetPath()","GetPath":"GetPath()","GetPathAsync()":"GetPathAsync()","GetPathAsync":"GetPathAsync()","Label":"Label","Level":"Level","Loading":"Loading","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Parent":"Parent","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","TreeParent":"TreeParent","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeItem","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItem()":"IgbTreeItem()","IgbTreeItem":"IgbTreeItem()","Active":"Active","Collapse()":"Collapse()","Collapse":"Collapse()","CollapseAsync()":"CollapseAsync()","CollapseAsync":"CollapseAsync()","CollapseWithEvent()":"CollapseWithEvent()","CollapseWithEvent":"CollapseWithEvent()","CollapseWithEventAsync()":"CollapseWithEventAsync()","CollapseWithEventAsync":"CollapseWithEventAsync()","ConnectedCallback()":"ConnectedCallback()","ConnectedCallback":"ConnectedCallback()","ConnectedCallbackAsync()":"ConnectedCallbackAsync()","ConnectedCallbackAsync":"ConnectedCallbackAsync()","DefaultEventBehavior":"DefaultEventBehavior","DirectRenderElementName":"DirectRenderElementName","Disabled":"Disabled","DisconnectedCallback()":"DisconnectedCallback()","DisconnectedCallback":"DisconnectedCallback()","DisconnectedCallbackAsync()":"DisconnectedCallbackAsync()","DisconnectedCallbackAsync":"DisconnectedCallbackAsync()","Dispose()":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","Expand()":"Expand()","Expand":"Expand()","ExpandAsync()":"ExpandAsync()","ExpandAsync":"ExpandAsync()","ExpandWithEvent()":"ExpandWithEvent()","ExpandWithEvent":"ExpandWithEvent()","ExpandWithEventAsync()":"ExpandWithEventAsync()","ExpandWithEventAsync":"ExpandWithEventAsync()","Expanded":"Expanded","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetPath()":"GetPath()","GetPath":"GetPath()","GetPathAsync()":"GetPathAsync()","GetPathAsync":"GetPathAsync()","Label":"Label","Level":"Level","Loading":"Loading","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","Parent":"Parent","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","Selected":"Selected","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","SupportsVisualChildren":"SupportsVisualChildren","Toggle()":"Toggle()","Toggle":"Toggle()","ToggleAsync()":"ToggleAsync()","ToggleAsync":"ToggleAsync()","TreeParent":"TreeParent","Type":"Type","UseDirectRender":"UseDirectRender","Value":"Value"}}],"IgbTreeItemCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeItemCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTreeItem)":"InsertItem(int, IgbTreeItem)","InsertItem":"InsertItem(int, IgbTreeItem)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTreeItem)":"SetItem(int, IgbTreeItem)","SetItem":"SetItem(int, IgbTreeItem)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTreeItem)":"Add(IgbTreeItem)","Add":"Add(IgbTreeItem)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTreeItem[], int)":"CopyTo(IgbTreeItem[], int)","CopyTo":"CopyTo(IgbTreeItem[], int)","Contains(IgbTreeItem)":"Contains(IgbTreeItem)","Contains":"Contains(IgbTreeItem)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTreeItem)":"IndexOf(IgbTreeItem)","IndexOf":"IndexOf(IgbTreeItem)","Insert(int, IgbTreeItem)":"Insert(int, IgbTreeItem)","Insert":"Insert(int, IgbTreeItem)","Remove(IgbTreeItem)":"Remove(IgbTreeItem)","Remove":"Remove(IgbTreeItem)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItemCollection(object, string)":"IgbTreeItemCollection(object, string)","IgbTreeItemCollection":"IgbTreeItemCollection(object, string)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeItemCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTreeItem)":"InsertItem(int, IgbTreeItem)","InsertItem":"InsertItem(int, IgbTreeItem)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTreeItem)":"SetItem(int, IgbTreeItem)","SetItem":"SetItem(int, IgbTreeItem)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTreeItem)":"Add(IgbTreeItem)","Add":"Add(IgbTreeItem)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTreeItem[], int)":"CopyTo(IgbTreeItem[], int)","CopyTo":"CopyTo(IgbTreeItem[], int)","Contains(IgbTreeItem)":"Contains(IgbTreeItem)","Contains":"Contains(IgbTreeItem)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTreeItem)":"IndexOf(IgbTreeItem)","IndexOf":"IndexOf(IgbTreeItem)","Insert(int, IgbTreeItem)":"Insert(int, IgbTreeItem)","Insert":"Insert(int, IgbTreeItem)","Remove(IgbTreeItem)":"Remove(IgbTreeItem)","Remove":"Remove(IgbTreeItem)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItemCollection(object, string)":"IgbTreeItemCollection(object, string)","IgbTreeItemCollection":"IgbTreeItemCollection(object, string)"}}],"IgbTreeItemComponentEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeItemComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItemComponentEventArgs()":"IgbTreeItemComponentEventArgs()","IgbTreeItemComponentEventArgs":"IgbTreeItemComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeItemComponentEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItemComponentEventArgs()":"IgbTreeItemComponentEventArgs()","IgbTreeItemComponentEventArgs":"IgbTreeItemComponentEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTreeItemModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItemModule()":"IgbTreeItemModule()","IgbTreeItemModule":"IgbTreeItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeItemModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeItemModule()":"IgbTreeItemModule()","IgbTreeItemModule":"IgbTreeItemModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTreemap":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemap","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemap()":"IgbTreemap()","IgbTreemap":"IgbTreemap()","ActualHighlightingMode":"ActualHighlightingMode","ActualInteractionPixelScalingRatio":"ActualInteractionPixelScalingRatio","ActualPixelScalingRatio":"ActualPixelScalingRatio","ActualStyleMappings":"ActualStyleMappings","BreadcrumbSequence":"BreadcrumbSequence","ContentStyleMappings":"ContentStyleMappings","CustomValueMemberPath":"CustomValueMemberPath","DarkTextColor":"DarkTextColor","DataSource":"DataSource","DataSourceScript":"DataSourceScript","DefaultEventBehavior":"DefaultEventBehavior","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualData()":"ExportSerializedVisualData()","ExportSerializedVisualData":"ExportSerializedVisualData()","ExportSerializedVisualDataAsync()":"ExportSerializedVisualDataAsync()","ExportSerializedVisualDataAsync":"ExportSerializedVisualDataAsync()","FillBrushes":"FillBrushes","FillScaleLogarithmBase":"FillScaleLogarithmBase","FillScaleMaximumValue":"FillScaleMaximumValue","FillScaleMinimumValue":"FillScaleMinimumValue","FillScaleMode":"FillScaleMode","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","FocusItem":"FocusItem","FocusItemScript":"FocusItemScript","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","HeaderBackground":"HeaderBackground","HeaderDarkTextColor":"HeaderDarkTextColor","HeaderDisplayMode":"HeaderDisplayMode","HeaderFontFamily":"HeaderFontFamily","HeaderFontSize":"HeaderFontSize","HeaderFontStyle":"HeaderFontStyle","HeaderFontWeight":"HeaderFontWeight","HeaderHeight":"HeaderHeight","HeaderHoverBackground":"HeaderHoverBackground","HeaderHoverDarkTextColor":"HeaderHoverDarkTextColor","HeaderHoverTextColor":"HeaderHoverTextColor","HeaderLabelBottomMargin":"HeaderLabelBottomMargin","HeaderLabelLeftMargin":"HeaderLabelLeftMargin","HeaderLabelRightMargin":"HeaderLabelRightMargin","HeaderLabelTopMargin":"HeaderLabelTopMargin","HeaderTextColor":"HeaderTextColor","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","HighlightedValueMemberPath":"HighlightedValueMemberPath","HighlightedValueOpacity":"HighlightedValueOpacity","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","HighlightingFadeOpacity":"HighlightingFadeOpacity","HighlightingMode":"HighlightingMode","HighlightingTransitionDuration":"HighlightingTransitionDuration","IdMemberPath":"IdMemberPath","InteractionPixelScalingRatio":"InteractionPixelScalingRatio","IsFillScaleLogarithmic":"IsFillScaleLogarithmic","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelHorizontalFitMode":"LabelHorizontalFitMode","LabelLeftMargin":"LabelLeftMargin","LabelMemberPath":"LabelMemberPath","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelVerticalAlignment":"LabelVerticalAlignment","LabelVerticalFitMode":"LabelVerticalFitMode","LayoutOrientation":"LayoutOrientation","LayoutType":"LayoutType","MarkDirty()":"MarkDirty()","MarkDirty":"MarkDirty()","MarkDirtyAsync()":"MarkDirtyAsync()","MarkDirtyAsync":"MarkDirtyAsync()","MinimumDisplaySize":"MinimumDisplaySize","NodeOpacity":"NodeOpacity","NodePointerEnter":"NodePointerEnter","NodePointerEnterScript":"NodePointerEnterScript","NodePointerLeave":"NodePointerLeave","NodePointerLeaveScript":"NodePointerLeaveScript","NodePointerOver":"NodePointerOver","NodePointerOverScript":"NodePointerOverScript","NodePointerPressed":"NodePointerPressed","NodePointerPressedScript":"NodePointerPressedScript","NodePointerReleased":"NodePointerReleased","NodePointerReleasedScript":"NodePointerReleasedScript","NodeRenderStyling":"NodeRenderStyling","NodeRenderStylingScript":"NodeRenderStylingScript","NodeStyling":"NodeStyling","NodeStylingScript":"NodeStylingScript","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySizeChanged()":"NotifySizeChanged()","NotifySizeChanged":"NotifySizeChanged()","NotifySizeChangedAsync()":"NotifySizeChangedAsync()","NotifySizeChangedAsync":"NotifySizeChangedAsync()","OnAttachedToUI()":"OnAttachedToUI()","OnAttachedToUI":"OnAttachedToUI()","OnAttachedToUIAsync()":"OnAttachedToUIAsync()","OnAttachedToUIAsync":"OnAttachedToUIAsync()","OnDetachedFromUI()":"OnDetachedFromUI()","OnDetachedFromUI":"OnDetachedFromUI()","OnDetachedFromUIAsync()":"OnDetachedFromUIAsync()","OnDetachedFromUIAsync":"OnDetachedFromUIAsync()","Outline":"Outline","OverlayHeaderBackground":"OverlayHeaderBackground","OverlayHeaderHoverBackground":"OverlayHeaderHoverBackground","OverlayHeaderLabelBottomMargin":"OverlayHeaderLabelBottomMargin","OverlayHeaderLabelLeftMargin":"OverlayHeaderLabelLeftMargin","OverlayHeaderLabelRightMargin":"OverlayHeaderLabelRightMargin","OverlayHeaderLabelTopMargin":"OverlayHeaderLabelTopMargin","ParentIdMemberPath":"ParentIdMemberPath","ParentNodeBottomMargin":"ParentNodeBottomMargin","ParentNodeBottomPadding":"ParentNodeBottomPadding","ParentNodeLeftMargin":"ParentNodeLeftMargin","ParentNodeLeftPadding":"ParentNodeLeftPadding","ParentNodeRightMargin":"ParentNodeRightMargin","ParentNodeRightPadding":"ParentNodeRightPadding","ParentNodeTopMargin":"ParentNodeTopMargin","ParentNodeTopPadding":"ParentNodeTopPadding","ParentTypeName":"ParentTypeName","PixelScalingRatio":"PixelScalingRatio","RootTitle":"RootTitle","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","StrokeThickness":"StrokeThickness","StyleMappings":"StyleMappings","TextColor":"TextColor","TransitionDuration":"TransitionDuration","Type":"Type","ValueMemberPath":"ValueMemberPath"}}],"IgbTreemapModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapModule()":"IgbTreemapModule()","IgbTreemapModule":"IgbTreemapModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTreemapNodePointerEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodePointerEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodePointerEventArgs()":"IgbTreemapNodePointerEventArgs()","IgbTreemapNodePointerEventArgs":"IgbTreemapNodePointerEventArgs()","CustomValue":"CustomValue","CustomValueScript":"CustomValueScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","IsHandled":"IsHandled","IsOverHeader":"IsOverHeader","IsRightButton":"IsRightButton","Item":"Item","ItemScript":"ItemScript","Label":"Label","ParentItem":"ParentItem","ParentItemScript":"ParentItemScript","ParentLabel":"ParentLabel","ParentSum":"ParentSum","ParentValue":"ParentValue","Position":"Position","Sum":"Sum","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbTreemapNodeStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodeStyle","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodeStyle()":"IgbTreemapNodeStyle()","IgbTreemapNodeStyle":"IgbTreemapNodeStyle()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FadeOpacity":"FadeOpacity","Fill":"Fill","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HeaderBackground":"HeaderBackground","HeaderHeight":"HeaderHeight","HeaderHoverBackground":"HeaderHoverBackground","HeaderHoverTextColor":"HeaderHoverTextColor","HeaderLabelBottomMargin":"HeaderLabelBottomMargin","HeaderLabelLeftMargin":"HeaderLabelLeftMargin","HeaderLabelRightMargin":"HeaderLabelRightMargin","HeaderLabelTopMargin":"HeaderLabelTopMargin","HeaderTextColor":"HeaderTextColor","HighlightingHandled":"HighlightingHandled","Label":"Label","LabelBottomMargin":"LabelBottomMargin","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelLeftMargin":"LabelLeftMargin","LabelRightMargin":"LabelRightMargin","LabelTopMargin":"LabelTopMargin","LabelVerticalAlignment":"LabelVerticalAlignment","Opacity":"Opacity","Outline":"Outline","StrokeThickness":"StrokeThickness","TextColor":"TextColor","Type":"Type"}}],"IgbTreemapNodeStyleMapping":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodeStyleMapping","k":"class","s":"classes","m":{"HeaderHoverBackground":"HeaderHoverBackground","HeaderBackground":"HeaderBackground","HeaderTextColor":"HeaderTextColor","Label":"Label","TextColor":"TextColor","HeaderHoverTextColor":"HeaderHoverTextColor","HeaderLabelLeftMargin":"HeaderLabelLeftMargin","HeaderLabelTopMargin":"HeaderLabelTopMargin","HeaderLabelRightMargin":"HeaderLabelRightMargin","HeaderLabelBottomMargin":"HeaderLabelBottomMargin","LabelLeftMargin":"LabelLeftMargin","LabelTopMargin":"LabelTopMargin","LabelRightMargin":"LabelRightMargin","LabelBottomMargin":"LabelBottomMargin","HeaderHeight":"HeaderHeight","LabelHorizontalAlignment":"LabelHorizontalAlignment","LabelVerticalAlignment":"LabelVerticalAlignment","Fill":"Fill","Outline":"Outline","StrokeThickness":"StrokeThickness","Opacity":"Opacity","FadeOpacity":"FadeOpacity","HighlightingHandled":"HighlightingHandled","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodeStyleMapping()":"IgbTreemapNodeStyleMapping()","IgbTreemapNodeStyleMapping":"IgbTreemapNodeStyleMapping()","Dispose()":"Dispose()","Dispose":"Dispose()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","MappingMode":"MappingMode","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","TargetType":"TargetType","TreemapParent":"TreemapParent","Type":"Type","Value":"Value"}}],"IgbTreemapNodeStyleMappingCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodeStyleMappingCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbTreemapNodeStyleMapping)":"InsertItem(int, IgbTreemapNodeStyleMapping)","InsertItem":"InsertItem(int, IgbTreemapNodeStyleMapping)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbTreemapNodeStyleMapping)":"SetItem(int, IgbTreemapNodeStyleMapping)","SetItem":"SetItem(int, IgbTreemapNodeStyleMapping)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbTreemapNodeStyleMapping)":"Add(IgbTreemapNodeStyleMapping)","Add":"Add(IgbTreemapNodeStyleMapping)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbTreemapNodeStyleMapping[], int)":"CopyTo(IgbTreemapNodeStyleMapping[], int)","CopyTo":"CopyTo(IgbTreemapNodeStyleMapping[], int)","Contains(IgbTreemapNodeStyleMapping)":"Contains(IgbTreemapNodeStyleMapping)","Contains":"Contains(IgbTreemapNodeStyleMapping)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbTreemapNodeStyleMapping)":"IndexOf(IgbTreemapNodeStyleMapping)","IndexOf":"IndexOf(IgbTreemapNodeStyleMapping)","Insert(int, IgbTreemapNodeStyleMapping)":"Insert(int, IgbTreemapNodeStyleMapping)","Insert":"Insert(int, IgbTreemapNodeStyleMapping)","Remove(IgbTreemapNodeStyleMapping)":"Remove(IgbTreemapNodeStyleMapping)","Remove":"Remove(IgbTreemapNodeStyleMapping)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodeStyleMappingCollection(object, string)":"IgbTreemapNodeStyleMappingCollection(object, string)","IgbTreemapNodeStyleMappingCollection":"IgbTreemapNodeStyleMappingCollection(object, string)"}}],"IgbTreemapNodeStyleMappingModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodeStyleMappingModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodeStyleMappingModule()":"IgbTreemapNodeStyleMappingModule()","IgbTreemapNodeStyleMappingModule":"IgbTreemapNodeStyleMappingModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTreemapNodeStyleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodeStyleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodeStyleModule()":"IgbTreemapNodeStyleModule()","IgbTreemapNodeStyleModule":"IgbTreemapNodeStyleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTreemapNodeStylingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreemapNodeStylingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreemapNodeStylingEventArgs()":"IgbTreemapNodeStylingEventArgs()","IgbTreemapNodeStylingEventArgs":"IgbTreemapNodeStylingEventArgs()","CustomValue":"CustomValue","CustomValueScript":"CustomValueScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","HighlightingHandled":"HighlightingHandled","HighlightingInfo":"HighlightingInfo","IsHighlightInProgress":"IsHighlightInProgress","IsParent":"IsParent","Item":"Item","ItemScript":"ItemScript","Label":"Label","ParentItem":"ParentItem","ParentItemScript":"ParentItemScript","ParentLabel":"ParentLabel","ParentSum":"ParentSum","ParentValue":"ParentValue","Style":"Style","Sum":"Sum","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","TotalHighlightProgress":"TotalHighlightProgress","Type":"Type","Value":"Value"}}],"IgbTreeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeModule()":"IgbTreeModule()","IgbTreeModule":"IgbTreeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeModule()":"IgbTreeModule()","IgbTreeModule":"IgbTreeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTreeSelectionChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeSelectionChangeEventArgs","k":"class","s":"classes","m":{"FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Type":"Type","Detail":"Detail","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeSelectionChangeEventArgs()":"IgbTreeSelectionChangeEventArgs()","IgbTreeSelectionChangeEventArgs":"IgbTreeSelectionChangeEventArgs()"}}],"IgbTreeSelectionEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeSelectionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeSelectionEventArgs()":"IgbTreeSelectionEventArgs()","IgbTreeSelectionEventArgs":"IgbTreeSelectionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeSelectionEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeSelectionEventArgs()":"IgbTreeSelectionEventArgs()","IgbTreeSelectionEventArgs":"IgbTreeSelectionEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTreeSelectionEventArgsDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTreeSelectionEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeSelectionEventArgsDetail()":"IgbTreeSelectionEventArgsDetail()","IgbTreeSelectionEventArgsDetail":"IgbTreeSelectionEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewSelection":"NewSelection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbTreeSelectionEventArgsDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTreeSelectionEventArgsDetail()":"IgbTreeSelectionEventArgsDetail()","IgbTreeSelectionEventArgsDetail":"IgbTreeSelectionEventArgsDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","NewSelection":"NewSelection","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTrendLineLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTrendLineLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTrendLineLayer()":"IgbTrendLineLayer()","IgbTrendLineLayer":"IgbTrendLineLayer()","ActualTargetSeries":"ActualTargetSeries","ActualTargetSeriesScript":"ActualTargetSeriesScript","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetManagerIdentifier()":"GetManagerIdentifier()","GetManagerIdentifier":"GetManagerIdentifier()","GetManagerIdentifierAsync()":"GetManagerIdentifierAsync()","GetManagerIdentifierAsync":"GetManagerIdentifierAsync()","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","TrendLinePeriod":"TrendLinePeriod","TrendLineType":"TrendLineType","Type":"Type"}}],"IgbTrendLineLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTrendLineLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTrendLineLayerModule()":"IgbTrendLineLayerModule()","IgbTrendLineLayerModule":"IgbTrendLineLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTrendLineTypeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTrendLineTypeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, TrendLineType)":"InsertItem(int, TrendLineType)","InsertItem":"InsertItem(int, TrendLineType)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, TrendLineType)":"SetItem(int, TrendLineType)","SetItem":"SetItem(int, TrendLineType)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(TrendLineType)":"Add(TrendLineType)","Add":"Add(TrendLineType)","Clear()":"Clear()","Clear":"Clear()","CopyTo(TrendLineType[], int)":"CopyTo(TrendLineType[], int)","CopyTo":"CopyTo(TrendLineType[], int)","Contains(TrendLineType)":"Contains(TrendLineType)","Contains":"Contains(TrendLineType)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(TrendLineType)":"IndexOf(TrendLineType)","IndexOf":"IndexOf(TrendLineType)","Insert(int, TrendLineType)":"Insert(int, TrendLineType)","Insert":"Insert(int, TrendLineType)","Remove(TrendLineType)":"Remove(TrendLineType)","Remove":"Remove(TrendLineType)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTrendLineTypeCollection(object, string)":"IgbTrendLineTypeCollection(object, string)","IgbTrendLineTypeCollection":"IgbTrendLineTypeCollection(object, string)"}}],"IgbTriangulationDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTriangulationDataSource","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTriangulationDataSource()":"IgbTriangulationDataSource()","IgbTriangulationDataSource":"IgbTriangulationDataSource()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","ImportCompleted":"ImportCompleted","ImportCompletedScript":"ImportCompletedScript","Type":"Type"}}],"IgbTriangulationStatusEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTriangulationStatusEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTriangulationStatusEventArgs()":"IgbTriangulationStatusEventArgs()","IgbTriangulationStatusEventArgs":"IgbTriangulationStatusEventArgs()","CurrentStatus":"CurrentStatus","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbTRIXIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTRIXIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTRIXIndicator()":"IgbTRIXIndicator()","IgbTRIXIndicator":"IgbTRIXIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbTRIXIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTRIXIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTRIXIndicatorModule()":"IgbTRIXIndicatorModule()","IgbTRIXIndicatorModule":"IgbTRIXIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbTypicalPriceIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTypicalPriceIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTypicalPriceIndicator()":"IgbTypicalPriceIndicator()","IgbTypicalPriceIndicator":"IgbTypicalPriceIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbTypicalPriceIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbTypicalPriceIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbTypicalPriceIndicatorModule()":"IgbTypicalPriceIndicatorModule()","IgbTypicalPriceIndicatorModule":"IgbTypicalPriceIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUltimateOscillatorIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUltimateOscillatorIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUltimateOscillatorIndicator()":"IgbUltimateOscillatorIndicator()","IgbUltimateOscillatorIndicator":"IgbUltimateOscillatorIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbUltimateOscillatorIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUltimateOscillatorIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUltimateOscillatorIndicatorModule()":"IgbUltimateOscillatorIndicatorModule()","IgbUltimateOscillatorIndicatorModule":"IgbUltimateOscillatorIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleBgModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleBgModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleBgModule()":"IgbUndoLocaleBgModule()","IgbUndoLocaleBgModule":"IgbUndoLocaleBgModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleCsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleCsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleCsModule()":"IgbUndoLocaleCsModule()","IgbUndoLocaleCsModule":"IgbUndoLocaleCsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleDaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleDaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleDaModule()":"IgbUndoLocaleDaModule()","IgbUndoLocaleDaModule":"IgbUndoLocaleDaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleDeModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleDeModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleDeModule()":"IgbUndoLocaleDeModule()","IgbUndoLocaleDeModule":"IgbUndoLocaleDeModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleEnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleEnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleEnModule()":"IgbUndoLocaleEnModule()","IgbUndoLocaleEnModule":"IgbUndoLocaleEnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleEsModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleEsModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleEsModule()":"IgbUndoLocaleEsModule()","IgbUndoLocaleEsModule":"IgbUndoLocaleEsModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleFrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleFrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleFrModule()":"IgbUndoLocaleFrModule()","IgbUndoLocaleFrModule":"IgbUndoLocaleFrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleHuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleHuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleHuModule()":"IgbUndoLocaleHuModule()","IgbUndoLocaleHuModule":"IgbUndoLocaleHuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleItModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleItModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleItModule()":"IgbUndoLocaleItModule()","IgbUndoLocaleItModule":"IgbUndoLocaleItModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleJaModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleJaModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleJaModule()":"IgbUndoLocaleJaModule()","IgbUndoLocaleJaModule":"IgbUndoLocaleJaModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleNbModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleNbModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleNbModule()":"IgbUndoLocaleNbModule()","IgbUndoLocaleNbModule":"IgbUndoLocaleNbModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleNlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleNlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleNlModule()":"IgbUndoLocaleNlModule()","IgbUndoLocaleNlModule":"IgbUndoLocaleNlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocalePlModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocalePlModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocalePlModule()":"IgbUndoLocalePlModule()","IgbUndoLocalePlModule":"IgbUndoLocalePlModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocalePtModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocalePtModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocalePtModule()":"IgbUndoLocalePtModule()","IgbUndoLocalePtModule":"IgbUndoLocalePtModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleRoModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleRoModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleRoModule()":"IgbUndoLocaleRoModule()","IgbUndoLocaleRoModule":"IgbUndoLocaleRoModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleRuModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleRuModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleRuModule()":"IgbUndoLocaleRuModule()","IgbUndoLocaleRuModule":"IgbUndoLocaleRuModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleSvModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleSvModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleSvModule()":"IgbUndoLocaleSvModule()","IgbUndoLocaleSvModule":"IgbUndoLocaleSvModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleTrModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleTrModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleTrModule()":"IgbUndoLocaleTrModule()","IgbUndoLocaleTrModule":"IgbUndoLocaleTrModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleZhHansModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleZhHansModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleZhHansModule()":"IgbUndoLocaleZhHansModule()","IgbUndoLocaleZhHansModule":"IgbUndoLocaleZhHansModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUndoLocaleZhHantModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUndoLocaleZhHantModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUndoLocaleZhHantModule()":"IgbUndoLocaleZhHantModule()","IgbUndoLocaleZhHantModule":"IgbUndoLocaleZhHantModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUploadDataCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUploadDataCompletedEventArgs","k":"class","s":"classes","m":{"Cancelled":"Cancelled","UserState":"UserState","UserStateScript":"UserStateScript","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUploadDataCompletedEventArgs()":"IgbUploadDataCompletedEventArgs()","IgbUploadDataCompletedEventArgs":"IgbUploadDataCompletedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUploadStringCompletedEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUploadStringCompletedEventArgs","k":"class","s":"classes","m":{"Cancelled":"Cancelled","UserState":"UserState","UserStateScript":"UserStateScript","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUploadStringCompletedEventArgs()":"IgbUploadStringCompletedEventArgs()","IgbUploadStringCompletedEventArgs":"IgbUploadStringCompletedEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Result":"Result","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserAnnotationCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, IgbUserBaseAnnotation)":"InsertItem(int, IgbUserBaseAnnotation)","InsertItem":"InsertItem(int, IgbUserBaseAnnotation)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, IgbUserBaseAnnotation)":"SetItem(int, IgbUserBaseAnnotation)","SetItem":"SetItem(int, IgbUserBaseAnnotation)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(IgbUserBaseAnnotation)":"Add(IgbUserBaseAnnotation)","Add":"Add(IgbUserBaseAnnotation)","Clear()":"Clear()","Clear":"Clear()","CopyTo(IgbUserBaseAnnotation[], int)":"CopyTo(IgbUserBaseAnnotation[], int)","CopyTo":"CopyTo(IgbUserBaseAnnotation[], int)","Contains(IgbUserBaseAnnotation)":"Contains(IgbUserBaseAnnotation)","Contains":"Contains(IgbUserBaseAnnotation)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(IgbUserBaseAnnotation)":"IndexOf(IgbUserBaseAnnotation)","IndexOf":"IndexOf(IgbUserBaseAnnotation)","Insert(int, IgbUserBaseAnnotation)":"Insert(int, IgbUserBaseAnnotation)","Insert":"Insert(int, IgbUserBaseAnnotation)","Remove(IgbUserBaseAnnotation)":"Remove(IgbUserBaseAnnotation)","Remove":"Remove(IgbUserBaseAnnotation)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationCollection(object, string)":"IgbUserAnnotationCollection(object, string)","IgbUserAnnotationCollection":"IgbUserAnnotationCollection(object, string)"}}],"IgbUserAnnotationInformation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationInformation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationInformation()":"IgbUserAnnotationInformation()","IgbUserAnnotationInformation":"IgbUserAnnotationInformation()","AnnotationData":"AnnotationData","AnnotationId":"AnnotationId","BadgeColor":"BadgeColor","BadgeImageUri":"BadgeImageUri","DialogSuggestedXLocation":"DialogSuggestedXLocation","DialogSuggestedYLocation":"DialogSuggestedYLocation","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Label":"Label","MainColor":"MainColor","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserAnnotationInformationEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationInformationEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationInformationEventArgs()":"IgbUserAnnotationInformationEventArgs()","IgbUserAnnotationInformationEventArgs":"IgbUserAnnotationInformationEventArgs()","AnnotationInfo":"AnnotationInfo","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserAnnotationInformationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationInformationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationInformationModule()":"IgbUserAnnotationInformationModule()","IgbUserAnnotationInformationModule":"IgbUserAnnotationInformationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserAnnotationLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationLayer","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationLayer()":"IgbUserAnnotationLayer()","IgbUserAnnotationLayer":"IgbUserAnnotationLayer()","Annotations":"Annotations","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","StylingAxisAnnotation":"StylingAxisAnnotation","StylingAxisAnnotationScript":"StylingAxisAnnotationScript","StylingPointAnnotation":"StylingPointAnnotation","StylingPointAnnotationScript":"StylingPointAnnotationScript","StylingSliceAnnotation":"StylingSliceAnnotation","StylingSliceAnnotationScript":"StylingSliceAnnotationScript","StylingStripAnnotation":"StylingStripAnnotation","StylingStripAnnotationScript":"StylingStripAnnotationScript","Type":"Type","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript"}}],"IgbUserAnnotationLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationLayerModule()":"IgbUserAnnotationLayerModule()","IgbUserAnnotationLayerModule":"IgbUserAnnotationLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserAnnotationToolTipContentUpdatingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationToolTipContentUpdatingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationToolTipContentUpdatingEventArgs()":"IgbUserAnnotationToolTipContentUpdatingEventArgs()","IgbUserAnnotationToolTipContentUpdatingEventArgs":"IgbUserAnnotationToolTipContentUpdatingEventArgs()","AnnotationInfo":"AnnotationInfo","Content":"Content","ContentScript":"ContentScript","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserAnnotationToolTipLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationToolTipLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationToolTipLayer()":"IgbUserAnnotationToolTipLayer()","IgbUserAnnotationToolTipLayer":"IgbUserAnnotationToolTipLayer()","ContentUpdating":"ContentUpdating","ContentUpdatingScript":"ContentUpdatingScript","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","SkipUnknownValues":"SkipUnknownValues","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","Type":"Type"}}],"IgbUserAnnotationToolTipLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAnnotationToolTipLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAnnotationToolTipLayerModule()":"IgbUserAnnotationToolTipLayerModule()","IgbUserAnnotationToolTipLayerModule":"IgbUserAnnotationToolTipLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserAxisAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAxisAnnotation","k":"class","s":"classes","m":{"BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","Identifier":"Identifier","Label":"Label","AnnotationData":"AnnotationData","IsVisible":"IsVisible","LabelColor":"LabelColor","LabelBackground":"LabelBackground","LabelBorderColor":"LabelBorderColor","LabelBorderThickness":"LabelBorderThickness","LabelBorderRadius":"LabelBorderRadius","LabelPadding":"LabelPadding","BadgeVisible":"BadgeVisible","BadgeBackground":"BadgeBackground","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeSize":"BadgeSize","BadgeCornerRadius":"BadgeCornerRadius","BadgeMargin":"BadgeMargin","BadgeImagePath":"BadgeImagePath","IsPillShaped":"IsPillShaped","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAxisAnnotation()":"IgbUserAxisAnnotation()","IgbUserAxisAnnotation":"IgbUserAxisAnnotation()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","TargetAxis":"TargetAxis","TargetAxisMatcher":"TargetAxisMatcher","TargetAxisName":"TargetAxisName","TargetAxisScript":"TargetAxisScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value"}}],"IgbUserAxisAnnotationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAxisAnnotationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAxisAnnotationModule()":"IgbUserAxisAnnotationModule()","IgbUserAxisAnnotationModule":"IgbUserAxisAnnotationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserAxisAnnotationStylingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserAxisAnnotationStylingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserAxisAnnotationStylingEventArgs()":"IgbUserAxisAnnotationStylingEventArgs()","IgbUserAxisAnnotationStylingEventArgs":"IgbUserAxisAnnotationStylingEventArgs()","Annotation":"Annotation","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserBaseAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserBaseAnnotation","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserBaseAnnotation()":"IgbUserBaseAnnotation()","IgbUserBaseAnnotation":"IgbUserBaseAnnotation()","AnnotationData":"AnnotationData","BadgeBackground":"BadgeBackground","BadgeCornerRadius":"BadgeCornerRadius","BadgeImagePath":"BadgeImagePath","BadgeMargin":"BadgeMargin","BadgeOutline":"BadgeOutline","BadgeSize":"BadgeSize","BadgeThickness":"BadgeThickness","BadgeVisible":"BadgeVisible","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Identifier":"Identifier","IsPillShaped":"IsPillShaped","IsVisible":"IsVisible","Label":"Label","LabelBackground":"LabelBackground","LabelBorderColor":"LabelBorderColor","LabelBorderRadius":"LabelBorderRadius","LabelBorderThickness":"LabelBorderThickness","LabelColor":"LabelColor","LabelPadding":"LabelPadding","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserPointAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserPointAnnotation","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","Identifier":"Identifier","Label":"Label","AnnotationData":"AnnotationData","IsVisible":"IsVisible","LabelColor":"LabelColor","LabelBackground":"LabelBackground","LabelBorderColor":"LabelBorderColor","LabelBorderThickness":"LabelBorderThickness","LabelBorderRadius":"LabelBorderRadius","LabelPadding":"LabelPadding","BadgeVisible":"BadgeVisible","BadgeBackground":"BadgeBackground","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeSize":"BadgeSize","BadgeCornerRadius":"BadgeCornerRadius","BadgeMargin":"BadgeMargin","BadgeImagePath":"BadgeImagePath","IsPillShaped":"IsPillShaped","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserPointAnnotation()":"IgbUserPointAnnotation()","IgbUserPointAnnotation":"IgbUserPointAnnotation()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","TargetSeries":"TargetSeries","TargetSeriesMatcher":"TargetSeriesMatcher","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","XValue":"XValue","YValue":"YValue"}}],"IgbUserPointAnnotationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserPointAnnotationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserPointAnnotationModule()":"IgbUserPointAnnotationModule()","IgbUserPointAnnotationModule":"IgbUserPointAnnotationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserPointAnnotationStylingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserPointAnnotationStylingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserPointAnnotationStylingEventArgs()":"IgbUserPointAnnotationStylingEventArgs()","IgbUserPointAnnotationStylingEventArgs":"IgbUserPointAnnotationStylingEventArgs()","Annotation":"Annotation","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserShapeAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserShapeAnnotation","k":"class","s":"classes","m":{"EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetAxisMatcher":"TargetAxisMatcher","Value":"Value","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","Identifier":"Identifier","Label":"Label","AnnotationData":"AnnotationData","IsVisible":"IsVisible","LabelColor":"LabelColor","LabelBackground":"LabelBackground","LabelBorderColor":"LabelBorderColor","LabelBorderThickness":"LabelBorderThickness","LabelBorderRadius":"LabelBorderRadius","LabelPadding":"LabelPadding","BadgeVisible":"BadgeVisible","BadgeBackground":"BadgeBackground","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeSize":"BadgeSize","BadgeCornerRadius":"BadgeCornerRadius","BadgeMargin":"BadgeMargin","BadgeImagePath":"BadgeImagePath","IsPillShaped":"IsPillShaped","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserShapeAnnotation()":"IgbUserShapeAnnotation()","IgbUserShapeAnnotation":"IgbUserShapeAnnotation()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","OverlayText":"OverlayText","OverlayTextAngle":"OverlayTextAngle","OverlayTextBackground":"OverlayTextBackground","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextColor":"OverlayTextColor","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextLocation":"OverlayTextLocation","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextVisible":"OverlayTextVisible","ShapeBackground":"ShapeBackground","ShapeOutline":"ShapeOutline","ShapeThickness":"ShapeThickness","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","ValueDisplayMode":"ValueDisplayMode"}}],"IgbUserSliceAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserSliceAnnotation","k":"class","s":"classes","m":{"ValueDisplayMode":"ValueDisplayMode","ShapeBackground":"ShapeBackground","ShapeOutline":"ShapeOutline","ShapeThickness":"ShapeThickness","OverlayText":"OverlayText","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextBackground":"OverlayTextBackground","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextVisible":"OverlayTextVisible","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetAxisMatcher":"TargetAxisMatcher","Value":"Value","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","Identifier":"Identifier","Label":"Label","AnnotationData":"AnnotationData","IsVisible":"IsVisible","LabelColor":"LabelColor","LabelBackground":"LabelBackground","LabelBorderColor":"LabelBorderColor","LabelBorderThickness":"LabelBorderThickness","LabelBorderRadius":"LabelBorderRadius","LabelPadding":"LabelPadding","BadgeVisible":"BadgeVisible","BadgeBackground":"BadgeBackground","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeSize":"BadgeSize","BadgeCornerRadius":"BadgeCornerRadius","BadgeMargin":"BadgeMargin","BadgeImagePath":"BadgeImagePath","IsPillShaped":"IsPillShaped","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserSliceAnnotation()":"IgbUserSliceAnnotation()","IgbUserSliceAnnotation":"IgbUserSliceAnnotation()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserSliceAnnotationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserSliceAnnotationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserSliceAnnotationModule()":"IgbUserSliceAnnotationModule()","IgbUserSliceAnnotationModule":"IgbUserSliceAnnotationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserSliceAnnotationStylingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserSliceAnnotationStylingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserSliceAnnotationStylingEventArgs()":"IgbUserSliceAnnotationStylingEventArgs()","IgbUserSliceAnnotationStylingEventArgs":"IgbUserSliceAnnotationStylingEventArgs()","Annotation":"Annotation","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserStripAnnotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserStripAnnotation","k":"class","s":"classes","m":{"ValueDisplayMode":"ValueDisplayMode","ShapeBackground":"ShapeBackground","ShapeOutline":"ShapeOutline","ShapeThickness":"ShapeThickness","OverlayText":"OverlayText","OverlayTextLocation":"OverlayTextLocation","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextAngle":"OverlayTextAngle","OverlayTextColor":"OverlayTextColor","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextBackground":"OverlayTextBackground","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextVisible":"OverlayTextVisible","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","TargetAxis":"TargetAxis","TargetAxisScript":"TargetAxisScript","TargetAxisName":"TargetAxisName","TargetAxisMatcher":"TargetAxisMatcher","Value":"Value","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","Identifier":"Identifier","Label":"Label","AnnotationData":"AnnotationData","IsVisible":"IsVisible","LabelColor":"LabelColor","LabelBackground":"LabelBackground","LabelBorderColor":"LabelBorderColor","LabelBorderThickness":"LabelBorderThickness","LabelBorderRadius":"LabelBorderRadius","LabelPadding":"LabelPadding","BadgeVisible":"BadgeVisible","BadgeBackground":"BadgeBackground","BadgeOutline":"BadgeOutline","BadgeThickness":"BadgeThickness","BadgeSize":"BadgeSize","BadgeCornerRadius":"BadgeCornerRadius","BadgeMargin":"BadgeMargin","BadgeImagePath":"BadgeImagePath","IsPillShaped":"IsPillShaped","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserStripAnnotation()":"IgbUserStripAnnotation()","IgbUserStripAnnotation":"IgbUserStripAnnotation()","EndLabel":"EndLabel","EndLabelBackground":"EndLabelBackground","EndLabelBorderColor":"EndLabelBorderColor","EndLabelColor":"EndLabelColor","EndValue":"EndValue","EndValueDisplayMode":"EndValueDisplayMode","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","StartLabel":"StartLabel","StartLabelBackground":"StartLabelBackground","StartLabelBorderColor":"StartLabelBorderColor","StartLabelColor":"StartLabelColor","StartValue":"StartValue","StartValueDisplayMode":"StartValueDisplayMode","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbUserStripAnnotationModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserStripAnnotationModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserStripAnnotationModule()":"IgbUserStripAnnotationModule()","IgbUserStripAnnotationModule":"IgbUserStripAnnotationModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbUserStripAnnotationStylingEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbUserStripAnnotationStylingEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbUserStripAnnotationStylingEventArgs()":"IgbUserStripAnnotationStylingEventArgs()","IgbUserStripAnnotationStylingEventArgs":"IgbUserStripAnnotationStylingEventArgs()","Annotation":"Annotation","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbValidationErrors":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValidationErrors","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValidationErrors()":"IgbValidationErrors()","IgbValidationErrors":"IgbValidationErrors()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type"}}],"IgbValueBrushScale":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueBrushScale","k":"class","s":"classes","m":{"RegisterSeriesAsync(IgbSeries)":"RegisterSeriesAsync(IgbSeries)","RegisterSeriesAsync":"RegisterSeriesAsync(IgbSeries)","RegisterSeries(IgbSeries)":"RegisterSeries(IgbSeries)","RegisterSeries":"RegisterSeries(IgbSeries)","UnregisterSeriesAsync(IgbSeries)":"UnregisterSeriesAsync(IgbSeries)","UnregisterSeriesAsync":"UnregisterSeriesAsync(IgbSeries)","UnregisterSeries(IgbSeries)":"UnregisterSeries(IgbSeries)","UnregisterSeries":"UnregisterSeries(IgbSeries)","GetBrushAsync(int)":"GetBrushAsync(int)","GetBrushAsync":"GetBrushAsync(int)","GetBrush(int)":"GetBrush(int)","GetBrush":"GetBrush(int)","NotifySeriesAsync()":"NotifySeriesAsync()","NotifySeriesAsync":"NotifySeriesAsync()","NotifySeries()":"NotifySeries()","NotifySeries":"NotifySeries()","Brushes":"Brushes","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueBrushScale()":"IgbValueBrushScale()","IgbValueBrushScale":"IgbValueBrushScale()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","IsLogarithmic":"IsLogarithmic","LogarithmBase":"LogarithmBase","MaximumValue":"MaximumValue","MinimumValue":"MinimumValue","Type":"Type"}}],"IgbValueBrushScaleModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueBrushScaleModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueBrushScaleModule()":"IgbValueBrushScaleModule()","IgbValueBrushScaleModule":"IgbValueBrushScaleModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbValueLayer":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueLayer","k":"class","s":"classes","m":{"UseIndex":"UseIndex","UseLegend":"UseLegend","CursorPosition":"CursorPosition","CursorPositionUpdatesOnMove":"CursorPositionUpdatesOnMove","IsDefaultCrosshairDisabled":"IsDefaultCrosshairDisabled","AppearanceMode":"AppearanceMode","ActualAppearanceMode":"ActualAppearanceMode","ShiftAmount":"ShiftAmount","ActualShiftAmount":"ActualShiftAmount","HorizontalAppearanceMode":"HorizontalAppearanceMode","ActualHorizontalAppearanceMode":"ActualHorizontalAppearanceMode","VerticalAppearanceMode":"VerticalAppearanceMode","ActualVerticalAppearanceMode":"ActualVerticalAppearanceMode","HorizontalShiftAmount":"HorizontalShiftAmount","ActualHorizontalShiftAmount":"ActualHorizontalShiftAmount","VerticalShiftAmount":"VerticalShiftAmount","ActualVerticalShiftAmount":"ActualVerticalShiftAmount","HorizontalDashArray":"HorizontalDashArray","ActualHorizontalDashArray":"ActualHorizontalDashArray","VerticalDashArray":"VerticalDashArray","ActualVerticalDashArray":"ActualVerticalDashArray","ActualDashArray":"ActualDashArray","ActualDashCap":"ActualDashCap","ShouldRenderAsOverlay":"ShouldRenderAsOverlay","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueLayer()":"IgbValueLayer()","IgbValueLayer":"IgbValueLayer()","ActualValueLayerBrush":"ActualValueLayerBrush","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","HorizontalLineStroke":"HorizontalLineStroke","IsAxisAnnotationEnabled":"IsAxisAnnotationEnabled","OverlayText":"OverlayText","OverlayTextAngle":"OverlayTextAngle","OverlayTextBackground":"OverlayTextBackground","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextColor":"OverlayTextColor","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextLocation":"OverlayTextLocation","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextVisible":"OverlayTextVisible","SkipUnknownValues":"SkipUnknownValues","StylingOverlayText":"StylingOverlayText","StylingOverlayTextScript":"StylingOverlayTextScript","TargetAxis":"TargetAxis","TargetAxisName":"TargetAxisName","TargetAxisScript":"TargetAxisScript","TargetSeries":"TargetSeries","TargetSeriesName":"TargetSeriesName","TargetSeriesScript":"TargetSeriesScript","Type":"Type","UseInterpolation":"UseInterpolation","ValueMode":"ValueMode","VerticalLineStroke":"VerticalLineStroke","XAxisAnnotationBackground":"XAxisAnnotationBackground","XAxisAnnotationBackgroundCornerRadius":"XAxisAnnotationBackgroundCornerRadius","XAxisAnnotationFormatLabel":"XAxisAnnotationFormatLabel","XAxisAnnotationFormatLabelScript":"XAxisAnnotationFormatLabelScript","XAxisAnnotationInterpolatedValuePrecision":"XAxisAnnotationInterpolatedValuePrecision","XAxisAnnotationOutline":"XAxisAnnotationOutline","XAxisAnnotationPaddingBottom":"XAxisAnnotationPaddingBottom","XAxisAnnotationPaddingLeft":"XAxisAnnotationPaddingLeft","XAxisAnnotationPaddingRight":"XAxisAnnotationPaddingRight","XAxisAnnotationPaddingTop":"XAxisAnnotationPaddingTop","XAxisAnnotationStrokeThickness":"XAxisAnnotationStrokeThickness","XAxisAnnotationTextColor":"XAxisAnnotationTextColor","YAxisAnnotationBackground":"YAxisAnnotationBackground","YAxisAnnotationBackgroundCornerRadius":"YAxisAnnotationBackgroundCornerRadius","YAxisAnnotationFormatLabel":"YAxisAnnotationFormatLabel","YAxisAnnotationFormatLabelScript":"YAxisAnnotationFormatLabelScript","YAxisAnnotationInterpolatedValuePrecision":"YAxisAnnotationInterpolatedValuePrecision","YAxisAnnotationOutline":"YAxisAnnotationOutline","YAxisAnnotationPaddingBottom":"YAxisAnnotationPaddingBottom","YAxisAnnotationPaddingLeft":"YAxisAnnotationPaddingLeft","YAxisAnnotationPaddingRight":"YAxisAnnotationPaddingRight","YAxisAnnotationPaddingTop":"YAxisAnnotationPaddingTop","YAxisAnnotationStrokeThickness":"YAxisAnnotationStrokeThickness","YAxisAnnotationTextColor":"YAxisAnnotationTextColor"}}],"IgbValueLayerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueLayerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueLayerModule()":"IgbValueLayerModule()","IgbValueLayerModule":"IgbValueLayerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbValueModeCollection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueModeCollection","k":"class","s":"classes","m":{"ToArray()":"ToArray()","ToArray":"ToArray()","InsertItem(int, ValueLayerValueMode)":"InsertItem(int, ValueLayerValueMode)","InsertItem":"InsertItem(int, ValueLayerValueMode)","RemoveItem(int)":"RemoveItem(int)","RemoveItem":"RemoveItem(int)","SetItem(int, ValueLayerValueMode)":"SetItem(int, ValueLayerValueMode)","SetItem":"SetItem(int, ValueLayerValueMode)","ClearItems()":"ClearItems()","ClearItems":"ClearItems()","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","HasName(string)":"HasName(string)","HasName":"HasName(string)","Move(int, int)":"Move(int, int)","Move":"Move(int, int)","MoveItem(int, int)":"MoveItem(int, int)","MoveItem":"MoveItem(int, int)","OnPropertyChanged(PropertyChangedEventArgs)":"OnPropertyChanged(PropertyChangedEventArgs)","OnPropertyChanged":"OnPropertyChanged(PropertyChangedEventArgs)","OnCollectionChanged(NotifyCollectionChangedEventArgs)":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","OnCollectionChanged":"OnCollectionChanged(NotifyCollectionChangedEventArgs)","BlockReentrancy()":"BlockReentrancy()","BlockReentrancy":"BlockReentrancy()","CheckReentrancy()":"CheckReentrancy()","CheckReentrancy":"CheckReentrancy()","CollectionChanged":"CollectionChanged","PropertyChanged":"PropertyChanged","Add(ValueLayerValueMode)":"Add(ValueLayerValueMode)","Add":"Add(ValueLayerValueMode)","Clear()":"Clear()","Clear":"Clear()","CopyTo(ValueLayerValueMode[], int)":"CopyTo(ValueLayerValueMode[], int)","CopyTo":"CopyTo(ValueLayerValueMode[], int)","Contains(ValueLayerValueMode)":"Contains(ValueLayerValueMode)","Contains":"Contains(ValueLayerValueMode)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(ValueLayerValueMode)":"IndexOf(ValueLayerValueMode)","IndexOf":"IndexOf(ValueLayerValueMode)","Insert(int, ValueLayerValueMode)":"Insert(int, ValueLayerValueMode)","Insert":"Insert(int, ValueLayerValueMode)","Remove(ValueLayerValueMode)":"Remove(ValueLayerValueMode)","Remove":"Remove(ValueLayerValueMode)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","Items":"Items","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueModeCollection(object, string)":"IgbValueModeCollection(object, string)","IgbValueModeCollection":"IgbValueModeCollection(object, string)"}}],"IgbValueOverlay":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueOverlay","k":"class","s":"classes","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueOverlay()":"IgbValueOverlay()","IgbValueOverlay":"IgbValueOverlay()","Axis":"Axis","AxisAnnotationBackground":"AxisAnnotationBackground","AxisAnnotationBackgroundCornerRadius":"AxisAnnotationBackgroundCornerRadius","AxisAnnotationFormatLabel":"AxisAnnotationFormatLabel","AxisAnnotationFormatLabelScript":"AxisAnnotationFormatLabelScript","AxisAnnotationInterpolatedValuePrecision":"AxisAnnotationInterpolatedValuePrecision","AxisAnnotationOutline":"AxisAnnotationOutline","AxisAnnotationPaddingBottom":"AxisAnnotationPaddingBottom","AxisAnnotationPaddingLeft":"AxisAnnotationPaddingLeft","AxisAnnotationPaddingRight":"AxisAnnotationPaddingRight","AxisAnnotationPaddingTop":"AxisAnnotationPaddingTop","AxisAnnotationStrokeThickness":"AxisAnnotationStrokeThickness","AxisAnnotationTextColor":"AxisAnnotationTextColor","AxisName":"AxisName","AxisScript":"AxisScript","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","DateValue":"DateValue","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetLabel(double)":"GetLabel(double)","GetLabel":"GetLabel(double)","GetLabelAsync(double)":"GetLabelAsync(double)","GetLabelAsync":"GetLabelAsync(double)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","IsAxisAnnotationEnabled":"IsAxisAnnotationEnabled","OverlayText":"OverlayText","OverlayTextAngle":"OverlayTextAngle","OverlayTextBackground":"OverlayTextBackground","OverlayTextBackgroundMatchLayer":"OverlayTextBackgroundMatchLayer","OverlayTextBackgroundMode":"OverlayTextBackgroundMode","OverlayTextBackgroundShift":"OverlayTextBackgroundShift","OverlayTextBorderColor":"OverlayTextBorderColor","OverlayTextBorderMatchLayer":"OverlayTextBorderMatchLayer","OverlayTextBorderMode":"OverlayTextBorderMode","OverlayTextBorderRadius":"OverlayTextBorderRadius","OverlayTextBorderShift":"OverlayTextBorderShift","OverlayTextBorderThickness":"OverlayTextBorderThickness","OverlayTextColor":"OverlayTextColor","OverlayTextColorMatchLayer":"OverlayTextColorMatchLayer","OverlayTextColorMode":"OverlayTextColorMode","OverlayTextColorShift":"OverlayTextColorShift","OverlayTextFontFamily":"OverlayTextFontFamily","OverlayTextFontSize":"OverlayTextFontSize","OverlayTextFontStyle":"OverlayTextFontStyle","OverlayTextFontWeight":"OverlayTextFontWeight","OverlayTextHorizontalMargin":"OverlayTextHorizontalMargin","OverlayTextHorizontalPadding":"OverlayTextHorizontalPadding","OverlayTextLocation":"OverlayTextLocation","OverlayTextVerticalMargin":"OverlayTextVerticalMargin","OverlayTextVerticalPadding":"OverlayTextVerticalPadding","OverlayTextVisible":"OverlayTextVisible","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","StylingOverlayText":"StylingOverlayText","StylingOverlayTextScript":"StylingOverlayTextScript","Type":"Type","Value":"Value"}}],"IgbValueOverlayModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValueOverlayModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValueOverlayModule()":"IgbValueOverlayModule()","IgbValueOverlayModule":"IgbValueOverlayModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbValuesChange":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValuesChange","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValuesChange()":"IgbValuesChange()","IgbValuesChange":"IgbValuesChange()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","Type":"Type","Values":"Values"}}],"IgbValuesChangeDetail":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValuesChangeDetail","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValuesChangeDetail()":"IgbValuesChangeDetail()","IgbValuesChangeDetail":"IgbValuesChangeDetail()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","SetNativeElement(object)":"SetNativeElement(object)","SetNativeElement":"SetNativeElement(object)","SetNativeElementAsync(object)":"SetNativeElementAsync(object)","SetNativeElementAsync":"SetNativeElementAsync(object)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Values":"Values"}}],"IgbValuesChangeEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbValuesChangeEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbValuesChangeEventArgs()":"IgbValuesChangeEventArgs()","IgbValuesChangeEventArgs":"IgbValuesChangeEventArgs()","Detail":"Detail","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbVerticalAnchoredCategorySeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbVerticalAnchoredCategorySeries","k":"class","s":"classes","m":{"GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbVerticalAnchoredCategorySeries()":"IgbVerticalAnchoredCategorySeries()","IgbVerticalAnchoredCategorySeries":"IgbVerticalAnchoredCategorySeries()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbVerticalSeparatorCellInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbVerticalSeparatorCellInfo","k":"class","s":"classes","m":{"IsCustomFieldDirtyAsync(string)":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirtyAsync":"IsCustomFieldDirtyAsync(string)","IsCustomFieldDirty(string)":"IsCustomFieldDirty(string)","IsCustomFieldDirty":"IsCustomFieldDirty(string)","IsDirtyByIdAsync(int)":"IsDirtyByIdAsync(int)","IsDirtyByIdAsync":"IsDirtyByIdAsync(int)","IsDirtyById(int)":"IsDirtyById(int)","IsDirtyById":"IsDirtyById(int)","IsDirtyAsync(string)":"IsDirtyAsync(string)","IsDirtyAsync":"IsDirtyAsync(string)","IsDirty(string)":"IsDirty(string)","IsDirty":"IsDirty(string)","SetNamedValueAsync(string, object)":"SetNamedValueAsync(string, object)","SetNamedValueAsync":"SetNamedValueAsync(string, object)","SetNamedValue(string, object)":"SetNamedValue(string, object)","SetNamedValue":"SetNamedValue(string, object)","HasNamedValueAsync(string)":"HasNamedValueAsync(string)","HasNamedValueAsync":"HasNamedValueAsync(string)","HasNamedValue(string)":"HasNamedValue(string)","HasNamedValue":"HasNamedValue(string)","RemoveNamedValueAsync(string)":"RemoveNamedValueAsync(string)","RemoveNamedValueAsync":"RemoveNamedValueAsync(string)","RemoveNamedValue(string)":"RemoveNamedValue(string)","RemoveNamedValue":"RemoveNamedValue(string)","GetNamedValueAsync(string)":"GetNamedValueAsync(string)","GetNamedValueAsync":"GetNamedValueAsync(string)","GetNamedValue(string)":"GetNamedValue(string)","GetNamedValue":"GetNamedValue(string)","StyleKey":"StyleKey","DataRow":"DataRow","IsPositionDirty":"IsPositionDirty","IsSizeDirty":"IsSizeDirty","IsContentDirty":"IsContentDirty","IsBorderDirty":"IsBorderDirty","IsLayerDirty":"IsLayerDirty","IsStateDirty":"IsStateDirty","IsDataDirty":"IsDataDirty","IsPlaceholdContentNeeded":"IsPlaceholdContentNeeded","ActionManager":"ActionManager","IsHitTestVisible":"IsHitTestVisible","IsRowPinned":"IsRowPinned","IsRowSticky":"IsRowSticky","IsLastStickyRow":"IsLastStickyRow","IsFilterRow":"IsFilterRow","Indent":"Indent","RowItem":"RowItem","RowItemScript":"RowItemScript","X":"X","Y":"Y","SnappedX":"SnappedX","SnappedY":"SnappedY","EditOpacity":"EditOpacity","ContentOpacity":"ContentOpacity","ActualContentOpacity":"ActualContentOpacity","Opacity":"Opacity","ActualOpacity":"ActualOpacity","Height":"Height","Width":"Width","IsSelected":"IsSelected","SelectedStatus":"SelectedStatus","ActivationStatus":"ActivationStatus","HoverStatus":"HoverStatus","IsHoverable":"IsHoverable","HorizontalAlignment":"HorizontalAlignment","VerticalAlignment":"VerticalAlignment","Background":"Background","Border":"Border","ActualBackground":"ActualBackground","ActualBorder":"ActualBorder","ActivationBorder":"ActivationBorder","ErrorBorder":"ErrorBorder","SelectedBackground":"SelectedBackground","HoverBackground":"HoverBackground","HoverTextColor":"HoverTextColor","SortIndicatorColor":"SortIndicatorColor","StickyRowBackground":"StickyRowBackground","PinnedRowBackground":"PinnedRowBackground","LastStickyRowBackground":"LastStickyRowBackground","FilterRowBackground":"FilterRowBackground","PinnedRowOpacity":"PinnedRowOpacity","OriginalValue":"OriginalValue","OriginalValueScript":"OriginalValueScript","RenderValue":"RenderValue","UserFormattedValue":"UserFormattedValue","TextColor":"TextColor","ActualTextColor":"ActualTextColor","DeletedTextColor":"DeletedTextColor","FontFamily":"FontFamily","FontSize":"FontSize","FontStyle":"FontStyle","FontWeight":"FontWeight","ActualFontFamily":"ActualFontFamily","ActualFontSize":"ActualFontSize","ActualFontStyle":"ActualFontStyle","ActualFontWeight":"ActualFontWeight","SuffixText":"SuffixText","SuffixTextColor":"SuffixTextColor","SuffixTextFontFamily":"SuffixTextFontFamily","SuffixTextFontSize":"SuffixTextFontSize","SuffixTextFontStyle":"SuffixTextFontStyle","SuffixTextFontWeight":"SuffixTextFontWeight","SuffixIconName":"SuffixIconName","SuffixIconCollectionName":"SuffixIconCollectionName","SuffixIconStroke":"SuffixIconStroke","SuffixIconFill":"SuffixIconFill","SuffixIconViewBoxLeft":"SuffixIconViewBoxLeft","SuffixIconViewBoxTop":"SuffixIconViewBoxTop","SuffixIconViewBoxWidth":"SuffixIconViewBoxWidth","SuffixIconViewBoxHeight":"SuffixIconViewBoxHeight","SuffixMargin":"SuffixMargin","TextDecoration":"TextDecoration","LineBreakMode":"LineBreakMode","VirtualizationPercentage":"VirtualizationPercentage","PaddingLeft":"PaddingLeft","PaddingTop":"PaddingTop","PaddingRight":"PaddingRight","PaddingBottom":"PaddingBottom","ActualPaddingLeft":"ActualPaddingLeft","ActualPaddingTop":"ActualPaddingTop","ActualPaddingRight":"ActualPaddingRight","ActualPaddingBottom":"ActualPaddingBottom","BorderLeftWidth":"BorderLeftWidth","BorderTopWidth":"BorderTopWidth","BorderRightWidth":"BorderRightWidth","BorderBottomWidth":"BorderBottomWidth","ActivationBorderLeftWidth":"ActivationBorderLeftWidth","ActivationBorderTopWidth":"ActivationBorderTopWidth","ActivationBorderRightWidth":"ActivationBorderRightWidth","ActivationBorderBottomWidth":"ActivationBorderBottomWidth","ErrorBorderLeftWidth":"ErrorBorderLeftWidth","ErrorBorderTopWidth":"ErrorBorderTopWidth","ErrorBorderRightWidth":"ErrorBorderRightWidth","ErrorBorderBottomWidth":"ErrorBorderBottomWidth","ActualBorderLeftWidth":"ActualBorderLeftWidth","ActualBorderTopWidth":"ActualBorderTopWidth","ActualBorderRightWidth":"ActualBorderRightWidth","ActualBorderBottomWidth":"ActualBorderBottomWidth","SortDirection":"SortDirection","IsExpanded":"IsExpanded","IsCollapsable":"IsCollapsable","Pinned":"Pinned","EditFontFamily":"EditFontFamily","EditFontSize":"EditFontSize","EditFontStyle":"EditFontStyle","EditFontWeight":"EditFontWeight","IsEdited":"IsEdited","IsDeleted":"IsDeleted","EditError":"EditError","IsInEditMode":"IsInEditMode","EditID":"EditID","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbVerticalSeparatorCellInfo()":"IgbVerticalSeparatorCellInfo()","IgbVerticalSeparatorCellInfo":"IgbVerticalSeparatorCellInfo()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbVerticalStackedSeriesBase":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbVerticalStackedSeriesBase","k":"class","s":"classes","m":{"NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","ParentTypeName":"ParentTypeName","ContentSeries":"ContentSeries","ActualSeries":"ActualSeries","Series":"Series","AutoGenerateSeries":"AutoGenerateSeries","ReverseLegendOrder":"ReverseLegendOrder","SeriesCreatedScript":"SeriesCreatedScript","SeriesCreated":"SeriesCreated","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbVerticalStackedSeriesBase()":"IgbVerticalStackedSeriesBase()","IgbVerticalStackedSeriesBase":"IgbVerticalStackedSeriesBase()","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","Type":"Type","XAxis":"XAxis","XAxisName":"XAxisName","XAxisScript":"XAxisScript","YAxis":"YAxis","YAxisName":"YAxisName","YAxisScript":"YAxisScript"}}],"IgbVirtualDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbVirtualDataSource","k":"class","s":"classes","m":{"AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","AcceptPendingTransactionAsync(int)":"AcceptPendingTransactionAsync(int)","AcceptPendingTransactionAsync":"AcceptPendingTransactionAsync(int)","AcceptPendingTransaction(int)":"AcceptPendingTransaction(int)","AcceptPendingTransaction":"AcceptPendingTransaction(int)","RejectPendingTransactionAsync(int)":"RejectPendingTransactionAsync(int)","RejectPendingTransactionAsync":"RejectPendingTransactionAsync(int)","RejectPendingTransaction(int)":"RejectPendingTransaction(int)","RejectPendingTransaction":"RejectPendingTransaction(int)","CommitEditsAsync(bool)":"CommitEditsAsync(bool)","CommitEditsAsync":"CommitEditsAsync(bool)","CommitEdits(bool)":"CommitEdits(bool)","CommitEdits":"CommitEdits(bool)","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","AcceptPendingCommitAsync(int)":"AcceptPendingCommitAsync(int)","AcceptPendingCommitAsync":"AcceptPendingCommitAsync(int)","AcceptPendingCommit(int)":"AcceptPendingCommit(int)","AcceptPendingCommit":"AcceptPendingCommit(int)","RejectPendingCommitAsync(int)":"RejectPendingCommitAsync(int)","RejectPendingCommitAsync":"RejectPendingCommitAsync(int)","RejectPendingCommit(int)":"RejectPendingCommit(int)","RejectPendingCommit":"RejectPendingCommit(int)","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","Undo()":"Undo()","Undo":"Undo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","Redo()":"Redo()","Redo":"Redo()","HasEditAsync(object[], string)":"HasEditAsync(object[], string)","HasEditAsync":"HasEditAsync(object[], string)","HasEdit(object[], string)":"HasEdit(object[], string)","HasEdit":"HasEdit(object[], string)","HasDeleteAsync(object[])":"HasDeleteAsync(object[])","HasDeleteAsync":"HasDeleteAsync(object[])","HasDelete(object[])":"HasDelete(object[])","HasDelete":"HasDelete(object[])","HasAddAsync(object)":"HasAddAsync(object)","HasAddAsync":"HasAddAsync(object)","HasAdd(object)":"HasAdd(object)","HasAdd":"HasAdd(object)","GetAggregatedChangesAsync(int)":"GetAggregatedChangesAsync(int)","GetAggregatedChangesAsync":"GetAggregatedChangesAsync(int)","GetAggregatedChanges(int)":"GetAggregatedChanges(int)","GetAggregatedChanges":"GetAggregatedChanges(int)","IsPendingTransactionAsync(int)":"IsPendingTransactionAsync(int)","IsPendingTransactionAsync":"IsPendingTransactionAsync(int)","IsPendingTransaction(int)":"IsPendingTransaction(int)","IsPendingTransaction":"IsPendingTransaction(int)","IsPendingCommitAsync(int)":"IsPendingCommitAsync(int)","IsPendingCommitAsync":"IsPendingCommitAsync(int)","IsPendingCommit(int)":"IsPendingCommit(int)","IsPendingCommit":"IsPendingCommit(int)","SetTransactionErrorAsync(int, string)":"SetTransactionErrorAsync(int, string)","SetTransactionErrorAsync":"SetTransactionErrorAsync(int, string)","SetTransactionError(int, string)":"SetTransactionError(int, string)","SetTransactionError":"SetTransactionError(int, string)","GetTransactionErrorByKeyAsync(object[], string)":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKeyAsync":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKey(object[], string)":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKey":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByIDAsync(int)":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByIDAsync":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByID(int)":"GetTransactionErrorByID(int)","GetTransactionErrorByID":"GetTransactionErrorByID(int)","GetTransactionIDAsync(object[], string)":"GetTransactionIDAsync(object[], string)","GetTransactionIDAsync":"GetTransactionIDAsync(object[], string)","GetTransactionID(object[], string)":"GetTransactionID(object[], string)","GetTransactionID":"GetTransactionID(object[], string)","GetItemPropertyAsync(object, string)":"GetItemPropertyAsync(object, string)","GetItemPropertyAsync":"GetItemPropertyAsync(object, string)","GetItemProperty(object, string)":"GetItemProperty(object, string)","GetItemProperty":"GetItemProperty(object, string)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","GetMainValuePathAsync(DataSourceRowType)":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePathAsync":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePath(DataSourceRowType)":"GetMainValuePath(DataSourceRowType)","GetMainValuePath":"GetMainValuePath(DataSourceRowType)","IsRowSpanningAsync(DataSourceRowType)":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanningAsync":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanning(DataSourceRowType)":"IsRowSpanning(DataSourceRowType)","IsRowSpanning":"IsRowSpanning(DataSourceRowType)","ClearPinnedRowsAsync()":"ClearPinnedRowsAsync()","ClearPinnedRowsAsync":"ClearPinnedRowsAsync()","ClearPinnedRows()":"ClearPinnedRows()","ClearPinnedRows":"ClearPinnedRows()","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","GetRowCountAsync()":"GetRowCountAsync()","GetRowCountAsync":"GetRowCountAsync()","GetRowCount()":"GetRowCount()","GetRowCount":"GetRowCount()","IsReadOnly":"IsReadOnly","ActualCount":"ActualCount","FirstVisibleIndexRequested":"FirstVisibleIndexRequested","LastVisibleIndexRequested":"LastVisibleIndexRequested","DeferAutoRefresh":"DeferAutoRefresh","PrimaryKey":"PrimaryKey","PropertiesRequested":"PropertiesRequested","SchemaIncludedProperties":"SchemaIncludedProperties","SectionHeaderDisplayMode":"SectionHeaderDisplayMode","IncludeSummaryRowsInSection":"IncludeSummaryRowsInSection","IsSectionSummaryRowsAtBottom":"IsSectionSummaryRowsAtBottom","IsSectionHeaderNormalRow":"IsSectionHeaderNormalRow","IsSectionContentVisible":"IsSectionContentVisible","ShouldEmitSectionHeaders":"ShouldEmitSectionHeaders","ShouldEmitSectionFooters":"ShouldEmitSectionFooters","ShouldEmitShiftedRows":"ShouldEmitShiftedRows","ShouldEmitSummaryRows":"ShouldEmitSummaryRows","SchemaChangedScript":"SchemaChangedScript","SchemaChanged":"SchemaChanged","RowExpansionChangedScript":"RowExpansionChangedScript","RowExpansionChanged":"RowExpansionChanged","RootSummariesChangedScript":"RootSummariesChangedScript","RootSummariesChanged":"RootSummariesChanged","PropertiesRequestedChangedScript":"PropertiesRequestedChangedScript","PropertiesRequestedChanged":"PropertiesRequestedChanged","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbVirtualDataSource()":"IgbVirtualDataSource()","IgbVirtualDataSource":"IgbVirtualDataSource()","ActualPageSize":"ActualPageSize","Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","CloneProperties(DataSource)":"CloneProperties(DataSource)","CloneProperties":"CloneProperties(DataSource)","ClonePropertiesAsync(DataSource)":"ClonePropertiesAsync(DataSource)","ClonePropertiesAsync":"ClonePropertiesAsync(DataSource)","ConcurrencyTag":"ConcurrencyTag","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetIsRowExpandedAtIndex(int)":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndex":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndexAsync(int)":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndexAsync":"GetIsRowExpandedAtIndexAsync(int)","GetItemAtIndex(int)":"GetItemAtIndex(int)","GetItemAtIndex":"GetItemAtIndex(int)","GetItemAtIndexAsync(int)":"GetItemAtIndexAsync(int)","GetItemAtIndexAsync":"GetItemAtIndexAsync(int)","GetItemFromKey(object[])":"GetItemFromKey(object[])","GetItemFromKey":"GetItemFromKey(object[])","GetItemFromKeyAsync(object[])":"GetItemFromKeyAsync(object[])","GetItemFromKeyAsync":"GetItemFromKeyAsync(object[])","GetItemPropertyAtIndex(int, string)":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndex":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndexAsync(int, string)":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndexAsync":"GetItemPropertyAtIndexAsync(int, string)","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetRootSummaryRowCount()":"GetRootSummaryRowCount()","GetRootSummaryRowCount":"GetRootSummaryRowCount()","GetRootSummaryRowCountAsync()":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCountAsync":"GetRootSummaryRowCountAsync()","GetRowLevel(int)":"GetRowLevel(int)","GetRowLevel":"GetRowLevel(int)","GetRowLevelAsync(int)":"GetRowLevelAsync(int)","GetRowLevelAsync":"GetRowLevelAsync(int)","GetRowType(int)":"GetRowType(int)","GetRowType":"GetRowType(int)","GetRowTypeAsync(int)":"GetRowTypeAsync(int)","GetRowTypeAsync":"GetRowTypeAsync(int)","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GetStickyRowPriority(int)":"GetStickyRowPriority(int)","GetStickyRowPriority":"GetStickyRowPriority(int)","GetStickyRowPriorityAsync(int)":"GetStickyRowPriorityAsync(int)","GetStickyRowPriorityAsync":"GetStickyRowPriorityAsync(int)","GetUnrealizedCount()":"GetUnrealizedCount()","GetUnrealizedCount":"GetUnrealizedCount()","GetUnrealizedCountAsync()":"GetUnrealizedCountAsync()","GetUnrealizedCountAsync":"GetUnrealizedCountAsync()","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","IsBatchingEnabled":"IsBatchingEnabled","IsExclusivelySticky(int)":"IsExclusivelySticky(int)","IsExclusivelySticky":"IsExclusivelySticky(int)","IsExclusivelyStickyAsync(int)":"IsExclusivelyStickyAsync(int)","IsExclusivelyStickyAsync":"IsExclusivelyStickyAsync(int)","IsPlaceholderItem(int)":"IsPlaceholderItem(int)","IsPlaceholderItem":"IsPlaceholderItem(int)","IsPlaceholderItemAsync(int)":"IsPlaceholderItemAsync(int)","IsPlaceholderItemAsync":"IsPlaceholderItemAsync(int)","IsRowPinned(int)":"IsRowPinned(int)","IsRowPinned":"IsRowPinned(int)","IsRowPinnedAsync(int)":"IsRowPinnedAsync(int)","IsRowPinnedAsync":"IsRowPinnedAsync(int)","IsSectionCollapsable":"IsSectionCollapsable","IsSectionExpandedDefault":"IsSectionExpandedDefault","MaxCachedPages":"MaxCachedPages","PageSizeRequested":"PageSizeRequested","PinRow(object[])":"PinRow(object[])","PinRow":"PinRow(object[])","PinRowAsync(object[])":"PinRowAsync(object[])","PinRowAsync":"PinRowAsync(object[])","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","SetIsRowExpandedAtIndex(int, bool)":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndex":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndexAsync(int, bool)":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndexAsync":"SetIsRowExpandedAtIndexAsync(int, bool)","TransformPage(int)":"TransformPage(int)","TransformPage":"TransformPage(int)","TransformPageAsync(int)":"TransformPageAsync(int)","TransformPageAsync":"TransformPageAsync(int)","Type":"Type","UnpinRow(object[])":"UnpinRow(object[])","UnpinRow":"UnpinRow(object[])","UnpinRowAsync(object[])":"UnpinRowAsync(object[])","UnpinRowAsync":"UnpinRowAsync(object[])","UpdatePropertyAtKey(object[], string, object, bool)":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKeyAsync(object[], string, object, bool)":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object, bool)"}}],"IgbVoidEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbVoidEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbVoidEventArgs()":"IgbVoidEventArgs()","IgbVoidEventArgs":"IgbVoidEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgbVoidEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbVoidEventArgs()":"IgbVoidEventArgs()","IgbVoidEventArgs":"IgbVoidEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbWaterfallSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWaterfallSeries","k":"class","s":"classes","m":{"BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","ValueMemberPath":"ValueMemberPath","HighlightedValueMemberPath":"HighlightedValueMemberPath","ValueMemberAsLegendLabel":"ValueMemberAsLegendLabel","ValueMemberAsLegendUnit":"ValueMemberAsLegendUnit","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","MarkerCollisionAvoidance":"MarkerCollisionAvoidance","ConsolidatedItemHitTestBehavior":"ConsolidatedItemHitTestBehavior","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","IsCustomCategoryMarkerStyleAllowed":"IsCustomCategoryMarkerStyleAllowed","CategoryCollisionMode":"CategoryCollisionMode","UseHighMarkerFidelity":"UseHighMarkerFidelity","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","AssigningCategoryMarkerStyleScript":"AssigningCategoryMarkerStyleScript","AssigningCategoryMarkerStyle":"AssigningCategoryMarkerStyle","MarkerType":"MarkerType","ActualMarkerType":"ActualMarkerType","IsCustomMarkerCircular":"IsCustomMarkerCircular","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerTemplate":"MarkerTemplate","MarkerTemplateScript":"MarkerTemplateScript","MarkerThickness":"MarkerThickness","ActualMarkerTemplate":"ActualMarkerTemplate","ActualMarkerTemplateScript":"ActualMarkerTemplateScript","MarkerBrush":"MarkerBrush","ActualMarkerBrush":"ActualMarkerBrush","MarkerOutline":"MarkerOutline","ActualMarkerOutline":"ActualMarkerOutline","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWaterfallSeries()":"IgbWaterfallSeries()","IgbWaterfallSeries":"IgbWaterfallSeries()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","NegativeBrush":"NegativeBrush","NegativeOutline":"NegativeOutline","RadiusX":"RadiusX","RadiusY":"RadiusY","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","Type":"Type"}}],"IgbWaterfallSeriesModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWaterfallSeriesModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWaterfallSeriesModule()":"IgbWaterfallSeriesModule()","IgbWaterfallSeriesModule":"IgbWaterfallSeriesModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbWeightedCloseIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWeightedCloseIndicator","k":"class","s":"classes","m":{"ResolveIsItemwiseAsync()":"ResolveIsItemwiseAsync()","ResolveIsItemwiseAsync":"ResolveIsItemwiseAsync()","ResolveIsItemwise()":"ResolveIsItemwise()","ResolveIsItemwise":"ResolveIsItemwise()","GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWeightedCloseIndicator()":"IgbWeightedCloseIndicator()","IgbWeightedCloseIndicator":"IgbWeightedCloseIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Type":"Type"}}],"IgbWeightedCloseIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWeightedCloseIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWeightedCloseIndicatorModule()":"IgbWeightedCloseIndicatorModule()","IgbWeightedCloseIndicatorModule":"IgbWeightedCloseIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbWilliamsPercentRIndicator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWilliamsPercentRIndicator","k":"class","s":"classes","m":{"GetSeriesValueBoundingBoxAsync(Point)":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBoxAsync":"GetSeriesValueBoundingBoxAsync(Point)","GetSeriesValueBoundingBox(Point)":"GetSeriesValueBoundingBox(Point)","GetSeriesValueBoundingBox":"GetSeriesValueBoundingBox(Point)","GetSeriesValueAsync(Point, bool, bool)":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValueAsync":"GetSeriesValueAsync(Point, bool, bool)","GetSeriesValue(Point, bool, bool)":"GetSeriesValue(Point, bool, bool)","GetSeriesValue":"GetSeriesValue(Point, bool, bool)","GetPreviousOrExactIndexAsync(Point, bool)":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndexAsync":"GetPreviousOrExactIndexAsync(Point, bool)","GetPreviousOrExactIndex(Point, bool)":"GetPreviousOrExactIndex(Point, bool)","GetPreviousOrExactIndex":"GetPreviousOrExactIndex(Point, bool)","GetNextOrExactIndexAsync(Point, bool)":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndexAsync":"GetNextOrExactIndexAsync(Point, bool)","GetNextOrExactIndex(Point, bool)":"GetNextOrExactIndex(Point, bool)","GetNextOrExactIndex":"GetNextOrExactIndex(Point, bool)","ScrollIntoViewAsync(object)":"ScrollIntoViewAsync(object)","ScrollIntoViewAsync":"ScrollIntoViewAsync(object)","ScrollIntoView(object)":"ScrollIntoView(object)","ScrollIntoView":"ScrollIntoView(object)","DisplayType":"DisplayType","IgnoreFirst":"IgnoreFirst","TrendLineType":"TrendLineType","TrendLineBrush":"TrendLineBrush","ActualTrendLineBrush":"ActualTrendLineBrush","TrendLineThickness":"TrendLineThickness","TrendLineDashArray":"TrendLineDashArray","TrendLinePeriod":"TrendLinePeriod","BindAxes(IgbAxis[])":"BindAxes(IgbAxis[])","BindAxes":"BindAxes(IgbAxis[])","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetMemberPathValueAsync(string)":"GetMemberPathValueAsync(string)","GetMemberPathValueAsync":"GetMemberPathValueAsync(string)","GetMemberPathValue(string)":"GetMemberPathValue(string)","GetMemberPathValue":"GetMemberPathValue(string)","GetOffsetValueAsync()":"GetOffsetValueAsync()","GetOffsetValueAsync":"GetOffsetValueAsync()","GetOffsetValue()":"GetOffsetValue()","GetOffsetValue":"GetOffsetValue()","GetCategoryWidthAsync()":"GetCategoryWidthAsync()","GetCategoryWidthAsync":"GetCategoryWidthAsync()","GetCategoryWidth()":"GetCategoryWidth()","GetCategoryWidth":"GetCategoryWidth()","GetSeriesValuePositionAsync(Point, bool, bool)":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePositionAsync":"GetSeriesValuePositionAsync(Point, bool, bool)","GetSeriesValuePosition(Point, bool, bool)":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesValuePosition":"GetSeriesValuePosition(Point, bool, bool)","GetSeriesHighValueAsync(Point, bool, bool)":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValueAsync":"GetSeriesHighValueAsync(Point, bool, bool)","GetSeriesHighValue(Point, bool, bool)":"GetSeriesHighValue(Point, bool, bool)","GetSeriesHighValue":"GetSeriesHighValue(Point, bool, bool)","GetSeriesLowValueAsync(Point, bool, bool)":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValueAsync":"GetSeriesLowValueAsync(Point, bool, bool)","GetSeriesLowValue(Point, bool, bool)":"GetSeriesLowValue(Point, bool, bool)","GetSeriesLowValue":"GetSeriesLowValue(Point, bool, bool)","GetSeriesCloseValueAsync(Point, bool, bool)":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValueAsync":"GetSeriesCloseValueAsync(Point, bool, bool)","GetSeriesCloseValue(Point, bool, bool)":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesCloseValue":"GetSeriesCloseValue(Point, bool, bool)","GetSeriesOpenValueAsync(Point, bool, bool)":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValueAsync":"GetSeriesOpenValueAsync(Point, bool, bool)","GetSeriesOpenValue(Point, bool, bool)":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesOpenValue":"GetSeriesOpenValue(Point, bool, bool)","GetSeriesVolumeValueAsync(Point, bool, bool)":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValueAsync":"GetSeriesVolumeValueAsync(Point, bool, bool)","GetSeriesVolumeValue(Point, bool, bool)":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesVolumeValue":"GetSeriesVolumeValue(Point, bool, bool)","GetSeriesHighValuePositionAsync(Point, bool, bool)":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePositionAsync":"GetSeriesHighValuePositionAsync(Point, bool, bool)","GetSeriesHighValuePosition(Point, bool, bool)":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesHighValuePosition":"GetSeriesHighValuePosition(Point, bool, bool)","GetSeriesLowValuePositionAsync(Point, bool, bool)":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePositionAsync":"GetSeriesLowValuePositionAsync(Point, bool, bool)","GetSeriesLowValuePosition(Point, bool, bool)":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesLowValuePosition":"GetSeriesLowValuePosition(Point, bool, bool)","GetSeriesOpenValuePositionAsync(Point, bool, bool)":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePositionAsync":"GetSeriesOpenValuePositionAsync(Point, bool, bool)","GetSeriesOpenValuePosition(Point, bool, bool)":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesOpenValuePosition":"GetSeriesOpenValuePosition(Point, bool, bool)","GetSeriesCloseValuePositionAsync(Point, bool, bool)":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePositionAsync":"GetSeriesCloseValuePositionAsync(Point, bool, bool)","GetSeriesCloseValuePosition(Point, bool, bool)":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesCloseValuePosition":"GetSeriesCloseValuePosition(Point, bool, bool)","GetSeriesVolumeValuePositionAsync(Point, bool, bool)":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePositionAsync":"GetSeriesVolumeValuePositionAsync(Point, bool, bool)","GetSeriesVolumeValuePosition(Point, bool, bool)":"GetSeriesVolumeValuePosition(Point, bool, bool)","GetSeriesVolumeValuePosition":"GetSeriesVolumeValuePosition(Point, bool, bool)","CanUseAsYAxisAsync(object)":"CanUseAsYAxisAsync(object)","CanUseAsYAxisAsync":"CanUseAsYAxisAsync(object)","CanUseAsYAxis(object)":"CanUseAsYAxis(object)","CanUseAsYAxis":"CanUseAsYAxis(object)","CanUseAsXAxisAsync(object)":"CanUseAsXAxisAsync(object)","CanUseAsXAxisAsync":"CanUseAsXAxisAsync(object)","CanUseAsXAxis(object)":"CanUseAsXAxis(object)","CanUseAsXAxis":"CanUseAsXAxis(object)","GetExactItemIndexAsync(Point)":"GetExactItemIndexAsync(Point)","GetExactItemIndexAsync":"GetExactItemIndexAsync(Point)","GetExactItemIndex(Point)":"GetExactItemIndex(Point)","GetExactItemIndex":"GetExactItemIndex(Point)","GetItemIndexAsync(Point)":"GetItemIndexAsync(Point)","GetItemIndexAsync":"GetItemIndexAsync(Point)","GetItemIndex(Point)":"GetItemIndex(Point)","GetItemIndex":"GetItemIndex(Point)","GetItemAsync(Point)":"GetItemAsync(Point)","GetItemAsync":"GetItemAsync(Point)","GetItem(Point)":"GetItem(Point)","GetItem":"GetItem(Point)","SetNegativeColorsAsync(string, string)":"SetNegativeColorsAsync(string, string)","SetNegativeColorsAsync":"SetNegativeColorsAsync(string, string)","SetNegativeColors(string, string)":"SetNegativeColors(string, string)","SetNegativeColors":"SetNegativeColors(string, string)","NegativeBrush":"NegativeBrush","XAxis":"XAxis","XAxisScript":"XAxisScript","XAxisName":"XAxisName","YAxis":"YAxis","YAxisScript":"YAxisScript","YAxisName":"YAxisName","OpenMemberPath":"OpenMemberPath","HighMemberPath":"HighMemberPath","LowMemberPath":"LowMemberPath","CloseMemberPath":"CloseMemberPath","VolumeMemberPath":"VolumeMemberPath","HighlightedOpenMemberPath":"HighlightedOpenMemberPath","HighlightedHighMemberPath":"HighlightedHighMemberPath","HighlightedLowMemberPath":"HighlightedLowMemberPath","HighlightedCloseMemberPath":"HighlightedCloseMemberPath","HighlightedVolumeMemberPath":"HighlightedVolumeMemberPath","IsCustomCategoryStyleAllowed":"IsCustomCategoryStyleAllowed","TransitionInMode":"TransitionInMode","IsTransitionInEnabled":"IsTransitionInEnabled","AssigningCategoryStyleScript":"AssigningCategoryStyleScript","AssigningCategoryStyle":"AssigningCategoryStyle","TypicalScript":"TypicalScript","Typical":"Typical","TypicalBasedOnScript":"TypicalBasedOnScript","TypicalBasedOn":"TypicalBasedOn","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","BindSeries(IgbSeries[])":"BindSeries(IgbSeries[])","BindSeries":"BindSeries(IgbSeries[])","ResolveTooltipBrushAsync()":"ResolveTooltipBrushAsync()","ResolveTooltipBrushAsync":"ResolveTooltipBrushAsync()","ResolveTooltipBrush()":"ResolveTooltipBrush()","ResolveTooltipBrush":"ResolveTooltipBrush()","GetSeriesValueMarkerBoundingBoxAsync(Point)":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBoxAsync":"GetSeriesValueMarkerBoundingBoxAsync(Point)","GetSeriesValueMarkerBoundingBox(Point)":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValueMarkerBoundingBox":"GetSeriesValueMarkerBoundingBox(Point)","GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixelAsync":"GetSeriesValuePositionFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValuePositionFromSeriesPixel":"GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixelAsync":"GetSeriesValueFromSeriesPixelAsync(Point, bool, bool)","GetSeriesValueFromSeriesPixel(Point, bool, bool)":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetSeriesValueFromSeriesPixel":"GetSeriesValueFromSeriesPixel(Point, bool, bool)","GetItemSpanAsync()":"GetItemSpanAsync()","GetItemSpanAsync":"GetItemSpanAsync()","GetItemSpan()":"GetItemSpan()","GetItemSpan":"GetItemSpan()","GetSeriesValueTypeAsync(ValueLayerValueMode)":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueTypeAsync":"GetSeriesValueTypeAsync(ValueLayerValueMode)","GetSeriesValueType(ValueLayerValueMode)":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueType":"GetSeriesValueType(ValueLayerValueMode)","GetSeriesValueTypePositionAsync(ValueLayerValueMode)":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePositionAsync":"GetSeriesValueTypePositionAsync(ValueLayerValueMode)","GetSeriesValueTypePosition(ValueLayerValueMode)":"GetSeriesValueTypePosition(ValueLayerValueMode)","GetSeriesValueTypePosition":"GetSeriesValueTypePosition(ValueLayerValueMode)","HideToolTipsAsync()":"HideToolTipsAsync()","HideToolTipsAsync":"HideToolTipsAsync()","HideToolTips()":"HideToolTips()","HideToolTips":"HideToolTips()","HideToolTipsImmediateAsync()":"HideToolTipsImmediateAsync()","HideToolTipsImmediateAsync":"HideToolTipsImmediateAsync()","HideToolTipsImmediate()":"HideToolTipsImmediate()","HideToolTipsImmediate":"HideToolTipsImmediate()","ToWorldPositionAsync(Point)":"ToWorldPositionAsync(Point)","ToWorldPositionAsync":"ToWorldPositionAsync(Point)","ToWorldPosition(Point)":"ToWorldPosition(Point)","ToWorldPosition":"ToWorldPosition(Point)","ToWorldRectAsync(Rect)":"ToWorldRectAsync(Rect)","ToWorldRectAsync":"ToWorldRectAsync(Rect)","ToWorldRect(Rect)":"ToWorldRect(Rect)","ToWorldRect":"ToWorldRect(Rect)","FromWorldPositionAsync(Point)":"FromWorldPositionAsync(Point)","FromWorldPositionAsync":"FromWorldPositionAsync(Point)","FromWorldPosition(Point)":"FromWorldPosition(Point)","FromWorldPosition":"FromWorldPosition(Point)","RenderSeriesAsync(bool)":"RenderSeriesAsync(bool)","RenderSeriesAsync":"RenderSeriesAsync(bool)","RenderSeries(bool)":"RenderSeries(bool)","RenderSeries":"RenderSeries(bool)","GetMainContentViewportAsync()":"GetMainContentViewportAsync()","GetMainContentViewportAsync":"GetMainContentViewportAsync()","GetMainContentViewport()":"GetMainContentViewport()","GetMainContentViewport":"GetMainContentViewport()","GetEffectiveViewportAsync()":"GetEffectiveViewportAsync()","GetEffectiveViewportAsync":"GetEffectiveViewportAsync()","GetEffectiveViewport()":"GetEffectiveViewport()","GetEffectiveViewport":"GetEffectiveViewport()","RemoveAllAlternateViewsAsync()":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViewsAsync":"RemoveAllAlternateViewsAsync()","RemoveAllAlternateViews()":"RemoveAllAlternateViews()","RemoveAllAlternateViews":"RemoveAllAlternateViews()","RemoveAlternateViewAsync(string)":"RemoveAlternateViewAsync(string)","RemoveAlternateViewAsync":"RemoveAlternateViewAsync(string)","RemoveAlternateView(string)":"RemoveAlternateView(string)","RemoveAlternateView":"RemoveAlternateView(string)","NotifyIndexedPropertiesChangedAsync()":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChangedAsync":"NotifyIndexedPropertiesChangedAsync()","NotifyIndexedPropertiesChanged()":"NotifyIndexedPropertiesChanged()","NotifyIndexedPropertiesChanged":"NotifyIndexedPropertiesChanged()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","PlayTransitionOutAsync()":"PlayTransitionOutAsync()","PlayTransitionOutAsync":"PlayTransitionOutAsync()","PlayTransitionOut()":"PlayTransitionOut()","PlayTransitionOut":"PlayTransitionOut()","PlayTransitionInAsync()":"PlayTransitionInAsync()","PlayTransitionInAsync":"PlayTransitionInAsync()","PlayTransitionIn()":"PlayTransitionIn()","PlayTransitionIn":"PlayTransitionIn()","PlayTransitionOutAndRemoveAsync()":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemoveAsync":"PlayTransitionOutAndRemoveAsync()","PlayTransitionOutAndRemove()":"PlayTransitionOutAndRemove()","PlayTransitionOutAndRemove":"PlayTransitionOutAndRemove()","RemoveAxesAsync()":"RemoveAxesAsync()","RemoveAxesAsync":"RemoveAxesAsync()","RemoveAxes()":"RemoveAxes()","RemoveAxes":"RemoveAxes()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","StyleUpdatedAsync()":"StyleUpdatedAsync()","StyleUpdatedAsync":"StyleUpdatedAsync()","StyleUpdated()":"StyleUpdated()","StyleUpdated":"StyleUpdated()","MoveCursorPointAsync(Point)":"MoveCursorPointAsync(Point)","MoveCursorPointAsync":"MoveCursorPointAsync(Point)","MoveCursorPoint(Point)":"MoveCursorPoint(Point)","MoveCursorPoint":"MoveCursorPoint(Point)","GetUnscaledPositionAsync(Point)":"GetUnscaledPositionAsync(Point)","GetUnscaledPositionAsync":"GetUnscaledPositionAsync(Point)","GetUnscaledPosition(Point)":"GetUnscaledPosition(Point)","GetUnscaledPosition":"GetUnscaledPosition(Point)","SeriesViewerParent":"SeriesViewerParent","Title":"Title","TooltipTemplate":"TooltipTemplate","DataLegendGroup":"DataLegendGroup","HighlightedValuesDataLegendGroup":"HighlightedValuesDataLegendGroup","HighlightedValuesExtraPropertyOverlays":"HighlightedValuesExtraPropertyOverlays","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","Legend":"Legend","LegendScript":"LegendScript","LegendItemVisibility":"LegendItemVisibility","LegendItemBadgeTemplate":"LegendItemBadgeTemplate","LegendItemBadgeTemplateScript":"LegendItemBadgeTemplateScript","ActualLegendItemBadgeTemplate":"ActualLegendItemBadgeTemplate","ActualLegendItemBadgeTemplateScript":"ActualLegendItemBadgeTemplateScript","ActualLegendItemBadgeOutline":"ActualLegendItemBadgeOutline","ActualLegendItemBadgeBrush":"ActualLegendItemBadgeBrush","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","LegendItemTemplate":"LegendItemTemplate","LegendItemTemplateScript":"LegendItemTemplateScript","DiscreteLegendItemTemplate":"DiscreteLegendItemTemplate","DiscreteLegendItemTemplateScript":"DiscreteLegendItemTemplateScript","Index":"Index","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","TransitionInEasingFunction":"TransitionInEasingFunction","TransitionInEasingFunctionScript":"TransitionInEasingFunctionScript","TransitionOutEasingFunction":"TransitionOutEasingFunction","TransitionOutEasingFunctionScript":"TransitionOutEasingFunctionScript","TransitionDuration":"TransitionDuration","ActualResolution":"ActualResolution","Resolution":"Resolution","VisibleRangeMarginTop":"VisibleRangeMarginTop","VisibleRangeMarginBottom":"VisibleRangeMarginBottom","VisibleRangeMarginLeft":"VisibleRangeMarginLeft","VisibleRangeMarginRight":"VisibleRangeMarginRight","HighlightedTitleSuffix":"HighlightedTitleSuffix","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","Brush":"Brush","ActualBrush":"ActualBrush","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","ActualSelectionBrush":"ActualSelectionBrush","ActualFocusBrush":"ActualFocusBrush","SafeActualBrush":"SafeActualBrush","Outline":"Outline","ActualOutline":"ActualOutline","LineJoin":"LineJoin","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","ShouldAnimateOnDataSourceSwap":"ShouldAnimateOnDataSourceSwap","Thickness":"Thickness","ActualThickness":"ActualThickness","DashArray":"DashArray","SelectionThickness":"SelectionThickness","ActualHighlightingMode":"ActualHighlightingMode","ActualSelectionMode":"ActualSelectionMode","ActualFocusMode":"ActualFocusMode","ActualHighlightedValuesFadeOpacity":"ActualHighlightedValuesFadeOpacity","HighlightedValuesFadeOpacity":"HighlightedValuesFadeOpacity","ActualHighlightingFadeOpacity":"ActualHighlightingFadeOpacity","HighlightingFadeOpacity":"HighlightingFadeOpacity","IsActualLegendFinancial":"IsActualLegendFinancial","IsComponentHighlightingModeIgnored":"IsComponentHighlightingModeIgnored","IsHighlightingEnabled":"IsHighlightingEnabled","UseItemWiseColors":"UseItemWiseColors","ShouldShiftOpacityForSafeActualBrush":"ShouldShiftOpacityForSafeActualBrush","ShouldRemoveHighlightedDataOnLayerHidden":"ShouldRemoveHighlightedDataOnLayerHidden","ShouldHideAutoCallouts":"ShouldHideAutoCallouts","IsDropShadowEnabled":"IsDropShadowEnabled","ShadowBlur":"ShadowBlur","ShadowColor":"ShadowColor","UseSingleShadow":"UseSingleShadow","ShadowOffsetX":"ShadowOffsetX","ShadowOffsetY":"ShadowOffsetY","AreaFillOpacity":"AreaFillOpacity","ActualAreaFillOpacity":"ActualAreaFillOpacity","MarkerFillOpacity":"MarkerFillOpacity","ActualMarkerFillOpacity":"ActualMarkerFillOpacity","IsDefaultToolTipSelected":"IsDefaultToolTipSelected","ShowDefaultTooltip":"ShowDefaultTooltip","AttachTooltipToRoot":"AttachTooltipToRoot","VisibleRangeMode":"VisibleRangeMode","OutlineMode":"OutlineMode","TransitionInDuration":"TransitionInDuration","TransitionOutDuration":"TransitionOutDuration","TransitionInSpeedType":"TransitionInSpeedType","TransitionOutSpeedType":"TransitionOutSpeedType","LineCap":"LineCap","AutoCalloutLabelFormat":"AutoCalloutLabelFormat","AutoCalloutLabelFormatSpecifiers":"AutoCalloutLabelFormatSpecifiers","AutoCalloutValueLabelFormat":"AutoCalloutValueLabelFormat","AutoCalloutValueLabelFormatSpecifiers":"AutoCalloutValueLabelFormatSpecifiers","MouseOverEnabled":"MouseOverEnabled","CoercionMethods":"CoercionMethods","CoercionMethodsScript":"CoercionMethodsScript","ExpectFunctions":"ExpectFunctions","HitTestMode":"HitTestMode","ActualHitTestMode":"ActualHitTestMode","FinalValue":"FinalValue","PercentChange":"PercentChange","Layers":"Layers","ActualLayers":"ActualLayers","Opacity":"Opacity","Visibility":"Visibility","TransitionOutCompletedScript":"TransitionOutCompletedScript","TransitionOutCompleted":"TransitionOutCompleted","RenderRequestedScript":"RenderRequestedScript","RenderRequested":"RenderRequested","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWilliamsPercentRIndicator()":"IgbWilliamsPercentRIndicator()","IgbWilliamsPercentRIndicator":"IgbWilliamsPercentRIndicator()","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Period":"Period","Type":"Type"}}],"IgbWilliamsPercentRIndicatorModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWilliamsPercentRIndicatorModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWilliamsPercentRIndicatorModule()":"IgbWilliamsPercentRIndicatorModule()","IgbWilliamsPercentRIndicatorModule":"IgbWilliamsPercentRIndicatorModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbWrapperExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbWrapperExpression","k":"class","s":"classes","m":{"Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbWrapperExpression()":"IgbWrapperExpression()","IgbWrapperExpression":"IgbWrapperExpression()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","Expression":"Expression","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","InnerExpression":"InnerExpression","IsWrapper":"IsWrapper","Precedence":"Precedence","PropertyName":"PropertyName","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbXCalendarLocaleEnModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbXCalendarLocaleEnModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbXCalendarLocaleEnModule()":"IgbXCalendarLocaleEnModule()","IgbXCalendarLocaleEnModule":"IgbXCalendarLocaleEnModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbXDatePicker":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbXDatePicker","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbXDatePicker()":"IgbXDatePicker()","IgbXDatePicker":"IgbXDatePicker()","AllowTextInput":"AllowTextInput","BaseTheme":"BaseTheme","Changing":"Changing","ChangingScript":"ChangingScript","DateFormat":"DateFormat","DefaultEventBehavior":"DefaultEventBehavior","Density":"Density","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ExportSerializedVisualModel()":"ExportSerializedVisualModel()","ExportSerializedVisualModel":"ExportSerializedVisualModel()","ExportSerializedVisualModelAsync()":"ExportSerializedVisualModelAsync()","ExportSerializedVisualModelAsync":"ExportSerializedVisualModelAsync()","ExportVisualModel()":"ExportVisualModel()","ExportVisualModel":"ExportVisualModel()","ExportVisualModelAsync()":"ExportVisualModelAsync()","ExportVisualModelAsync":"ExportVisualModelAsync()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FirstDayOfWeek":"FirstDayOfWeek","FirstWeekOfYear":"FirstWeekOfYear","FormatString":"FormatString","GetCurrentValue()":"GetCurrentValue()","GetCurrentValue":"GetCurrentValue()","GetCurrentValueAsync()":"GetCurrentValueAsync()","GetCurrentValueAsync":"GetCurrentValueAsync()","GotFocus":"GotFocus","GotFocusScript":"GotFocusScript","IconColor":"IconColor","IsDisabled":"IsDisabled","IsFixed":"IsFixed","KeyDown":"KeyDown","KeyDownScript":"KeyDownScript","Label":"Label","LabelFontFamily":"LabelFontFamily","LabelFontSize":"LabelFontSize","LabelFontStyle":"LabelFontStyle","LabelFontWeight":"LabelFontWeight","LabelTextColor":"LabelTextColor","LostFocus":"LostFocus","LostFocusScript":"LostFocusScript","MaxDate":"MaxDate","MinDate":"MinDate","OpenAsChild":"OpenAsChild","OpenOnFocus":"OpenOnFocus","Placeholder":"Placeholder","Select()":"Select()","Select":"Select()","SelectAsync()":"SelectAsync()","SelectAsync":"SelectAsync()","SelectedValueChanged":"SelectedValueChanged","SelectedValueChangedScript":"SelectedValueChangedScript","SetCustomizedStringAsync(string, Dictionary)":"SetCustomizedStringAsync(string, Dictionary)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, Dictionary)","SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","ShowClearButton":"ShowClearButton","ShowTodayButton":"ShowTodayButton","ShowWeekNumbers":"ShowWeekNumbers","TextColor":"TextColor","TextFontFamily":"TextFontFamily","TextFontSize":"TextFontSize","TextFontStyle":"TextFontStyle","TextFontWeight":"TextFontWeight","Today":"Today","Type":"Type","UseTopLayer":"UseTopLayer","Value":"Value","ValueChanged":"ValueChanged","ValueChangedScript":"ValueChangedScript"}}],"IgbXDatePickerModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbXDatePickerModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbXDatePickerModule()":"IgbXDatePickerModule()","IgbXDatePickerModule":"IgbXDatePickerModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbXYChart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbXYChart","k":"class","s":"classes","m":{"SetCustomizedStringAsync(string, string)":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync":"SetCustomizedStringAsync(string, string)","SetCustomizedStringAsync(string, string, string)":"SetCustomizedStringAsync(string, string, string)","GetCurrentSelectedSeriesItemsAsync()":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItemsAsync":"GetCurrentSelectedSeriesItemsAsync()","GetCurrentSelectedSeriesItems()":"GetCurrentSelectedSeriesItems()","GetCurrentSelectedSeriesItems":"GetCurrentSelectedSeriesItems()","GetCurrentFocusedSeriesItemsAsync()":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItemsAsync":"GetCurrentFocusedSeriesItemsAsync()","GetCurrentFocusedSeriesItems()":"GetCurrentFocusedSeriesItems()","GetCurrentFocusedSeriesItems":"GetCurrentFocusedSeriesItems()","DestroyAsync()":"DestroyAsync()","DestroyAsync":"DestroyAsync()","Destroy()":"Destroy()","Destroy":"Destroy()","SimulateHoverAsync(Point)":"SimulateHoverAsync(Point)","SimulateHoverAsync":"SimulateHoverAsync(Point)","SimulateHover(Point)":"SimulateHover(Point)","SimulateHover":"SimulateHover(Point)","SimulatePressAndHoldAsync(Point)":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHoldAsync":"SimulatePressAndHoldAsync(Point)","SimulatePressAndHold(Point)":"SimulatePressAndHold(Point)","SimulatePressAndHold":"SimulatePressAndHold(Point)","SimulatePlotPointerUpAsync(Point)":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUpAsync":"SimulatePlotPointerUpAsync(Point)","SimulatePlotPointerUp(Point)":"SimulatePlotPointerUp(Point)","SimulatePlotPointerUp":"SimulatePlotPointerUp(Point)","SimulateClickAsync(Point)":"SimulateClickAsync(Point)","SimulateClickAsync":"SimulateClickAsync(Point)","SimulateClick(Point)":"SimulateClick(Point)","SimulateClick":"SimulateClick(Point)","NotifyResizedAsync()":"NotifyResizedAsync()","NotifyResizedAsync":"NotifyResizedAsync()","NotifyResized()":"NotifyResized()","NotifyResized":"NotifyResized()","NotifyVisualPropertiesChangedAsync()":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChangedAsync":"NotifyVisualPropertiesChangedAsync()","NotifyVisualPropertiesChanged()":"NotifyVisualPropertiesChanged()","NotifyVisualPropertiesChanged":"NotifyVisualPropertiesChanged()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Flush()":"Flush()","Flush":"Flush()","HideToolTipAsync()":"HideToolTipAsync()","HideToolTipAsync":"HideToolTipAsync()","HideToolTip()":"HideToolTip()","HideToolTip":"HideToolTip()","ReplayTransitionInAsync()":"ReplayTransitionInAsync()","ReplayTransitionInAsync":"ReplayTransitionInAsync()","ReplayTransitionIn()":"ReplayTransitionIn()","ReplayTransitionIn":"ReplayTransitionIn()","OnDetachAsync()":"OnDetachAsync()","OnDetachAsync":"OnDetachAsync()","OnDetach()":"OnDetach()","OnDetach":"OnDetach()","ExportDomainChartTestingInfoAsync()":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfoAsync":"ExportDomainChartTestingInfoAsync()","ExportDomainChartTestingInfo()":"ExportDomainChartTestingInfo()","ExportDomainChartTestingInfo":"ExportDomainChartTestingInfo()","ZoomInAsync(double)":"ZoomInAsync(double)","ZoomInAsync":"ZoomInAsync(double)","ZoomIn(double)":"ZoomIn(double)","ZoomIn":"ZoomIn(double)","ZoomOutAsync(double)":"ZoomOutAsync(double)","ZoomOutAsync":"ZoomOutAsync(double)","ZoomOut(double)":"ZoomOut(double)","ZoomOut":"ZoomOut(double)","ResetZoomAsync()":"ResetZoomAsync()","ResetZoomAsync":"ResetZoomAsync()","ResetZoom()":"ResetZoom()","ResetZoom":"ResetZoom()","StartCreatingAnnotationAsync()":"StartCreatingAnnotationAsync()","StartCreatingAnnotationAsync":"StartCreatingAnnotationAsync()","StartCreatingAnnotation()":"StartCreatingAnnotation()","StartCreatingAnnotation":"StartCreatingAnnotation()","StartDeletingAnnotationAsync()":"StartDeletingAnnotationAsync()","StartDeletingAnnotationAsync":"StartDeletingAnnotationAsync()","StartDeletingAnnotation()":"StartDeletingAnnotation()","StartDeletingAnnotation":"StartDeletingAnnotation()","ResetAnnotationsAsync()":"ResetAnnotationsAsync()","ResetAnnotationsAsync":"ResetAnnotationsAsync()","ResetAnnotations()":"ResetAnnotations()","ResetAnnotations":"ResetAnnotations()","SaveAnnotationsToJsonAsync()":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJsonAsync":"SaveAnnotationsToJsonAsync()","SaveAnnotationsToJson()":"SaveAnnotationsToJson()","SaveAnnotationsToJson":"SaveAnnotationsToJson()","LoadAnnotationsFromJsonAsync(string)":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJsonAsync":"LoadAnnotationsFromJsonAsync(string)","LoadAnnotationsFromJson(string)":"LoadAnnotationsFromJson(string)","LoadAnnotationsFromJson":"LoadAnnotationsFromJson(string)","CancelAnnotationFlowAsync(string)":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlowAsync":"CancelAnnotationFlowAsync(string)","CancelAnnotationFlow(string)":"CancelAnnotationFlow(string)","CancelAnnotationFlow":"CancelAnnotationFlow(string)","FinishAnnotationFlowAsync(IgbUserAnnotationInformation)":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlowAsync":"FinishAnnotationFlowAsync(IgbUserAnnotationInformation)","FinishAnnotationFlow(IgbUserAnnotationInformation)":"FinishAnnotationFlow(IgbUserAnnotationInformation)","FinishAnnotationFlow":"FinishAnnotationFlow(IgbUserAnnotationInformation)","NotifySeriesDataChangedAsync()":"NotifySeriesDataChangedAsync()","NotifySeriesDataChangedAsync":"NotifySeriesDataChangedAsync()","NotifySeriesDataChanged()":"NotifySeriesDataChanged()","NotifySeriesDataChanged":"NotifySeriesDataChanged()","NotifySetItemAsync(object, int, object, object)":"NotifySetItemAsync(object, int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(object, int, object, object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyClearItemsAsync(object)":"NotifyClearItemsAsync(object)","NotifyClearItemsAsync":"NotifyClearItemsAsync(object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifyInsertItemAsync(object, int, object)":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(object, int, object)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItemAsync(object, int, object)":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","DefaultEventBehavior":"DefaultEventBehavior","PixelScalingRatio":"PixelScalingRatio","TitleLeftMargin":"TitleLeftMargin","TitleRightMargin":"TitleRightMargin","TitleTopMargin":"TitleTopMargin","TitleBottomMargin":"TitleBottomMargin","SubtitleLeftMargin":"SubtitleLeftMargin","SubtitleTopMargin":"SubtitleTopMargin","SubtitleRightMargin":"SubtitleRightMargin","SubtitleBottomMargin":"SubtitleBottomMargin","SubtitleTextColor":"SubtitleTextColor","TitleTextColor":"TitleTextColor","LeftMargin":"LeftMargin","TopMargin":"TopMargin","RightMargin":"RightMargin","BottomMargin":"BottomMargin","TransitionDuration":"TransitionDuration","TransitionEasingFunction":"TransitionEasingFunction","TransitionEasingFunctionScript":"TransitionEasingFunctionScript","HighlightingTransitionDuration":"HighlightingTransitionDuration","SelectionTransitionDuration":"SelectionTransitionDuration","FocusTransitionDuration":"FocusTransitionDuration","SubtitleTextStyle":"SubtitleTextStyle","TitleTextStyle":"TitleTextStyle","DataToolTipGroupingMode":"DataToolTipGroupingMode","DataToolTipPositionOffsetX":"DataToolTipPositionOffsetX","DataToolTipPositionOffsetY":"DataToolTipPositionOffsetY","DataToolTipDefaultPositionOffsetX":"DataToolTipDefaultPositionOffsetX","DataToolTipDefaultPositionOffsetY":"DataToolTipDefaultPositionOffsetY","DataToolTipGroupedPositionModeX":"DataToolTipGroupedPositionModeX","DataToolTipGroupedPositionModeY":"DataToolTipGroupedPositionModeY","DataToolTipShouldUpdateWhenSeriesDataChanges":"DataToolTipShouldUpdateWhenSeriesDataChanges","DataToolTipIncludedSeries":"DataToolTipIncludedSeries","DataToolTipExcludedSeries":"DataToolTipExcludedSeries","DataToolTipIncludedColumns":"DataToolTipIncludedColumns","DataToolTipExcludedColumns":"DataToolTipExcludedColumns","DataToolTipValueFormatAbbreviation":"DataToolTipValueFormatAbbreviation","DataToolTipValueFormatMaxFractions":"DataToolTipValueFormatMaxFractions","DataToolTipValueFormatMinFractions":"DataToolTipValueFormatMinFractions","DataToolTipValueFormatMode":"DataToolTipValueFormatMode","DataToolTipValueFormatCulture":"DataToolTipValueFormatCulture","DataToolTipValueFormatUseGrouping":"DataToolTipValueFormatUseGrouping","DataToolTipValueFormatString":"DataToolTipValueFormatString","DataToolTipValueFormatSpecifiers":"DataToolTipValueFormatSpecifiers","DataToolTipValueRowMarginBottom":"DataToolTipValueRowMarginBottom","DataToolTipValueRowMarginLeft":"DataToolTipValueRowMarginLeft","DataToolTipValueRowMarginRight":"DataToolTipValueRowMarginRight","DataToolTipValueRowMarginTop":"DataToolTipValueRowMarginTop","DataToolTipValueRowVisible":"DataToolTipValueRowVisible","DataToolTipValueTextWhenMissingData":"DataToolTipValueTextWhenMissingData","DataToolTipValueTextUseSeriesColors":"DataToolTipValueTextUseSeriesColors","DataToolTipValueTextMarginBottom":"DataToolTipValueTextMarginBottom","DataToolTipValueTextMarginLeft":"DataToolTipValueTextMarginLeft","DataToolTipValueTextMarginRight":"DataToolTipValueTextMarginRight","DataToolTipValueTextMarginTop":"DataToolTipValueTextMarginTop","DataToolTipValueTextColor":"DataToolTipValueTextColor","DataToolTipValueTextFontFamily":"DataToolTipValueTextFontFamily","DataToolTipValueTextFontSize":"DataToolTipValueTextFontSize","DataToolTipValueTextFontStyle":"DataToolTipValueTextFontStyle","DataToolTipValueTextFontWeight":"DataToolTipValueTextFontWeight","DataToolTipHeaderFormatString":"DataToolTipHeaderFormatString","DataToolTipHeaderFormatSpecifiers":"DataToolTipHeaderFormatSpecifiers","DataToolTipHeaderFormatCulture":"DataToolTipHeaderFormatCulture","DataToolTipHeaderFormatDate":"DataToolTipHeaderFormatDate","DataToolTipHeaderFormatTime":"DataToolTipHeaderFormatTime","DataToolTipHeaderText":"DataToolTipHeaderText","DataToolTipHeaderTextColor":"DataToolTipHeaderTextColor","DataToolTipHeaderTextMarginBottom":"DataToolTipHeaderTextMarginBottom","DataToolTipHeaderTextMarginLeft":"DataToolTipHeaderTextMarginLeft","DataToolTipHeaderTextMarginRight":"DataToolTipHeaderTextMarginRight","DataToolTipHeaderTextMarginTop":"DataToolTipHeaderTextMarginTop","DataToolTipHeaderRowMarginBottom":"DataToolTipHeaderRowMarginBottom","DataToolTipHeaderRowMarginLeft":"DataToolTipHeaderRowMarginLeft","DataToolTipHeaderRowMarginRight":"DataToolTipHeaderRowMarginRight","DataToolTipHeaderRowMarginTop":"DataToolTipHeaderRowMarginTop","DataToolTipHeaderRowVisible":"DataToolTipHeaderRowVisible","DataToolTipHeaderTextFontFamily":"DataToolTipHeaderTextFontFamily","DataToolTipHeaderTextFontSize":"DataToolTipHeaderTextFontSize","DataToolTipHeaderTextFontStyle":"DataToolTipHeaderTextFontStyle","DataToolTipHeaderTextFontWeight":"DataToolTipHeaderTextFontWeight","DataToolTipGroupTextColor":"DataToolTipGroupTextColor","DataToolTipGroupTextMarginBottom":"DataToolTipGroupTextMarginBottom","DataToolTipGroupTextMarginLeft":"DataToolTipGroupTextMarginLeft","DataToolTipGroupTextMarginRight":"DataToolTipGroupTextMarginRight","DataToolTipGroupTextMarginTop":"DataToolTipGroupTextMarginTop","DataToolTipGroupRowMarginBottom":"DataToolTipGroupRowMarginBottom","DataToolTipGroupRowMarginLeft":"DataToolTipGroupRowMarginLeft","DataToolTipGroupRowMarginRight":"DataToolTipGroupRowMarginRight","DataToolTipGroupRowMarginTop":"DataToolTipGroupRowMarginTop","DataToolTipGroupRowVisible":"DataToolTipGroupRowVisible","DataToolTipGroupTextFontFamily":"DataToolTipGroupTextFontFamily","DataToolTipGroupTextFontSize":"DataToolTipGroupTextFontSize","DataToolTipGroupTextFontStyle":"DataToolTipGroupTextFontStyle","DataToolTipGroupTextFontWeight":"DataToolTipGroupTextFontWeight","DataToolTipSummaryTitleTextColor":"DataToolTipSummaryTitleTextColor","DataToolTipSummaryTitleTextFontFamily":"DataToolTipSummaryTitleTextFontFamily","DataToolTipSummaryTitleTextFontSize":"DataToolTipSummaryTitleTextFontSize","DataToolTipSummaryTitleTextFontStyle":"DataToolTipSummaryTitleTextFontStyle","DataToolTipSummaryTitleTextFontWeight":"DataToolTipSummaryTitleTextFontWeight","DataToolTipSummaryType":"DataToolTipSummaryType","DataToolTipSummaryTitleText":"DataToolTipSummaryTitleText","DataToolTipSummaryTitleTextMarginBottom":"DataToolTipSummaryTitleTextMarginBottom","DataToolTipSummaryTitleTextMarginLeft":"DataToolTipSummaryTitleTextMarginLeft","DataToolTipSummaryTitleTextMarginRight":"DataToolTipSummaryTitleTextMarginRight","DataToolTipSummaryTitleTextMarginTop":"DataToolTipSummaryTitleTextMarginTop","DataToolTipSummaryRowMarginBottom":"DataToolTipSummaryRowMarginBottom","DataToolTipSummaryRowMarginLeft":"DataToolTipSummaryRowMarginLeft","DataToolTipSummaryRowMarginRight":"DataToolTipSummaryRowMarginRight","DataToolTipSummaryRowMarginTop":"DataToolTipSummaryRowMarginTop","DataToolTipSummaryValueTextColor":"DataToolTipSummaryValueTextColor","DataToolTipSummaryValueTextFontFamily":"DataToolTipSummaryValueTextFontFamily","DataToolTipSummaryValueTextFontSize":"DataToolTipSummaryValueTextFontSize","DataToolTipSummaryValueTextFontStyle":"DataToolTipSummaryValueTextFontStyle","DataToolTipSummaryValueTextFontWeight":"DataToolTipSummaryValueTextFontWeight","DataToolTipSummaryLabelText":"DataToolTipSummaryLabelText","DataToolTipSummaryLabelTextColor":"DataToolTipSummaryLabelTextColor","DataToolTipSummaryLabelTextFontFamily":"DataToolTipSummaryLabelTextFontFamily","DataToolTipSummaryLabelTextFontSize":"DataToolTipSummaryLabelTextFontSize","DataToolTipSummaryLabelTextFontStyle":"DataToolTipSummaryLabelTextFontStyle","DataToolTipSummaryLabelTextFontWeight":"DataToolTipSummaryLabelTextFontWeight","DataToolTipSummaryUnitsText":"DataToolTipSummaryUnitsText","DataToolTipSummaryUnitsTextColor":"DataToolTipSummaryUnitsTextColor","DataToolTipSummaryUnitsTextFontFamily":"DataToolTipSummaryUnitsTextFontFamily","DataToolTipSummaryUnitsTextFontSize":"DataToolTipSummaryUnitsTextFontSize","DataToolTipSummaryUnitsTextFontStyle":"DataToolTipSummaryUnitsTextFontStyle","DataToolTipSummaryUnitsTextFontWeight":"DataToolTipSummaryUnitsTextFontWeight","DataToolTipBadgeMarginBottom":"DataToolTipBadgeMarginBottom","DataToolTipBadgeMarginLeft":"DataToolTipBadgeMarginLeft","DataToolTipBadgeMarginRight":"DataToolTipBadgeMarginRight","DataToolTipBadgeMarginTop":"DataToolTipBadgeMarginTop","DataToolTipBadgeShape":"DataToolTipBadgeShape","DataToolTipUnitsDisplayMode":"DataToolTipUnitsDisplayMode","DataToolTipUnitsText":"DataToolTipUnitsText","DataToolTipUnitsTextColor":"DataToolTipUnitsTextColor","DataToolTipUnitsTextMarginBottom":"DataToolTipUnitsTextMarginBottom","DataToolTipUnitsTextMarginLeft":"DataToolTipUnitsTextMarginLeft","DataToolTipUnitsTextMarginRight":"DataToolTipUnitsTextMarginRight","DataToolTipUnitsTextMarginTop":"DataToolTipUnitsTextMarginTop","DataToolTipUnitsTextFontFamily":"DataToolTipUnitsTextFontFamily","DataToolTipUnitsTextFontSize":"DataToolTipUnitsTextFontSize","DataToolTipUnitsTextFontStyle":"DataToolTipUnitsTextFontStyle","DataToolTipUnitsTextFontWeight":"DataToolTipUnitsTextFontWeight","DataToolTipTitleTextMarginBottom":"DataToolTipTitleTextMarginBottom","DataToolTipTitleTextMarginLeft":"DataToolTipTitleTextMarginLeft","DataToolTipTitleTextMarginRight":"DataToolTipTitleTextMarginRight","DataToolTipTitleTextMarginTop":"DataToolTipTitleTextMarginTop","DataToolTipTitleTextColor":"DataToolTipTitleTextColor","DataToolTipTitleTextFontFamily":"DataToolTipTitleTextFontFamily","DataToolTipTitleTextFontSize":"DataToolTipTitleTextFontSize","DataToolTipTitleTextFontStyle":"DataToolTipTitleTextFontStyle","DataToolTipTitleTextFontWeight":"DataToolTipTitleTextFontWeight","DataToolTipLabelDisplayMode":"DataToolTipLabelDisplayMode","DataToolTipLabelTextColor":"DataToolTipLabelTextColor","DataToolTipLabelTextMarginBottom":"DataToolTipLabelTextMarginBottom","DataToolTipLabelTextMarginLeft":"DataToolTipLabelTextMarginLeft","DataToolTipLabelTextMarginRight":"DataToolTipLabelTextMarginRight","DataToolTipLabelTextMarginTop":"DataToolTipLabelTextMarginTop","DataToolTipLabelTextFontFamily":"DataToolTipLabelTextFontFamily","DataToolTipLabelTextFontSize":"DataToolTipLabelTextFontSize","DataToolTipLabelTextFontStyle":"DataToolTipLabelTextFontStyle","DataToolTipLabelTextFontWeight":"DataToolTipLabelTextFontWeight","SortDescriptions":"SortDescriptions","GroupSortDescriptions":"GroupSortDescriptions","GroupDescriptions":"GroupDescriptions","FilterExpressions":"FilterExpressions","HighlightFilterExpressions":"HighlightFilterExpressions","SummaryDescriptions":"SummaryDescriptions","SelectionMode":"SelectionMode","FocusMode":"FocusMode","SelectionBrush":"SelectionBrush","FocusBrush":"FocusBrush","SelectionBehavior":"SelectionBehavior","SelectedSeriesItems":"SelectedSeriesItems","FocusedSeriesItems":"FocusedSeriesItems","InitialSortDescriptions":"InitialSortDescriptions","InitialGroupSortDescriptions":"InitialGroupSortDescriptions","InitialGroupDescriptions":"InitialGroupDescriptions","InitialFilterExpressions":"InitialFilterExpressions","InitialHighlightFilterExpressions":"InitialHighlightFilterExpressions","InitialSummaryDescriptions":"InitialSummaryDescriptions","InitialSorts":"InitialSorts","GroupSorts":"GroupSorts","InitialGroups":"InitialGroups","InitialFilter":"InitialFilter","InitialHighlightFilter":"InitialHighlightFilter","InitialSummaries":"InitialSummaries","DataSource":"DataSource","DataSourceScript":"DataSourceScript","HighlightedDataSource":"HighlightedDataSource","HighlightedDataSourceScript":"HighlightedDataSourceScript","IncludedProperties":"IncludedProperties","ExcludedProperties":"ExcludedProperties","Brushes":"Brushes","Outlines":"Outlines","ActualBrushes":"ActualBrushes","ActualOutlines":"ActualOutlines","Legend":"Legend","LegendScript":"LegendScript","IsHorizontalZoomEnabled":"IsHorizontalZoomEnabled","IsVerticalZoomEnabled":"IsVerticalZoomEnabled","ShouldDisplayMockData":"ShouldDisplayMockData","ShouldUseSkeletonStyleForMockData":"ShouldUseSkeletonStyleForMockData","ShouldSimulateHoverMoveCrosshairPoint":"ShouldSimulateHoverMoveCrosshairPoint","HighlightedValuesDisplayMode":"HighlightedValuesDisplayMode","IsSeriesHighlightingEnabled":"IsSeriesHighlightingEnabled","HighlightedLegendItemVisibility":"HighlightedLegendItemVisibility","LegendItemVisibility":"LegendItemVisibility","WindowRect":"WindowRect","ChartTitle":"ChartTitle","Subtitle":"Subtitle","TitleAlignment":"TitleAlignment","SubtitleAlignment":"SubtitleAlignment","UnknownValuePlotting":"UnknownValuePlotting","Resolution":"Resolution","Thickness":"Thickness","OutlineMode":"OutlineMode","MarkerOutlineMode":"MarkerOutlineMode","MarkerFillMode":"MarkerFillMode","MarkerFillOpacity":"MarkerFillOpacity","MarkerThickness":"MarkerThickness","MarkerTypes":"MarkerTypes","MarkerAutomaticBehavior":"MarkerAutomaticBehavior","MarkerBrushes":"MarkerBrushes","MarkerOutlines":"MarkerOutlines","MarkerMaxCount":"MarkerMaxCount","AreaFillOpacity":"AreaFillOpacity","AnimateSeriesWhenAxisRangeChanges":"AnimateSeriesWhenAxisRangeChanges","TrendLineBrushes":"TrendLineBrushes","TrendLineType":"TrendLineType","TrendLineThickness":"TrendLineThickness","TrendLineTypes":"TrendLineTypes","TrendLineLayerUseLegend":"TrendLineLayerUseLegend","AlignsGridLinesToPixels":"AlignsGridLinesToPixels","PlotAreaMarginLeft":"PlotAreaMarginLeft","PlotAreaMarginTop":"PlotAreaMarginTop","PlotAreaMarginRight":"PlotAreaMarginRight","PlotAreaMarginBottom":"PlotAreaMarginBottom","HighlightingDismissDelayMilliseconds":"HighlightingDismissDelayMilliseconds","FocusDismissDelayMilliseconds":"FocusDismissDelayMilliseconds","SelectionDismissDelayMilliseconds":"SelectionDismissDelayMilliseconds","ComputedPlotAreaMarginMode":"ComputedPlotAreaMarginMode","SeriesPlotAreaMarginHorizontalMode":"SeriesPlotAreaMarginHorizontalMode","SeriesPlotAreaMarginVerticalMode":"SeriesPlotAreaMarginVerticalMode","HighlightingMode":"HighlightingMode","HighlightingBehavior":"HighlightingBehavior","HighlightingFadeOpacity":"HighlightingFadeOpacity","LegendHighlightingMode":"LegendHighlightingMode","LegendItemBadgeShape":"LegendItemBadgeShape","LegendItemBadgeMode":"LegendItemBadgeMode","TrendLinePeriod":"TrendLinePeriod","ToolTipType":"ToolTipType","CrosshairsDisplayMode":"CrosshairsDisplayMode","CrosshairsSnapToData":"CrosshairsSnapToData","CrosshairsLineVerticalStroke":"CrosshairsLineVerticalStroke","CrosshairsLineThickness":"CrosshairsLineThickness","CrosshairsLineHorizontalStroke":"CrosshairsLineHorizontalStroke","CrosshairsAnnotationEnabled":"CrosshairsAnnotationEnabled","CrosshairsSkipZeroValueFragments":"CrosshairsSkipZeroValueFragments","CrosshairsSkipInvalidData":"CrosshairsSkipInvalidData","CrosshairsAnnotationXAxisBackground":"CrosshairsAnnotationXAxisBackground","CrosshairsAnnotationYAxisBackground":"CrosshairsAnnotationYAxisBackground","CrosshairsAnnotationXAxisTextColor":"CrosshairsAnnotationXAxisTextColor","CrosshairsAnnotationYAxisTextColor":"CrosshairsAnnotationYAxisTextColor","CrosshairsAnnotationXAxisPrecision":"CrosshairsAnnotationXAxisPrecision","CrosshairsAnnotationYAxisPrecision":"CrosshairsAnnotationYAxisPrecision","ShouldAvoidAxisAnnotationCollisions":"ShouldAvoidAxisAnnotationCollisions","ShouldPanOnMaximumZoom":"ShouldPanOnMaximumZoom","FinalValueAnnotationsVisible":"FinalValueAnnotationsVisible","FinalValueAnnotationsBackground":"FinalValueAnnotationsBackground","FinalValueAnnotationsTextColor":"FinalValueAnnotationsTextColor","FinalValueAnnotationsPrecision":"FinalValueAnnotationsPrecision","AutoCalloutsVisible":"AutoCalloutsVisible","CalloutsVisible":"CalloutsVisible","CalloutStyleUpdatingEventEnabled":"CalloutStyleUpdatingEventEnabled","UseValueForAutoCalloutLabels":"UseValueForAutoCalloutLabels","CalloutCollisionMode":"CalloutCollisionMode","CalloutsUseItemColorForFill":"CalloutsUseItemColorForFill","CalloutsUseItemColorForOutline":"CalloutsUseItemColorForOutline","CalloutsUseAutoContrastingLabelColors":"CalloutsUseAutoContrastingLabelColors","CalloutsStrokeThickness":"CalloutsStrokeThickness","CalloutsBackground":"CalloutsBackground","CalloutsOutline":"CalloutsOutline","CalloutsTextColor":"CalloutsTextColor","CalloutsLightTextColor":"CalloutsLightTextColor","CalloutsDarkTextColor":"CalloutsDarkTextColor","CalloutsLeaderBrush":"CalloutsLeaderBrush","CalloutsAutoLabelPrecision":"CalloutsAutoLabelPrecision","CalloutsDataSource":"CalloutsDataSource","CalloutsDataSourceScript":"CalloutsDataSourceScript","CalloutsAllowedPositions":"CalloutsAllowedPositions","CalloutsXMemberPath":"CalloutsXMemberPath","CalloutsYMemberPath":"CalloutsYMemberPath","CalloutsLabelMemberPath":"CalloutsLabelMemberPath","CalloutsContentMemberPath":"CalloutsContentMemberPath","CalloutsFontFamily":"CalloutsFontFamily","CalloutsFontSize":"CalloutsFontSize","CalloutsFontStyle":"CalloutsFontStyle","CalloutsFontWeight":"CalloutsFontWeight","ValueLines":"ValueLines","ValueLinesBrushes":"ValueLinesBrushes","ValueLinesThickness":"ValueLinesThickness","SeriesValueLayerUseLegend":"SeriesValueLayerUseLegend","HorizontalViewScrollbarMode":"HorizontalViewScrollbarMode","VerticalViewScrollbarMode":"VerticalViewScrollbarMode","HorizontalViewScrollbarPosition":"HorizontalViewScrollbarPosition","VerticalViewScrollbarPosition":"VerticalViewScrollbarPosition","HorizontalViewScrollbarFill":"HorizontalViewScrollbarFill","HorizontalViewScrollbarOutline":"HorizontalViewScrollbarOutline","HorizontalViewScrollbarStrokeThickness":"HorizontalViewScrollbarStrokeThickness","HorizontalViewScrollbarMaxOpacity":"HorizontalViewScrollbarMaxOpacity","HorizontalViewScrollbarCornerRadius":"HorizontalViewScrollbarCornerRadius","HorizontalViewScrollbarHeight":"HorizontalViewScrollbarHeight","HorizontalViewScrollbarInset":"HorizontalViewScrollbarInset","HorizontalViewScrollbarTrackStartInset":"HorizontalViewScrollbarTrackStartInset","HorizontalViewScrollbarTrackEndInset":"HorizontalViewScrollbarTrackEndInset","HorizontalViewScrollbarShouldAddAutoTrackInsets":"HorizontalViewScrollbarShouldAddAutoTrackInsets","VerticalViewScrollbarFill":"VerticalViewScrollbarFill","VerticalViewScrollbarOutline":"VerticalViewScrollbarOutline","VerticalViewScrollbarStrokeThickness":"VerticalViewScrollbarStrokeThickness","VerticalViewScrollbarMaxOpacity":"VerticalViewScrollbarMaxOpacity","VerticalViewScrollbarCornerRadius":"VerticalViewScrollbarCornerRadius","VerticalViewScrollbarWidth":"VerticalViewScrollbarWidth","VerticalViewScrollbarInset":"VerticalViewScrollbarInset","VerticalViewScrollbarTrackStartInset":"VerticalViewScrollbarTrackStartInset","VerticalViewScrollbarTrackEndInset":"VerticalViewScrollbarTrackEndInset","VerticalViewScrollbarShouldAddAutoTrackInsets":"VerticalViewScrollbarShouldAddAutoTrackInsets","WindowRectMinWidth":"WindowRectMinWidth","WindowRectMinHeight":"WindowRectMinHeight","WindowSizeMinWidth":"WindowSizeMinWidth","WindowSizeMinHeight":"WindowSizeMinHeight","IsUserAnnotationsEnabled":"IsUserAnnotationsEnabled","UserAnnotationInformationRequestedScript":"UserAnnotationInformationRequestedScript","UserAnnotationInformationRequested":"UserAnnotationInformationRequested","UserAnnotationToolTipContentUpdatingScript":"UserAnnotationToolTipContentUpdatingScript","UserAnnotationToolTipContentUpdating":"UserAnnotationToolTipContentUpdating","SeriesAddedScript":"SeriesAddedScript","SeriesAdded":"SeriesAdded","SeriesRemovedScript":"SeriesRemovedScript","SeriesRemoved":"SeriesRemoved","SeriesPointerEnterScript":"SeriesPointerEnterScript","SeriesPointerEnter":"SeriesPointerEnter","SeriesPointerLeaveScript":"SeriesPointerLeaveScript","SeriesPointerLeave":"SeriesPointerLeave","SeriesPointerMoveScript":"SeriesPointerMoveScript","SeriesPointerMove":"SeriesPointerMove","SeriesPointerDownScript":"SeriesPointerDownScript","SeriesPointerDown":"SeriesPointerDown","SeriesPointerUpScript":"SeriesPointerUpScript","SeriesPointerUp":"SeriesPointerUp","SeriesClickScript":"SeriesClickScript","SeriesClick":"SeriesClick","PlotAreaPointerEnterScript":"PlotAreaPointerEnterScript","PlotAreaPointerEnter":"PlotAreaPointerEnter","PlotAreaPointerLeaveScript":"PlotAreaPointerLeaveScript","PlotAreaPointerLeave":"PlotAreaPointerLeave","PlotAreaPointerMoveScript":"PlotAreaPointerMoveScript","PlotAreaPointerMove":"PlotAreaPointerMove","PlotAreaPointerDownScript":"PlotAreaPointerDownScript","PlotAreaPointerDown":"PlotAreaPointerDown","PlotAreaPointerUpScript":"PlotAreaPointerUpScript","PlotAreaPointerUp":"PlotAreaPointerUp","CalloutStyleUpdatingScript":"CalloutStyleUpdatingScript","CalloutStyleUpdating":"CalloutStyleUpdating","CalloutRenderStyleUpdatingScript":"CalloutRenderStyleUpdatingScript","CalloutRenderStyleUpdating":"CalloutRenderStyleUpdating","CalloutLabelUpdatingScript":"CalloutLabelUpdatingScript","CalloutLabelUpdating":"CalloutLabelUpdating","SelectedSeriesItemsChangedScript":"SelectedSeriesItemsChangedScript","SelectedSeriesItemsChanged":"SelectedSeriesItemsChanged","FocusedSeriesItemsChangedScript":"FocusedSeriesItemsChangedScript","FocusedSeriesItemsChanged":"FocusedSeriesItemsChanged","FilterStringErrorsParsingScript":"FilterStringErrorsParsingScript","FilterStringErrorsParsing":"FilterStringErrorsParsing","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbXYChart()":"IgbXYChart()","IgbXYChart":"IgbXYChart()","ActualXAxisLabelFormatSpecifiers":"ActualXAxisLabelFormatSpecifiers","ActualXAxisLabelTextColor":"ActualXAxisLabelTextColor","ActualYAxisLabelFormatSpecifiers":"ActualYAxisLabelFormatSpecifiers","ActualYAxisLabelTextColor":"ActualYAxisLabelTextColor","ContentXAxisLabelFormatSpecifiers":"ContentXAxisLabelFormatSpecifiers","ContentYAxisLabelFormatSpecifiers":"ContentYAxisLabelFormatSpecifiers","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","GetScaledValueX(double)":"GetScaledValueX(double)","GetScaledValueX":"GetScaledValueX(double)","GetScaledValueXAsync(double)":"GetScaledValueXAsync(double)","GetScaledValueXAsync":"GetScaledValueXAsync(double)","GetScaledValueY(double)":"GetScaledValueY(double)","GetScaledValueY":"GetScaledValueY(double)","GetScaledValueYAsync(double)":"GetScaledValueYAsync(double)","GetScaledValueYAsync":"GetScaledValueYAsync(double)","GetUnscaledValueX(double)":"GetUnscaledValueX(double)","GetUnscaledValueX":"GetUnscaledValueX(double)","GetUnscaledValueXAsync(double)":"GetUnscaledValueXAsync(double)","GetUnscaledValueXAsync":"GetUnscaledValueXAsync(double)","GetUnscaledValueY(double)":"GetUnscaledValueY(double)","GetUnscaledValueY":"GetUnscaledValueY(double)","GetUnscaledValueYAsync(double)":"GetUnscaledValueYAsync(double)","GetUnscaledValueYAsync":"GetUnscaledValueYAsync(double)","ParentTypeName":"ParentTypeName","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","Type":"Type","XAxisExtent":"XAxisExtent","XAxisFormatLabel":"XAxisFormatLabel","XAxisFormatLabelScript":"XAxisFormatLabelScript","XAxisInverted":"XAxisInverted","XAxisLabel":"XAxisLabel","XAxisLabelAngle":"XAxisLabelAngle","XAxisLabelBottomMargin":"XAxisLabelBottomMargin","XAxisLabelFormat":"XAxisLabelFormat","XAxisLabelFormatSpecifiers":"XAxisLabelFormatSpecifiers","XAxisLabelHorizontalAlignment":"XAxisLabelHorizontalAlignment","XAxisLabelLeftMargin":"XAxisLabelLeftMargin","XAxisLabelLocation":"XAxisLabelLocation","XAxisLabelRightMargin":"XAxisLabelRightMargin","XAxisLabelScript":"XAxisLabelScript","XAxisLabelTextColor":"XAxisLabelTextColor","XAxisLabelTextStyle":"XAxisLabelTextStyle","XAxisLabelTopMargin":"XAxisLabelTopMargin","XAxisLabelVerticalAlignment":"XAxisLabelVerticalAlignment","XAxisLabelVisibility":"XAxisLabelVisibility","XAxisMajorStroke":"XAxisMajorStroke","XAxisMajorStrokeThickness":"XAxisMajorStrokeThickness","XAxisMaximumExtent":"XAxisMaximumExtent","XAxisMaximumExtentPercentage":"XAxisMaximumExtentPercentage","XAxisMinorStroke":"XAxisMinorStroke","XAxisMinorStrokeThickness":"XAxisMinorStrokeThickness","XAxisStrip":"XAxisStrip","XAxisStroke":"XAxisStroke","XAxisStrokeThickness":"XAxisStrokeThickness","XAxisTickLength":"XAxisTickLength","XAxisTickStroke":"XAxisTickStroke","XAxisTickStrokeThickness":"XAxisTickStrokeThickness","XAxisTitle":"XAxisTitle","XAxisTitleAlignment":"XAxisTitleAlignment","XAxisTitleAngle":"XAxisTitleAngle","XAxisTitleBottomMargin":"XAxisTitleBottomMargin","XAxisTitleLeftMargin":"XAxisTitleLeftMargin","XAxisTitleMargin":"XAxisTitleMargin","XAxisTitleRightMargin":"XAxisTitleRightMargin","XAxisTitleTextColor":"XAxisTitleTextColor","XAxisTitleTextStyle":"XAxisTitleTextStyle","XAxisTitleTopMargin":"XAxisTitleTopMargin","YAxisExtent":"YAxisExtent","YAxisFormatLabel":"YAxisFormatLabel","YAxisFormatLabelScript":"YAxisFormatLabelScript","YAxisInverted":"YAxisInverted","YAxisLabel":"YAxisLabel","YAxisLabelAngle":"YAxisLabelAngle","YAxisLabelBottomMargin":"YAxisLabelBottomMargin","YAxisLabelFormat":"YAxisLabelFormat","YAxisLabelFormatSpecifiers":"YAxisLabelFormatSpecifiers","YAxisLabelHorizontalAlignment":"YAxisLabelHorizontalAlignment","YAxisLabelLeftMargin":"YAxisLabelLeftMargin","YAxisLabelLocation":"YAxisLabelLocation","YAxisLabelRightMargin":"YAxisLabelRightMargin","YAxisLabelScript":"YAxisLabelScript","YAxisLabelTextColor":"YAxisLabelTextColor","YAxisLabelTextStyle":"YAxisLabelTextStyle","YAxisLabelTopMargin":"YAxisLabelTopMargin","YAxisLabelVerticalAlignment":"YAxisLabelVerticalAlignment","YAxisLabelVisibility":"YAxisLabelVisibility","YAxisMajorStroke":"YAxisMajorStroke","YAxisMajorStrokeThickness":"YAxisMajorStrokeThickness","YAxisMaximumExtent":"YAxisMaximumExtent","YAxisMaximumExtentPercentage":"YAxisMaximumExtentPercentage","YAxisMinorStroke":"YAxisMinorStroke","YAxisMinorStrokeThickness":"YAxisMinorStrokeThickness","YAxisStrip":"YAxisStrip","YAxisStroke":"YAxisStroke","YAxisStrokeThickness":"YAxisStrokeThickness","YAxisTickLength":"YAxisTickLength","YAxisTickStroke":"YAxisTickStroke","YAxisTickStrokeThickness":"YAxisTickStrokeThickness","YAxisTitle":"YAxisTitle","YAxisTitleAlignment":"YAxisTitleAlignment","YAxisTitleAngle":"YAxisTitleAngle","YAxisTitleBottomMargin":"YAxisTitleBottomMargin","YAxisTitleLeftMargin":"YAxisTitleLeftMargin","YAxisTitleMargin":"YAxisTitleMargin","YAxisTitleRightMargin":"YAxisTitleRightMargin","YAxisTitleTextColor":"YAxisTitleTextColor","YAxisTitleTextStyle":"YAxisTitleTextStyle","YAxisTitleTopMargin":"YAxisTitleTopMargin"}}],"IgbYearToDateExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbYearToDateExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbYearToDateExpression()":"IgbYearToDateExpression()","IgbYearToDateExpression":"IgbYearToDateExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbYesterdayExpression":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbYesterdayExpression","k":"class","s":"classes","m":{"EnsureInnerExpressionAsync()":"EnsureInnerExpressionAsync()","EnsureInnerExpressionAsync":"EnsureInnerExpressionAsync()","EnsureInnerExpression()":"EnsureInnerExpression()","EnsureInnerExpression":"EnsureInnerExpression()","InnerExpression":"InnerExpression","Expression":"Expression","PropertyName":"PropertyName","IsWrapper":"IsWrapper","Precedence":"Precedence","Property(string)":"Property(string)","Property":"Property(string)","NullLiteral()":"NullLiteral()","NullLiteral":"NullLiteral()","Literal(object)":"Literal(object)","Literal":"Literal(object)","UnquotedLiteral(string)":"UnquotedLiteral(string)","UnquotedLiteral":"UnquotedLiteral(string)","Operation(string, FilterExpressionOperatorType, object)":"Operation(string, FilterExpressionOperatorType, object)","Operation":"Operation(string, FilterExpressionOperatorType, object)","Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)","Operation(string, FilterExpressionOperatorType, IgbFilterExpression)":"Operation(string, FilterExpressionOperatorType, IgbFilterExpression)","Operation(IgbFilterExpression, FilterExpressionOperatorType, object)":"Operation(IgbFilterExpression, FilterExpressionOperatorType, object)","Function(FilterExpressionFunctionType, params IgbFilterExpression[])":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Function":"Function(FilterExpressionFunctionType, params IgbFilterExpression[])","Cast(DataSourceSchemaPropertyType)":"Cast(DataSourceSchemaPropertyType)","Cast":"Cast(DataSourceSchemaPropertyType)","Cast(string)":"Cast(string)","Group()":"Group()","Group":"Group()","And(IgbFilterExpression)":"And(IgbFilterExpression)","And":"And(IgbFilterExpression)","Or(IgbFilterExpression)":"Or(IgbFilterExpression)","Or":"Or(IgbFilterExpression)","Not()":"Not()","Not":"Not()","Add(IgbFilterExpression)":"Add(IgbFilterExpression)","Add":"Add(IgbFilterExpression)","Add(object)":"Add(object)","Plus(IgbFilterExpression)":"Plus(IgbFilterExpression)","Plus":"Plus(IgbFilterExpression)","Plus(object)":"Plus(object)","Divide(IgbFilterExpression)":"Divide(IgbFilterExpression)","Divide":"Divide(IgbFilterExpression)","Divide(object)":"Divide(object)","DividedBy(IgbFilterExpression)":"DividedBy(IgbFilterExpression)","DividedBy":"DividedBy(IgbFilterExpression)","DividedBy(object)":"DividedBy(object)","IsEqualTo(IgbFilterExpression)":"IsEqualTo(IgbFilterExpression)","IsEqualTo":"IsEqualTo(IgbFilterExpression)","IsEqualTo(object)":"IsEqualTo(object)","IsGreaterThan(IgbFilterExpression)":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan":"IsGreaterThan(IgbFilterExpression)","IsGreaterThan(object)":"IsGreaterThan(object)","IsGreaterThanOrEqualTo(IgbFilterExpression)":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo":"IsGreaterThanOrEqualTo(IgbFilterExpression)","IsGreaterThanOrEqualTo(object)":"IsGreaterThanOrEqualTo(object)","IsLessThan(IgbFilterExpression)":"IsLessThan(IgbFilterExpression)","IsLessThan":"IsLessThan(IgbFilterExpression)","IsLessThan(object)":"IsLessThan(object)","IsLessThanOrEqualTo(IgbFilterExpression)":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo":"IsLessThanOrEqualTo(IgbFilterExpression)","IsLessThanOrEqualTo(object)":"IsLessThanOrEqualTo(object)","Modulo(IgbFilterExpression)":"Modulo(IgbFilterExpression)","Modulo":"Modulo(IgbFilterExpression)","Modulo(object)":"Modulo(object)","Multiply(IgbFilterExpression)":"Multiply(IgbFilterExpression)","Multiply":"Multiply(IgbFilterExpression)","Multiply(object)":"Multiply(object)","Times(IgbFilterExpression)":"Times(IgbFilterExpression)","Times":"Times(IgbFilterExpression)","Times(object)":"Times(object)","IsNotEqualTo(IgbFilterExpression)":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo":"IsNotEqualTo(IgbFilterExpression)","IsNotEqualTo(object)":"IsNotEqualTo(object)","Subtract(IgbFilterExpression)":"Subtract(IgbFilterExpression)","Subtract":"Subtract(IgbFilterExpression)","Subtract(object)":"Subtract(object)","Minus(IgbFilterExpression)":"Minus(IgbFilterExpression)","Minus":"Minus(IgbFilterExpression)","Minus(object)":"Minus(object)","Ceiling()":"Ceiling()","Ceiling":"Ceiling()","Concat(IgbFilterExpression)":"Concat(IgbFilterExpression)","Concat":"Concat(IgbFilterExpression)","Concat(string)":"Concat(string)","Contains(IgbFilterExpression)":"Contains(IgbFilterExpression)","Contains":"Contains(IgbFilterExpression)","Contains(string)":"Contains(string)","Day()":"Day()","Day":"Day()","EndsWith(IgbFilterExpression)":"EndsWith(IgbFilterExpression)","EndsWith":"EndsWith(IgbFilterExpression)","EndsWith(string)":"EndsWith(string)","Floor()":"Floor()","Floor":"Floor()","Hour()":"Hour()","Hour":"Hour()","IndexOf(IgbFilterExpression)":"IndexOf(IgbFilterExpression)","IndexOf":"IndexOf(IgbFilterExpression)","IndexOf(string)":"IndexOf(string)","Length()":"Length()","Length":"Length()","Minute()":"Minute()","Minute":"Minute()","Month()":"Month()","Month":"Month()","Replace(IgbFilterExpression, IgbFilterExpression)":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace":"Replace(IgbFilterExpression, IgbFilterExpression)","Replace(string, IgbFilterExpression)":"Replace(string, IgbFilterExpression)","Replace(IgbFilterExpression, string)":"Replace(IgbFilterExpression, string)","Replace(string, string)":"Replace(string, string)","Round()":"Round()","Round":"Round()","Second()":"Second()","Second":"Second()","StartsWith(IgbFilterExpression)":"StartsWith(IgbFilterExpression)","StartsWith":"StartsWith(IgbFilterExpression)","StartsWith(string)":"StartsWith(string)","Substring(IgbFilterExpression)":"Substring(IgbFilterExpression)","Substring":"Substring(IgbFilterExpression)","Substring(int)":"Substring(int)","Substring(IgbFilterExpression, IgbFilterExpression)":"Substring(IgbFilterExpression, IgbFilterExpression)","Substring(int, IgbFilterExpression)":"Substring(int, IgbFilterExpression)","Substring(IgbFilterExpression, int)":"Substring(IgbFilterExpression, int)","Substring(int, int)":"Substring(int, int)","ToLower()":"ToLower()","ToLower":"ToLower()","ToUpper()":"ToUpper()","ToUpper":"ToUpper()","Trim()":"Trim()","Trim":"Trim()","Year()":"Year()","Year":"Year()","Date()":"Date()","Date":"Date()","Time()":"Time()","Time":"Time()","Now()":"Now()","Now":"Now()","IsOf(DataSourceSchemaPropertyType)":"IsOf(DataSourceSchemaPropertyType)","IsOf":"IsOf(DataSourceSchemaPropertyType)","IsOf(string)":"IsOf(string)","MarkAutoGeneratedAsync()":"MarkAutoGeneratedAsync()","MarkAutoGeneratedAsync":"MarkAutoGeneratedAsync()","MarkAutoGenerated()":"MarkAutoGenerated()","MarkAutoGenerated":"MarkAutoGenerated()","EnvAsync(string)":"EnvAsync(string)","EnvAsync":"EnvAsync(string)","Env(string)":"Env(string)","Env":"Env(string)","IsAutoGenerated":"IsAutoGenerated","IsPropertyReference":"IsPropertyReference","IsOperation":"IsOperation","IsFunction":"IsFunction","IsLiteral":"IsLiteral","IsNull":"IsNull","_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbYesterdayExpression()":"IgbYesterdayExpression()","IgbYesterdayExpression":"IgbYesterdayExpression()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type"}}],"IgbZoomSlider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbZoomSlider","k":"class","s":"classes","m":{"eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","ResolveEventBehavior()":"ResolveEventBehavior()","ResolveEventBehavior":"ResolveEventBehavior()","ResolveDisplay()":"ResolveDisplay()","ResolveDisplay":"ResolveDisplay()","ToSpinal(string)":"ToSpinal(string)","ToSpinal":"ToSpinal(string)","TransformSimpleKey(string)":"TransformSimpleKey(string)","TransformSimpleKey":"TransformSimpleKey(string)","IsTransformedEnumValue(string)":"IsTransformedEnumValue(string)","IsTransformedEnumValue":"IsTransformedEnumValue(string)","TransformPotentialEnumValue(string, object)":"TransformPotentialEnumValue(string, object)","TransformPotentialEnumValue":"TransformPotentialEnumValue(string, object)","BuildSequenceInfo(int)":"BuildSequenceInfo(int)","BuildSequenceInfo":"BuildSequenceInfo(int)","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","TemplateContentType(string)":"TemplateContentType(string)","TemplateContentType":"TemplateContentType(string)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","EnsureReady()":"EnsureReady()","EnsureReady":"EnsureReady()","MarkPropDirty(string)":"MarkPropDirty(string)","MarkPropDirty":"MarkPropDirty(string)","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","SuspendNotifications(object)":"SuspendNotifications(object)","SuspendNotifications":"SuspendNotifications(object)","ResumeNotifications(object, bool)":"ResumeNotifications(object, bool)","ResumeNotifications":"ResumeNotifications(object, bool)","NotifyInsertItem(object, int, object)":"NotifyInsertItem(object, int, object)","NotifyInsertItem":"NotifyInsertItem(object, int, object)","NotifyRemoveItem(object, int, object)":"NotifyRemoveItem(object, int, object)","NotifyRemoveItem":"NotifyRemoveItem(object, int, object)","NotifyClearItems(object)":"NotifyClearItems(object)","NotifyClearItems":"NotifyClearItems(object)","NotifySetItem(object, int, object, object)":"NotifySetItem(object, int, object, object)","NotifySetItem":"NotifySetItem(object, int, object, object)","NotifyUpdateItem(object, int, object, bool)":"NotifyUpdateItem(object, int, object, bool)","NotifyUpdateItem":"NotifyUpdateItem(object, int, object, bool)","OnRefChanged(string, object)":"OnRefChanged(string, object)","OnRefChanged":"OnRefChanged(string, object)","OnInvokeReturn(long, object)":"OnInvokeReturn(long, object)","OnInvokeReturn":"OnInvokeReturn(long, object)","Camelize(string)":"Camelize(string)","Camelize":"Camelize(string)","ToPascal(string)":"ToPascal(string)","ToPascal":"ToPascal(string)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","Dispose(bool)":"Dispose(bool)","Dispose":"Dispose(bool)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","SetPropertyValue(object, PropertyInfo, JsonElement)":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue":"SetPropertyValue(object, PropertyInfo, JsonElement)","SetPropertyValue(object, PropertyInfo, object)":"SetPropertyValue(object, PropertyInfo, object)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","Dispose()":"Dispose()","IgBlazor":"IgBlazor","Height":"Height","Width":"Width","Class":"Class","AdditionalAttributes":"AdditionalAttributes","ParentTypeName":"ParentTypeName","EventBehavior":"EventBehavior","ChildContent":"ChildContent","RoundTripDateConversion":"RoundTripDateConversion","SupportsVisualChildren":"SupportsVisualChildren","UseDirectRender":"UseDirectRender","DirectRenderElementName":"DirectRenderElementName","NeedsDynamicContent":"NeedsDynamicContent","UseCamelEnumValues":"UseCamelEnumValues","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbZoomSlider()":"IgbZoomSlider()","IgbZoomSlider":"IgbZoomSlider()","ActualPixelScalingRatio":"ActualPixelScalingRatio","AreThumbCalloutsEnabled":"AreThumbCalloutsEnabled","BarBrush":"BarBrush","BarExtent":"BarExtent","BarOutline":"BarOutline","BarStrokeThickness":"BarStrokeThickness","DefaultEventBehavior":"DefaultEventBehavior","EndInset":"EndInset","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","Flush()":"Flush()","Flush":"Flush()","FlushAsync()":"FlushAsync()","FlushAsync":"FlushAsync()","Hide()":"Hide()","Hide":"Hide()","HideAsync()":"HideAsync()","HideAsync":"HideAsync()","HigherCalloutBrush":"HigherCalloutBrush","HigherCalloutOutline":"HigherCalloutOutline","HigherCalloutStrokeThickness":"HigherCalloutStrokeThickness","HigherCalloutTextColor":"HigherCalloutTextColor","HigherShadeBrush":"HigherShadeBrush","HigherShadeOutline":"HigherShadeOutline","HigherShadeStrokeThickness":"HigherShadeStrokeThickness","HigherThumbBrush":"HigherThumbBrush","HigherThumbHeight":"HigherThumbHeight","HigherThumbOutline":"HigherThumbOutline","HigherThumbRidgesBrush":"HigherThumbRidgesBrush","HigherThumbStrokeThickness":"HigherThumbStrokeThickness","HigherThumbWidth":"HigherThumbWidth","LowerCalloutBrush":"LowerCalloutBrush","LowerCalloutOutline":"LowerCalloutOutline","LowerCalloutStrokeThickness":"LowerCalloutStrokeThickness","LowerCalloutTextColor":"LowerCalloutTextColor","LowerShadeBrush":"LowerShadeBrush","LowerShadeOutline":"LowerShadeOutline","LowerShadeStrokeThickness":"LowerShadeStrokeThickness","LowerThumbBrush":"LowerThumbBrush","LowerThumbHeight":"LowerThumbHeight","LowerThumbOutline":"LowerThumbOutline","LowerThumbRidgesBrush":"LowerThumbRidgesBrush","LowerThumbStrokeThickness":"LowerThumbStrokeThickness","LowerThumbWidth":"LowerThumbWidth","MaxZoomWidth":"MaxZoomWidth","MinZoomWidth":"MinZoomWidth","OnAttachedToUI()":"OnAttachedToUI()","OnAttachedToUI":"OnAttachedToUI()","OnAttachedToUIAsync()":"OnAttachedToUIAsync()","OnAttachedToUIAsync":"OnAttachedToUIAsync()","OnDetachedFromUI()":"OnDetachedFromUI()","OnDetachedFromUI":"OnDetachedFromUI()","OnDetachedFromUIAsync()":"OnDetachedFromUIAsync()","OnDetachedFromUIAsync":"OnDetachedFromUIAsync()","Orientation":"Orientation","PanTransitionDuration":"PanTransitionDuration","PixelScalingRatio":"PixelScalingRatio","ProvideContainer(object)":"ProvideContainer(object)","ProvideContainer":"ProvideContainer(object)","ProvideContainerAsync(object)":"ProvideContainerAsync(object)","ProvideContainerAsync":"ProvideContainerAsync(object)","RangeThumbBrush":"RangeThumbBrush","RangeThumbOutline":"RangeThumbOutline","RangeThumbRidgesBrush":"RangeThumbRidgesBrush","RangeThumbStrokeThickness":"RangeThumbStrokeThickness","ResolvingAxisValue":"ResolvingAxisValue","ResolvingAxisValueScript":"ResolvingAxisValueScript","Show()":"Show()","Show":"Show()","ShowAsync()":"ShowAsync()","ShowAsync":"ShowAsync()","StartInset":"StartInset","ThumbCalloutFontFamily":"ThumbCalloutFontFamily","ThumbCalloutFontSize":"ThumbCalloutFontSize","ThumbCalloutFontStyle":"ThumbCalloutFontStyle","ThumbCalloutFontWeight":"ThumbCalloutFontWeight","TrackDirty()":"TrackDirty()","TrackDirty":"TrackDirty()","TrackDirtyAsync()":"TrackDirtyAsync()","TrackDirtyAsync":"TrackDirtyAsync()","TrackEndInset":"TrackEndInset","TrackStartInset":"TrackStartInset","Type":"Type","WindowRect":"WindowRect","WindowRectChanged":"WindowRectChanged","WindowRectChangedScript":"WindowRectChangedScript"}}],"IgbZoomSliderModule":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbZoomSliderModule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbZoomSliderModule()":"IgbZoomSliderModule()","IgbZoomSliderModule":"IgbZoomSliderModule()","IsLoadRequested(IIgniteUIBlazor)":"IsLoadRequested(IIgniteUIBlazor)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested(IIgniteUIBlazor)":"MarkIsLoadRequested(IIgniteUIBlazor)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor)","Register(IIgniteUIBlazor)":"Register(IIgniteUIBlazor)","Register":"Register(IIgniteUIBlazor)"}}],"IgbZoomSliderResolvingAxisValueEventArgs":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgbZoomSliderResolvingAxisValueEventArgs","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","ParentTypeName":"ParentTypeName","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbZoomSliderResolvingAxisValueEventArgs()":"IgbZoomSliderResolvingAxisValueEventArgs()","IgbZoomSliderResolvingAxisValueEventArgs":"IgbZoomSliderResolvingAxisValueEventArgs()","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","Position":"Position","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","Type":"Type","Value":"Value","ValueScript":"ValueScript"}}],"IgniteUIBlazor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgniteUIBlazor","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgniteUIBlazor(IJSRuntime)":"IgniteUIBlazor(IJSRuntime)","IgniteUIBlazor":"IgniteUIBlazor(IJSRuntime)","IgniteUIBlazor(IJSRuntime, IIgniteUIBlazorSettings)":"IgniteUIBlazor(IJSRuntime, IIgniteUIBlazorSettings)","IsLoadRequested(string)":"IsLoadRequested(string)","IsLoadRequested":"IsLoadRequested(string)","IsRuntimeValid(bool)":"IsRuntimeValid(bool)","IsRuntimeValid":"IsRuntimeValid(bool)","JsRuntime":"JsRuntime","MarkIsLoadRequested(string)":"MarkIsLoadRequested(string)","MarkIsLoadRequested":"MarkIsLoadRequested(string)","RequestLoad(string)":"RequestLoad(string)","RequestLoad":"RequestLoad(string)","Settings":"Settings","WebCallback":"WebCallback"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgniteUIBlazor","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgniteUIBlazor(IJSRuntime)":"IgniteUIBlazor(IJSRuntime)","IgniteUIBlazor":"IgniteUIBlazor(IJSRuntime)","IgniteUIBlazor(IJSRuntime, IIgniteUIBlazorSettings)":"IgniteUIBlazor(IJSRuntime, IIgniteUIBlazorSettings)","IsLoadRequested(string)":"IsLoadRequested(string)","IsLoadRequested":"IsLoadRequested(string)","IsRuntimeValid(bool)":"IsRuntimeValid(bool)","IsRuntimeValid":"IsRuntimeValid(bool)","JsRuntime":"JsRuntime","MarkIsLoadRequested(string)":"MarkIsLoadRequested(string)","MarkIsLoadRequested":"MarkIsLoadRequested(string)","RequestLoad(string)":"RequestLoad(string)","RequestLoad":"RequestLoad(string)","Settings":"Settings","WebCallback":"WebCallback"}}],"IgniteUIBlazorSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgniteUIBlazorSettings","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgniteUIBlazorSettings()":"IgniteUIBlazorSettings()","IgniteUIBlazorSettings":"IgniteUIBlazorSettings()","Create()":"Create()","Create":"Create()","ForceJsonDataMarshalling":"ForceJsonDataMarshalling","JsonSerializerOptions":"JsonSerializerOptions","ModulesToLoad":"ModulesToLoad","ShouldForceJsonDataMarshalling()":"ShouldForceJsonDataMarshalling()","ShouldForceJsonDataMarshalling":"ShouldForceJsonDataMarshalling()","WithForceJsonDataMarshalling(bool)":"WithForceJsonDataMarshalling(bool)","WithForceJsonDataMarshalling":"WithForceJsonDataMarshalling(bool)","WithJsonSerializerOptions(IgniteUIJsonSerializerOptions)":"WithJsonSerializerOptions(IgniteUIJsonSerializerOptions)","WithJsonSerializerOptions":"WithJsonSerializerOptions(IgniteUIJsonSerializerOptions)","WithModulesToLoad(ReadOnlyCollection)":"WithModulesToLoad(ReadOnlyCollection)","WithModulesToLoad":"WithModulesToLoad(ReadOnlyCollection)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgniteUIBlazorSettings","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgniteUIBlazorSettings()":"IgniteUIBlazorSettings()","IgniteUIBlazorSettings":"IgniteUIBlazorSettings()","Create()":"Create()","Create":"Create()","ForceJsonDataMarshalling":"ForceJsonDataMarshalling","JsonSerializerOptions":"JsonSerializerOptions","ModulesToLoad":"ModulesToLoad","ShouldForceJsonDataMarshalling()":"ShouldForceJsonDataMarshalling()","ShouldForceJsonDataMarshalling":"ShouldForceJsonDataMarshalling()","WithForceJsonDataMarshalling(bool)":"WithForceJsonDataMarshalling(bool)","WithForceJsonDataMarshalling":"WithForceJsonDataMarshalling(bool)","WithJsonSerializerOptions(IgniteUIJsonSerializerOptions)":"WithJsonSerializerOptions(IgniteUIJsonSerializerOptions)","WithJsonSerializerOptions":"WithJsonSerializerOptions(IgniteUIJsonSerializerOptions)","WithModulesToLoad(ReadOnlyCollection)":"WithModulesToLoad(ReadOnlyCollection)","WithModulesToLoad":"WithModulesToLoad(ReadOnlyCollection)"}}],"IgniteUIJsonSerializerOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/IgniteUIJsonSerializerOptions","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgniteUIJsonSerializerOptions()":"IgniteUIJsonSerializerOptions()","IgniteUIJsonSerializerOptions":"IgniteUIJsonSerializerOptions()","IgniteUIJsonSerializerOptions(IgniteUIJsonSerializerOptions)":"IgniteUIJsonSerializerOptions(IgniteUIJsonSerializerOptions)","IgniteUIJsonSerializerOptions(int)":"IgniteUIJsonSerializerOptions(int)","MaxDepth":"MaxDepth"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/IgniteUIJsonSerializerOptions","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgniteUIJsonSerializerOptions()":"IgniteUIJsonSerializerOptions()","IgniteUIJsonSerializerOptions":"IgniteUIJsonSerializerOptions()","IgniteUIJsonSerializerOptions(IgniteUIJsonSerializerOptions)":"IgniteUIJsonSerializerOptions(IgniteUIJsonSerializerOptions)","IgniteUIJsonSerializerOptions(int)":"IgniteUIJsonSerializerOptions(int)","MaxDepth":"MaxDepth"}}],"InfragisticsBlazorExtensions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/InfragisticsBlazorExtensions","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AddIgniteUIBlazor(IServiceCollection, IIgniteUIBlazorSettings, params Type[])":"AddIgniteUIBlazor(IServiceCollection, IIgniteUIBlazorSettings, params Type[])","AddIgniteUIBlazor":"AddIgniteUIBlazor(IServiceCollection, IIgniteUIBlazorSettings, params Type[])","AddIgniteUIBlazor(IServiceCollection, params Type[])":"AddIgniteUIBlazor(IServiceCollection, params Type[])"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/InfragisticsBlazorExtensions","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AddIgniteUIBlazor(IServiceCollection, IIgniteUIBlazorSettings, params Type[])":"AddIgniteUIBlazor(IServiceCollection, IIgniteUIBlazorSettings, params Type[])","AddIgniteUIBlazor":"AddIgniteUIBlazor(IServiceCollection, IIgniteUIBlazorSettings, params Type[])","AddIgniteUIBlazor(IServiceCollection, params Type[])":"AddIgniteUIBlazor(IServiceCollection, params Type[])"}}],"LegendLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/LegendLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LegendLabelFormatSpecifiers()":"LegendLabelFormatSpecifiers()","LegendLabelFormatSpecifiers":"LegendLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","PieChartBaseParent":"PieChartBaseParent","RingSeriesBaseParent":"RingSeriesBaseParent"}}],"LegendOthersLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/LegendOthersLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LegendOthersLabelFormatSpecifiers()":"LegendOthersLabelFormatSpecifiers()","LegendOthersLabelFormatSpecifiers":"LegendOthersLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","PieChartBaseParent":"PieChartBaseParent","RingSeriesBaseParent":"RingSeriesBaseParent"}}],"LinearGradientBrush":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/LinearGradientBrush","k":"class","s":"classes","m":{"Serialize()":"Serialize()","Serialize":"Serialize()","FromString(string)":"FromString(string)","FromString":"FromString(string)","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LinearGradientBrush()":"LinearGradientBrush()","LinearGradientBrush":"LinearGradientBrush()","BrushType":"BrushType","EndX":"EndX","EndY":"EndY","GradientStops":"GradientStops","IsAbsolute":"IsAbsolute","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","StartX":"StartX","StartY":"StartY","UseCustomDirection":"UseCustomDirection"}}],"LocalJson":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/LocalJson","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LocalJson(string)":"LocalJson(string)","LocalJson":"LocalJson(string)","From(string)":"From(string)","From":"From(string)","Json":"Json"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/LocalJson","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LocalJson(string)":"LocalJson(string)","LocalJson":"LocalJson(string)","From(string)":"From(string)","From":"From(string)","Json":"Json"}}],"MarshalByValueFactory":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/MarshalByValueFactory","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","MarshalByValueFactory()":"MarshalByValueFactory()","MarshalByValueFactory":"MarshalByValueFactory()"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/MarshalByValueFactory","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","MarshalByValueFactory()":"MarshalByValueFactory()","MarshalByValueFactory":"MarshalByValueFactory()"}}],"ModuleLoader":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/ModuleLoader","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ModuleLoader()":"ModuleLoader()","ModuleLoader":"ModuleLoader()","IsLoadRequested(IIgniteUIBlazor, string)":"IsLoadRequested(IIgniteUIBlazor, string)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor, string)","Load(IIgniteUIBlazor, string)":"Load(IIgniteUIBlazor, string)","Load":"Load(IIgniteUIBlazor, string)","MarkIsLoadRequested(IIgniteUIBlazor, string)":"MarkIsLoadRequested(IIgniteUIBlazor, string)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor, string)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/ModuleLoader","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ModuleLoader()":"ModuleLoader()","ModuleLoader":"ModuleLoader()","IsLoadRequested(IIgniteUIBlazor, string)":"IsLoadRequested(IIgniteUIBlazor, string)","IsLoadRequested":"IsLoadRequested(IIgniteUIBlazor, string)","Load(IIgniteUIBlazor, string)":"Load(IIgniteUIBlazor, string)","Load":"Load(IIgniteUIBlazor, string)","MarkIsLoadRequested(IIgniteUIBlazor, string)":"MarkIsLoadRequested(IIgniteUIBlazor, string)","MarkIsLoadRequested":"MarkIsLoadRequested(IIgniteUIBlazor, string)"}}],"OthersLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/OthersLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","OthersLabelFormatSpecifiers()":"OthersLabelFormatSpecifiers()","OthersLabelFormatSpecifiers":"OthersLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","PieChartBaseParent":"PieChartBaseParent","RingSeriesBaseParent":"RingSeriesBaseParent"}}],"Point":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/Point","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Point()":"Point()","Point":"Point()","Point(double, double)":"Point(double, double)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","X":"X","Y":"Y"}}],"RadioGroupAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/RadioGroupAlignment","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Horizontal":"Horizontal","Vertical":"Vertical"}}],"RadioLabelPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/RadioLabelPosition","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","After":"After","Before":"Before"}}],"Rect":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/Rect","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Rect()":"Rect()","Rect":"Rect()","Rect(Point, Point)":"Rect(Point, Point)","Rect(Point, Size)":"Rect(Point, Size)","Rect(double, double, Size)":"Rect(double, double, Size)","Rect(double, double, double, double)":"Rect(double, double, double, double)","Bottom":"Bottom","Empty":"Empty","Equals(object)":"Equals(object)","Height":"Height","IsEmpty":"IsEmpty","Left":"Left","Right":"Right","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Top":"Top","Width":"Width","X":"X","Y":"Y"}}],"RemoteJson":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/RemoteJson","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","RemoteJson(string)":"RemoteJson(string)","RemoteJson":"RemoteJson(string)","From(string)":"From(string)","From":"From(string)","Uri":"Uri","WithUri(string)":"WithUri(string)","WithUri":"WithUri(string)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/RemoteJson","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","RemoteJson(string)":"RemoteJson(string)","RemoteJson":"RemoteJson(string)","From(string)":"From(string)","From":"From(string)","Uri":"Uri","WithUri(string)":"WithUri(string)","WithUri":"WithUri(string)"}}],"SelectScrollStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/SelectScrollStrategy","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Block":"Block","Close":"Close","Scroll":"Scroll"}}],"SequenceInfo":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/SequenceInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AttributeKeys":"AttributeKeys","GetSequence(string)":"GetSequence(string)","GetSequence":"GetSequence(string)","MaxSequence":"MaxSequence"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/SequenceInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AttributeKeys":"AttributeKeys","GetSequence(string)":"GetSequence(string)","GetSequence":"GetSequence(string)","MaxSequence":"MaxSequence"}}],"SerializationContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/SerializationContext","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SerializationContext(Utf8JsonWriter, SerializationFilter)":"SerializationContext(Utf8JsonWriter, SerializationFilter)","SerializationContext":"SerializationContext(Utf8JsonWriter, SerializationFilter)","Filter":"Filter","Writer":"Writer"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/SerializationContext","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SerializationContext(Utf8JsonWriter, SerializationFilter)":"SerializationContext(Utf8JsonWriter, SerializationFilter)","SerializationContext":"SerializationContext(Utf8JsonWriter, SerializationFilter)","Filter":"Filter","Writer":"Writer"}}],"Size":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/Size","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Size()":"Size()","Size":"Size()","Size(double, double)":"Size(double, double)","Height":"Height","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Width":"Width"}}],"SliderBaseTickOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/SliderBaseTickOrientation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","End":"End","Mirror":"Mirror","Start":"Start"}}],"SolidColorBrush":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/SolidColorBrush","k":"class","s":"classes","m":{"Serialize()":"Serialize()","Serialize":"Serialize()","FromString(string)":"FromString(string)","FromString":"FromString(string)","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SolidColorBrush()":"SolidColorBrush()","SolidColorBrush":"SolidColorBrush()","SolidColorBrush(Color)":"SolidColorBrush(Color)","BrushType":"BrushType","Color":"Color","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)"}}],"StepperHorizontalAnimation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/StepperHorizontalAnimation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Fade":"Fade","None":"None","Slide":"Slide"}}],"TickLabelRotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/TickLabelRotation","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","NegativeNinety":"NegativeNinety","Ninety":"Ninety","Zero":"Zero"}}],"TypedDynamicContent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/TypedDynamicContent","k":"class","s":"classes","m":{"UpdateTemplate(object)":"UpdateTemplate(object)","UpdateTemplate":"UpdateTemplate(object)","UpdateContext(object)":"UpdateContext(object)","UpdateContext":"UpdateContext(object)","ControlType":"ControlType","RefName":"RefName","RefDivName":"RefDivName","Component":"Component","Owner":"Owner","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","TypedDynamicContent(Type)":"TypedDynamicContent(Type)","TypedDynamicContent":"TypedDynamicContent(Type)","GetInstanceAsync()":"GetInstanceAsync()","GetInstanceAsync":"GetInstanceAsync()","OnComponentChanged(object, object)":"OnComponentChanged(object, object)","OnComponentChanged":"OnComponentChanged(object, object)","OnComponentChanging":"OnComponentChanging"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/TypedDynamicContent","k":"class","s":"classes","m":{"UpdateTemplate(object)":"UpdateTemplate(object)","UpdateTemplate":"UpdateTemplate(object)","UpdateContext(object)":"UpdateContext(object)","UpdateContext":"UpdateContext(object)","ControlType":"ControlType","RefName":"RefName","RefDivName":"RefDivName","Component":"Component","Owner":"Owner","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","TypedDynamicContent(Type)":"TypedDynamicContent(Type)","TypedDynamicContent":"TypedDynamicContent(Type)","GetInstanceAsync()":"GetInstanceAsync()","GetInstanceAsync":"GetInstanceAsync()","OnComponentChanged(object, object)":"OnComponentChanged(object, object)","OnComponentChanged":"OnComponentChanged(object, object)","OnComponentChanging":"OnComponentChanging"}}],"VerticalLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/VerticalLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","VerticalLabelFormatSpecifiers()":"VerticalLabelFormatSpecifiers()","VerticalLabelFormatSpecifiers":"VerticalLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","SparklineParent":"SparklineParent"}}],"WCAttributeNameAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/WCAttributeNameAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WCAttributeNameAttribute(string)":"WCAttributeNameAttribute(string)","WCAttributeNameAttribute":"WCAttributeNameAttribute(string)","Name":"Name"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/WCAttributeNameAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WCAttributeNameAttribute(string)":"WCAttributeNameAttribute(string)","WCAttributeNameAttribute":"WCAttributeNameAttribute(string)","Name":"Name"}}],"WCEnumNameAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/WCEnumNameAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WCEnumNameAttribute(string)":"WCEnumNameAttribute(string)","WCEnumNameAttribute":"WCEnumNameAttribute(string)","Name":"Name"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/WCEnumNameAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WCEnumNameAttribute(string)":"WCEnumNameAttribute(string)","WCEnumNameAttribute":"WCEnumNameAttribute(string)","Name":"Name"}}],"WCWidgetMemberNameAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/WCWidgetMemberNameAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WCWidgetMemberNameAttribute(string)":"WCWidgetMemberNameAttribute(string)","WCWidgetMemberNameAttribute":"WCWidgetMemberNameAttribute(string)","Name":"Name"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/WCWidgetMemberNameAttribute","k":"class","s":"classes","m":{"GetCustomAttributes(MemberInfo, Type)":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes":"GetCustomAttributes(MemberInfo, Type)","GetCustomAttributes(MemberInfo, Type, bool)":"GetCustomAttributes(MemberInfo, Type, bool)","GetCustomAttributes(MemberInfo)":"GetCustomAttributes(MemberInfo)","GetCustomAttributes(MemberInfo, bool)":"GetCustomAttributes(MemberInfo, bool)","IsDefined(MemberInfo, Type)":"IsDefined(MemberInfo, Type)","IsDefined":"IsDefined(MemberInfo, Type)","IsDefined(MemberInfo, Type, bool)":"IsDefined(MemberInfo, Type, bool)","GetCustomAttribute(MemberInfo, Type)":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute":"GetCustomAttribute(MemberInfo, Type)","GetCustomAttribute(MemberInfo, Type, bool)":"GetCustomAttribute(MemberInfo, Type, bool)","GetCustomAttributes(ParameterInfo)":"GetCustomAttributes(ParameterInfo)","GetCustomAttributes(ParameterInfo, Type)":"GetCustomAttributes(ParameterInfo, Type)","GetCustomAttributes(ParameterInfo, Type, bool)":"GetCustomAttributes(ParameterInfo, Type, bool)","GetCustomAttributes(ParameterInfo, bool)":"GetCustomAttributes(ParameterInfo, bool)","IsDefined(ParameterInfo, Type)":"IsDefined(ParameterInfo, Type)","IsDefined(ParameterInfo, Type, bool)":"IsDefined(ParameterInfo, Type, bool)","GetCustomAttribute(ParameterInfo, Type)":"GetCustomAttribute(ParameterInfo, Type)","GetCustomAttribute(ParameterInfo, Type, bool)":"GetCustomAttribute(ParameterInfo, Type, bool)","GetCustomAttributes(Module, Type)":"GetCustomAttributes(Module, Type)","GetCustomAttributes(Module)":"GetCustomAttributes(Module)","GetCustomAttributes(Module, bool)":"GetCustomAttributes(Module, bool)","GetCustomAttributes(Module, Type, bool)":"GetCustomAttributes(Module, Type, bool)","IsDefined(Module, Type)":"IsDefined(Module, Type)","IsDefined(Module, Type, bool)":"IsDefined(Module, Type, bool)","GetCustomAttribute(Module, Type)":"GetCustomAttribute(Module, Type)","GetCustomAttribute(Module, Type, bool)":"GetCustomAttribute(Module, Type, bool)","GetCustomAttributes(Assembly, Type)":"GetCustomAttributes(Assembly, Type)","GetCustomAttributes(Assembly, Type, bool)":"GetCustomAttributes(Assembly, Type, bool)","GetCustomAttributes(Assembly)":"GetCustomAttributes(Assembly)","GetCustomAttributes(Assembly, bool)":"GetCustomAttributes(Assembly, bool)","IsDefined(Assembly, Type)":"IsDefined(Assembly, Type)","IsDefined(Assembly, Type, bool)":"IsDefined(Assembly, Type, bool)","GetCustomAttribute(Assembly, Type)":"GetCustomAttribute(Assembly, Type)","GetCustomAttribute(Assembly, Type, bool)":"GetCustomAttribute(Assembly, Type, bool)","Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Match(object)":"Match(object)","Match":"Match(object)","IsDefaultAttribute()":"IsDefaultAttribute()","IsDefaultAttribute":"IsDefaultAttribute()","TypeId":"TypeId","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WCWidgetMemberNameAttribute(string)":"WCWidgetMemberNameAttribute(string)","WCWidgetMemberNameAttribute":"WCWidgetMemberNameAttribute(string)","Name":"Name"}}],"WebCallback":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/WebCallback","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WebCallback()":"WebCallback()","WebCallback":"WebCallback()","AdjustDynamicContent(string, string, string, string, string, string)":"AdjustDynamicContent(string, string, string, string, string, string)","AdjustDynamicContent":"AdjustDynamicContent(string, string, string, string, string, string)","AdjustDynamicContentBatch(string, string)":"AdjustDynamicContentBatch(string, string)","AdjustDynamicContentBatch":"AdjustDynamicContentBatch(string, string)","IsReady":"IsReady","OnInvokeReturn(string, long, object)":"OnInvokeReturn(string, long, object)","OnInvokeReturn":"OnInvokeReturn(string, long, object)","OnRaiseEvent(string, string, string, string)":"OnRaiseEvent(string, string, string, string)","OnRaiseEvent":"OnRaiseEvent(string, string, string, string)","OnReady()":"OnReady()","OnReady":"OnReady()","Register(BaseRendererControl)":"Register(BaseRendererControl)","Register":"Register(BaseRendererControl)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/WebCallback","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WebCallback()":"WebCallback()","WebCallback":"WebCallback()","AdjustDynamicContent(string, string, string, string, string, string)":"AdjustDynamicContent(string, string, string, string, string, string)","AdjustDynamicContent":"AdjustDynamicContent(string, string, string, string, string, string)","AdjustDynamicContentBatch(string, string)":"AdjustDynamicContentBatch(string, string)","AdjustDynamicContentBatch":"AdjustDynamicContentBatch(string, string)","IsReady":"IsReady","OnInvokeReturn(string, long, object)":"OnInvokeReturn(string, long, object)","OnInvokeReturn":"OnInvokeReturn(string, long, object)","OnRaiseEvent(string, string, string, string)":"OnRaiseEvent(string, string, string, string)","OnRaiseEvent":"OnRaiseEvent(string, string, string, string)","OnReady()":"OnReady()","OnReady":"OnReady()","Register(BaseRendererControl)":"Register(BaseRendererControl)","Register":"Register(BaseRendererControl)"}}],"XAxisLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/XAxisLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","XAxisLabelFormatSpecifiers()":"XAxisLabelFormatSpecifiers()","XAxisLabelFormatSpecifiers":"XAxisLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","XYChartParent":"XYChartParent"}}],"YAxisLabelFormatSpecifiers":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/classes/YAxisLabelFormatSpecifiers","k":"class","s":"classes","m":{"_name":"_name","eventCallbacksCache":"eventCallbacksCache","_cachedSerializedContent":"_cachedSerializedContent","EnsureModulesLoaded()":"EnsureModulesLoaded()","EnsureModulesLoaded":"EnsureModulesLoaded()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","OnElementNameChanged(BaseRendererElement, string, string)":"OnElementNameChanged(BaseRendererElement, string, string)","OnElementNameChanged":"OnElementNameChanged(BaseRendererElement, string, string)","InvokeMethod(string, object[], string[], ElementReference[])":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethod":"InvokeMethod(string, object[], string[], ElementReference[])","InvokeMethodSync(string, object[], string[], ElementReference[])":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodSync":"InvokeMethodSync(string, object[], string[], ElementReference[])","InvokeMethodHelper(string, string, object[], string[], ElementReference[])":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelper":"InvokeMethodHelper(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","InvokeMethodHelperSync":"InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])","IsPropDirty(string)":"IsPropDirty(string)","IsPropDirty":"IsPropDirty(string)","Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)","Serialize()":"Serialize()","EnsureValid()":"EnsureValid()","EnsureValid":"EnsureValid()","FromEventJson(BaseRendererControl, Dictionary)":"FromEventJson(BaseRendererControl, Dictionary)","FromEventJson":"FromEventJson(BaseRendererControl, Dictionary)","ToEventJson(BaseRendererControl, Dictionary)":"ToEventJson(BaseRendererControl, Dictionary)","ToEventJson":"ToEventJson(BaseRendererControl, Dictionary)","FindByName(string)":"FindByName(string)","FindByName":"FindByName(string)","SetResourceStringAsync(string, string, string)":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync":"SetResourceStringAsync(string, string, string)","SetResourceStringAsync(string, string)":"SetResourceStringAsync(string, string)","CompareEventCallbacks(T, T, ref Dictionary>)":"CompareEventCallbacks(T, T, ref Dictionary>)","CompareEventCallbacks":"CompareEventCallbacks(T, T, ref Dictionary>)","IgBlazor":"IgBlazor","IsComponentRooted":"IsComponentRooted","UseDirectRender":"UseDirectRender","ChildContent":"ChildContent","SupportsVisualChildren":"SupportsVisualChildren","Name":"Name","Parent":"Parent","MethodTarget":"MethodTarget","Type":"Type","CurrParent":"CurrParent","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","YAxisLabelFormatSpecifiers()":"YAxisLabelFormatSpecifiers()","YAxisLabelFormatSpecifiers":"YAxisLabelFormatSpecifiers()","Dispose()":"Dispose()","Dispose":"Dispose()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","ParentTypeName":"ParentTypeName","XYChartParent":"XYChartParent"}}],"CellActionManager":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/CellActionManager","k":"interface","s":"interfaces","m":{"ApplyCustomFilter(string, int, object)":"ApplyCustomFilter(string, int, object)","ApplyCustomFilter":"ApplyCustomFilter(string, int, object)","ApplyCustomFilterAsync(string, int, object)":"ApplyCustomFilterAsync(string, int, object)","ApplyCustomFilterAsync":"ApplyCustomFilterAsync(string, int, object)","ApplyFilter(ColumnComparisonConditionOperatorType, object)":"ApplyFilter(ColumnComparisonConditionOperatorType, object)","ApplyFilter":"ApplyFilter(ColumnComparisonConditionOperatorType, object)","ApplyFilterAsync(ColumnComparisonConditionOperatorType, object)":"ApplyFilterAsync(ColumnComparisonConditionOperatorType, object)","ApplyFilterAsync":"ApplyFilterAsync(ColumnComparisonConditionOperatorType, object)","CancelEditMode(bool)":"CancelEditMode(bool)","CancelEditMode":"CancelEditMode(bool)","CancelEditModeAsync(bool)":"CancelEditModeAsync(bool)","CancelEditModeAsync":"CancelEditModeAsync(bool)","ClearFilter()":"ClearFilter()","ClearFilter":"ClearFilter()","ClearFilterAsync()":"ClearFilterAsync()","ClearFilterAsync":"ClearFilterAsync()","ClickCell(MouseButton)":"ClickCell(MouseButton)","ClickCell":"ClickCell(MouseButton)","ClickCellAsync(MouseButton)":"ClickCellAsync(MouseButton)","ClickCellAsync":"ClickCellAsync(MouseButton)","ClickExpansionIndicator()":"ClickExpansionIndicator()","ClickExpansionIndicator":"ClickExpansionIndicator()","ClickExpansionIndicatorAsync()":"ClickExpansionIndicatorAsync()","ClickExpansionIndicatorAsync":"ClickExpansionIndicatorAsync()","ColumnFilterChanged(IgbColumnFilterCondition)":"ColumnFilterChanged(IgbColumnFilterCondition)","ColumnFilterChanged":"ColumnFilterChanged(IgbColumnFilterCondition)","ColumnFilterChangedAsync(IgbColumnFilterCondition)":"ColumnFilterChangedAsync(IgbColumnFilterCondition)","ColumnFilterChangedAsync":"ColumnFilterChangedAsync(IgbColumnFilterCondition)","ColumnFilterChanging(IgbColumnFilterCondition)":"ColumnFilterChanging(IgbColumnFilterCondition)","ColumnFilterChanging":"ColumnFilterChanging(IgbColumnFilterCondition)","ColumnFilterChangingAsync(IgbColumnFilterCondition)":"ColumnFilterChangingAsync(IgbColumnFilterCondition)","ColumnFilterChangingAsync":"ColumnFilterChangingAsync(IgbColumnFilterCondition)","DisableKeyInput()":"DisableKeyInput()","DisableKeyInput":"DisableKeyInput()","DisableKeyInputAsync()":"DisableKeyInputAsync()","DisableKeyInputAsync":"DisableKeyInputAsync()","DoubleClicked(MouseButton)":"DoubleClicked(MouseButton)","DoubleClicked":"DoubleClicked(MouseButton)","DoubleClickedAsync(MouseButton)":"DoubleClickedAsync(MouseButton)","DoubleClickedAsync":"DoubleClickedAsync(MouseButton)","DragStarted()":"DragStarted()","DragStarted":"DragStarted()","DragStartedAsync()":"DragStartedAsync()","DragStartedAsync":"DragStartedAsync()","EditorCellLostFocus()":"EditorCellLostFocus()","EditorCellLostFocus":"EditorCellLostFocus()","EditorCellLostFocusAsync()":"EditorCellLostFocusAsync()","EditorCellLostFocusAsync":"EditorCellLostFocusAsync()","EnableKeyInput()":"EnableKeyInput()","EnableKeyInput":"EnableKeyInput()","EnableKeyInputAsync()":"EnableKeyInputAsync()","EnableKeyInputAsync":"EnableKeyInputAsync()","GetColumnFilterCondition()":"GetColumnFilterCondition()","GetColumnFilterCondition":"GetColumnFilterCondition()","GetColumnFilterConditionAsync()":"GetColumnFilterConditionAsync()","GetColumnFilterConditionAsync":"GetColumnFilterConditionAsync()","GetColumnPropertyType()":"GetColumnPropertyType()","GetColumnPropertyType":"GetColumnPropertyType()","GetColumnPropertyTypeAsync()":"GetColumnPropertyTypeAsync()","GetColumnPropertyTypeAsync":"GetColumnPropertyTypeAsync()","IsCellDown()":"IsCellDown()","IsCellDown":"IsCellDown()","IsCellDownAsync()":"IsCellDownAsync()","IsCellDownAsync":"IsCellDownAsync()","IsControlPressed":"IsControlPressed","IsShiftPressed":"IsShiftPressed","MouseDownCell(double, double)":"MouseDownCell(double, double)","MouseDownCell":"MouseDownCell(double, double)","MouseDownCellAsync(double, double)":"MouseDownCellAsync(double, double)","MouseDownCellAsync":"MouseDownCellAsync(double, double)","MouseEnterCell(double, double)":"MouseEnterCell(double, double)","MouseEnterCell":"MouseEnterCell(double, double)","MouseEnterCellAsync(double, double)":"MouseEnterCellAsync(double, double)","MouseEnterCellAsync":"MouseEnterCellAsync(double, double)","MouseIsOver(double, double)":"MouseIsOver(double, double)","MouseIsOver":"MouseIsOver(double, double)","MouseIsOverAsync(double, double)":"MouseIsOverAsync(double, double)","MouseIsOverAsync":"MouseIsOverAsync(double, double)","MouseLeaveCell(double, double)":"MouseLeaveCell(double, double)","MouseLeaveCell":"MouseLeaveCell(double, double)","MouseLeaveCellAsync(double, double)":"MouseLeaveCellAsync(double, double)","MouseLeaveCellAsync":"MouseLeaveCellAsync(double, double)","MouseUpCell(double, double)":"MouseUpCell(double, double)","MouseUpCell":"MouseUpCell(double, double)","MouseUpCellAsync(double, double)":"MouseUpCellAsync(double, double)","MouseUpCellAsync":"MouseUpCellAsync(double, double)","PassCellClone(object)":"PassCellClone(object)","PassCellClone":"PassCellClone(object)","PassCellCloneAsync(object)":"PassCellCloneAsync(object)","PassCellCloneAsync":"PassCellCloneAsync(object)","PointerDownCell()":"PointerDownCell()","PointerDownCell":"PointerDownCell()","PointerDownCellAsync()":"PointerDownCellAsync()","PointerDownCellAsync":"PointerDownCellAsync()","PointerUpCell()":"PointerUpCell()","PointerUpCell":"PointerUpCell()","PointerUpCellAsync()":"PointerUpCellAsync()","PointerUpCellAsync":"PointerUpCellAsync()","PreviewMouseDownCell(bool, bool, MouseButton)":"PreviewMouseDownCell(bool, bool, MouseButton)","PreviewMouseDownCell":"PreviewMouseDownCell(bool, bool, MouseButton)","PreviewMouseDownCellAsync(bool, bool, MouseButton)":"PreviewMouseDownCellAsync(bool, bool, MouseButton)","PreviewMouseDownCellAsync":"PreviewMouseDownCellAsync(bool, bool, MouseButton)","PreviewMouseUpCell(bool, bool, MouseButton)":"PreviewMouseUpCell(bool, bool, MouseButton)","PreviewMouseUpCell":"PreviewMouseUpCell(bool, bool, MouseButton)","PreviewMouseUpCellAsync(bool, bool, MouseButton)":"PreviewMouseUpCellAsync(bool, bool, MouseButton)","PreviewMouseUpCellAsync":"PreviewMouseUpCellAsync(bool, bool, MouseButton)","PreviewPointerDownCell()":"PreviewPointerDownCell()","PreviewPointerDownCell":"PreviewPointerDownCell()","PreviewPointerDownCellAsync()":"PreviewPointerDownCellAsync()","PreviewPointerDownCellAsync":"PreviewPointerDownCellAsync()","PreviewPointerUpCell()":"PreviewPointerUpCell()","PreviewPointerUpCell":"PreviewPointerUpCell()","PreviewPointerUpCellAsync()":"PreviewPointerUpCellAsync()","PreviewPointerUpCellAsync":"PreviewPointerUpCellAsync()","ShouldSkipFocusRetain()":"ShouldSkipFocusRetain()","ShouldSkipFocusRetain":"ShouldSkipFocusRetain()","ShouldSkipFocusRetainAsync()":"ShouldSkipFocusRetainAsync()","ShouldSkipFocusRetainAsync":"ShouldSkipFocusRetainAsync()","StartEditMode()":"StartEditMode()","StartEditMode":"StartEditMode()","StartEditModeAsync()":"StartEditModeAsync()","StartEditModeAsync":"StartEditModeAsync()","UpdateCellEditValue(object)":"UpdateCellEditValue(object)","UpdateCellEditValue":"UpdateCellEditValue(object)","UpdateCellEditValueAsync(object)":"UpdateCellEditValueAsync(object)","UpdateCellEditValueAsync":"UpdateCellEditValueAsync(object)"}}],"DataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSource","k":"interface","s":"interfaces","m":{"ClearPinnedRows()":"ClearPinnedRows()","ClearPinnedRows":"ClearPinnedRows()","ClearPinnedRowsAsync()":"ClearPinnedRowsAsync()","ClearPinnedRowsAsync":"ClearPinnedRowsAsync()","Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()","DeferAutoRefresh":"DeferAutoRefresh","FilterExpressions":"FilterExpressions","FirstVisibleIndexRequested":"FirstVisibleIndexRequested","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","GetIsRowExpandedAtIndex(int)":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndex":"GetIsRowExpandedAtIndex(int)","GetIsRowExpandedAtIndexAsync(int)":"GetIsRowExpandedAtIndexAsync(int)","GetIsRowExpandedAtIndexAsync":"GetIsRowExpandedAtIndexAsync(int)","GetItemProperty(object, string)":"GetItemProperty(object, string)","GetItemProperty":"GetItemProperty(object, string)","GetItemPropertyAsync(object, string)":"GetItemPropertyAsync(object, string)","GetItemPropertyAsync":"GetItemPropertyAsync(object, string)","GetItemPropertyAtIndex(int, string)":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndex":"GetItemPropertyAtIndex(int, string)","GetItemPropertyAtIndexAsync(int, string)":"GetItemPropertyAtIndexAsync(int, string)","GetItemPropertyAtIndexAsync":"GetItemPropertyAtIndexAsync(int, string)","GetMainValuePath(DataSourceRowType)":"GetMainValuePath(DataSourceRowType)","GetMainValuePath":"GetMainValuePath(DataSourceRowType)","GetMainValuePathAsync(DataSourceRowType)":"GetMainValuePathAsync(DataSourceRowType)","GetMainValuePathAsync":"GetMainValuePathAsync(DataSourceRowType)","GetRootSummaryResults()":"GetRootSummaryResults()","GetRootSummaryResults":"GetRootSummaryResults()","GetRootSummaryResultsAsync()":"GetRootSummaryResultsAsync()","GetRootSummaryResultsAsync":"GetRootSummaryResultsAsync()","GetRootSummaryRowCount()":"GetRootSummaryRowCount()","GetRootSummaryRowCount":"GetRootSummaryRowCount()","GetRootSummaryRowCountAsync()":"GetRootSummaryRowCountAsync()","GetRootSummaryRowCountAsync":"GetRootSummaryRowCountAsync()","GetRowLevel(int)":"GetRowLevel(int)","GetRowLevel":"GetRowLevel(int)","GetRowLevelAsync(int)":"GetRowLevelAsync(int)","GetRowLevelAsync":"GetRowLevelAsync(int)","GetRowType(int)":"GetRowType(int)","GetRowType":"GetRowType(int)","GetRowTypeAsync(int)":"GetRowTypeAsync(int)","GetRowTypeAsync":"GetRowTypeAsync(int)","GetSectionSummaryResults(int)":"GetSectionSummaryResults(int)","GetSectionSummaryResults":"GetSectionSummaryResults(int)","GetSectionSummaryResultsAsync(int)":"GetSectionSummaryResultsAsync(int)","GetSectionSummaryResultsAsync":"GetSectionSummaryResultsAsync(int)","GetStickyRowPriority(int)":"GetStickyRowPriority(int)","GetStickyRowPriority":"GetStickyRowPriority(int)","GetStickyRowPriorityAsync(int)":"GetStickyRowPriorityAsync(int)","GetStickyRowPriorityAsync":"GetStickyRowPriorityAsync(int)","IncludeSummaryRowsInSection":"IncludeSummaryRowsInSection","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","IsExclusivelySticky(int)":"IsExclusivelySticky(int)","IsExclusivelySticky":"IsExclusivelySticky(int)","IsExclusivelyStickyAsync(int)":"IsExclusivelyStickyAsync(int)","IsExclusivelyStickyAsync":"IsExclusivelyStickyAsync(int)","IsPlaceholderItem(int)":"IsPlaceholderItem(int)","IsPlaceholderItem":"IsPlaceholderItem(int)","IsPlaceholderItemAsync(int)":"IsPlaceholderItemAsync(int)","IsPlaceholderItemAsync":"IsPlaceholderItemAsync(int)","IsRowPinned(int)":"IsRowPinned(int)","IsRowPinned":"IsRowPinned(int)","IsRowPinnedAsync(int)":"IsRowPinnedAsync(int)","IsRowPinnedAsync":"IsRowPinnedAsync(int)","IsRowSpanning(DataSourceRowType)":"IsRowSpanning(DataSourceRowType)","IsRowSpanning":"IsRowSpanning(DataSourceRowType)","IsRowSpanningAsync(DataSourceRowType)":"IsRowSpanningAsync(DataSourceRowType)","IsRowSpanningAsync":"IsRowSpanningAsync(DataSourceRowType)","IsSectionCollapsable":"IsSectionCollapsable","IsSectionContentVisible":"IsSectionContentVisible","IsSectionExpandedDefault":"IsSectionExpandedDefault","IsSectionHeaderNormalRow":"IsSectionHeaderNormalRow","IsSectionSummaryRowsAtBottom":"IsSectionSummaryRowsAtBottom","LastVisibleIndexRequested":"LastVisibleIndexRequested","PinRow(object[])":"PinRow(object[])","PinRow":"PinRow(object[])","PinRowAsync(object[])":"PinRowAsync(object[])","PinRowAsync":"PinRowAsync(object[])","PrimaryKey":"PrimaryKey","PropertiesRequested":"PropertiesRequested","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","SchemaIncludedProperties":"SchemaIncludedProperties","SectionHeaderDisplayMode":"SectionHeaderDisplayMode","SetIsRowExpandedAtIndex(int, bool)":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndex":"SetIsRowExpandedAtIndex(int, bool)","SetIsRowExpandedAtIndexAsync(int, bool)":"SetIsRowExpandedAtIndexAsync(int, bool)","SetIsRowExpandedAtIndexAsync":"SetIsRowExpandedAtIndexAsync(int, bool)","ShouldEmitSectionFooters":"ShouldEmitSectionFooters","ShouldEmitSectionHeaders":"ShouldEmitSectionHeaders","ShouldEmitShiftedRows":"ShouldEmitShiftedRows","ShouldEmitSummaryRows":"ShouldEmitSummaryRows","SummaryScope":"SummaryScope","UnpinRow(object[])":"UnpinRow(object[])","UnpinRow":"UnpinRow(object[])","UnpinRowAsync(object[])":"UnpinRowAsync(object[])","UnpinRowAsync":"UnpinRowAsync(object[])","UpdateNotifier":"UpdateNotifier"}}],"DataSourceClonableDataProvider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceClonableDataProvider","k":"interface","s":"interfaces","m":{"Clone()":"Clone()","Clone":"Clone()","CloneAsync()":"CloneAsync()","CloneAsync":"CloneAsync()"}}],"DataSourceDataProvider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceDataProvider","k":"interface","s":"interfaces","m":{"AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","DeferAutoRefresh":"DeferAutoRefresh","ExecutionContext":"ExecutionContext","FilterExpressions":"FilterExpressions","FlushAutoRefresh()":"FlushAutoRefresh()","FlushAutoRefresh":"FlushAutoRefresh()","FlushAutoRefreshAsync()":"FlushAutoRefreshAsync()","FlushAutoRefreshAsync":"FlushAutoRefreshAsync()","GetItemValue(object, string)":"GetItemValue(object, string)","GetItemValue":"GetItemValue(object, string)","GetItemValueAsync(object, string)":"GetItemValueAsync(object, string)","GetItemValueAsync":"GetItemValueAsync(object, string)","IndexOfItem(object)":"IndexOfItem(object)","IndexOfItem":"IndexOfItem(object)","IndexOfItemAsync(object)":"IndexOfItemAsync(object)","IndexOfItemAsync":"IndexOfItemAsync(object)","IndexOfKey(object[])":"IndexOfKey(object[])","IndexOfKey":"IndexOfKey(object[])","IndexOfKeyAsync(object[])":"IndexOfKeyAsync(object[])","IndexOfKeyAsync":"IndexOfKeyAsync(object[])","PropertiesRequested":"PropertiesRequested","QueueAutoRefresh()":"QueueAutoRefresh()","QueueAutoRefresh":"QueueAutoRefresh()","QueueAutoRefreshAsync()":"QueueAutoRefreshAsync()","QueueAutoRefreshAsync":"QueueAutoRefreshAsync()","Refresh()":"Refresh()","Refresh":"Refresh()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","ResolveSchemaPropertyType(string)":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyType":"ResolveSchemaPropertyType(string)","ResolveSchemaPropertyTypeAsync(string)":"ResolveSchemaPropertyTypeAsync(string)","ResolveSchemaPropertyTypeAsync":"ResolveSchemaPropertyTypeAsync(string)","SchemaIncludedProperties":"SchemaIncludedProperties","SetItemValue(object, string, object)":"SetItemValue(object, string, object)","SetItemValue":"SetItemValue(object, string, object)","SetItemValueAsync(object, string, object)":"SetItemValueAsync(object, string, object)","SetItemValueAsync":"SetItemValueAsync(object, string, object)","SummaryScope":"SummaryScope","UpdateNotifier":"UpdateNotifier"}}],"DataSourceDataProviderUpdateNotifier":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceDataProviderUpdateNotifier","k":"interface","s":"interfaces"}],"DataSourceExecutionContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceExecutionContext","k":"interface","s":"interfaces"}],"DataSourceLocalDataProvider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceLocalDataProvider","k":"interface","s":"interfaces","m":{"DataSource":"DataSource"}}],"DataSourceSchema":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceSchema","k":"interface","s":"interfaces"}],"DataSourceSupportsCount":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceSupportsCount","k":"interface","s":"interfaces"}],"DataSourceSupportsIndexedAccess":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceSupportsIndexedAccess","k":"interface","s":"interfaces","m":{"GetItemAtIndex(int)":"GetItemAtIndex(int)","GetItemAtIndex":"GetItemAtIndex(int)","GetItemAtIndexAsync(int)":"GetItemAtIndexAsync(int)","GetItemAtIndexAsync":"GetItemAtIndexAsync(int)"}}],"DataSourceUpdateNotifier":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceUpdateNotifier","k":"interface","s":"interfaces","m":{"NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)","RangeActualized(int, int)":"RangeActualized(int, int)","RangeActualized":"RangeActualized(int, int)","RangeActualizedAsync(int, int)":"RangeActualizedAsync(int, int)","RangeActualizedAsync":"RangeActualizedAsync(int, int)"}}],"DataSourceVirtualDataProvider":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/DataSourceVirtualDataProvider","k":"interface","s":"interfaces","m":{"AddPageRequest(int, DataSourcePageRequestPriority)":"AddPageRequest(int, DataSourcePageRequestPriority)","AddPageRequest":"AddPageRequest(int, DataSourcePageRequestPriority)","AddPageRequestAsync(int, DataSourcePageRequestPriority)":"AddPageRequestAsync(int, DataSourcePageRequestPriority)","AddPageRequestAsync":"AddPageRequestAsync(int, DataSourcePageRequestPriority)","BatchCompleted":"BatchCompleted","Close()":"Close()","Close":"Close()","CloseAsync()":"CloseAsync()","CloseAsync":"CloseAsync()","CreateBatchRequest(IgbTransactionState[])":"CreateBatchRequest(IgbTransactionState[])","CreateBatchRequest":"CreateBatchRequest(IgbTransactionState[])","CreateBatchRequestAsync(IgbTransactionState[])":"CreateBatchRequestAsync(IgbTransactionState[])","CreateBatchRequestAsync":"CreateBatchRequestAsync(IgbTransactionState[])","PageLoaded":"PageLoaded","PageSizeRequested":"PageSizeRequested","RemoveAllPageRequests()":"RemoveAllPageRequests()","RemoveAllPageRequests":"RemoveAllPageRequests()","RemoveAllPageRequestsAsync()":"RemoveAllPageRequestsAsync()","RemoveAllPageRequestsAsync":"RemoveAllPageRequestsAsync()","RemovePageRequest(int)":"RemovePageRequest(int)","RemovePageRequest":"RemovePageRequest(int)","RemovePageRequestAsync(int)":"RemovePageRequestAsync(int)","RemovePageRequestAsync":"RemovePageRequestAsync(int)"}}],"EditableDataSource":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/EditableDataSource","k":"interface","s":"interfaces","m":{"AcceptPendingCommit(int)":"AcceptPendingCommit(int)","AcceptPendingCommit":"AcceptPendingCommit(int)","AcceptPendingCommitAsync(int)":"AcceptPendingCommitAsync(int)","AcceptPendingCommitAsync":"AcceptPendingCommitAsync(int)","AcceptPendingTransaction(int)":"AcceptPendingTransaction(int)","AcceptPendingTransaction":"AcceptPendingTransaction(int)","AcceptPendingTransactionAsync(int)":"AcceptPendingTransactionAsync(int)","AcceptPendingTransactionAsync":"AcceptPendingTransactionAsync(int)","AddItem(object)":"AddItem(object)","AddItem":"AddItem(object)","AddItemAsync(object)":"AddItemAsync(object)","AddItemAsync":"AddItemAsync(object)","CancelEdits()":"CancelEdits()","CancelEdits":"CancelEdits()","CancelEditsAsync()":"CancelEditsAsync()","CancelEditsAsync":"CancelEditsAsync()","CommitEdits(bool)":"CommitEdits(bool)","CommitEdits":"CommitEdits(bool)","CommitEditsAsync(bool)":"CommitEditsAsync(bool)","CommitEditsAsync":"CommitEditsAsync(bool)","GetAggregatedChanges(int)":"GetAggregatedChanges(int)","GetAggregatedChanges":"GetAggregatedChanges(int)","GetAggregatedChangesAsync(int)":"GetAggregatedChangesAsync(int)","GetAggregatedChangesAsync":"GetAggregatedChangesAsync(int)","GetTransactionErrorByID(int)":"GetTransactionErrorByID(int)","GetTransactionErrorByID":"GetTransactionErrorByID(int)","GetTransactionErrorByIDAsync(int)":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByIDAsync":"GetTransactionErrorByIDAsync(int)","GetTransactionErrorByKey(object[], string)":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKey":"GetTransactionErrorByKey(object[], string)","GetTransactionErrorByKeyAsync(object[], string)":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionErrorByKeyAsync":"GetTransactionErrorByKeyAsync(object[], string)","GetTransactionID(object[], string)":"GetTransactionID(object[], string)","GetTransactionID":"GetTransactionID(object[], string)","GetTransactionIDAsync(object[], string)":"GetTransactionIDAsync(object[], string)","GetTransactionIDAsync":"GetTransactionIDAsync(object[], string)","HasAdd(object)":"HasAdd(object)","HasAdd":"HasAdd(object)","HasAddAsync(object)":"HasAddAsync(object)","HasAddAsync":"HasAddAsync(object)","HasDelete(object[])":"HasDelete(object[])","HasDelete":"HasDelete(object[])","HasDeleteAsync(object[])":"HasDeleteAsync(object[])","HasDeleteAsync":"HasDeleteAsync(object[])","HasEdit(object[], string)":"HasEdit(object[], string)","HasEdit":"HasEdit(object[], string)","HasEditAsync(object[], string)":"HasEditAsync(object[], string)","HasEditAsync":"HasEditAsync(object[], string)","IsBatchingEnabled":"IsBatchingEnabled","IsPendingCommit(int)":"IsPendingCommit(int)","IsPendingCommit":"IsPendingCommit(int)","IsPendingCommitAsync(int)":"IsPendingCommitAsync(int)","IsPendingCommitAsync":"IsPendingCommitAsync(int)","IsPendingTransaction(int)":"IsPendingTransaction(int)","IsPendingTransaction":"IsPendingTransaction(int)","IsPendingTransactionAsync(int)":"IsPendingTransactionAsync(int)","IsPendingTransactionAsync":"IsPendingTransactionAsync(int)","IsReadOnly":"IsReadOnly","Redo()":"Redo()","Redo":"Redo()","RedoAsync()":"RedoAsync()","RedoAsync":"RedoAsync()","RejectPendingCommit(int)":"RejectPendingCommit(int)","RejectPendingCommit":"RejectPendingCommit(int)","RejectPendingCommitAsync(int)":"RejectPendingCommitAsync(int)","RejectPendingCommitAsync":"RejectPendingCommitAsync(int)","RejectPendingTransaction(int)":"RejectPendingTransaction(int)","RejectPendingTransaction":"RejectPendingTransaction(int)","RejectPendingTransactionAsync(int)":"RejectPendingTransactionAsync(int)","RejectPendingTransactionAsync":"RejectPendingTransactionAsync(int)","RemoveItem(object)":"RemoveItem(object)","RemoveItem":"RemoveItem(object)","RemoveItemAsync(object)":"RemoveItemAsync(object)","RemoveItemAsync":"RemoveItemAsync(object)","RemoveItemByKey(object[])":"RemoveItemByKey(object[])","RemoveItemByKey":"RemoveItemByKey(object[])","RemoveItemByKeyAsync(object[])":"RemoveItemByKeyAsync(object[])","RemoveItemByKeyAsync":"RemoveItemByKeyAsync(object[])","SetTransactionError(int, string)":"SetTransactionError(int, string)","SetTransactionError":"SetTransactionError(int, string)","SetTransactionErrorAsync(int, string)":"SetTransactionErrorAsync(int, string)","SetTransactionErrorAsync":"SetTransactionErrorAsync(int, string)","Undo()":"Undo()","Undo":"Undo()","UndoAsync()":"UndoAsync()","UndoAsync":"UndoAsync()","UpdatePropertyAtKey(object[], string, object, bool)":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKey":"UpdatePropertyAtKey(object[], string, object, bool)","UpdatePropertyAtKeyAsync(object[], string, object, bool)":"UpdatePropertyAtKeyAsync(object[], string, object, bool)","UpdatePropertyAtKeyAsync":"UpdatePropertyAtKeyAsync(object[], string, object, bool)"}}],"IDataIntentAttribute":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/IDataIntentAttribute","k":"interface","s":"interfaces","m":{"Intent":"Intent"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/interfaces/IDataIntentAttribute","k":"interface","s":"interfaces","m":{"Intent":"Intent"}}],"IExecutionContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/IExecutionContext","k":"interface","s":"interfaces","m":{"EnqueueAction(ExecutionContextExecuteCallback)":"EnqueueAction(ExecutionContextExecuteCallback)","EnqueueAction":"EnqueueAction(ExecutionContextExecuteCallback)","EnqueueAnimationAction(ExecutionContextExecuteCallback)":"EnqueueAnimationAction(ExecutionContextExecuteCallback)","EnqueueAnimationAction":"EnqueueAnimationAction(ExecutionContextExecuteCallback)","Execute(ExecutionContextExecuteCallback)":"Execute(ExecutionContextExecuteCallback)","Execute":"Execute(ExecutionContextExecuteCallback)","ExecuteDelayed(ExecutionContextExecuteCallback, int)":"ExecuteDelayed(ExecutionContextExecuteCallback, int)","ExecuteDelayed":"ExecuteDelayed(ExecutionContextExecuteCallback, int)","GetCurrentRelativeTime()":"GetCurrentRelativeTime()","GetCurrentRelativeTime":"GetCurrentRelativeTime()"}}],"IgbTileGenerator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/IgbTileGenerator","k":"interface","s":"interfaces"}],"IIgniteUIBlazor":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/IIgniteUIBlazor","k":"interface","s":"interfaces","m":{"IsLoadRequested(string)":"IsLoadRequested(string)","IsLoadRequested":"IsLoadRequested(string)","IsRuntimeValid(bool)":"IsRuntimeValid(bool)","IsRuntimeValid":"IsRuntimeValid(bool)","JsRuntime":"JsRuntime","MarkIsLoadRequested(string)":"MarkIsLoadRequested(string)","MarkIsLoadRequested":"MarkIsLoadRequested(string)","RequestLoad(string)":"RequestLoad(string)","RequestLoad":"RequestLoad(string)","Settings":"Settings","WebCallback":"WebCallback"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/interfaces/IIgniteUIBlazor","k":"interface","s":"interfaces","m":{"IsLoadRequested(string)":"IsLoadRequested(string)","IsLoadRequested":"IsLoadRequested(string)","IsRuntimeValid(bool)":"IsRuntimeValid(bool)","IsRuntimeValid":"IsRuntimeValid(bool)","JsRuntime":"JsRuntime","MarkIsLoadRequested(string)":"MarkIsLoadRequested(string)","MarkIsLoadRequested":"MarkIsLoadRequested(string)","RequestLoad(string)":"RequestLoad(string)","RequestLoad":"RequestLoad(string)","Settings":"Settings","WebCallback":"WebCallback"}}],"IIgniteUIBlazorSettings":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/IIgniteUIBlazorSettings","k":"interface","s":"interfaces","m":{"ForceJsonDataMarshalling":"ForceJsonDataMarshalling","JsonSerializerOptions":"JsonSerializerOptions","ModulesToLoad":"ModulesToLoad"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/interfaces/IIgniteUIBlazorSettings","k":"interface","s":"interfaces","m":{"ForceJsonDataMarshalling":"ForceJsonDataMarshalling","JsonSerializerOptions":"JsonSerializerOptions","ModulesToLoad":"ModulesToLoad"}}],"JsonSerializable":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/JsonSerializable","k":"interface","s":"interfaces","m":{"Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/interfaces/JsonSerializable","k":"interface","s":"interfaces","m":{"Serialize(SerializationContext, string)":"Serialize(SerializationContext, string)","Serialize":"Serialize(SerializationContext, string)"}}],"LegendContext":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/LegendContext","k":"interface","s":"interfaces"}],"LegendOwner":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/LegendOwner","k":"interface","s":"interfaces"}],"LegendSeries":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/LegendSeries","k":"interface","s":"interfaces","m":{"ResolveLegendIndex()":"ResolveLegendIndex()","ResolveLegendIndex":"ResolveLegendIndex()","ResolveLegendIndexAsync()":"ResolveLegendIndexAsync()","ResolveLegendIndexAsync":"ResolveLegendIndexAsync()"}}],"SupportsDataChangeNotifications":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/SupportsDataChangeNotifications","k":"interface","s":"interfaces","m":{"NotifyClearItems()":"NotifyClearItems()","NotifyClearItems":"NotifyClearItems()","NotifyClearItemsAsync()":"NotifyClearItemsAsync()","NotifyClearItemsAsync":"NotifyClearItemsAsync()","NotifyInsertItem(int, object)":"NotifyInsertItem(int, object)","NotifyInsertItem":"NotifyInsertItem(int, object)","NotifyInsertItemAsync(int, object)":"NotifyInsertItemAsync(int, object)","NotifyInsertItemAsync":"NotifyInsertItemAsync(int, object)","NotifyRemoveItem(int, object)":"NotifyRemoveItem(int, object)","NotifyRemoveItem":"NotifyRemoveItem(int, object)","NotifyRemoveItemAsync(int, object)":"NotifyRemoveItemAsync(int, object)","NotifyRemoveItemAsync":"NotifyRemoveItemAsync(int, object)","NotifySetItem(int, object, object)":"NotifySetItem(int, object, object)","NotifySetItem":"NotifySetItem(int, object, object)","NotifySetItemAsync(int, object, object)":"NotifySetItemAsync(int, object, object)","NotifySetItemAsync":"NotifySetItemAsync(int, object, object)"}}],"SupportsExpansionChangeNotifications":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/interfaces/SupportsExpansionChangeNotifications","k":"interface","s":"interfaces","m":{"NotifyRowExpansionChanged(int, bool, bool)":"NotifyRowExpansionChanged(int, bool, bool)","NotifyRowExpansionChanged":"NotifyRowExpansionChanged(int, bool, bool)","NotifyRowExpansionChangedAsync(int, bool, bool)":"NotifyRowExpansionChangedAsync(int, bool, bool)","NotifyRowExpansionChangedAsync":"NotifyRowExpansionChangedAsync(int, bool, bool)"}}],"AbsolutePosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AbsolutePosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Middle":"Middle","Top":"Top"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/AbsolutePosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Middle":"Middle","Top":"Top"}}],"ActualLegendItemBadgeShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ActualLegendItemBadgeShape","k":"enum","s":"enums","m":{"BarShape":"BarShape","CircleShape":"CircleShape","ColumnShape":"ColumnShape","HiddenShape":"HiddenShape","LineMarkerless":"LineMarkerless","LineWithMarker":"LineWithMarker","MarkerShape":"MarkerShape","SquareFinancial":"SquareFinancial","SquareIndicator":"SquareIndicator","SquareShape":"SquareShape"}}],"AngleAxisLabelLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AngleAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"AnnotationAppearanceMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AnnotationAppearanceMode","k":"enum","s":"enums","m":{"Auto":"Auto","BrightnessShift":"BrightnessShift","DashPattern":"DashPattern","OpacityShift":"OpacityShift","SaturationShift":"SaturationShift"}}],"AutoCalloutVisibilityMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AutoCalloutVisibilityMode","k":"enum","s":"enums","m":{"Auto":"Auto","DedicatedLanes":"DedicatedLanes","Normal":"Normal"}}],"AutoMarginsAndAngleUpdateMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AutoMarginsAndAngleUpdateMode","k":"enum","s":"enums","m":{"None":"None","SizeChanging":"SizeChanging","SizeChangingAndZoom":"SizeChangingAndZoom"}}],"AvatarShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AvatarShape","k":"enum","s":"enums","m":{"Circle":"Circle","Rounded":"Rounded","Square":"Square"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/AvatarShape","k":"enum","s":"enums","m":{"Circle":"Circle","Rounded":"Rounded","Square":"Square"}}],"AxisAngleLabelMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AxisAngleLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Center":"Center","ClosestPoint":"ClosestPoint"}}],"AxisExtentType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AxisExtentType","k":"enum","s":"enums","m":{"Percent":"Percent","Pixel":"Pixel"}}],"AxisLabelsLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AxisLabelsLocation","k":"enum","s":"enums","m":{"InsideBottom":"InsideBottom","InsideLeft":"InsideLeft","InsideRight":"InsideRight","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight","OutsideTop":"OutsideTop"}}],"AxisRangeBufferMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AxisRangeBufferMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series","SeriesMaximum":"SeriesMaximum","SeriesMinimum":"SeriesMinimum"}}],"AxisTitlePosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AxisTitlePosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"AzureMapsImageryStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/AzureMapsImageryStyle","k":"enum","s":"enums","m":{"DarkGrey":"DarkGrey","HybridDarkGreyOverlay":"HybridDarkGreyOverlay","HybridRoadOverlay":"HybridRoadOverlay","LabelsDarkGreyOverlay":"LabelsDarkGreyOverlay","LabelsRoadOverlay":"LabelsRoadOverlay","Road":"Road","Satellite":"Satellite","TerraOverlay":"TerraOverlay","TrafficAbsoluteOverlay":"TrafficAbsoluteOverlay","TrafficDelayOverlay":"TrafficDelayOverlay","TrafficReducedOverlay":"TrafficReducedOverlay","TrafficRelativeDarkOverlay":"TrafficRelativeDarkOverlay","TrafficRelativeOverlay":"TrafficRelativeOverlay","WeatherInfraredOverlay":"WeatherInfraredOverlay","WeatherRadarOverlay":"WeatherRadarOverlay"}}],"BadgeShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/BadgeShape","k":"enum","s":"enums","m":{"Rounded":"Rounded","Square":"Square"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/BadgeShape","k":"enum","s":"enums","m":{"Rounded":"Rounded","Square":"Square"}}],"BaseControlTheme":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/BaseControlTheme","k":"enum","s":"enums","m":{"Default":"Default","DenaliLight":"DenaliLight","MaterialLight":"MaterialLight","RevealDark":"RevealDark","RevealLight":"RevealLight","SlingshotDark":"SlingshotDark","SlingshotLight":"SlingshotLight"}}],"BingMapsImageryStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/BingMapsImageryStyle","k":"enum","s":"enums","m":{"Aerial":"Aerial","AerialWithLabels":"AerialWithLabels","CanvasDark":"CanvasDark","CanvasGray":"CanvasGray","CanvasLight":"CanvasLight","Road":"Road"}}],"BrushSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/BrushSelectionMode","k":"enum","s":"enums","m":{"Interpolate":"Interpolate","Select":"Select"}}],"BrushType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/BrushType","k":"enum","s":"enums","m":{"LinearGradient":"LinearGradient","RadialGradient":"RadialGradient","Solid":"Solid"}}],"ButtonBaseTarget":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ButtonBaseTarget","k":"enum","s":"enums","m":{"_blank":"_blank","_parent":"_parent","_self":"_self","_top":"_top"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ButtonBaseTarget","k":"enum","s":"enums","m":{"_blank":"_blank","_parent":"_parent","_self":"_self","_top":"_top"}}],"ButtonBaseType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ButtonBaseType","k":"enum","s":"enums","m":{"Button":"Button","Reset":"Reset","Submit":"Submit"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ButtonBaseType","k":"enum","s":"enums","m":{"Button":"Button","Reset":"Reset","Submit":"Submit"}}],"ButtonDisplayStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ButtonDisplayStyle","k":"enum","s":"enums","m":{"Fab":"Fab","Flat":"Flat","Icon":"Icon","Outlined":"Outlined","Raised":"Raised"}}],"ButtonGroupSelection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ButtonGroupSelection","k":"enum","s":"enums","m":{"Multiple":"Multiple","Single":"Single","SingleRequired":"SingleRequired"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ButtonGroupSelection","k":"enum","s":"enums","m":{"Multiple":"Multiple","Single":"Single","SingleRequired":"SingleRequired"}}],"ButtonVariant":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ButtonVariant","k":"enum","s":"enums","m":{"Contained":"Contained","Fab":"Fab","Flat":"Flat","Outlined":"Outlined"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ButtonVariant","k":"enum","s":"enums","m":{"Contained":"Contained","Fab":"Fab","Flat":"Flat","Outlined":"Outlined"}}],"CalendarActiveView":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CalendarActiveView","k":"enum","s":"enums","m":{"Days":"Days","Months":"Months","Years":"Years"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/CalendarActiveView","k":"enum","s":"enums","m":{"Days":"Days","Months":"Months","Years":"Years"}}],"CalendarHeaderOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CalendarHeaderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/CalendarHeaderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"CalendarSelection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CalendarSelection","k":"enum","s":"enums","m":{"Multiple":"Multiple","Range":"Range","Single":"Single"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/CalendarSelection","k":"enum","s":"enums","m":{"Multiple":"Multiple","Range":"Range","Single":"Single"}}],"CalloutCollisionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CalloutCollisionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Greedy":"Greedy","GreedyCenterOfMass":"GreedyCenterOfMass","RadialBestFit":"RadialBestFit","RadialCenter":"RadialCenter","RadialInsideEnd":"RadialInsideEnd","RadialOutsideEnd":"RadialOutsideEnd","SimulatedAnnealing":"SimulatedAnnealing"}}],"CalloutPlacementPositions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CalloutPlacementPositions","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"CaptureImageFormat":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CaptureImageFormat","k":"enum","s":"enums","m":{"Jpeg":"Jpeg","Png":"Png"}}],"CarouselAnimationDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CarouselAnimationDirection","k":"enum","s":"enums","m":{"Next":"Next","Prev":"Prev"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/CarouselAnimationDirection","k":"enum","s":"enums","m":{"Next":"Next","Prev":"Prev"}}],"CarouselIndicatorsOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CarouselIndicatorsOrientation","k":"enum","s":"enums","m":{"End":"End","Start":"Start"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/CarouselIndicatorsOrientation","k":"enum","s":"enums","m":{"End":"End","Start":"Start"}}],"CategoryChartType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CategoryChartType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Column":"Column","Line":"Line","Point":"Point","Spline":"Spline","SplineArea":"SplineArea","StepArea":"StepArea","StepLine":"StepLine","Waterfall":"Waterfall"}}],"CategoryCollisionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CategoryCollisionMode","k":"enum","s":"enums","m":{"MatchHeight":"MatchHeight","WholeColumn":"WholeColumn"}}],"CategoryItemHighlightType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CategoryItemHighlightType","k":"enum","s":"enums","m":{"Auto":"Auto","Marker":"Marker","Shape":"Shape"}}],"CategorySeriesMarkerCollisionAvoidance":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CategorySeriesMarkerCollisionAvoidance","k":"enum","s":"enums","m":{"None":"None","Omit":"Omit"}}],"CategoryTooltipLayerPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CategoryTooltipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"CategoryTransitionInMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CategoryTransitionInMode","k":"enum","s":"enums","m":{"AccordionFromBottom":"AccordionFromBottom","AccordionFromCategoryAxisMaximum":"AccordionFromCategoryAxisMaximum","AccordionFromCategoryAxisMinimum":"AccordionFromCategoryAxisMinimum","AccordionFromLeft":"AccordionFromLeft","AccordionFromRight":"AccordionFromRight","AccordionFromTop":"AccordionFromTop","AccordionFromValueAxisMaximum":"AccordionFromValueAxisMaximum","AccordionFromValueAxisMinimum":"AccordionFromValueAxisMinimum","Auto":"Auto","Expand":"Expand","FromParent":"FromParent","FromZero":"FromZero","SweepFromBottom":"SweepFromBottom","SweepFromCategoryAxisMaximum":"SweepFromCategoryAxisMaximum","SweepFromCategoryAxisMinimum":"SweepFromCategoryAxisMinimum","SweepFromCenter":"SweepFromCenter","SweepFromLeft":"SweepFromLeft","SweepFromRight":"SweepFromRight","SweepFromTop":"SweepFromTop","SweepFromValueAxisMaximum":"SweepFromValueAxisMaximum","SweepFromValueAxisMinimum":"SweepFromValueAxisMinimum"}}],"CellContentHorizontalAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CellContentHorizontalAlignment","k":"enum","s":"enums","m":{"Auto":"Auto","Center":"Center","Left":"Left","Right":"Right","Stretch":"Stretch"}}],"CellContentVerticalAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CellContentVerticalAlignment","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Center":"Center","Stretch":"Stretch","Top":"Top"}}],"CellDataLoadedAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CellDataLoadedAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","CrossFade":"CrossFade","None":"None"}}],"CellPropertyAnimationType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CellPropertyAnimationType","k":"enum","s":"enums","m":{"BoolValue":"BoolValue","BrushValue":"BrushValue","DateValue":"DateValue","DoubleValue":"DoubleValue","EnumValue":"EnumValue","FontValue":"FontValue","IgnoredValue":"IgnoredValue","IntValue":"IntValue","None":"None","NumberValue":"NumberValue","ObjectValue":"ObjectValue","StringValue":"StringValue"}}],"CellSelectionAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CellSelectionAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorBlend":"ColorBlend","None":"None"}}],"ChartHitTestMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ChartHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational","Mixed":"Mixed","MixedFavoringComputational":"MixedFavoringComputational"}}],"CheckboxListIndexType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CheckboxListIndexType","k":"enum","s":"enums","m":{"DeSelected":"DeSelected","Selected":"Selected"}}],"CloneDataSourceFilterOperation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CloneDataSourceFilterOperation","k":"enum","s":"enums","m":{"None":"None","TextToValue":"TextToValue","ValueToText":"ValueToText"}}],"CollisionAvoidanceType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CollisionAvoidanceType","k":"enum","s":"enums","m":{"Fade":"Fade","FadeAndShift":"FadeAndShift","None":"None","Omit":"Omit","OmitAndShift":"OmitAndShift"}}],"ColorScaleInterpolationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColorScaleInterpolationMode","k":"enum","s":"enums","m":{"InterpolateHSV":"InterpolateHSV","InterpolateRGB":"InterpolateRGB","Select":"Select"}}],"ColumnComparisonConditionOperatorType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnComparisonConditionOperatorType","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomPercentile":"BottomPercentile","Contains":"Contains","Custom":"Custom","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","DoesNotStartWith":"DoesNotStartWith","Empty":"Empty","EndsWith":"EndsWith","Equals":"Equals","False":"False","GreaterThan":"GreaterThan","GreaterThanOrEqualTo":"GreaterThanOrEqualTo","IsNotNull":"IsNotNull","IsNull":"IsNull","LastMonth":"LastMonth","LastQuarter":"LastQuarter","LastWeek":"LastWeek","LastYear":"LastYear","LessThan":"LessThan","LessThanOrEqualTo":"LessThanOrEqualTo","Month":"Month","NextMonth":"NextMonth","NextQuarter":"NextQuarter","NextWeek":"NextWeek","NextYear":"NextYear","NotEmpty":"NotEmpty","NotEquals":"NotEquals","Q1":"Q1","Q2":"Q2","Q3":"Q3","Q4":"Q4","StartsWith":"StartsWith","ThisMonth":"ThisMonth","ThisQuarter":"ThisQuarter","ThisWeek":"ThisWeek","ThisYear":"ThisYear","Today":"Today","Tomorrow":"Tomorrow","Top":"Top","TopPercentile":"TopPercentile","True":"True","Year":"Year","YearToDate":"YearToDate","Yesterday":"Yesterday"}}],"ColumnExchangingAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnExchangingAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Crossfade":"Crossfade","None":"None","SlideToBottom":"SlideToBottom","SlideToBottomAndCrossfade":"SlideToBottomAndCrossfade","SlideToLeft":"SlideToLeft","SlideToLeftAndCrossfade":"SlideToLeftAndCrossfade","SlideToRight":"SlideToRight","SlideToRightAndCrossfade":"SlideToRightAndCrossfade","SlideToTop":"SlideToTop","SlideToTopAndCrossfade":"SlideToTopAndCrossfade"}}],"ColumnHidingAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnHidingAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","FadeOut":"FadeOut","None":"None","SlideToBottom":"SlideToBottom","SlideToBottomAndFadeOut":"SlideToBottomAndFadeOut","SlideToLeft":"SlideToLeft","SlideToLeftAndFadeOut":"SlideToLeftAndFadeOut","SlideToRight":"SlideToRight","SlideToRightAndFadeOut":"SlideToRightAndFadeOut","SlideToTop":"SlideToTop","SlideToTopAndFadeOut":"SlideToTopAndFadeOut"}}],"ColumnMovingAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnMovingAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","SlideOver":"SlideOver"}}],"ColumnMovingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnMovingMode","k":"enum","s":"enums","m":{"Deferred":"Deferred","None":"None"}}],"ColumnOptionsIconAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnOptionsIconAlignment","k":"enum","s":"enums","m":{"None":"None","Opposite":"Opposite","Unset":"Unset"}}],"ColumnOptionsIconBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnOptionsIconBehavior","k":"enum","s":"enums","m":{"AlwaysVisible":"AlwaysVisible","AppearOnHover":"AppearOnHover","AppearOnHoverAnimate":"AppearOnHoverAnimate","Unset":"Unset"}}],"ColumnPinningPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnPinningPosition","k":"enum","s":"enums","m":{"End":"End","Start":"Start"}}],"ColumnPropertyUpdatingAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnPropertyUpdatingAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Interpolate":"Interpolate","InterpolateDeep":"InterpolateDeep","None":"None"}}],"ColumnResizingAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnResizingAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Interpolate":"Interpolate","None":"None"}}],"ColumnResizingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnResizingMode","k":"enum","s":"enums","m":{"Deferred":"Deferred","Immediate":"Immediate","None":"None"}}],"ColumnShowingAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnShowingAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","FadeIn":"FadeIn","None":"None","SlideFromBottom":"SlideFromBottom","SlideFromBottomAndFadeIn":"SlideFromBottomAndFadeIn","SlideFromLeft":"SlideFromLeft","SlideFromLeftAndFadeIn":"SlideFromLeftAndFadeIn","SlideFromRight":"SlideFromRight","SlideFromRightAndFadeIn":"SlideFromRightAndFadeIn","SlideFromTop":"SlideFromTop","SlideFromTopAndFadeIn":"SlideFromTopAndFadeIn"}}],"ColumnSortDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ColumnSortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending","None":"None"}}],"ComboChangeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ComboChangeType","k":"enum","s":"enums","m":{"Addition":"Addition","Deselection":"Deselection","Selection":"Selection"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ComboChangeType","k":"enum","s":"enums","m":{"Addition":"Addition","Deselection":"Deselection","Selection":"Selection"}}],"ComboEditorCloneDataSourceFilterOperation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ComboEditorCloneDataSourceFilterOperation","k":"enum","s":"enums","m":{"None":"None","TextToValue":"TextToValue","ValueToText":"ValueToText"}}],"ComboEditorSelectedItemChangeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ComboEditorSelectedItemChangeType","k":"enum","s":"enums","m":{"Row":"Row","Text":"Text","Value":"Value"}}],"ComputedPlotAreaMarginMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ComputedPlotAreaMarginMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series"}}],"ConsolidatedItemHitTestBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ConsolidatedItemHitTestBehavior","k":"enum","s":"enums","m":{"Basic":"Basic","NearestY":"NearestY"}}],"ConsolidatedItemsPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ConsolidatedItemsPosition","k":"enum","s":"enums","m":{"Maximum":"Maximum","Median":"Median","Minimum":"Minimum","RelativeMaximum":"RelativeMaximum","RelativeMinimum":"RelativeMinimum"}}],"ContentOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ContentOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ContentOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"ControlDisplayDensity":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ControlDisplayDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"ControlEventBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ControlEventBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","Immediate":"Immediate","Queued":"Queued"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ControlEventBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","Immediate":"Immediate","Queued":"Queued"}}],"CrosshairsDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/CrosshairsDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"DashboardTileVisualizationType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DashboardTileVisualizationType","k":"enum","s":"enums","m":{"AreaChart":"AreaChart","Auto":"Auto","BarChart":"BarChart","BubbleChart":"BubbleChart","BulletGraph":"BulletGraph","CandlestickChart":"CandlestickChart","ChoroplethMap":"ChoroplethMap","ColumnChart":"ColumnChart","DoughnutChart":"DoughnutChart","FunnelChart":"FunnelChart","Grid":"Grid","HeatmapMap":"HeatmapMap","HighDensityMap":"HighDensityMap","KPI":"KPI","LineChart":"LineChart","LinearGauge":"LinearGauge","Map":"Map","OHLCChart":"OHLCChart","PieChart":"PieChart","PolarChart":"PolarChart","RadialGauge":"RadialGauge","RadialLineChart":"RadialLineChart","ScatterChart":"ScatterChart","ScatterMap":"ScatterMap","SparklineChart":"SparklineChart","SplineAreaChart":"SplineAreaChart","SplineChart":"SplineChart","StackedAreaChart":"StackedAreaChart","StackedBarChart":"StackedBarChart","StackedColumnChart":"StackedColumnChart","StepAreaChart":"StepAreaChart","StepLineChart":"StepLineChart","TextGauge":"TextGauge","TextView":"TextView","TimeSeriesChart":"TimeSeriesChart","Treemap":"Treemap"}}],"DataAbbreviationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataAbbreviationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Billion":"Billion","Independent":"Independent","Kilo":"Kilo","Million":"Million","None":"None","Quadrillion":"Quadrillion","Shared":"Shared","Trillion":"Trillion","Unset":"Unset"}}],"DataAnnotationDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataAnnotationDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisValue":"AxisValue","DataLabel":"DataLabel","DataValue":"DataValue","Hidden":"Hidden","PixelValue":"PixelValue","WindowValue":"WindowValue"}}],"DataAnnotationTargetMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataAnnotationTargetMode","k":"enum","s":"enums","m":{"Auto":"Auto","CategoryXAxes":"CategoryXAxes","CategoryYAxes":"CategoryYAxes","CompanionXAxes":"CompanionXAxes","CompanionYAxes":"CompanionYAxes","DataSourceAxes":"DataSourceAxes","HorizontalAxes":"HorizontalAxes","None":"None","NumericXAxes":"NumericXAxes","NumericYAxes":"NumericYAxes","PrimaryXAxes":"PrimaryXAxes","PrimaryYAxes":"PrimaryYAxes","TimeAxes":"TimeAxes","VerticalAxes":"VerticalAxes"}}],"DataGridSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataGridSelectionMode","k":"enum","s":"enums","m":{"MultipleCell":"MultipleCell","MultipleRow":"MultipleRow","None":"None","RangeCell":"RangeCell","SingleCell":"SingleCell","SingleRow":"SingleRow"}}],"DataLegendHeaderDateMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendHeaderDateMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendHeaderTimeMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendHeaderTimeMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendLabelMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendLayoutMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendLayoutMode","k":"enum","s":"enums","m":{"Table":"Table","Vertical":"Vertical"}}],"DataLegendSeriesFamily":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendSeriesFamily","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Geographic":"Geographic","Highlight":"Highlight","Indicator":"Indicator","Polar":"Polar","Radial":"Radial","Range":"Range","Scatter":"Scatter","Shape":"Shape","Stacked":"Stacked"}}],"DataLegendSeriesValueType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendSeriesValueType","k":"enum","s":"enums","m":{"Angle":"Angle","Average":"Average","Change":"Change","Close":"Close","Fill":"Fill","High":"High","Low":"Low","Open":"Open","Radius":"Radius","Range":"Range","Summary":"Summary","TypicalPrice":"TypicalPrice","Value":"Value","Volume":"Volume","XValue":"XValue","YValue":"YValue"}}],"DataLegendSummaryType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendSummaryType","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","Max":"Max","Min":"Min","None":"None","Total":"Total"}}],"DataLegendUnitsMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendUnitsMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendValueMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataLegendValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Currency":"Currency","Decimal":"Decimal"}}],"DataPieChartType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataPieChartType","k":"enum","s":"enums","m":{"Auto":"Auto","PieSingleRing":"PieSingleRing"}}],"DataSeriesAxisType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSeriesAxisType","k":"enum","s":"enums","m":{"Category":"Category","CategoryAngle":"CategoryAngle","ContinuousDateTime":"ContinuousDateTime","DiscreteDateTime":"DiscreteDateTime","Linear":"Linear","Logarithmic":"Logarithmic","NotApplicable":"NotApplicable","ProportionalCategoryAngle":"ProportionalCategoryAngle","RadialLinear":"RadialLinear","RadialLogarithmic":"RadialLogarithmic"}}],"DataSeriesIntent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSeriesIntent","k":"enum","s":"enums","m":{"AxisDateValue":"AxisDateValue","AxisLabelValue":"AxisLabelValue","CloseSeriesValue":"CloseSeriesValue","DontPlot":"DontPlot","GenerationInput":"GenerationInput","HighSeriesValue":"HighSeriesValue","LowSeriesValue":"LowSeriesValue","OpenSeriesValue":"OpenSeriesValue","PrimarySeriesValue":"PrimarySeriesValue","SalesFixedCost":"SalesFixedCost","SalesMarginalProfit":"SalesMarginalProfit","SalesRevenue":"SalesRevenue","SalesTotalCost":"SalesTotalCost","SalesUnit":"SalesUnit","SalesVariableCost":"SalesVariableCost","SeriesAngle":"SeriesAngle","SeriesFill":"SeriesFill","SeriesGroup":"SeriesGroup","SeriesLabel":"SeriesLabel","SeriesRadius":"SeriesRadius","SeriesShape":"SeriesShape","SeriesTitle":"SeriesTitle","SeriesValue":"SeriesValue","SeriesX":"SeriesX","SeriesY":"SeriesY","VolumeSeriesValue":"VolumeSeriesValue"}}],"DataSeriesMarker":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSeriesMarker","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Smart":"Smart","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"DataSeriesPropertyType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSeriesPropertyType","k":"enum","s":"enums","m":{"DateTime":"DateTime","Numeric":"Numeric","String1":"String1"}}],"DataSeriesType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","CalloutLayer":"CalloutLayer","CategoryHighlightLayer":"CategoryHighlightLayer","CategoryItemHighlightLayer":"CategoryItemHighlightLayer","CategoryToolTipLayer":"CategoryToolTipLayer","Column":"Column","CrosshairLayer":"CrosshairLayer","DataToolTipLayer":"DataToolTipLayer","FinalValueLayer":"FinalValueLayer","FinancialIndicator":"FinancialIndicator","FinancialOverlay":"FinancialOverlay","FinancialPrice":"FinancialPrice","GeographicBubble":"GeographicBubble","GeographicContour":"GeographicContour","GeographicHeat":"GeographicHeat","GeographicHighDensity":"GeographicHighDensity","GeographicPolygon":"GeographicPolygon","GeographicPolyline":"GeographicPolyline","GeographicScatter":"GeographicScatter","GeographicScatterArea":"GeographicScatterArea","ItemToolTipLayer":"ItemToolTipLayer","Line":"Line","LinearGauge":"LinearGauge","Pie":"Pie","Point":"Point","RadialGauge":"RadialGauge","RadialLine":"RadialLine","ScatterArea":"ScatterArea","ScatterBubble":"ScatterBubble","ScatterContour":"ScatterContour","ScatterHighDensity":"ScatterHighDensity","ScatterLine":"ScatterLine","ScatterPoint":"ScatterPoint","ScatterPolygon":"ScatterPolygon","ScatterPolyline":"ScatterPolyline","ScatterSpline":"ScatterSpline","Spline":"Spline","SplineArea":"SplineArea","Stacked":"Stacked","StepArea":"StepArea","StepLine":"StepLine","TrendLineLayer":"TrendLineLayer","Unknown":"Unknown","UserAnnotationToolTipLayer":"UserAnnotationToolTipLayer","ValueLayer":"ValueLayer","ValueOverlay":"ValueOverlay","Waterfall":"Waterfall"}}],"DataSourcePageRequestPriority":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSourcePageRequestPriority","k":"enum","s":"enums","m":{"High":"High","Low":"Low","Normal":"Normal"}}],"DataSourceRowType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSourceRowType","k":"enum","s":"enums","m":{"Custom":"Custom","Normal":"Normal","SectionFooter":"SectionFooter","SectionHeader":"SectionHeader","ShiftedRow":"ShiftedRow","SummaryRowRoot":"SummaryRowRoot","SummaryRowSection":"SummaryRowSection"}}],"DataSourceSchemaPropertyType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","ByteValue":"ByteValue","DateTimeOffsetValue":"DateTimeOffsetValue","DateTimeValue":"DateTimeValue","DecimalValue":"DecimalValue","DoubleValue":"DoubleValue","IntValue":"IntValue","LongValue":"LongValue","ObjectValue":"ObjectValue","ShortValue":"ShortValue","SingleValue":"SingleValue","StringValue":"StringValue"}}],"DataSourceSectionHeaderDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSourceSectionHeaderDisplayMode","k":"enum","s":"enums","m":{"Combined":"Combined","Split":"Split"}}],"DataSourceSummaryOperand":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSourceSummaryOperand","k":"enum","s":"enums","m":{"Average":"Average","Count":"Count","Custom":"Custom","Max":"Max","Min":"Min","Sum":"Sum"}}],"DataSourceSummaryScope":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataSourceSummaryScope","k":"enum","s":"enums","m":{"Both":"Both","Groups":"Groups","None":"None","Root":"Root"}}],"DataTooltipConstraintMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataTooltipConstraintMode","k":"enum","s":"enums","m":{"Application":"Application","Auto":"Auto","Chart":"Chart","None":"None","PlotArea":"PlotArea"}}],"DataTooltipGroupedPositionX":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataTooltipGroupedPositionX","k":"enum","s":"enums","m":{"Auto":"Auto","LeftEdgeSnapLeft":"LeftEdgeSnapLeft","LeftEdgeSnapMiddle":"LeftEdgeSnapMiddle","LeftEdgeSnapRight":"LeftEdgeSnapRight","PinLeft":"PinLeft","PinMiddle":"PinMiddle","PinRight":"PinRight","RightEdgeSnapLeft":"RightEdgeSnapLeft","RightEdgeSnapMiddle":"RightEdgeSnapMiddle","RightEdgeSnapRight":"RightEdgeSnapRight","SnapLeft":"SnapLeft","SnapMiddle":"SnapMiddle","SnapRight":"SnapRight","TrackLeft":"TrackLeft","TrackMiddle":"TrackMiddle","TrackRight":"TrackRight"}}],"DataTooltipGroupedPositionY":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataTooltipGroupedPositionY","k":"enum","s":"enums","m":{"Auto":"Auto","BottomEdgeSnapBottom":"BottomEdgeSnapBottom","BottomEdgeSnapMiddle":"BottomEdgeSnapMiddle","BottomEdgeSnapTop":"BottomEdgeSnapTop","PinBottom":"PinBottom","PinMiddle":"PinMiddle","PinTop":"PinTop","SnapBottom":"SnapBottom","SnapMiddle":"SnapMiddle","SnapTop":"SnapTop","TopEdgeSnapBottom":"TopEdgeSnapBottom","TopEdgeSnapMiddle":"TopEdgeSnapMiddle","TopEdgeSnapTop":"TopEdgeSnapTop","TrackBottom":"TrackBottom","TrackMiddle":"TrackMiddle","TrackTop":"TrackTop"}}],"DataToolTipLayerGroupingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataToolTipLayerGroupingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Grouped":"Grouped","Individual":"Individual"}}],"DataToolTipLayerPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DataToolTipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"DateFormats":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DateFormats","k":"enum","s":"enums","m":{"DateLong":"DateLong","DateShort":"DateShort"}}],"DatePart":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DatePart","k":"enum","s":"enums","m":{"AmPm":"AmPm","Date":"Date","Hours":"Hours","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Year":"Year"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/DatePart","k":"enum","s":"enums","m":{"AmPm":"AmPm","Date":"Date","Hours":"Hours","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Year":"Year"}}],"DatePartType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DatePartType","k":"enum","s":"enums","m":{"AmPm":"AmPm","Date":"Date","Hours":"Hours","Literal":"Literal","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Year":"Year"}}],"DateRangeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DateRangeType","k":"enum","s":"enums","m":{"After":"After","Before":"Before","Between":"Between","Specific":"Specific","Weekdays":"Weekdays","Weekends":"Weekends"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/DateRangeType","k":"enum","s":"enums","m":{"After":"After","Before":"Before","Between":"Between","Specific":"Specific","Weekdays":"Weekdays","Weekends":"Weekends"}}],"DateTimeFormats":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DateTimeFormats","k":"enum","s":"enums","m":{"DateLong":"DateLong","DateShort":"DateShort","DateTimeLong":"DateTimeLong","DateTimeShort":"DateTimeShort","TimeLong":"TimeLong","TimeShort":"TimeShort"}}],"DayOfWeek":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}}],"DividerType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DividerType","k":"enum","s":"enums","m":{"Dashed":"Dashed","Solid":"Solid"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/DividerType","k":"enum","s":"enums","m":{"Dashed":"Dashed","Solid":"Solid"}}],"DockingIndicatorPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DockingIndicatorPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Left":"Left","OuterBottom":"OuterBottom","OuterLeft":"OuterLeft","OuterRight":"OuterRight","OuterTop":"OuterTop","Right":"Right","SplitterHorizontal":"SplitterHorizontal","SplitterVertical":"SplitterVertical","Top":"Top"}}],"DockManagerPaneType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DockManagerPaneType","k":"enum","s":"enums","m":{"ContentPane":"ContentPane","DocumentHost":"DocumentHost","SplitPane":"SplitPane","TabGroupPane":"TabGroupPane"}}],"DockManagerShowHeaderIconOnHover":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DockManagerShowHeaderIconOnHover","k":"enum","s":"enums","m":{"All":"All","CloseOnly":"CloseOnly","MoreOptionsOnly":"MoreOptionsOnly","None":"None"}}],"DockManagerShowPaneHeaders":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DockManagerShowPaneHeaders","k":"enum","s":"enums","m":{"Always":"Always","OnHoverOnly":"OnHoverOnly"}}],"DomainType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DomainType","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Pie":"Pie","Scatter":"Scatter","Shape":"Shape"}}],"DropPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/DropPosition","k":"enum","s":"enums","m":{"AfterDropTarget":"AfterDropTarget","BeforeDropTarget":"BeforeDropTarget"}}],"EditModeClickAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/EditModeClickAction","k":"enum","s":"enums","m":{"DoubleClick":"DoubleClick","None":"None","SingleClick":"SingleClick"}}],"EditModeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/EditModeType","k":"enum","s":"enums","m":{"Cell":"Cell","CellBatch":"CellBatch","None":"None","Row":"Row"}}],"EditorType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/EditorType","k":"enum","s":"enums","m":{"Combo":"Combo","Date":"Date","Default":"Default","Numeric":"Numeric","Text":"Text"}}],"ElevationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ElevationMode","k":"enum","s":"enums","m":{"Auto":"Auto","HaloShadow":"HaloShadow","MaterialShadow":"MaterialShadow"}}],"EnterKeyBehaviorAfterEdit":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/EnterKeyBehaviorAfterEdit","k":"enum","s":"enums","m":{"MoveDown":"MoveDown","MoveLeft":"MoveLeft","MoveRight":"MoveRight","MoveUp":"MoveUp","None":"None"}}],"EnterKeyBehaviors":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/EnterKeyBehaviors","k":"enum","s":"enums","m":{"Edit":"Edit","MoveDown":"MoveDown","MoveLeft":"MoveLeft","MoveRight":"MoveRight","MoveUp":"MoveUp","None":"None"}}],"ExpansionPanelIndicatorPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ExpansionPanelIndicatorPosition","k":"enum","s":"enums","m":{"End":"End","None":"None","Start":"Start"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ExpansionPanelIndicatorPosition","k":"enum","s":"enums","m":{"End":"End","None":"None","Start":"Start"}}],"FeatureState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FeatureState","k":"enum","s":"enums","m":{"Disabled":"Disabled","Enabled":"Enabled","Unset":"Unset"}}],"FilterComparisonType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterComparisonType","k":"enum","s":"enums","m":{"CaseInsensitive":"CaseInsensitive","CaseSensitive":"CaseSensitive","Default":"Default"}}],"FilterExpressionFunctionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterExpressionFunctionType","k":"enum","s":"enums","m":{"Cast":"Cast","Ceiling":"Ceiling","Concat":"Concat","Contains":"Contains","Date":"Date","Day":"Day","EndsWith":"EndsWith","Env":"Env","Floor":"Floor","Hour":"Hour","IndexOf":"IndexOf","IsOf":"IsOf","Length":"Length","Minute":"Minute","Month":"Month","Now":"Now","Replace":"Replace","Round":"Round","Second":"Second","StartsWith":"StartsWith","Substring":"Substring","Time":"Time","ToLower":"ToLower","ToUpper":"ToUpper","Trim":"Trim","Year":"Year"}}],"FilterExpressionOperatorType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterExpressionOperatorType","k":"enum","s":"enums","m":{"Add":"Add","And":"And","Divide":"Divide","Equal":"Equal","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","Grouping":"Grouping","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","Modulo":"Modulo","Multiply":"Multiply","None":"None","Not":"Not","NotEqual":"NotEqual","Or":"Or","Subtract":"Subtract"}}],"FilterExpressionWrapperType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterExpressionWrapperType","k":"enum","s":"enums","m":{"Last30":"Last30","Last365":"Last365","Last7":"Last7","LastMonth":"LastMonth","LastQuarter":"LastQuarter","LastWeek":"LastWeek","LastYear":"LastYear","MonthToDate":"MonthToDate","NextMonth":"NextMonth","NextQuarter":"NextQuarter","NextWeek":"NextWeek","NextYear":"NextYear","Q1":"Q1","Q2":"Q2","Q3":"Q3","Q4":"Q4","QuarterToDate":"QuarterToDate","ThisMonth":"ThisMonth","ThisQuarter":"ThisQuarter","ThisWeek":"ThisWeek","ThisYear":"ThisYear","Today":"Today","Tomorrow":"Tomorrow","TrailingTwelveMonths":"TrailingTwelveMonths","YearToDate":"YearToDate","Yesterday":"Yesterday"}}],"FilteringExpressionsTreeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilteringExpressionsTreeType","k":"enum","s":"enums","m":{"Advanced":"Advanced","Regular":"Regular"}}],"FilteringLogic":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilteringLogic","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"FilterLogicalOperator":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterLogicalOperator","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"FilterMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterMode","k":"enum","s":"enums","m":{"ExcelStyleFilter":"ExcelStyleFilter","QuickFilter":"QuickFilter"}}],"FilterUIType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FilterUIType","k":"enum","s":"enums","m":{"ColumnOptions":"ColumnOptions","FilterRow":"FilterRow","None":"None"}}],"FinalValueSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinalValueSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Final":"Final","FinalVisible":"FinalVisible","FinalVisibleInterpolated":"FinalVisibleInterpolated"}}],"FinancialChartRangeSelectorOption":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialChartRangeSelectorOption","k":"enum","s":"enums","m":{"All":"All","OneMonth":"OneMonth","OneYear":"OneYear","SixMonths":"SixMonths","ThreeMonths":"ThreeMonths","YearToDate":"YearToDate"}}],"FinancialChartType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialChartType","k":"enum","s":"enums","m":{"Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line"}}],"FinancialChartVolumeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialChartVolumeType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","None":"None"}}],"FinancialChartXAxisMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialChartXAxisMode","k":"enum","s":"enums","m":{"Ordinal":"Ordinal","Time":"Time"}}],"FinancialChartYAxisMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialChartYAxisMode","k":"enum","s":"enums","m":{"Numeric":"Numeric","PercentChange":"PercentChange"}}],"FinancialChartZoomSliderType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialChartZoomSliderType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line","None":"None"}}],"FinancialIndicatorType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialIndicatorType","k":"enum","s":"enums","m":{"AbsoluteVolumeOscillator":"AbsoluteVolumeOscillator","AccumulationDistribution":"AccumulationDistribution","AverageDirectionalIndex":"AverageDirectionalIndex","AverageTrueRange":"AverageTrueRange","BollingerBandWidth":"BollingerBandWidth","ChaikinOscillator":"ChaikinOscillator","ChaikinVolatility":"ChaikinVolatility","CommodityChannelIndex":"CommodityChannelIndex","DetrendedPriceOscillator":"DetrendedPriceOscillator","EaseOfMovement":"EaseOfMovement","FastStochasticOscillator":"FastStochasticOscillator","ForceIndex":"ForceIndex","FullStochasticOscillator":"FullStochasticOscillator","MarketFacilitationIndex":"MarketFacilitationIndex","MassIndex":"MassIndex","MedianPrice":"MedianPrice","MoneyFlowIndex":"MoneyFlowIndex","MovingAverageConvergenceDivergence":"MovingAverageConvergenceDivergence","NegativeVolumeIndex":"NegativeVolumeIndex","OnBalanceVolume":"OnBalanceVolume","PercentagePriceOscillator":"PercentagePriceOscillator","PercentageVolumeOscillator":"PercentageVolumeOscillator","PositiveVolumeIndex":"PositiveVolumeIndex","PriceVolumeTrend":"PriceVolumeTrend","RateOfChangeAndMomentum":"RateOfChangeAndMomentum","RelativeStrengthIndex":"RelativeStrengthIndex","SlowStochasticOscillator":"SlowStochasticOscillator","StandardDeviation":"StandardDeviation","StochRSI":"StochRSI","TRIX":"TRIX","TypicalPrice":"TypicalPrice","UltimateOscillator":"UltimateOscillator","WeightedClose":"WeightedClose","WilliamsPercentR":"WilliamsPercentR"}}],"FinancialOverlayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FinancialOverlayType","k":"enum","s":"enums","m":{"BollingerBands":"BollingerBands","PriceChannel":"PriceChannel"}}],"FirstWeek":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FirstWeek","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"FlatDataProviderJoinCollisionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FlatDataProviderJoinCollisionType","k":"enum","s":"enums","m":{"Auto":"Auto","LeftOnly":"LeftOnly","PreferLeft":"PreferLeft","PreferRight":"PreferRight","RightOnly":"RightOnly"}}],"FlatDataProviderJoinType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FlatDataProviderJoinType","k":"enum","s":"enums","m":{"Join":"Join","Left":"Left","Right":"Right"}}],"FunnelSliceDisplay":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/FunnelSliceDisplay","k":"enum","s":"enums","m":{"Uniform":"Uniform","Weighted":"Weighted"}}],"GenericDataSourceSchemaPropertyType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GenericDataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","DateTimeValue":"DateTimeValue","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"GridActivationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridActivationMode","k":"enum","s":"enums","m":{"Cell":"Cell","None":"None"}}],"GridCellMergeMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridCellMergeMode","k":"enum","s":"enums","m":{"Always":"Always","OnSort":"OnSort"}}],"GridColumnDataType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridColumnDataType","k":"enum","s":"enums","m":{"Boolean":"Boolean","Currency":"Currency","Date":"Date","DateTime":"DateTime","Image":"Image","Number":"Number","Percent":"Percent","String":"String","Time":"Time"}}],"GridConditionalStyleBoundType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridConditionalStyleBoundType","k":"enum","s":"enums","m":{"Percent":"Percent","Value":"Value"}}],"GridConditionalStylePropertyStylingType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridConditionalStylePropertyStylingType","k":"enum","s":"enums","m":{"DirectSet":"DirectSet","ScaledValue":"ScaledValue","ValueColorGradient":"ValueColorGradient","ValueSelector":"ValueSelector"}}],"GridEasingFunctionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridEasingFunctionType","k":"enum","s":"enums","m":{"CircleInOut":"CircleInOut","CubicInOut":"CubicInOut","ExponentialInOut":"ExponentialInOut","Linear":"Linear"}}],"GridHorizontalAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridHorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}}],"GridKeydownTargetType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridKeydownTargetType","k":"enum","s":"enums","m":{"DataCell":"DataCell","GroupRow":"GroupRow","HeaderCell":"HeaderCell","HierarchicalRow":"HierarchicalRow","MasterDetailRow":"MasterDetailRow","SummaryCell":"SummaryCell"}}],"GridMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridMode","k":"enum","s":"enums","m":{"BeforeSeries":"BeforeSeries","BehindSeries":"BehindSeries","None":"None"}}],"GridPagingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridPagingMode","k":"enum","s":"enums","m":{"Local":"Local","Remote":"Remote"}}],"GridSelectionBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridSelectionBehavior","k":"enum","s":"enums","m":{"ModifierBased":"ModifierBased","Toggle":"Toggle"}}],"GridSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridSelectionMode","k":"enum","s":"enums","m":{"Multiple":"Multiple","MultipleCascade":"MultipleCascade","None":"None","Single":"Single"}}],"GridSummaryCalculationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridSummaryCalculationMode","k":"enum","s":"enums","m":{"ChildLevelsOnly":"ChildLevelsOnly","RootAndChildLevels":"RootAndChildLevels","RootLevelOnly":"RootLevelOnly"}}],"GridSummaryPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridSummaryPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"GridToolbarExporterType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridToolbarExporterType","k":"enum","s":"enums","m":{"Csv":"Csv","Excel":"Excel","Pdf":"Pdf"}}],"GridValidationTrigger":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridValidationTrigger","k":"enum","s":"enums","m":{"Blur":"Blur","Change":"Change"}}],"GridVerticalAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GridVerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Middle":"Middle","Top":"Top"}}],"GroupHeaderDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GroupHeaderDisplayMode","k":"enum","s":"enums","m":{"Combined":"Combined","Split":"Split"}}],"GroupingDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GroupingDirection","k":"enum","s":"enums","m":{"Asc":"Asc","Desc":"Desc","None":"None"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/GroupingDirection","k":"enum","s":"enums","m":{"Asc":"Asc","Desc":"Desc","None":"None"}}],"GroupSummaryDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/GroupSummaryDisplayMode","k":"enum","s":"enums","m":{"Cells":"Cells","List":"List","None":"None","RowBottom":"RowBottom","RowTop":"RowTop"}}],"HeaderClickAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/HeaderClickAction","k":"enum","s":"enums","m":{"None":"None","SortByMultipleColumns":"SortByMultipleColumns","SortByMultipleColumnsTriState":"SortByMultipleColumnsTriState","SortByOneColumnOnly":"SortByOneColumnOnly","SortByOneColumnOnlyTriState":"SortByOneColumnOnlyTriState"}}],"HighlightedValueDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/HighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"HighlightedValueLabelMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/HighlightedValueLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","LabelBoth":"LabelBoth","PreferHighlighted":"PreferHighlighted","PreferOriginal":"PreferOriginal"}}],"HighlightingState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/HighlightingState","k":"enum","s":"enums","m":{"Inward":"Inward","Outward":"Outward","Static":"Static"}}],"HorizontalAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/HorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right","Stretch":"Stretch"}}],"HorizontalTransitionAnimation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/HorizontalTransitionAnimation","k":"enum","s":"enums","m":{"Fade":"Fade","None":"None","Slide":"Slide"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/HorizontalTransitionAnimation","k":"enum","s":"enums","m":{"Fade":"Fade","None":"None","Slide":"Slide"}}],"IconButtonVariant":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/IconButtonVariant","k":"enum","s":"enums","m":{"Contained":"Contained","Flat":"Flat","Outlined":"Outlined"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/IconButtonVariant","k":"enum","s":"enums","m":{"Contained":"Contained","Flat":"Flat","Outlined":"Outlined"}}],"ImageLoadStatus":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ImageLoadStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Completed":"Completed","Failed":"Failed","Loading":"Loading","Unknown":"Unknown"}}],"ImageResourceType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ImageResourceType","k":"enum","s":"enums","m":{"EmbeddedResource":"EmbeddedResource","LocalAsset":"LocalAsset","LocalResource":"LocalResource","RemoteResource":"RemoteResource","Unspecified":"Unspecified"}}],"ImageStretchOptions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ImageStretchOptions","k":"enum","s":"enums","m":{"Fill":"Fill","None":"None","Uniform":"Uniform"}}],"IndicatorDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/IndicatorDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line"}}],"InputGroupDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/InputGroupDisplayType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line","Search":"Search"}}],"InputType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/InputType","k":"enum","s":"enums","m":{"Email":"Email","Number":"Number","Password":"Password","Search":"Search","Tel":"Tel","Text":"Text","Url":"Url"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/InputType","k":"enum","s":"enums","m":{"Email":"Email","Number":"Number","Password":"Password","Search":"Search","Tel":"Tel","Text":"Text","Url":"Url"}}],"InteractionState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/InteractionState","k":"enum","s":"enums","m":{"Auto":"Auto","DragPan":"DragPan","DragSelect":"DragSelect","DragZoom":"DragZoom","None":"None"}}],"InterpolationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/InterpolationMode","k":"enum","s":"enums","m":{"HSV":"HSV","RGB":"RGB"}}],"Key":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/Key","k":"enum","s":"enums","m":{"A":"A","Add":"Add","Alt":"Alt","B":"B","Back":"Back","C":"C","CapsLock":"CapsLock","Ctrl":"Ctrl","D":"D","D0":"D0","D1":"D1","D2":"D2","D3":"D3","D4":"D4","D5":"D5","D6":"D6","D7":"D7","D8":"D8","D9":"D9","Decimal":"Decimal","Del":"Del","Divide":"Divide","Down":"Down","E":"E","End":"End","Enter":"Enter","Escape":"Escape","F":"F","F1":"F1","F10":"F10","F11":"F11","F12":"F12","F2":"F2","F3":"F3","F4":"F4","F5":"F5","F6":"F6","F7":"F7","F8":"F8","F9":"F9","G":"G","H":"H","Home":"Home","I":"I","Insert":"Insert","J":"J","K":"K","L":"L","Left":"Left","M":"M","Multiply":"Multiply","N":"N","None":"None","NumPad0":"NumPad0","NumPad1":"NumPad1","NumPad2":"NumPad2","NumPad3":"NumPad3","NumPad4":"NumPad4","NumPad5":"NumPad5","NumPad6":"NumPad6","NumPad7":"NumPad7","NumPad8":"NumPad8","NumPad9":"NumPad9","O":"O","OemMinus":"OemMinus","OemPipe":"OemPipe","OemPlus":"OemPlus","OemQuestion":"OemQuestion","OemSemicolon":"OemSemicolon","OemTilde":"OemTilde","P":"P","PageDown":"PageDown","PageUp":"PageUp","Q":"Q","R":"R","Right":"Right","S":"S","Shift":"Shift","Space":"Space","Subtract":"Subtract","T":"T","Tab":"Tab","U":"U","Unknown":"Unknown","Up":"Up","V":"V","W":"W","X":"X","Y":"Y","Z":"Z"}}],"KeyBindingTrigger":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/KeyBindingTrigger","k":"enum","s":"enums","m":{"Keydown":"Keydown","KeydownRepeat":"KeydownRepeat","Keyup":"Keyup"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/KeyBindingTrigger","k":"enum","s":"enums","m":{"Keydown":"Keydown","KeydownRepeat":"KeydownRepeat","Keyup":"Keyup"}}],"LabelsPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LabelsPosition","k":"enum","s":"enums","m":{"BestFit":"BestFit","Center":"Center","InsideEnd":"InsideEnd","None":"None","OutsideEnd":"OutsideEnd"}}],"LayoutAction":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LayoutAction","k":"enum","s":"enums","m":{"Filtered":"Filtered","Grouped":"Grouped","Hidden":"Hidden","Moved":"Moved","Pinned":"Pinned","Resized":"Resized","Sorted":"Sorted","Summed":"Summed"}}],"LeaderLineType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LeaderLineType","k":"enum","s":"enums","m":{"Arc":"Arc","Spline":"Spline","Straight":"Straight"}}],"LegendEmptyValuesMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LegendEmptyValuesMode","k":"enum","s":"enums","m":{"AlwaysHidden":"AlwaysHidden","AlwaysVisible":"AlwaysVisible","ShowWhenNoOthersCategory":"ShowWhenNoOthersCategory"}}],"LegendHighlightingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LegendHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchSeries":"MatchSeries","None":"None"}}],"LegendItemBadgeMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LegendItemBadgeMode","k":"enum","s":"enums","m":{"MatchSeries":"MatchSeries","Simplified":"Simplified"}}],"LegendItemBadgeShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LegendItemBadgeShape","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bar":"Bar","Circle":"Circle","Column":"Column","Hidden":"Hidden","Line":"Line","Marker":"Marker","Square":"Square"}}],"LegendOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LegendOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"LinearGraphNeedleShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LinearGraphNeedleShape","k":"enum","s":"enums","m":{"Custom":"Custom","Needle":"Needle","Rectangle":"Rectangle","Trapezoid":"Trapezoid","Triangle":"Triangle"}}],"LinearProgressLabelAlign":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LinearProgressLabelAlign","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomEnd":"BottomEnd","BottomStart":"BottomStart","Top":"Top","TopEnd":"TopEnd","TopStart":"TopStart"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/LinearProgressLabelAlign","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomEnd":"BottomEnd","BottomStart":"BottomStart","Top":"Top","TopEnd":"TopEnd","TopStart":"TopStart"}}],"LinearScaleOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/LinearScaleOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"ListPanelActivationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ListPanelActivationMode","k":"enum","s":"enums","m":{"Cell":"Cell","None":"None"}}],"ListPanelOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ListPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ListPanelSelectionBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ListPanelSelectionBehavior","k":"enum","s":"enums","m":{"ModifierBased":"ModifierBased","Toggle":"Toggle"}}],"ListPanelSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ListPanelSelectionMode","k":"enum","s":"enums","m":{"MultipleRow":"MultipleRow","None":"None","SingleRow":"SingleRow"}}],"ListSortDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ListSortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"MapBackgroundTilingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MapBackgroundTilingMode","k":"enum","s":"enums","m":{"Auto":"Auto","NonWrapped":"NonWrapped","Wrapped":"Wrapped"}}],"MapResizeBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MapResizeBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","MaintainCenterPosition":"MaintainCenterPosition","MaintainTopLeftPosition":"MaintainTopLeftPosition"}}],"MarkerAutomaticBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MarkerAutomaticBehavior","k":"enum","s":"enums","m":{"Circle":"Circle","CircleSmart":"CircleSmart","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Indexed":"Indexed","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","SmartIndexed":"SmartIndexed","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"MarkerFillMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MarkerFillMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerOutline":"MatchMarkerOutline","Normal":"Normal"}}],"MarkerOutlineMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MarkerOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerBrush":"MatchMarkerBrush","Normal":"Normal"}}],"MarkerType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MarkerType","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle","Unset":"Unset"}}],"MaskInputValueMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MaskInputValueMode","k":"enum","s":"enums","m":{"Raw":"Raw","WithFormatting":"WithFormatting"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/MaskInputValueMode","k":"enum","s":"enums","m":{"Raw":"Raw","WithFormatting":"WithFormatting"}}],"MergedCellEvaluationCriteria":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MergedCellEvaluationCriteria","k":"enum","s":"enums","m":{"Default":"Default","FormattedText":"FormattedText","RawValue":"RawValue"}}],"MergedCellMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MergedCellMode","k":"enum","s":"enums","m":{"Always":"Always","Default":"Default","Never":"Never","OnlyWhenSorted":"OnlyWhenSorted"}}],"ModifierKeys":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ModifierKeys","k":"enum","s":"enums","m":{"Alt":"Alt","Apple":"Apple","Control":"Control","None":"None","Shift":"Shift","Windows":"Windows"}}],"MouseButton":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MouseButton","k":"enum","s":"enums","m":{"Left":"Left","Middle":"Middle","Right":"Right","Unkown":"Unkown"}}],"MultiColumnComboBoxSelectedItemChangeType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MultiColumnComboBoxSelectedItemChangeType","k":"enum","s":"enums","m":{"Row":"Row","Text":"Text","Value":"Value"}}],"MultiSliderOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MultiSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","TwoDimensional":"TwoDimensional","Vertical":"Vertical"}}],"MultiSliderThumbRangePosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/MultiSliderThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"NavDrawerPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/NavDrawerPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","End":"End","Relative":"Relative","Start":"Start","Top":"Top"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/NavDrawerPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","End":"End","Relative":"Relative","Start":"Start","Top":"Top"}}],"NestedActionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/NestedActionMode","k":"enum","s":"enums","m":{"Replace":"Replace"}}],"NumericScaleMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/NumericScaleMode","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"OthersCategoryType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/OthersCategoryType","k":"enum","s":"enums","m":{"Number":"Number","Percent":"Percent"}}],"OuterLabelAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/OuterLabelAlignment","k":"enum","s":"enums","m":{"Left":"Left","Right":"Right"}}],"OverlayTextLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/OverlayTextLocation","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","InsideBottomCenter":"InsideBottomCenter","InsideBottomLeft":"InsideBottomLeft","InsideBottomRight":"InsideBottomRight","InsideMiddleCenter":"InsideMiddleCenter","InsideMiddleLeft":"InsideMiddleLeft","InsideMiddleRight":"InsideMiddleRight","InsideTopCenter":"InsideTopCenter","InsideTopLeft":"InsideTopLeft","InsideTopRight":"InsideTopRight","OutsideBottomCenter":"OutsideBottomCenter","OutsideBottomLeft":"OutsideBottomLeft","OutsideBottomRight":"OutsideBottomRight","OutsideMiddleLeft":"OutsideMiddleLeft","OutsideMiddleRight":"OutsideMiddleRight","OutsideTopCenter":"OutsideTopCenter","OutsideTopLeft":"OutsideTopLeft","OutsideTopRight":"OutsideTopRight"}}],"PaneActionBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PaneActionBehavior","k":"enum","s":"enums","m":{"AllPanes":"AllPanes","SelectedPane":"SelectedPane"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/PaneActionBehavior","k":"enum","s":"enums","m":{"AllPanes":"AllPanes","SelectedPane":"SelectedPane"}}],"PaneDragActionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PaneDragActionType","k":"enum","s":"enums","m":{"DockPane":"DockPane","FloatPane":"FloatPane","MoveFloatingPane":"MoveFloatingPane","MoveTab":"MoveTab"}}],"PenLineCap":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PenLineCap","k":"enum","s":"enums","m":{"Flat":"Flat","Round":"Round","Square":"Square","Triangle":"Triangle"}}],"PenLineJoin":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PenLineJoin","k":"enum","s":"enums","m":{"Bevel":"Bevel","Miter":"Miter","Round":"Round"}}],"PickerMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PickerMode","k":"enum","s":"enums","m":{"Dialog":"Dialog","Dropdown":"Dropdown"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/PickerMode","k":"enum","s":"enums","m":{"Dialog":"Dialog","Dropdown":"Dropdown"}}],"PieChartSweepDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PieChartSweepDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"PinnedPositions":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PinnedPositions","k":"enum","s":"enums","m":{"Left":"Left","None":"None","Right":"Right"}}],"PivotAggregationType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PivotAggregationType","k":"enum","s":"enums","m":{"AVG":"AVG","COUNT":"COUNT","EARLIEST":"EARLIEST","LATEST":"LATEST","MAX":"MAX","MIN":"MIN","SUM":"SUM"}}],"PivotDimensionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PivotDimensionType","k":"enum","s":"enums","m":{"Column":"Column","Filter":"Filter","Row":"Row"}}],"PivotRowLayoutType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PivotRowLayoutType","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"PivotSummaryPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PivotSummaryPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"PopoverPlacement":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PopoverPlacement","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomEnd":"BottomEnd","BottomStart":"BottomStart","Left":"Left","LeftEnd":"LeftEnd","LeftStart":"LeftStart","Right":"Right","RightEnd":"RightEnd","RightStart":"RightStart","Top":"Top","TopEnd":"TopEnd","TopStart":"TopStart"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/PopoverPlacement","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomEnd":"BottomEnd","BottomStart":"BottomStart","Left":"Left","LeftEnd":"LeftEnd","LeftStart":"LeftStart","Right":"Right","RightEnd":"RightEnd","RightStart":"RightStart","Top":"Top","TopEnd":"TopEnd","TopStart":"TopStart"}}],"PopoverScrollStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PopoverScrollStrategy","k":"enum","s":"enums","m":{"Block":"Block","Close":"Close","Scroll":"Scroll"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/PopoverScrollStrategy","k":"enum","s":"enums","m":{"Block":"Block","Close":"Close","Scroll":"Scroll"}}],"PopupAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PopupAlignment","k":"enum","s":"enums","m":{"Auto":"Auto","Far":"Far","Middle":"Middle","Near":"Near"}}],"PopupAnimationType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PopupAnimationType","k":"enum","s":"enums","m":{"FadeInOutSlide":"FadeInOutSlide","GrowShrink":"GrowShrink"}}],"PopupDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PopupDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"PopupPointerPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PopupPointerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"PriceDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PriceDisplayType","k":"enum","s":"enums","m":{"Candlestick":"Candlestick","OHLC":"OHLC"}}],"PropertyEditorPanelUpdateMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PropertyEditorPanelUpdateMode","k":"enum","s":"enums","m":{"Auto":"Auto","ComponentRendererOverlay":"ComponentRendererOverlay","DataSeriesToDescriptionCustomizations":"DataSeriesToDescriptionCustomizations"}}],"PropertyEditorValueType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/PropertyEditorValueType","k":"enum","s":"enums","m":{"Array":"Array","Boolean1":"Boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Button":"Button","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","Date":"Date","DoubleCollection":"DoubleCollection","EnumValue":"EnumValue","EventRef":"EventRef","Header":"Header","MethodRef":"MethodRef","Number":"Number","Point":"Point","Rect":"Rect","Separator":"Separator","Size":"Size","Slider":"Slider","StringValue":"StringValue","SubType":"SubType","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unhandled":"Unhandled"}}],"RadialGaugeBackingShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RadialGaugeBackingShape","k":"enum","s":"enums","m":{"Circular":"Circular","Fitted":"Fitted"}}],"RadialGaugeDuplicateLabelOmissionStrategy":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RadialGaugeDuplicateLabelOmissionStrategy","k":"enum","s":"enums","m":{"OmitBoth":"OmitBoth","OmitFirst":"OmitFirst","OmitLast":"OmitLast","OmitNeither":"OmitNeither"}}],"RadialGaugeNeedleShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RadialGaugeNeedleShape","k":"enum","s":"enums","m":{"Needle":"Needle","NeedleWithBulb":"NeedleWithBulb","None":"None","Rectangle":"Rectangle","RectangleWithBulb":"RectangleWithBulb","Trapezoid":"Trapezoid","TrapezoidWithBulb":"TrapezoidWithBulb","Triangle":"Triangle","TriangleWithBulb":"TriangleWithBulb"}}],"RadialGaugePivotShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RadialGaugePivotShape","k":"enum","s":"enums","m":{"Circle":"Circle","CircleOverlay":"CircleOverlay","CircleOverlayWithHole":"CircleOverlayWithHole","CircleUnderlay":"CircleUnderlay","CircleUnderlayWithHole":"CircleUnderlayWithHole","CircleWithHole":"CircleWithHole","None":"None"}}],"RadialGaugeScaleOversweepShape":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RadialGaugeScaleOversweepShape","k":"enum","s":"enums","m":{"Auto":"Auto","Circular":"Circular","Fitted":"Fitted"}}],"RadialLabelMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RadialLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Label":"Label","LabelAndPercentage":"LabelAndPercentage","LabelAndValue":"LabelAndValue","LabelAndValueAndPercentage":"LabelAndValueAndPercentage","Normal":"Normal","Percentage":"Percentage","Value":"Value","ValueAndPercentage":"ValueAndPercentage"}}],"RangeTextSelectMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RangeTextSelectMode","k":"enum","s":"enums","m":{"End":"End","Preserve":"Preserve","Select":"Select","Start":"Start"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/RangeTextSelectMode","k":"enum","s":"enums","m":{"End":"End","Preserve":"Preserve","Select":"Select","Start":"Start"}}],"ResizerLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ResizerLocation","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ResizerLocation","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"RoundTripDateConversion":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RoundTripDateConversion","k":"enum","s":"enums","m":{"Auto":"Auto","Local":"Local","UTC":"UTC"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/RoundTripDateConversion","k":"enum","s":"enums","m":{"Auto":"Auto","Local":"Local","UTC":"UTC"}}],"RowHoverAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RowHoverAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorBlend":"ColorBlend","None":"None"}}],"RowPinningPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RowPinningPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"RowSelectionAnimationMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/RowSelectionAnimationMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorBlend":"ColorBlend","None":"None"}}],"ScatterItemSearchMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ScatterItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestPoint":"ClosestPoint","ClosestPointOnClosestLine":"ClosestPointOnClosestLine","ClosestVisiblePoint":"ClosestVisiblePoint","ClosestVisiblePointOnClosestLine":"ClosestVisiblePointOnClosestLine","None":"None","TopVisiblePoint":"TopVisiblePoint"}}],"ScrollbarStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ScrollbarStyle","k":"enum","s":"enums","m":{"Default":"Default","Fading":"Fading","Hidden":"Hidden","Thin":"Thin"}}],"SelectionRangeDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SelectionRangeDirection","k":"enum","s":"enums","m":{"Backward":"Backward","Forward":"Forward","None":"None"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/SelectionRangeDirection","k":"enum","s":"enums","m":{"Backward":"Backward","Forward":"Forward","None":"None"}}],"SeriesHighlightedValuesDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesHighlightedValuesDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"SeriesHighlightingBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesHighlightingBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","DirectlyOver":"DirectlyOver","NearestItems":"NearestItems","NearestItemsAndSeries":"NearestItemsAndSeries","NearestItemsRetainMainShapes":"NearestItemsRetainMainShapes"}}],"SeriesHighlightingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","BrightenSpecific":"BrightenSpecific","FadeOthers":"FadeOthers","FadeOthersSpecific":"FadeOthersSpecific","None":"None"}}],"SeriesHitTestMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational"}}],"SeriesOutlineMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","Collapsed":"Collapsed","Visible":"Visible"}}],"SeriesPlotAreaMarginHorizontalMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesPlotAreaMarginHorizontalMode","k":"enum","s":"enums","m":{"Auto":"Auto","LeftBufferRightBuffer":"LeftBufferRightBuffer","LeftBufferRightMargin":"LeftBufferRightMargin","LeftMarginRightBuffer":"LeftMarginRightBuffer","LeftMarginRightMargin":"LeftMarginRightMargin","None":"None"}}],"SeriesPlotAreaMarginVerticalMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesPlotAreaMarginVerticalMode","k":"enum","s":"enums","m":{"Auto":"Auto","BottomBufferTopBuffer":"BottomBufferTopBuffer","BottomBufferTopMargin":"BottomBufferTopMargin","BottomMarginTopBuffer":"BottomMarginTopBuffer","BottomMarginTopMargin":"BottomMarginTopMargin","None":"None"}}],"SeriesSelectionBehavior":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesSelectionBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","PerDataItemMultiSelect":"PerDataItemMultiSelect","PerDataItemSingleSelect":"PerDataItemSingleSelect","PerSeriesAndDataItemGlobalSingleSelect":"PerSeriesAndDataItemGlobalSingleSelect","PerSeriesAndDataItemMultiSelect":"PerSeriesAndDataItemMultiSelect","PerSeriesAndDataItemSingleSelect":"PerSeriesAndDataItemSingleSelect","PerSeriesMultiSelect":"PerSeriesMultiSelect","PerSeriesSingleSelect":"PerSeriesSingleSelect"}}],"SeriesSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","FocusColorFill":"FocusColorFill","FocusColorOutline":"FocusColorOutline","FocusColorThickOutline":"FocusColorThickOutline","GrayscaleOthers":"GrayscaleOthers","None":"None","SelectionColorFill":"SelectionColorFill","SelectionColorOutline":"SelectionColorOutline","SelectionColorThickOutline":"SelectionColorThickOutline","ThickOutline":"ThickOutline"}}],"SeriesViewerHorizontalScrollbarPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesViewerHorizontalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop"}}],"SeriesViewerScrollbarMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesViewerScrollbarMode","k":"enum","s":"enums","m":{"FadeToLine":"FadeToLine","Fading":"Fading","None":"None","Persistent":"Persistent"}}],"SeriesViewerVerticalScrollbarPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesViewerVerticalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight"}}],"SeriesVisibleRangeMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SeriesVisibleRangeMode","k":"enum","s":"enums","m":{"Auto":"Auto","IncludeReferenceValue":"IncludeReferenceValue","ValuesOnly":"ValuesOnly"}}],"ShapeItemSearchMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ShapeItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestBoundingBox":"ClosestBoundingBox","ClosestPointOnClosestShape":"ClosestPointOnClosestShape","ClosestShape":"ClosestShape","None":"None"}}],"SliceSelectionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SliceSelectionMode","k":"enum","s":"enums","m":{"Manual":"Manual","Multiple":"Multiple","Single":"Single"}}],"SliderTickLabelRotation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SliderTickLabelRotation","k":"enum","s":"enums","m":{"NegativeNinety":"NegativeNinety","Ninety":"Ninety","Zero":"Zero"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/SliderTickLabelRotation","k":"enum","s":"enums","m":{"NegativeNinety":"NegativeNinety","Ninety":"Ninety","Zero":"Zero"}}],"SliderTickOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SliderTickOrientation","k":"enum","s":"enums","m":{"End":"End","Mirror":"Mirror","Start":"Start"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/SliderTickOrientation","k":"enum","s":"enums","m":{"End":"End","Mirror":"Mirror","Start":"Start"}}],"SortIndicatorStyle":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SortIndicatorStyle","k":"enum","s":"enums","m":{"Default":"Default","FadingSimpleUpDownArrows":"FadingSimpleUpDownArrows","FadingUpDownArrows":"FadingUpDownArrows","None":"None","Unset":"Unset"}}],"SortingDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SortingDirection","k":"enum","s":"enums","m":{"Asc":"Asc","Desc":"Desc","None":"None"}}],"SortingOptionsMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SortingOptionsMode","k":"enum","s":"enums","m":{"Multiple":"Multiple","Single":"Single"}}],"SortMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SortMode","k":"enum","s":"enums","m":{"None":"None","SortByMultipleColumns":"SortByMultipleColumns","SortByMultipleColumnsTriState":"SortByMultipleColumnsTriState","SortByOneColumnOnly":"SortByOneColumnOnly","SortByOneColumnOnlyTriState":"SortByOneColumnOnlyTriState"}}],"SparklineDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SparklineDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","WinLoss":"WinLoss"}}],"SplineType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SplineType","k":"enum","s":"enums","m":{"Clamped":"Clamped","Natural":"Natural"}}],"SplitPaneOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SplitPaneOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"StepperOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/StepperOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/StepperOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"StepperStepType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/StepperStepType","k":"enum","s":"enums","m":{"Full":"Full","Indicator":"Indicator","Title":"Title"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/StepperStepType","k":"enum","s":"enums","m":{"Full":"Full","Indicator":"Indicator","Title":"Title"}}],"StepperTitlePosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/StepperTitlePosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","End":"End","Start":"Start","Top":"Top"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/StepperTitlePosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","End":"End","Start":"Start","Top":"Top"}}],"StepperVerticalAnimation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/StepperVerticalAnimation","k":"enum","s":"enums","m":{"Fade":"Fade","Grow":"Grow","None":"None"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/StepperVerticalAnimation","k":"enum","s":"enums","m":{"Fade":"Fade","Grow":"Grow","None":"None"}}],"StyleVariant":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/StyleVariant","k":"enum","s":"enums","m":{"Danger":"Danger","Info":"Info","Primary":"Primary","Success":"Success","Warning":"Warning"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/StyleVariant","k":"enum","s":"enums","m":{"Danger":"Danger","Info":"Info","Primary":"Primary","Success":"Success","Warning":"Warning"}}],"SummaryScope":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SummaryScope","k":"enum","s":"enums","m":{"Both":"Both","Groups":"Groups","None":"None","Root":"Root"}}],"SweepDirection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/SweepDirection","k":"enum","s":"enums","m":{"Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"TabsActivation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TabsActivation","k":"enum","s":"enums","m":{"Auto":"Auto","Manual":"Manual"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TabsActivation","k":"enum","s":"enums","m":{"Auto":"Auto","Manual":"Manual"}}],"TabsAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TabsAlignment","k":"enum","s":"enums","m":{"Center":"Center","End":"End","Justify":"Justify","Start":"Start"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TabsAlignment","k":"enum","s":"enums","m":{"Center":"Center","End":"End","Justify":"Justify","Start":"Start"}}],"TextareaResize":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TextareaResize","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Vertical":"Vertical"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TextareaResize","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Vertical":"Vertical"}}],"TextareaWrap":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TextareaWrap","k":"enum","s":"enums","m":{"Hard":"Hard","Off":"Off","Soft":"Soft"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TextareaWrap","k":"enum","s":"enums","m":{"Hard":"Hard","Off":"Off","Soft":"Soft"}}],"TextCellDecoration":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TextCellDecoration","k":"enum","s":"enums","m":{"None":"None","Overline":"Overline","Strikethrough":"Strikethrough","Underline":"Underline"}}],"TextCellLineBreakMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TextCellLineBreakMode","k":"enum","s":"enums","m":{"CharacterWrap":"CharacterWrap","Ellipsis":"Ellipsis","NoWrap":"NoWrap","WordWrap":"WordWrap"}}],"TextIconSetBuiltInTypes":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TextIconSetBuiltInTypes","k":"enum","s":"enums","m":{"CheckOrDashOrX":"CheckOrDashOrX","ThreeArrows":"ThreeArrows","ThreeBoxes":"ThreeBoxes","ThreeFaces":"ThreeFaces"}}],"Theme":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/Theme","k":"enum","s":"enums","m":{"Bootstrap":"Bootstrap","Fluent":"Fluent","Indigo":"Indigo","Material":"Material"}}],"ThemeVariant":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ThemeVariant","k":"enum","s":"enums","m":{"Dark":"Dark","Light":"Light"}}],"TileManagerDragMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TileManagerDragMode","k":"enum","s":"enums","m":{"None":"None","Tile":"Tile","TileHeader":"TileHeader"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TileManagerDragMode","k":"enum","s":"enums","m":{"None":"None","Tile":"Tile","TileHeader":"TileHeader"}}],"TileManagerResizeMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TileManagerResizeMode","k":"enum","s":"enums","m":{"Always":"Always","Hover":"Hover","None":"None"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TileManagerResizeMode","k":"enum","s":"enums","m":{"Always":"Always","Hover":"Hover","None":"None"}}],"TimeAxisDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TimeAxisDisplayType","k":"enum","s":"enums","m":{"Continuous":"Continuous","Discrete":"Discrete"}}],"TimeAxisIntervalType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TimeAxisIntervalType","k":"enum","s":"enums","m":{"Days":"Days","Hours":"Hours","Milliseconds":"Milliseconds","Minutes":"Minutes","Months":"Months","Seconds":"Seconds","Ticks":"Ticks","Weeks":"Weeks","Years":"Years"}}],"TimeAxisLabellingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TimeAxisLabellingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Compressed":"Compressed","Normal":"Normal"}}],"TitlesPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TitlesPosition","k":"enum","s":"enums","m":{"ScaleEnd":"ScaleEnd","ScaleStart":"ScaleStart"}}],"ToggleLabelPosition":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToggleLabelPosition","k":"enum","s":"enums","m":{"After":"After","Before":"Before"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/ToggleLabelPosition","k":"enum","s":"enums","m":{"After":"After","Before":"Before"}}],"ToolActionButtonDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionButtonDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionButtonGroupDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionButtonGroupDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined"}}],"ToolActionButtonInfoDisplayType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionButtonInfoDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionCheckboxListIndexType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionCheckboxListIndexType","k":"enum","s":"enums","m":{"DeSelected":"DeSelected","Selected":"Selected"}}],"ToolActionFieldSelectorEventType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionFieldSelectorEventType","k":"enum","s":"enums","m":{"AggregationChange":"AggregationChange","Change":"Change"}}],"ToolActionFieldSelectorInfoType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionFieldSelectorInfoType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolActionFieldSelectorType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionFieldSelectorType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolActionInfoDensity":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionInfoDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"ToolActionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolActionType","k":"enum","s":"enums","m":{"Button":"Button","ButtonPair":"ButtonPair","Checkbox":"Checkbox","CheckboxList":"CheckboxList","ColorEditor":"ColorEditor","Combo":"Combo","FieldSelector":"FieldSelector","GroupHeader":"GroupHeader","IconButton":"IconButton","IconMenu":"IconMenu","Label":"Label","NumberInput":"NumberInput","Radio":"Radio","Separator":"Separator","SubPanel":"SubPanel","TextInput":"TextInput","Unknown":"Unknown"}}],"ToolbarOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolbarOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ToolCommandExecutionState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolCommandExecutionState","k":"enum","s":"enums","m":{"Completed":"Completed","Failed":"Failed","Pending":"Pending"}}],"ToolCommandStateType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolCommandStateType","k":"enum","s":"enums","m":{"IsDisabledChanged":"IsDisabledChanged","ValueChanged":"ValueChanged","VisibilityChanged":"VisibilityChanged"}}],"ToolContextBindingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolContextBindingMode","k":"enum","s":"enums","m":{"OneWay":"OneWay","TwoWay":"TwoWay"}}],"ToolContextValueType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolContextValueType","k":"enum","s":"enums","m":{"BoolValue":"BoolValue","Brush":"Brush","BrushCollection":"BrushCollection","Color":"Color","Data":"Data","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"ToolPanelOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ToolTipType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ToolTipType","k":"enum","s":"enums","m":{"Category":"Category","Data":"Data","Default":"Default","Item":"Item","None":"None"}}],"TransactionEvent":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TransactionEvent","k":"enum","s":"enums","m":{"Add":"Add","Clear":"Clear","Commit":"Commit","End":"End","Redo":"Redo","Undo":"Undo"}}],"TransactionPendingState":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TransactionPendingState","k":"enum","s":"enums","m":{"Accept":"Accept","Pending":"Pending","Reject":"Reject"}}],"TransactionType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TransactionType","k":"enum","s":"enums","m":{"Add":"Add","Delete":"Delete","Update":"Update"}}],"TransitionInSpeedType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TransitionInSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TransitionOutSpeedType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TransitionOutSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TreemapFillScaleMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapFillScaleMode","k":"enum","s":"enums","m":{"GlobalSum":"GlobalSum","GlobalValue":"GlobalValue","Sum":"Sum","Value":"Value"}}],"TreemapHeaderDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapHeaderDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Header":"Header","Overlay":"Overlay"}}],"TreemapHighlightedValueDisplayMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapHighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"TreemapHighlightingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","None":"None"}}],"TreemapLabelHorizontalFitMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapLabelHorizontalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Ellipsis":"Ellipsis","Hide":"Hide"}}],"TreemapLabelVerticalFitMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapLabelVerticalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hide":"Hide","Show":"Show"}}],"TreemapLayoutType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapLayoutType","k":"enum","s":"enums","m":{"SliceAndDice":"SliceAndDice","Squarified":"Squarified","Stripped":"Stripped"}}],"TreemapNodeStyleMappingTargetType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapNodeStyleMappingTargetType","k":"enum","s":"enums","m":{"All":"All","Child":"Child","Parent":"Parent"}}],"TreemapOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"TreemapValueMappingMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreemapValueMappingMode","k":"enum","s":"enums","m":{"CustomValue":"CustomValue","Sum":"Sum","Value":"Value"}}],"TreeSelection":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TreeSelection","k":"enum","s":"enums","m":{"Cascade":"Cascade","Multiple":"Multiple","None":"None"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/TreeSelection","k":"enum","s":"enums","m":{"Cascade":"Cascade","Multiple":"Multiple","None":"None"}}],"TrendLineType":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/TrendLineType","k":"enum","s":"enums","m":{"CubicFit":"CubicFit","CumulativeAverage":"CumulativeAverage","ExponentialAverage":"ExponentialAverage","ExponentialFit":"ExponentialFit","LinearFit":"LinearFit","LogarithmicFit":"LogarithmicFit","ModifiedAverage":"ModifiedAverage","None":"None","PowerLawFit":"PowerLawFit","QuadraticFit":"QuadraticFit","QuarticFit":"QuarticFit","QuinticFit":"QuinticFit","SimpleAverage":"SimpleAverage","WeightedAverage":"WeightedAverage"}}],"UnknownValuePlotting":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/UnknownValuePlotting","k":"enum","s":"enums","m":{"DontPlot":"DontPlot","LinearInterpolate":"LinearInterpolate"}}],"UnpinnedLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/UnpinnedLocation","k":"enum","s":"enums","m":{"Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/UnpinnedLocation","k":"enum","s":"enums","m":{"Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"UserAnnotationTarget":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/UserAnnotationTarget","k":"enum","s":"enums","m":{"Axis":"Axis","Point":"Point","Slice":"Slice","Strip":"Strip"}}],"ValidationStatus":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ValidationStatus","k":"enum","s":"enums","m":{"INVALID":"INVALID","VALID":"VALID"}}],"ValueAxisLabelLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ValueAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ValueLayerValueMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ValueLayerValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","GlobalAverage":"GlobalAverage","GlobalMaximum":"GlobalMaximum","GlobalMinimum":"GlobalMinimum","Maximum":"Maximum","Minimum":"Minimum"}}],"VerticalAlignment":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/VerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Stretch":"Stretch","Top":"Top"}}],"ViewerSurfaceUsage":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ViewerSurfaceUsage","k":"enum","s":"enums","m":{"Minimal":"Minimal","Normal":"Normal"}}],"Visibility":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/Visibility","k":"enum","s":"enums","m":{"Collapsed":"Collapsed","Visible":"Visible"}}],"WeekDays":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/WeekDays","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}},{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/enums/WeekDays","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}}],"WindowResponse":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/WindowResponse","k":"enum","s":"enums","m":{"Deferred":"Deferred","Immediate":"Immediate"}}],"XAxisLabelLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/XAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"YAxisLabelLocation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/YAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ZoomCoercionMode":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ZoomCoercionMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisConstrained":"AxisConstrained","Unconstrained":"Unconstrained"}}],"ZoomSliderOrientation":[{"p":"IgniteUI.Blazor","u":"/api/blazor/IgniteUI.Blazor/25.2.83/enums/ZoomSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"Colors":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/classes/Colors","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AliceBlue":"AliceBlue","AntiqueWhite":"AntiqueWhite","Aqua":"Aqua","Aquamarine":"Aquamarine","Azure":"Azure","Beige":"Beige","Bisque":"Bisque","Black":"Black","BlanchedAlmond":"BlanchedAlmond","Blue":"Blue","BlueViolet":"BlueViolet","Brown":"Brown","BurlyWood":"BurlyWood","CadetBlue":"CadetBlue","Chartreuse":"Chartreuse","Chocolate":"Chocolate","Coral":"Coral","CornflowerBlue":"CornflowerBlue","Cornsilk":"Cornsilk","Crimson":"Crimson","Cyan":"Cyan","DarkBlue":"DarkBlue","DarkCyan":"DarkCyan","DarkGoldenrod":"DarkGoldenrod","DarkGray":"DarkGray","DarkGreen":"DarkGreen","DarkKhaki":"DarkKhaki","DarkMagenta":"DarkMagenta","DarkOliveGreen":"DarkOliveGreen","DarkOrange":"DarkOrange","DarkOrchid":"DarkOrchid","DarkRed":"DarkRed","DarkSalmon":"DarkSalmon","DarkSeaGreen":"DarkSeaGreen","DarkSlateBlue":"DarkSlateBlue","DarkSlateGray":"DarkSlateGray","DarkTurquoise":"DarkTurquoise","DarkViolet":"DarkViolet","DeepPink":"DeepPink","DeepSkyBlue":"DeepSkyBlue","DimGray":"DimGray","DodgerBlue":"DodgerBlue","Firebrick":"Firebrick","FloralWhite":"FloralWhite","ForestGreen":"ForestGreen","Fuchsia":"Fuchsia","Gainsboro":"Gainsboro","GhostWhite":"GhostWhite","Gold":"Gold","Goldenrod":"Goldenrod","Gray":"Gray","Green":"Green","GreenYellow":"GreenYellow","Honeydew":"Honeydew","HotPink":"HotPink","IndianRed":"IndianRed","Indigo":"Indigo","Ivory":"Ivory","Khaki":"Khaki","Lavender":"Lavender","LavenderBlush":"LavenderBlush","LawnGreen":"LawnGreen","LemonChiffon":"LemonChiffon","LightBlue":"LightBlue","LightCoral":"LightCoral","LightCyan":"LightCyan","LightGoldenrodYellow":"LightGoldenrodYellow","LightGray":"LightGray","LightGreen":"LightGreen","LightPink":"LightPink","LightSalmon":"LightSalmon","LightSeaGreen":"LightSeaGreen","LightSkyBlue":"LightSkyBlue","LightSlateGray":"LightSlateGray","LightSteelBlue":"LightSteelBlue","LightYellow":"LightYellow","Lime":"Lime","LimeGreen":"LimeGreen","Linen":"Linen","Magenta":"Magenta","Maroon":"Maroon","MediumAquamarine":"MediumAquamarine","MediumBlue":"MediumBlue","MediumOrchid":"MediumOrchid","MediumPurple":"MediumPurple","MediumSeaGreen":"MediumSeaGreen","MediumSlateBlue":"MediumSlateBlue","MediumSpringGreen":"MediumSpringGreen","MediumTurquoise":"MediumTurquoise","MediumVioletRed":"MediumVioletRed","MidnightBlue":"MidnightBlue","MintCream":"MintCream","MistyRose":"MistyRose","Moccasin":"Moccasin","NavajoWhite":"NavajoWhite","Navy":"Navy","OldLace":"OldLace","Olive":"Olive","OliveDrab":"OliveDrab","Orange":"Orange","OrangeRed":"OrangeRed","Orchid":"Orchid","PaleGoldenrod":"PaleGoldenrod","PaleGreen":"PaleGreen","PaleTurquoise":"PaleTurquoise","PaleVioletRed":"PaleVioletRed","PapayaWhip":"PapayaWhip","PeachPuff":"PeachPuff","Peru":"Peru","Pink":"Pink","Plum":"Plum","PowderBlue":"PowderBlue","Purple":"Purple","Red":"Red","RosyBrown":"RosyBrown","RoyalBlue":"RoyalBlue","SaddleBrown":"SaddleBrown","Salmon":"Salmon","SandyBrown":"SandyBrown","SeaGreen":"SeaGreen","SeaShell":"SeaShell","Sienna":"Sienna","Silver":"Silver","SkyBlue":"SkyBlue","SlateBlue":"SlateBlue","SlateGray":"SlateGray","Snow":"Snow","SpringGreen":"SpringGreen","SteelBlue":"SteelBlue","Tan":"Tan","Teal":"Teal","Thistle":"Thistle","Tomato":"Tomato","Transparent":"Transparent","Turquoise":"Turquoise","Violet":"Violet","Wheat":"Wheat","White":"White","WhiteSmoke":"WhiteSmoke","Yellow":"Yellow","YellowGreen":"YellowGreen"}}],"DocumentEncryptedException":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/classes/DocumentEncryptedException","k":"class","s":"classes","m":{"GetBaseException()":"GetBaseException()","GetBaseException":"GetBaseException()","ToString()":"ToString()","ToString":"ToString()","GetType()":"GetType()","GetType":"GetType()","TargetSite":"TargetSite","Message":"Message","Data":"Data","InnerException":"InnerException","HelpLink":"HelpLink","Source":"Source","HResult":"HResult","StackTrace":"StackTrace","SerializeObjectState":"SerializeObjectState","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DocumentEncryptedException()":"DocumentEncryptedException()","DocumentEncryptedException":"DocumentEncryptedException()","DocumentEncryptedException(string)":"DocumentEncryptedException(string)","DocumentEncryptedException(string, Exception)":"DocumentEncryptedException(string, Exception)"}}],"DocumentsCoreResourceCustomizer":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/classes/DocumentsCoreResourceCustomizer","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DocumentsCoreResourceCustomizer()":"DocumentsCoreResourceCustomizer()","DocumentsCoreResourceCustomizer":"DocumentsCoreResourceCustomizer()","GetCustomizedString(string)":"GetCustomizedString(string)","GetCustomizedString":"GetCustomizedString(string)","ResetAllCustomizedStrings()":"ResetAllCustomizedStrings()","ResetAllCustomizedStrings":"ResetAllCustomizedStrings()","ResetCustomizedString(string)":"ResetCustomizedString(string)","ResetCustomizedString":"ResetCustomizedString(string)","SetCustomizedString(string, string)":"SetCustomizedString(string, string)","SetCustomizedString":"SetCustomizedString(string, string)"}}],"EncryptionAlgorithmNotSupportedException":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/classes/EncryptionAlgorithmNotSupportedException","k":"class","s":"classes","m":{"GetBaseException()":"GetBaseException()","GetBaseException":"GetBaseException()","ToString()":"ToString()","ToString":"ToString()","GetType()":"GetType()","GetType":"GetType()","TargetSite":"TargetSite","Message":"Message","Data":"Data","InnerException":"InnerException","HelpLink":"HelpLink","Source":"Source","HResult":"HResult","StackTrace":"StackTrace","SerializeObjectState":"SerializeObjectState","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","EncryptionAlgorithmNotSupportedException()":"EncryptionAlgorithmNotSupportedException()","EncryptionAlgorithmNotSupportedException":"EncryptionAlgorithmNotSupportedException()","EncryptionAlgorithmNotSupportedException(SerializationInfo, StreamingContext)":"EncryptionAlgorithmNotSupportedException(SerializationInfo, StreamingContext)","EncryptionAlgorithmNotSupportedException(string)":"EncryptionAlgorithmNotSupportedException(string)","EncryptionAlgorithmNotSupportedException(string, Exception)":"EncryptionAlgorithmNotSupportedException(string, Exception)"}}],"InvalidPasswordException":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/classes/InvalidPasswordException","k":"class","s":"classes","m":{"GetBaseException()":"GetBaseException()","GetBaseException":"GetBaseException()","ToString()":"ToString()","ToString":"ToString()","GetType()":"GetType()","GetType":"GetType()","TargetSite":"TargetSite","Message":"Message","Data":"Data","InnerException":"InnerException","HelpLink":"HelpLink","Source":"Source","HResult":"HResult","StackTrace":"StackTrace","SerializeObjectState":"SerializeObjectState","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","InvalidPasswordException()":"InvalidPasswordException()","InvalidPasswordException":"InvalidPasswordException()","InvalidPasswordException(SerializationInfo, StreamingContext)":"InvalidPasswordException(SerializationInfo, StreamingContext)","InvalidPasswordException(string)":"InvalidPasswordException(string)","InvalidPasswordException(string, Exception)":"InvalidPasswordException(string, Exception)"}}],"IPackage":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/interfaces/IPackage","k":"interface","s":"interfaces","m":{"Dispose()":"Dispose()","Dispose":"Dispose()","CreatePart(Uri, string)":"CreatePart(Uri, string)","CreatePart":"CreatePart(Uri, string)","CreateRelationship(Uri, RelationshipTargetMode, string, string)":"CreateRelationship(Uri, RelationshipTargetMode, string, string)","CreateRelationship":"CreateRelationship(Uri, RelationshipTargetMode, string, string)","GetPart(Uri)":"GetPart(Uri)","GetPart":"GetPart(Uri)","GetParts()":"GetParts()","GetParts":"GetParts()","GetRelationship(string)":"GetRelationship(string)","GetRelationship":"GetRelationship(string)","GetRelationships()":"GetRelationships()","GetRelationships":"GetRelationships()","PartExists(Uri)":"PartExists(Uri)","PartExists":"PartExists(Uri)"}}],"IPackageFactory":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/interfaces/IPackageFactory","k":"interface","s":"interfaces","m":{"Open(Stream, FileMode)":"Open(Stream, FileMode)","Open":"Open(Stream, FileMode)"}}],"IPackagePart":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/interfaces/IPackagePart","k":"interface","s":"interfaces","m":{"ContentType":"ContentType","CreateRelationship(Uri, RelationshipTargetMode, string, string)":"CreateRelationship(Uri, RelationshipTargetMode, string, string)","CreateRelationship":"CreateRelationship(Uri, RelationshipTargetMode, string, string)","GetRelationship(string)":"GetRelationship(string)","GetRelationship":"GetRelationship(string)","GetRelationships()":"GetRelationships()","GetRelationships":"GetRelationships()","GetStream(FileMode, FileAccess)":"GetStream(FileMode, FileAccess)","GetStream":"GetStream(FileMode, FileAccess)","Package":"Package","Uri":"Uri"}}],"IPackageRelationship":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/interfaces/IPackageRelationship","k":"interface","s":"interfaces","m":{"Id":"Id","RelationshipType":"RelationshipType","SourceUri":"SourceUri","TargetMode":"TargetMode","TargetUri":"TargetUri"}}],"FileAccess":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/enums/FileAccess","k":"enum","s":"enums","m":{"Read":"Read","ReadWrite":"ReadWrite","Write":"Write"}}],"FileMode":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/enums/FileMode","k":"enum","s":"enums","m":{"Append":"Append","Create":"Create","CreateNew":"CreateNew","Open":"Open","OpenOrCreate":"OpenOrCreate","Truncate":"Truncate"}}],"RelationshipTargetMode":[{"p":"IgniteUI.Blazor.Documents.Core","u":"/api/blazor/IgniteUI.Blazor.Documents.Core/25.2.83/enums/RelationshipTargetMode","k":"enum","s":"enums","m":{"External":"External","Internal":"Internal"}}],"AnyValueDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/AnyValueDataValidationRule","k":"class","s":"classes","m":{"Clone()":"Clone()","Clone":"Clone()","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AnyValueDataValidationRule()":"AnyValueDataValidationRule()","AnyValueDataValidationRule":"AnyValueDataValidationRule()"}}],"ArrayFormula":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ArrayFormula","k":"class","s":"classes","m":{"ToString()":"ToString()","ToString":"ToString()","ApplyTo(WorksheetCell)":"ApplyTo(WorksheetCell)","ApplyTo":"ApplyTo(WorksheetCell)","ApplyTo(WorksheetRegion)":"ApplyTo(WorksheetRegion)","ApplyTo(WorksheetRegion[])":"ApplyTo(WorksheetRegion[])","ToString(CellReferenceMode)":"ToString(CellReferenceMode)","ToString(CellReferenceMode, CultureInfo)":"ToString(CellReferenceMode, CultureInfo)","Equals(Formula, Formula, CellReferenceMode)":"Equals(Formula, Formula, CellReferenceMode)","Equals":"Equals(Formula, Formula, CellReferenceMode)","TryParse(string, CellReferenceMode, out Formula)":"TryParse(string, CellReferenceMode, out Formula)","TryParse":"TryParse(string, CellReferenceMode, out Formula)","TryParse(string, CellReferenceMode, CultureInfo, out Formula)":"TryParse(string, CellReferenceMode, CultureInfo, out Formula)","TryParse(string, CellReferenceMode, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, out Formula, out FormulaParseException)","TryParse(string, CellReferenceMode, CultureInfo, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, CultureInfo, out Formula, out FormulaParseException)","TryParse(string, CellReferenceMode, WorkbookFormat, out Formula)":"TryParse(string, CellReferenceMode, WorkbookFormat, out Formula)","TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula)":"TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula)","TryParse(string, CellReferenceMode, WorkbookFormat, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, WorkbookFormat, out Formula, out FormulaParseException)","TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula, out FormulaParseException)","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CellRange":"CellRange","ClearCellRange()":"ClearCellRange()","ClearCellRange":"ClearCellRange()","Parse(string, CellReferenceMode)":"Parse(string, CellReferenceMode)","Parse":"Parse(string, CellReferenceMode)","Parse(string, CellReferenceMode, WorkbookFormat)":"Parse(string, CellReferenceMode, WorkbookFormat)","Parse(string, CellReferenceMode, WorkbookFormat, CultureInfo)":"Parse(string, CellReferenceMode, WorkbookFormat, CultureInfo)","Parse(string, CellReferenceMode, CultureInfo)":"Parse(string, CellReferenceMode, CultureInfo)","TryParse(string, CellReferenceMode, out ArrayFormula)":"TryParse(string, CellReferenceMode, out ArrayFormula)","TryParse(string, CellReferenceMode, out ArrayFormula, out FormulaParseException)":"TryParse(string, CellReferenceMode, out ArrayFormula, out FormulaParseException)","TryParse(string, CellReferenceMode, WorkbookFormat, out ArrayFormula)":"TryParse(string, CellReferenceMode, WorkbookFormat, out ArrayFormula)","TryParse(string, CellReferenceMode, WorkbookFormat, out ArrayFormula, out FormulaParseException)":"TryParse(string, CellReferenceMode, WorkbookFormat, out ArrayFormula, out FormulaParseException)","TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out ArrayFormula)":"TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out ArrayFormula)","TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out ArrayFormula, out FormulaParseException)":"TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out ArrayFormula, out FormulaParseException)","TryParse(string, CellReferenceMode, CultureInfo, out ArrayFormula)":"TryParse(string, CellReferenceMode, CultureInfo, out ArrayFormula)","TryParse(string, CellReferenceMode, CultureInfo, out ArrayFormula, out FormulaParseException)":"TryParse(string, CellReferenceMode, CultureInfo, out ArrayFormula, out FormulaParseException)"}}],"ArrayProxy":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ArrayProxy","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ArrayProxy()":"ArrayProxy()","ArrayProxy":"ArrayProxy()","GetLength(int)":"GetLength(int)","GetLength":"GetLength(int)","this[int, int]":"this[int, int]"}}],"AverageConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/AverageConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AboveBelow":"AboveBelow","NumericStandardDeviation":"NumericStandardDeviation"}}],"AverageFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/AverageFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Average":"Average","Type":"Type"}}],"Axis":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Axis","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AxisBetweenCategories":"AxisBetweenCategories","AxisGroup":"AxisGroup","AxisTitle":"AxisTitle","BaseUnit":"BaseUnit","BaseUnitIsAuto":"BaseUnitIsAuto","CategoryType":"CategoryType","Crosses":"Crosses","CrossesAt":"CrossesAt","DisplayUnit":"DisplayUnit","DisplayUnitCustom":"DisplayUnitCustom","DisplayUnitLabel":"DisplayUnitLabel","GapWidth":"GapWidth","LogBase":"LogBase","MajorGridLines":"MajorGridLines","MajorTickMark":"MajorTickMark","MajorUnit":"MajorUnit","MajorUnitIsAuto":"MajorUnitIsAuto","MajorUnitScale":"MajorUnitScale","MaximumScale":"MaximumScale","MaximumScaleIsAuto":"MaximumScaleIsAuto","MinimumScale":"MinimumScale","MinimumScaleIsAuto":"MinimumScaleIsAuto","MinorGridLines":"MinorGridLines","MinorTickMark":"MinorTickMark","MinorUnit":"MinorUnit","MinorUnitIsAuto":"MinorUnitIsAuto","MinorUnitScale":"MinorUnitScale","Position":"Position","ReversePlotOrder":"ReversePlotOrder","ScaleType":"ScaleType","SetMajorMinorUnit(double, double)":"SetMajorMinorUnit(double, double)","SetMajorMinorUnit":"SetMajorMinorUnit(double, double)","TickLabelPosition":"TickLabelPosition","TickLabelSpacing":"TickLabelSpacing","TickLabelSpacingIsAuto":"TickLabelSpacingIsAuto","TickLabels":"TickLabels","TickLines":"TickLines","TickMarkSpacing":"TickMarkSpacing","Type":"Type","Visible":"Visible"}}],"AxisCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/AxisCollection","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(AxisType, AxisGroup)":"Add(AxisType, AxisGroup)","Add":"Add(AxisType, AxisGroup)","Clear()":"Clear()","Clear":"Clear()","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IsReadOnly":"IsReadOnly","this[AxisType, AxisGroup]":"this[AxisType, AxisGroup]","Remove(AxisType, AxisGroup)":"Remove(AxisType, AxisGroup)","Remove":"Remove(AxisType, AxisGroup)"}}],"BlanksConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/BlanksConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"BoxAndWhiskerSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/BoxAndWhiskerSettings","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BoxAndWhiskerSettings(bool, bool, bool, bool, QuartileCalculation)":"BoxAndWhiskerSettings(bool, bool, bool, bool, QuartileCalculation)","BoxAndWhiskerSettings":"BoxAndWhiskerSettings(bool, bool, bool, bool, QuartileCalculation)","QuartileCalculation":"QuartileCalculation","ShowInnerPoints":"ShowInnerPoints","ShowMeanLine":"ShowMeanLine","ShowMeanMarkers":"ShowMeanMarkers","ShowOutlierPoints":"ShowOutlierPoints"}}],"CategoryAxisBinning":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CategoryAxisBinning","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CategoryAxisBinning(double?, bool, double?, bool, double?)":"CategoryAxisBinning(double?, bool, double?, bool, double?)","CategoryAxisBinning":"CategoryAxisBinning(double?, bool, double?, bool, double?)","CategoryAxisBinning(int?, bool, double?, bool, double?)":"CategoryAxisBinning(int?, bool, double?, bool, double?)","BinWidth":"BinWidth","NumberOfBins":"NumberOfBins","Overflow":"Overflow","OverflowThreshold":"OverflowThreshold","Underflow":"Underflow","UnderflowThreshold":"UnderflowThreshold"}}],"CellConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellConditionalFormat","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CellFormat":"CellFormat","DataBarInfo":"DataBarInfo","HasConditionFormatting":"HasConditionFormatting","IconInfo":"IconInfo"}}],"CellDataBarInfo":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellDataBarInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AxisColor":"AxisColor","AxisPosition":"AxisPosition","BarBorder":"BarBorder","BarColor":"BarColor","BarFillType":"BarFillType","BarPositionFrom":"BarPositionFrom","BarPositionTo":"BarPositionTo","Direction":"Direction","IsNegative":"IsNegative","ShowValue":"ShowValue"}}],"CellFill":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellFill","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CellFill()":"CellFill()","CellFill":"CellFill()","CreateLinearGradientFill(double, Color, Color)":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill(double, params CellFillGradientStop[])":"CreateLinearGradientFill(double, params CellFillGradientStop[])","CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)":"CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)","CreatePatternFill(Color, Color, FillPatternStyle)":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)":"CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","CreateRectangularGradientFill(Color, Color)":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, Color, Color)":"CreateRectangularGradientFill(double, double, double, double, Color, Color)","CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])":"CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])","CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)","CreateSolidFill(Color)":"CreateSolidFill(Color)","CreateSolidFill":"CreateSolidFill(Color)","CreateSolidFill(WorkbookColorInfo)":"CreateSolidFill(WorkbookColorInfo)","NoColor":"NoColor"}}],"CellFillGradient":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellFillGradient","k":"class","s":"classes","m":{"CreateLinearGradientFill(double, Color, Color)":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)":"CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)","CreateLinearGradientFill(double, params CellFillGradientStop[])":"CreateLinearGradientFill(double, params CellFillGradientStop[])","CreatePatternFill(Color, Color, FillPatternStyle)":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)":"CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","CreateRectangularGradientFill(Color, Color)":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill(double, double, double, double, Color, Color)":"CreateRectangularGradientFill(double, double, double, double, Color, Color)","CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])":"CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])","CreateSolidFill(Color)":"CreateSolidFill(Color)","CreateSolidFill":"CreateSolidFill(Color)","CreateSolidFill(WorkbookColorInfo)":"CreateSolidFill(WorkbookColorInfo)","NoColor":"NoColor","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Stops":"Stops"}}],"CellFillGradientStop":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellFillGradientStop","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CellFillGradientStop(Color, double)":"CellFillGradientStop(Color, double)","CellFillGradientStop":"CellFillGradientStop(Color, double)","CellFillGradientStop(WorkbookColorInfo, double)":"CellFillGradientStop(WorkbookColorInfo, double)","ColorInfo":"ColorInfo","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Offset":"Offset"}}],"CellFillLinearGradient":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellFillLinearGradient","k":"class","s":"classes","m":{"Stops":"Stops","CreateLinearGradientFill(double, Color, Color)":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)":"CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)","CreateLinearGradientFill(double, params CellFillGradientStop[])":"CreateLinearGradientFill(double, params CellFillGradientStop[])","CreatePatternFill(Color, Color, FillPatternStyle)":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)":"CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","CreateRectangularGradientFill(Color, Color)":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill(double, double, double, double, Color, Color)":"CreateRectangularGradientFill(double, double, double, double, Color, Color)","CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])":"CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])","CreateSolidFill(Color)":"CreateSolidFill(Color)","CreateSolidFill":"CreateSolidFill(Color)","CreateSolidFill(WorkbookColorInfo)":"CreateSolidFill(WorkbookColorInfo)","NoColor":"NoColor","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CellFillLinearGradient(double, params CellFillGradientStop[])":"CellFillLinearGradient(double, params CellFillGradientStop[])","CellFillLinearGradient":"CellFillLinearGradient(double, params CellFillGradientStop[])","Angle":"Angle","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"CellFillPattern":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellFillPattern","k":"class","s":"classes","m":{"CreateLinearGradientFill(double, Color, Color)":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)":"CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)","CreateLinearGradientFill(double, params CellFillGradientStop[])":"CreateLinearGradientFill(double, params CellFillGradientStop[])","CreatePatternFill(Color, Color, FillPatternStyle)":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)":"CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","CreateRectangularGradientFill(Color, Color)":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill(double, double, double, double, Color, Color)":"CreateRectangularGradientFill(double, double, double, double, Color, Color)","CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])":"CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])","CreateSolidFill(Color)":"CreateSolidFill(Color)","CreateSolidFill":"CreateSolidFill(Color)","CreateSolidFill(WorkbookColorInfo)":"CreateSolidFill(WorkbookColorInfo)","NoColor":"NoColor","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CellFillPattern(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)":"CellFillPattern(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","CellFillPattern":"CellFillPattern(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","BackgroundColorInfo":"BackgroundColorInfo","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","PatternColorInfo":"PatternColorInfo","PatternStyle":"PatternStyle"}}],"CellFillRectangularGradient":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellFillRectangularGradient","k":"class","s":"classes","m":{"Stops":"Stops","CreateLinearGradientFill(double, Color, Color)":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill":"CreateLinearGradientFill(double, Color, Color)","CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)":"CreateLinearGradientFill(double, WorkbookColorInfo, WorkbookColorInfo)","CreateLinearGradientFill(double, params CellFillGradientStop[])":"CreateLinearGradientFill(double, params CellFillGradientStop[])","CreatePatternFill(Color, Color, FillPatternStyle)":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill":"CreatePatternFill(Color, Color, FillPatternStyle)","CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)":"CreatePatternFill(WorkbookColorInfo, WorkbookColorInfo, FillPatternStyle)","CreateRectangularGradientFill(Color, Color)":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill":"CreateRectangularGradientFill(Color, Color)","CreateRectangularGradientFill(double, double, double, double, Color, Color)":"CreateRectangularGradientFill(double, double, double, double, Color, Color)","CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)":"CreateRectangularGradientFill(double, double, double, double, WorkbookColorInfo, WorkbookColorInfo)","CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])":"CreateRectangularGradientFill(double, double, double, double, params CellFillGradientStop[])","CreateSolidFill(Color)":"CreateSolidFill(Color)","CreateSolidFill":"CreateSolidFill(Color)","CreateSolidFill(WorkbookColorInfo)":"CreateSolidFill(WorkbookColorInfo)","NoColor":"NoColor","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CellFillRectangularGradient(double, double, double, double, params CellFillGradientStop[])":"CellFillRectangularGradient(double, double, double, double, params CellFillGradientStop[])","CellFillRectangularGradient":"CellFillRectangularGradient(double, double, double, double, params CellFillGradientStop[])","Bottom":"Bottom","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Left":"Left","Right":"Right","Top":"Top"}}],"CellIconInfo":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CellIconInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Icon":"Icon","IconIndex":"IconIndex","IconSet":"IconSet","ShowValue":"ShowValue"}}],"ChartArea":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartArea","k":"class","s":"classes","m":{"Border":"Border","Fill":"Fill","RoundedCorners":"RoundedCorners","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"ChartAreaBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartAreaBase","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Border":"Border","Fill":"Fill","RoundedCorners":"RoundedCorners"}}],"ChartBorder":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartBorder","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartBorder()":"ChartBorder()","ChartBorder":"ChartBorder()","LineStyle":"LineStyle"}}],"ChartDropLines":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartDropLines","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartDropLines()":"ChartDropLines()","ChartDropLines":"ChartDropLines()"}}],"ChartEmptyFill":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartEmptyFill","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartEmptyFill()":"ChartEmptyFill()","ChartEmptyFill":"ChartEmptyFill()"}}],"ChartFillBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartFillBase","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"ChartGradientFill":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartGradientFill","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartGradientFill(GradientType, IEnumerable, double)":"ChartGradientFill(GradientType, IEnumerable, double)","ChartGradientFill":"ChartGradientFill(GradientType, IEnumerable, double)","Angle":"Angle","GetStops()":"GetStops()","GetStops":"GetStops()","GradientType":"GradientType"}}],"ChartGridLines":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartGridLines","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartGridLines()":"ChartGridLines()","ChartGridLines":"ChartGridLines()","GridLineType":"GridLineType"}}],"ChartHighLowLines":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartHighLowLines","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartHighLowLines()":"ChartHighLowLines()","ChartHighLowLines":"ChartHighLowLines()"}}],"ChartLabelBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartLabelBase","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","NumberFormat":"NumberFormat","NumberFormatLinked":"NumberFormatLinked"}}],"ChartLine":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartLine","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartLine()":"ChartLine()","ChartLine":"ChartLine()","LineStyle":"LineStyle"}}],"ChartLineBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartLineBase","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Fill":"Fill","WidthInPoints":"WidthInPoints"}}],"ChartObject":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartObject","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet"}}],"ChartPatternFill":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartPatternFill","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartPatternFill(WorkbookColorInfo, WorkbookColorInfo, PatternType)":"ChartPatternFill(WorkbookColorInfo, WorkbookColorInfo, PatternType)","ChartPatternFill":"ChartPatternFill(WorkbookColorInfo, WorkbookColorInfo, PatternType)","BackgroundColor":"BackgroundColor","ForegroundColor":"ForegroundColor","Pattern":"Pattern"}}],"ChartSeriesLines":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartSeriesLines","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartSeriesLines()":"ChartSeriesLines()","ChartSeriesLines":"ChartSeriesLines()"}}],"Chartsheet":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Chartsheet","k":"class","s":"classes","m":{"Unprotect(string)":"Unprotect(string)","Unprotect":"Unprotect(string)","Unprotect(SecureString)":"Unprotect(SecureString)","MoveToSheetIndex(int)":"MoveToSheetIndex(int)","MoveToSheetIndex":"MoveToSheetIndex(int)","Unprotect()":"Unprotect()","HasProtectionPassword":"HasProtectionPassword","IsProtected":"IsProtected","Name":"Name","Selected":"Selected","SheetIndex":"SheetIndex","TabColorInfo":"TabColorInfo","Workbook":"Workbook","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Chart":"Chart","DisplayOptions":"DisplayOptions","ImageBackground":"ImageBackground","PrintOptions":"PrintOptions","Protect(bool?, bool?)":"Protect(bool?, bool?)","Protect":"Protect(bool?, bool?)","Protect(SecureString, bool?, bool?)":"Protect(SecureString, bool?, bool?)","Protect(string, bool?, bool?)":"Protect(string, bool?, bool?)","Protection":"Protection","Type":"Type"}}],"ChartsheetDisplayOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartsheetDisplayOptions","k":"class","s":"classes","m":{"ResetCore()":"ResetCore()","ResetCore":"ResetCore()","Magnification":"Magnification","SizeWithWindow":"SizeWithWindow","Reset()":"Reset()","Reset":"Reset()","Visibility":"Visibility","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"ChartsheetDisplayOptionsBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartsheetDisplayOptionsBase","k":"class","s":"classes","m":{"Reset()":"Reset()","Reset":"Reset()","Visibility":"Visibility","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Magnification":"Magnification","ResetCore()":"ResetCore()","ResetCore":"ResetCore()","SizeWithWindow":"SizeWithWindow"}}],"ChartsheetPrintOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartsheetPrintOptions","k":"class","s":"classes","m":{"Reset()":"Reset()","Reset":"Reset()","AlignHeadersAndFootersWithMargins":"AlignHeadersAndFootersWithMargins","BottomMargin":"BottomMargin","DraftQuality":"DraftQuality","Footer":"Footer","FooterMargin":"FooterMargin","Header":"Header","HeaderMargin":"HeaderMargin","LeftMargin":"LeftMargin","NumberOfCopies":"NumberOfCopies","Orientation":"Orientation","OrientationResolved":"OrientationResolved","PageNumbering":"PageNumbering","PaperSize":"PaperSize","PrintErrors":"PrintErrors","PrintInBlackAndWhite":"PrintInBlackAndWhite","PrintNotes":"PrintNotes","Resolution":"Resolution","RightMargin":"RightMargin","ScaleHeadersAndFootersWithDocument":"ScaleHeadersAndFootersWithDocument","StartPageNumber":"StartPageNumber","TopMargin":"TopMargin","VerticalResolution":"VerticalResolution","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"ChartsheetProtection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartsheetProtection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AllowEditContents":"AllowEditContents","AllowEditObjects":"AllowEditObjects"}}],"ChartSolidFill":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartSolidFill","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartSolidFill(WorkbookColorInfo)":"ChartSolidFill(WorkbookColorInfo)","ChartSolidFill":"ChartSolidFill(WorkbookColorInfo)","Color":"Color"}}],"ChartTextAreaBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartTextAreaBase","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText"}}],"ChartTickLines":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartTickLines","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartTickLines()":"ChartTickLines()","ChartTickLines":"ChartTickLines()"}}],"ChartTitle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ChartTitle","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ChartTitle()":"ChartTitle()","ChartTitle":"ChartTitle()","Overlay":"Overlay"}}],"ColorScaleConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ColorScaleConditionalFormat","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Formula":"Formula","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ColorScaleType":"ColorScaleType","MaximumThreshold":"MaximumThreshold","MidpointThreshold":"MidpointThreshold","MinimumThreshold":"MinimumThreshold"}}],"ColorScaleCriterion":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ColorScaleCriterion","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?, FormatConditionValueType)":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetFormula":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetValue(double, FormatConditionValueType)":"SetValue(double, FormatConditionValueType)","SetValue":"SetValue(double, FormatConditionValueType)","SetValue(FormatConditionValueType)":"SetValue(FormatConditionValueType)","Value":"Value","ValueType":"ValueType","Formula":"Formula","GetType()":"GetType()","GetType":"GetType()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FormatColor":"FormatColor","ToString()":"ToString()","ToString":"ToString()"}}],"ComboChartGroup":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ComboChartGroup","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AxisGroup":"AxisGroup","ChartType":"ChartType","DoughnutHoleSize":"DoughnutHoleSize","FirstSliceAngle":"FirstSliceAngle","GapWidth":"GapWidth","SeriesOverlap":"SeriesOverlap"}}],"ComboChartGroupCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ComboChartGroupCollection","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(ChartType, AxisGroup)":"Add(ChartType, AxisGroup)","Add":"Add(ChartType, AxisGroup)","Clear()":"Clear()","Clear":"Clear()","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IsReadOnly":"IsReadOnly","this[ChartType, AxisGroup]":"this[ChartType, AxisGroup]","Remove(ChartType, AxisGroup)":"Remove(ChartType, AxisGroup)","Remove":"Remove(ChartType, AxisGroup)","Remove(ComboChartGroup)":"Remove(ComboChartGroup)"}}],"ConditionalFormatBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ConditionalFormatBase","k":"class","s":"classes","m":{"SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ConditionalFormatBase()":"ConditionalFormatBase()","ConditionalFormatBase":"ConditionalFormatBase()","CellFormat":"CellFormat"}}],"ConditionalFormatCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ConditionalFormatCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AddAverageCondition(string, FormatConditionAboveBelow)":"AddAverageCondition(string, FormatConditionAboveBelow)","AddAverageCondition":"AddAverageCondition(string, FormatConditionAboveBelow)","AddBlanksCondition(string)":"AddBlanksCondition(string)","AddBlanksCondition":"AddBlanksCondition(string)","AddColorScaleCondition(string, ColorScaleType)":"AddColorScaleCondition(string, ColorScaleType)","AddColorScaleCondition":"AddColorScaleCondition(string, ColorScaleType)","AddDataBarCondition(string)":"AddDataBarCondition(string)","AddDataBarCondition":"AddDataBarCondition(string)","AddDateTimeCondition(string, FormatConditionTimePeriod)":"AddDateTimeCondition(string, FormatConditionTimePeriod)","AddDateTimeCondition":"AddDateTimeCondition(string, FormatConditionTimePeriod)","AddDuplicateCondition(string)":"AddDuplicateCondition(string)","AddDuplicateCondition":"AddDuplicateCondition(string)","AddErrorsCondition(string)":"AddErrorsCondition(string)","AddErrorsCondition":"AddErrorsCondition(string)","AddFormulaCondition(string, string, CellReferenceMode?)":"AddFormulaCondition(string, string, CellReferenceMode?)","AddFormulaCondition":"AddFormulaCondition(string, string, CellReferenceMode?)","AddIconSetCondition(string, FormatConditionIconSet)":"AddIconSetCondition(string, FormatConditionIconSet)","AddIconSetCondition":"AddIconSetCondition(string, FormatConditionIconSet)","AddNoBlanksCondition(string)":"AddNoBlanksCondition(string)","AddNoBlanksCondition":"AddNoBlanksCondition(string)","AddNoErrorsCondition(string)":"AddNoErrorsCondition(string)","AddNoErrorsCondition":"AddNoErrorsCondition(string)","AddOperatorCondition(string, FormatConditionOperator)":"AddOperatorCondition(string, FormatConditionOperator)","AddOperatorCondition":"AddOperatorCondition(string, FormatConditionOperator)","AddRankCondition(string, FormatConditionTopBottom, int)":"AddRankCondition(string, FormatConditionTopBottom, int)","AddRankCondition":"AddRankCondition(string, FormatConditionTopBottom, int)","AddTextCondition(string, string, FormatConditionTextOperator)":"AddTextCondition(string, string, FormatConditionTextOperator)","AddTextCondition":"AddTextCondition(string, string, FormatConditionTextOperator)","AddUniqueCondition(string)":"AddUniqueCondition(string)","AddUniqueCondition":"AddUniqueCondition(string)","Clear()":"Clear()","Clear":"Clear()","Contains(ConditionBase)":"Contains(ConditionBase)","Contains":"Contains(ConditionBase)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(ConditionBase)":"IndexOf(ConditionBase)","IndexOf":"IndexOf(ConditionBase)","this[int]":"this[int]","Remove(ConditionBase)":"Remove(ConditionBase)","Remove":"Remove(ConditionBase)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"ConditionBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ConditionBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ConditionBase()":"ConditionBase()","ConditionBase":"ConditionBase()","ConditionType":"ConditionType","Priority":"Priority","Regions":"Regions","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","StopIfTrue":"StopIfTrue","Workbook":"Workbook","Worksheet":"Worksheet"}}],"ConditionValue":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ConditionValue","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Formula":"Formula","SetFormula(string, CellReferenceMode?, FormatConditionValueType)":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetFormula":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetValue(FormatConditionValueType)":"SetValue(FormatConditionValueType)","SetValue":"SetValue(FormatConditionValueType)","SetValue(double, FormatConditionValueType)":"SetValue(double, FormatConditionValueType)","ToString()":"ToString()","ToString":"ToString()","Value":"Value","ValueType":"ValueType"}}],"CriterionBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CriterionBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Formula":"Formula","SetFormula(string, CellReferenceMode?, FormatConditionValueType)":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetFormula":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetValue(FormatConditionValueType)":"SetValue(FormatConditionValueType)","SetValue":"SetValue(FormatConditionValueType)","SetValue(double, FormatConditionValueType)":"SetValue(double, FormatConditionValueType)","Value":"Value","ValueType":"ValueType"}}],"CustomDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomDataValidationRule","k":"class","s":"classes","m":{"AllowNull":"AllowNull","Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CustomDataValidationRule()":"CustomDataValidationRule()","CustomDataValidationRule":"CustomDataValidationRule()","GetFormula(string)":"GetFormula(string)","GetFormula":"GetFormula(string)","GetFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)":"GetFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","SetFormula(string, string)":"SetFormula(string, string)","SetFormula":"SetFormula(string, string)","SetFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)":"SetFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)"}}],"CustomFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Condition1":"Condition1","Condition2":"Condition2","ConditionalOperator":"ConditionalOperator"}}],"CustomFilterCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomFilterCondition","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CustomFilterCondition(ExcelComparisonOperator, DateTime)":"CustomFilterCondition(ExcelComparisonOperator, DateTime)","CustomFilterCondition":"CustomFilterCondition(ExcelComparisonOperator, DateTime)","CustomFilterCondition(ExcelComparisonOperator, double)":"CustomFilterCondition(ExcelComparisonOperator, double)","CustomFilterCondition(ExcelComparisonOperator, string)":"CustomFilterCondition(ExcelComparisonOperator, string)","CustomFilterCondition(ExcelComparisonOperator, TimeSpan)":"CustomFilterCondition(ExcelComparisonOperator, TimeSpan)","ComparisonOperator":"ComparisonOperator","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Value":"Value"}}],"CustomListSortCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomListSortCondition","k":"class","s":"classes","m":{"SortDirection":"SortDirection","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CustomListSortCondition(SortDirection, IEnumerable)":"CustomListSortCondition(SortDirection, IEnumerable)","CustomListSortCondition":"CustomListSortCondition(SortDirection, IEnumerable)","CustomListSortCondition(SortDirection, params string[])":"CustomListSortCondition(SortDirection, params string[])","CustomListSortCondition(IEnumerable)":"CustomListSortCondition(IEnumerable)","CustomListSortCondition(params string[])":"CustomListSortCondition(params string[])","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","List":"List"}}],"CustomTableStyleCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomTableStyleCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetTableStyle)":"Add(WorksheetTableStyle)","Add":"Add(WorksheetTableStyle)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetTableStyle)":"Contains(WorksheetTableStyle)","Contains":"Contains(WorksheetTableStyle)","Count":"Count","IndexOf(WorksheetTableStyle)":"IndexOf(WorksheetTableStyle)","IndexOf":"IndexOf(WorksheetTableStyle)","this[int]":"this[int]","this[string]":"this[string]","Remove(WorksheetTableStyle)":"Remove(WorksheetTableStyle)","Remove":"Remove(WorksheetTableStyle)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"CustomView":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomView","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Apply()":"Apply()","Apply":"Apply()","GetDisplayOptions(Worksheet, bool)":"GetDisplayOptions(Worksheet, bool)","GetDisplayOptions":"GetDisplayOptions(Worksheet, bool)","GetHiddenColumns(Worksheet, bool)":"GetHiddenColumns(Worksheet, bool)","GetHiddenColumns":"GetHiddenColumns(Worksheet, bool)","GetHiddenRows(Worksheet, bool)":"GetHiddenRows(Worksheet, bool)","GetHiddenRows":"GetHiddenRows(Worksheet, bool)","GetPrintOptions(Worksheet, bool)":"GetPrintOptions(Worksheet, bool)","GetPrintOptions":"GetPrintOptions(Worksheet, bool)","GetSheetDisplayOptions(Sheet, bool)":"GetSheetDisplayOptions(Sheet, bool)","GetSheetDisplayOptions":"GetSheetDisplayOptions(Sheet, bool)","GetSheetPrintOptions(Sheet, bool)":"GetSheetPrintOptions(Sheet, bool)","GetSheetPrintOptions":"GetSheetPrintOptions(Sheet, bool)","Name":"Name","SaveHiddenRowsAndColumns":"SaveHiddenRowsAndColumns","SavePrintOptions":"SavePrintOptions","WindowOptions":"WindowOptions"}}],"CustomViewChartDisplayOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomViewChartDisplayOptions","k":"class","s":"classes","m":{"ResetCore()":"ResetCore()","ResetCore":"ResetCore()","Magnification":"Magnification","SizeWithWindow":"SizeWithWindow","Reset()":"Reset()","Reset":"Reset()","Visibility":"Visibility","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"CustomViewCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomViewCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string, bool, bool)":"Add(string, bool, bool)","Add":"Add(string, bool, bool)","Clear()":"Clear()","Clear":"Clear()","Contains(CustomView)":"Contains(CustomView)","Contains":"Contains(CustomView)","Count":"Count","this[int]":"this[int]","Remove(CustomView)":"Remove(CustomView)","Remove":"Remove(CustomView)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"CustomViewDisplayOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomViewDisplayOptions","k":"class","s":"classes","m":{"ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","FrozenPaneSettings":"FrozenPaneSettings","GridlineColor":"GridlineColor","PanesAreFrozen":"PanesAreFrozen","ShowExpansionIndicatorBelowGroupedRows":"ShowExpansionIndicatorBelowGroupedRows","ShowExpansionIndicatorToRightOfGroupedColumns":"ShowExpansionIndicatorToRightOfGroupedColumns","ShowFormulasInCells":"ShowFormulasInCells","ShowGridlines":"ShowGridlines","ShowOutlineSymbols":"ShowOutlineSymbols","ShowRowAndColumnHeaders":"ShowRowAndColumnHeaders","ShowRulerInPageLayoutView":"ShowRulerInPageLayoutView","ShowZeroValues":"ShowZeroValues","UnfrozenPaneSettings":"UnfrozenPaneSettings","View":"View","Reset()":"Reset()","Reset":"Reset()","Visibility":"Visibility","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","MagnificationInCurrentView":"MagnificationInCurrentView","ResetCore()":"ResetCore()","ResetCore":"ResetCore()"}}],"CustomViewWindowOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/CustomViewWindowOptions","k":"class","s":"classes","m":{"ObjectDisplayStyle":"ObjectDisplayStyle","ScrollBars":"ScrollBars","SelectedSheet":"SelectedSheet","SelectedWorksheet":"SelectedWorksheet","TabBarVisible":"TabBarVisible","TabBarWidth":"TabBarWidth","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BoundsInPixels":"BoundsInPixels","Maximized":"Maximized","Reset()":"Reset()","Reset":"Reset()","ShowFormulaBar":"ShowFormulaBar","ShowStatusBar":"ShowStatusBar"}}],"DataBarConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DataBarConditionalFormat","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Formula":"Formula","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AxisColor":"AxisColor","AxisPosition":"AxisPosition","BarBorderColor":"BarBorderColor","BarColor":"BarColor","BarFillType":"BarFillType","Direction":"Direction","FillPercentMax":"FillPercentMax","FillPercentMin":"FillPercentMin","MaxPoint":"MaxPoint","MinPoint":"MinPoint","NegativeBarFormat":"NegativeBarFormat","ShowBorder":"ShowBorder","ShowValue":"ShowValue"}}],"DataLabel":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DataLabel","k":"class","s":"classes","m":{"NumberFormat":"NumberFormat","NumberFormatLinked":"NumberFormatLinked","SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DataLabel()":"DataLabel()","DataLabel":"DataLabel()","Height":"Height","IsDeleted":"IsDeleted","LabelPosition":"LabelPosition","Separator":"Separator","ShowBubbleSize":"ShowBubbleSize","ShowCategoryName":"ShowCategoryName","ShowLegendKey":"ShowLegendKey","ShowPercentage":"ShowPercentage","ShowRange":"ShowRange","ShowSeriesName":"ShowSeriesName","ShowValue":"ShowValue","Width":"Width"}}],"DataPoint":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DataPoint","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ApplyPicToEnd":"ApplyPicToEnd","ApplyPicToFront":"ApplyPicToFront","ApplyPicToSides":"ApplyPicToSides","Border":"Border","DataLabel":"DataLabel","Explosion":"Explosion","Fill":"Fill","InvertIfNegative":"InvertIfNegative","MarkerBorder":"MarkerBorder","MarkerFill":"MarkerFill","MarkerSize":"MarkerSize","MarkerStyle":"MarkerStyle","SetAsTotal":"SetAsTotal"}}],"DataPointCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DataPointCollection","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Contains(DataPoint)":"Contains(DataPoint)","Contains":"Contains(DataPoint)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(DataPoint)":"IndexOf(DataPoint)","IndexOf":"IndexOf(DataPoint)","this[int]":"this[int]"}}],"DataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DataValidationRule","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage"}}],"DataValidationRuleCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DataValidationRuleCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(AnyValueDataValidationRule, WorksheetCell)":"Add(AnyValueDataValidationRule, WorksheetCell)","Add":"Add(AnyValueDataValidationRule, WorksheetCell)","Add(AnyValueDataValidationRule, WorksheetRegion)":"Add(AnyValueDataValidationRule, WorksheetRegion)","Add(CustomDataValidationRule, WorksheetCell)":"Add(CustomDataValidationRule, WorksheetCell)","Add(CustomDataValidationRule, WorksheetRegion)":"Add(CustomDataValidationRule, WorksheetRegion)","Add(DataValidationRule, WorksheetReferenceCollection)":"Add(DataValidationRule, WorksheetReferenceCollection)","Add(DataValidationRule, WorksheetReferenceCollection, bool)":"Add(DataValidationRule, WorksheetReferenceCollection, bool)","Add(ListDataValidationRule, WorksheetCell)":"Add(ListDataValidationRule, WorksheetCell)","Add(ListDataValidationRule, WorksheetRegion)":"Add(ListDataValidationRule, WorksheetRegion)","Add(OneConstraintDataValidationRule, WorksheetCell)":"Add(OneConstraintDataValidationRule, WorksheetCell)","Add(OneConstraintDataValidationRule, WorksheetRegion)":"Add(OneConstraintDataValidationRule, WorksheetRegion)","Add(TwoConstraintDataValidationRule, WorksheetCell)":"Add(TwoConstraintDataValidationRule, WorksheetCell)","Add(TwoConstraintDataValidationRule, WorksheetRegion)":"Add(TwoConstraintDataValidationRule, WorksheetRegion)","Clear()":"Clear()","Clear":"Clear()","Contains(DataValidationRule)":"Contains(DataValidationRule)","Contains":"Contains(DataValidationRule)","Contains(WorksheetCell)":"Contains(WorksheetCell)","Contains(WorksheetReferenceCollection)":"Contains(WorksheetReferenceCollection)","Contains(WorksheetRegion)":"Contains(WorksheetRegion)","Count":"Count","FindRule(WorksheetCell)":"FindRule(WorksheetCell)","FindRule":"FindRule(WorksheetCell)","GetAllReferences(DataValidationRule)":"GetAllReferences(DataValidationRule)","GetAllReferences":"GetAllReferences(DataValidationRule)","this[DataValidationRule]":"this[DataValidationRule]","Remove(DataValidationRule)":"Remove(DataValidationRule)","Remove":"Remove(DataValidationRule)","Remove(WorksheetCell)":"Remove(WorksheetCell)","Remove(WorksheetReferenceCollection)":"Remove(WorksheetReferenceCollection)","Remove(WorksheetRegion)":"Remove(WorksheetRegion)","TryGetReferences(DataValidationRule, out WorksheetReferenceCollection)":"TryGetReferences(DataValidationRule, out WorksheetReferenceCollection)","TryGetReferences":"TryGetReferences(DataValidationRule, out WorksheetReferenceCollection)"}}],"DatePeriodFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DatePeriodFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Type":"Type","Value":"Value"}}],"DateRangeFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DateRangeFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","End":"End","Start":"Start"}}],"DateTimeConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DateTimeConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DateOperator":"DateOperator"}}],"DiamondShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DiamondShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DiamondShape()":"DiamondShape()","DiamondShape":"DiamondShape()"}}],"DisplayOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DisplayOptions","k":"class","s":"classes","m":{"Reset()":"Reset()","Reset":"Reset()","Visibility":"Visibility","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","FrozenPaneSettings":"FrozenPaneSettings","GridlineColor":"GridlineColor","PanesAreFrozen":"PanesAreFrozen","ResetCore()":"ResetCore()","ResetCore":"ResetCore()","ShowExpansionIndicatorBelowGroupedRows":"ShowExpansionIndicatorBelowGroupedRows","ShowExpansionIndicatorToRightOfGroupedColumns":"ShowExpansionIndicatorToRightOfGroupedColumns","ShowFormulasInCells":"ShowFormulasInCells","ShowGridlines":"ShowGridlines","ShowOutlineSymbols":"ShowOutlineSymbols","ShowRowAndColumnHeaders":"ShowRowAndColumnHeaders","ShowRulerInPageLayoutView":"ShowRulerInPageLayoutView","ShowZeroValues":"ShowZeroValues","UnfrozenPaneSettings":"UnfrozenPaneSettings","View":"View"}}],"DisplayOptionsBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DisplayOptionsBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Reset()":"Reset()","Reset":"Reset()","ResetCore()":"ResetCore()","ResetCore":"ResetCore()","Visibility":"Visibility"}}],"DisplayUnitLabel":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DisplayUnitLabel","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DisplayUnitLabel()":"DisplayUnitLabel()","DisplayUnitLabel":"DisplayUnitLabel()"}}],"DisplayValueCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DisplayValueCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string)":"Add(string)","Add":"Add(string)","Clear()":"Clear()","Clear":"Clear()","Contains(string)":"Contains(string)","Contains":"Contains(string)","Count":"Count","IndexOf(string)":"IndexOf(string)","IndexOf":"IndexOf(string)","Insert(int, string)":"Insert(int, string)","Insert":"Insert(int, string)","this[int]":"this[int]","Remove(string)":"Remove(string)","Remove":"Remove(string)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"DocumentProperties":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DocumentProperties","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Author":"Author","Category":"Category","Comments":"Comments","Company":"Company","Keywords":"Keywords","Manager":"Manager","Status":"Status","Subject":"Subject","Title":"Title"}}],"DuplicateConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DuplicateConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"DynamicValuesFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/DynamicValuesFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"EllipseShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/EllipseShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","EllipseShape()":"EllipseShape()","EllipseShape":"EllipseShape()"}}],"ErrorBars":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ErrorBars","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ErrorBars()":"ErrorBars()","ErrorBars":"ErrorBars()","Direction":"Direction","EndStyle":"EndStyle","ErrorValueType":"ErrorValueType","Fill":"Fill","Value":"Value","WidthInPoints":"WidthInPoints"}}],"ErrorsConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ErrorsConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"ErrorValue":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ErrorValue","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ArgumentOrFunctionNotAvailable":"ArgumentOrFunctionNotAvailable","Circularity":"Circularity","DivisionByZero":"DivisionByZero","EmptyCellRangeIntersection":"EmptyCellRangeIntersection","InvalidCellReference":"InvalidCellReference","ToString()":"ToString()","ToString":"ToString()","ValueRangeOverflow":"ValueRangeOverflow","WrongFunctionName":"WrongFunctionName","WrongOperandType":"WrongOperandType"}}],"ExcelCalcErrorValue":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ExcelCalcErrorValue","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ExcelCalcErrorValue(ExcelCalcErrorCode)":"ExcelCalcErrorValue(ExcelCalcErrorCode)","ExcelCalcErrorValue":"ExcelCalcErrorValue(ExcelCalcErrorCode)","ExcelCalcErrorValue(ExcelCalcErrorCode, string)":"ExcelCalcErrorValue(ExcelCalcErrorCode, string)","ExcelCalcErrorValue(ExcelCalcErrorCode, string, object)":"ExcelCalcErrorValue(ExcelCalcErrorCode, string, object)","Code":"Code","ErrorValue":"ErrorValue","Message":"Message","ToString()":"ToString()","ToString":"ToString()"}}],"ExcelCalcFunction":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ExcelCalcFunction","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ExcelCalcFunction()":"ExcelCalcFunction()","ExcelCalcFunction":"ExcelCalcFunction()","CanParameterBeEnumerable(int)":"CanParameterBeEnumerable(int)","CanParameterBeEnumerable":"CanParameterBeEnumerable(int)","DoesParameterAllowIntermediateResultArray(int, bool)":"DoesParameterAllowIntermediateResultArray(int, bool)","DoesParameterAllowIntermediateResultArray":"DoesParameterAllowIntermediateResultArray(int, bool)","Evaluate(ExcelCalcNumberStack, int)":"Evaluate(ExcelCalcNumberStack, int)","Evaluate":"Evaluate(ExcelCalcNumberStack, int)","GetArguments(ExcelCalcNumberStack, int, bool)":"GetArguments(ExcelCalcNumberStack, int, bool)","GetArguments":"GetArguments(ExcelCalcNumberStack, int, bool)","GetArguments(ExcelCalcNumberStack, int, bool, bool)":"GetArguments(ExcelCalcNumberStack, int, bool, bool)","MaxArgs":"MaxArgs","MinArgs":"MinArgs","Name":"Name","PerformEvaluation(ExcelCalcNumberStack, int)":"PerformEvaluation(ExcelCalcNumberStack, int)","PerformEvaluation":"PerformEvaluation(ExcelCalcNumberStack, int)"}}],"ExcelCalcNumberStack":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ExcelCalcNumberStack","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ExcelCalcNumberStack()":"ExcelCalcNumberStack()","ExcelCalcNumberStack":"ExcelCalcNumberStack()","Clear()":"Clear()","Clear":"Clear()","Count()":"Count()","Count":"Count()","OwningCell":"OwningCell","Peek()":"Peek()","Peek":"Peek()","Pop()":"Pop()","Pop":"Pop()","Push(ExcelCalcValue)":"Push(ExcelCalcValue)","Push":"Push(ExcelCalcValue)","Reset(int)":"Reset(int)","Reset":"Reset(int)"}}],"ExcelCalcValue":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ExcelCalcValue","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ExcelCalcValue()":"ExcelCalcValue()","ExcelCalcValue":"ExcelCalcValue()","ExcelCalcValue(object)":"ExcelCalcValue(object)","AreValuesEqual(ExcelCalcValue, ExcelCalcValue)":"AreValuesEqual(ExcelCalcValue, ExcelCalcValue)","AreValuesEqual":"AreValuesEqual(ExcelCalcValue, ExcelCalcValue)","CompareTo(ExcelCalcValue)":"CompareTo(ExcelCalcValue)","CompareTo":"CompareTo(ExcelCalcValue)","CompareTo(ExcelCalcValue, ExcelCalcValue)":"CompareTo(ExcelCalcValue, ExcelCalcValue)","DateTimeToExcelDate(Workbook, DateTime)":"DateTimeToExcelDate(Workbook, DateTime)","DateTimeToExcelDate":"DateTimeToExcelDate(Workbook, DateTime)","DateTimeToExcelDate(Workbook, DateTime, bool)":"DateTimeToExcelDate(Workbook, DateTime, bool)","ExcelDateToDateTime(Workbook, double)":"ExcelDateToDateTime(Workbook, double)","ExcelDateToDateTime":"ExcelDateToDateTime(Workbook, double)","ExcelDateToDateTime(Workbook, double, bool)":"ExcelDateToDateTime(Workbook, double, bool)","ExcelDateToTimeOfDay(double, bool)":"ExcelDateToTimeOfDay(double, bool)","ExcelDateToTimeOfDay":"ExcelDateToTimeOfDay(double, bool)","GetResolvedValue()":"GetResolvedValue()","GetResolvedValue":"GetResolvedValue()","GetResolvedValue(bool)":"GetResolvedValue(bool)","GetTypeCode()":"GetTypeCode()","GetTypeCode":"GetTypeCode()","IsArray":"IsArray","IsArrayGroup":"IsArrayGroup","IsBoolean":"IsBoolean","IsDBNull":"IsDBNull","IsDateTime":"IsDateTime","IsError":"IsError","IsNull":"IsNull","IsReference":"IsReference","IsSameValue(ExcelCalcValue)":"IsSameValue(ExcelCalcValue)","IsSameValue":"IsSameValue(ExcelCalcValue)","IsString":"IsString","TimeOfDayToExcelDate(TimeSpan, bool)":"TimeOfDayToExcelDate(TimeSpan, bool)","TimeOfDayToExcelDate":"TimeOfDayToExcelDate(TimeSpan, bool)","ToArrayProxy()":"ToArrayProxy()","ToArrayProxy":"ToArrayProxy()","ToArrayProxyGroup()":"ToArrayProxyGroup()","ToArrayProxyGroup":"ToArrayProxyGroup()","ToBoolean()":"ToBoolean()","ToBoolean":"ToBoolean()","ToBoolean(IFormatProvider)":"ToBoolean(IFormatProvider)","ToByte()":"ToByte()","ToByte":"ToByte()","ToByte(IFormatProvider)":"ToByte(IFormatProvider)","ToChar()":"ToChar()","ToChar":"ToChar()","ToChar(IFormatProvider)":"ToChar(IFormatProvider)","ToDateTime()":"ToDateTime()","ToDateTime":"ToDateTime()","ToDateTime(IFormatProvider)":"ToDateTime(IFormatProvider)","ToDecimal()":"ToDecimal()","ToDecimal":"ToDecimal()","ToDecimal(out decimal)":"ToDecimal(out decimal)","ToDecimal(IFormatProvider)":"ToDecimal(IFormatProvider)","ToDouble()":"ToDouble()","ToDouble":"ToDouble()","ToDouble(out double)":"ToDouble(out double)","ToDouble(IFormatProvider)":"ToDouble(IFormatProvider)","ToErrorValue()":"ToErrorValue()","ToErrorValue":"ToErrorValue()","ToInt()":"ToInt()","ToInt":"ToInt()","ToInt(IFormatProvider)":"ToInt(IFormatProvider)","ToInt16()":"ToInt16()","ToInt16":"ToInt16()","ToInt16(IFormatProvider)":"ToInt16(IFormatProvider)","ToInt32()":"ToInt32()","ToInt32":"ToInt32()","ToInt32(IFormatProvider)":"ToInt32(IFormatProvider)","ToInt64()":"ToInt64()","ToInt64":"ToInt64()","ToInt64(IFormatProvider)":"ToInt64(IFormatProvider)","ToReference()":"ToReference()","ToReference":"ToReference()","ToSingle()":"ToSingle()","ToSingle":"ToSingle()","ToSingle(IFormatProvider)":"ToSingle(IFormatProvider)","ToString()":"ToString()","ToString":"ToString()","ToString(IFormatProvider)":"ToString(IFormatProvider)","ToType(Type, IFormatProvider)":"ToType(Type, IFormatProvider)","ToType":"ToType(Type, IFormatProvider)","Value":"Value"}}],"ExcelResourceCustomizer":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ExcelResourceCustomizer","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ExcelResourceCustomizer()":"ExcelResourceCustomizer()","ExcelResourceCustomizer":"ExcelResourceCustomizer()","GetCustomizedString(string)":"GetCustomizedString(string)","GetCustomizedString":"GetCustomizedString(string)","ResetAllCustomizedStrings()":"ResetAllCustomizedStrings()","ResetAllCustomizedStrings":"ResetAllCustomizedStrings()","ResetCustomizedString(string)":"ResetCustomizedString(string)","ResetCustomizedString":"ResetCustomizedString(string)","SetCustomizedString(string, string)":"SetCustomizedString(string, string)","SetCustomizedString":"SetCustomizedString(string, string)"}}],"FillFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FillFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Fill":"Fill"}}],"FillSortCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FillSortCondition","k":"class","s":"classes","m":{"SortDirection":"SortDirection","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","FillSortCondition(CellFill)":"FillSortCondition(CellFill)","FillSortCondition":"FillSortCondition(CellFill)","FillSortCondition(CellFill, SortDirection)":"FillSortCondition(CellFill, SortDirection)","Equals(object)":"Equals(object)","Fill":"Fill","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"Filter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Filter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"FixedDateGroup":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FixedDateGroup","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","FixedDateGroup(FixedDateGroupType, DateTime)":"FixedDateGroup(FixedDateGroupType, DateTime)","FixedDateGroup":"FixedDateGroup(FixedDateGroupType, DateTime)","End":"End","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GetRange(CalendarType, out DateTime, out DateTime)":"GetRange(CalendarType, out DateTime, out DateTime)","GetRange":"GetRange(CalendarType, out DateTime, out DateTime)","Start":"Start","Type":"Type","Value":"Value"}}],"FixedDateGroupCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FixedDateGroupCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(FixedDateGroup)":"Add(FixedDateGroup)","Add":"Add(FixedDateGroup)","Clear()":"Clear()","Clear":"Clear()","Contains(FixedDateGroup)":"Contains(FixedDateGroup)","Contains":"Contains(FixedDateGroup)","Count":"Count","IndexOf(FixedDateGroup)":"IndexOf(FixedDateGroup)","IndexOf":"IndexOf(FixedDateGroup)","Insert(int, FixedDateGroup)":"Insert(int, FixedDateGroup)","Insert":"Insert(int, FixedDateGroup)","this[int]":"this[int]","Remove(FixedDateGroup)":"Remove(FixedDateGroup)","Remove":"Remove(FixedDateGroup)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"FixedValuesFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FixedValuesFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CalendarType":"CalendarType","DateGroups":"DateGroups","DisplayValues":"DisplayValues","IncludeBlanks":"IncludeBlanks"}}],"FontColorFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FontColorFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FontColorInfo":"FontColorInfo"}}],"FontColorSortCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FontColorSortCondition","k":"class","s":"classes","m":{"SortDirection":"SortDirection","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","FontColorSortCondition(WorkbookColorInfo)":"FontColorSortCondition(WorkbookColorInfo)","FontColorSortCondition":"FontColorSortCondition(WorkbookColorInfo)","FontColorSortCondition(WorkbookColorInfo, SortDirection)":"FontColorSortCondition(WorkbookColorInfo, SortDirection)","Equals(object)":"Equals(object)","FontColorInfo":"FontColorInfo","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"FormattedFontBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedFontBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Bold":"Bold","ColorInfo":"ColorInfo","Height":"Height","Italic":"Italic","Length":"Length","Name":"Name","SetFontFormatting(IWorkbookFont)":"SetFontFormatting(IWorkbookFont)","SetFontFormatting":"SetFontFormatting(IWorkbookFont)","StartIndex":"StartIndex","Strikeout":"Strikeout","SuperscriptSubscriptStyle":"SuperscriptSubscriptStyle","UnderlineStyle":"UnderlineStyle"}}],"FormattedString":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedString","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","FormattedString(string)":"FormattedString(string)","FormattedString":"FormattedString(string)","Clone()":"Clone()","Clone":"Clone()","Equals(object)":"Equals(object)","GetFont(int)":"GetFont(int)","GetFont":"GetFont(int)","GetFont(int, int)":"GetFont(int, int)","GetFormattingRuns()":"GetFormattingRuns()","GetFormattingRuns":"GetFormattingRuns()","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ToString()":"ToString()","ToString":"ToString()","UnformattedString":"UnformattedString"}}],"FormattedStringFont":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedStringFont","k":"class","s":"classes","m":{"SetFontFormatting(IWorkbookFont)":"SetFontFormatting(IWorkbookFont)","SetFontFormatting":"SetFontFormatting(IWorkbookFont)","Bold":"Bold","ColorInfo":"ColorInfo","Height":"Height","Italic":"Italic","Length":"Length","Name":"Name","StartIndex":"StartIndex","Strikeout":"Strikeout","SuperscriptSubscriptStyle":"SuperscriptSubscriptStyle","UnderlineStyle":"UnderlineStyle","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FormattedString":"FormattedString"}}],"FormattedText":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedText","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FormattedText(string)":"FormattedText(string)","FormattedText":"FormattedText(string)","Clone()":"Clone()","Clone":"Clone()","GetFont(int)":"GetFont(int)","GetFont":"GetFont(int)","GetFont(int, int)":"GetFont(int, int)","GetFormattingRuns()":"GetFormattingRuns()","GetFormattingRuns":"GetFormattingRuns()","Paragraphs":"Paragraphs","ToString()":"ToString()","ToString":"ToString()","VerticalAlignment":"VerticalAlignment"}}],"FormattedTextFont":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedTextFont","k":"class","s":"classes","m":{"SetFontFormatting(IWorkbookFont)":"SetFontFormatting(IWorkbookFont)","SetFontFormatting":"SetFontFormatting(IWorkbookFont)","Bold":"Bold","ColorInfo":"ColorInfo","Height":"Height","Italic":"Italic","Length":"Length","Name":"Name","StartIndex":"StartIndex","Strikeout":"Strikeout","SuperscriptSubscriptStyle":"SuperscriptSubscriptStyle","UnderlineStyle":"UnderlineStyle","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FormattedText":"FormattedText"}}],"FormattedTextParagraph":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedTextParagraph","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Alignment":"Alignment","FormattedText":"FormattedText","StartIndex":"StartIndex","UnformattedString":"UnformattedString"}}],"FormattedTextParagraphCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormattedTextParagraphCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string)":"Add(string)","Add":"Add(string)","Clear()":"Clear()","Clear":"Clear()","Contains(FormattedTextParagraph)":"Contains(FormattedTextParagraph)","Contains":"Contains(FormattedTextParagraph)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(FormattedTextParagraph)":"IndexOf(FormattedTextParagraph)","IndexOf":"IndexOf(FormattedTextParagraph)","Insert(int, string)":"Insert(int, string)","Insert":"Insert(int, string)","this[int]":"this[int]","Remove(FormattedTextParagraph)":"Remove(FormattedTextParagraph)","Remove":"Remove(FormattedTextParagraph)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"Formula":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Formula","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ApplyTo(WorksheetCell)":"ApplyTo(WorksheetCell)","ApplyTo":"ApplyTo(WorksheetCell)","ApplyTo(WorksheetRegion)":"ApplyTo(WorksheetRegion)","ApplyTo(WorksheetRegion[])":"ApplyTo(WorksheetRegion[])","Equals(Formula, Formula, CellReferenceMode)":"Equals(Formula, Formula, CellReferenceMode)","Parse(string, CellReferenceMode)":"Parse(string, CellReferenceMode)","Parse":"Parse(string, CellReferenceMode)","Parse(string, CellReferenceMode, WorkbookFormat)":"Parse(string, CellReferenceMode, WorkbookFormat)","Parse(string, CellReferenceMode, WorkbookFormat, CultureInfo)":"Parse(string, CellReferenceMode, WorkbookFormat, CultureInfo)","Parse(string, CellReferenceMode, CultureInfo)":"Parse(string, CellReferenceMode, CultureInfo)","ToString()":"ToString()","ToString":"ToString()","ToString(CellReferenceMode)":"ToString(CellReferenceMode)","ToString(CellReferenceMode, CultureInfo)":"ToString(CellReferenceMode, CultureInfo)","TryParse(string, CellReferenceMode, out Formula)":"TryParse(string, CellReferenceMode, out Formula)","TryParse":"TryParse(string, CellReferenceMode, out Formula)","TryParse(string, CellReferenceMode, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, out Formula, out FormulaParseException)","TryParse(string, CellReferenceMode, WorkbookFormat, out Formula)":"TryParse(string, CellReferenceMode, WorkbookFormat, out Formula)","TryParse(string, CellReferenceMode, WorkbookFormat, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, WorkbookFormat, out Formula, out FormulaParseException)","TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula)":"TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula)","TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, WorkbookFormat, CultureInfo, out Formula, out FormulaParseException)","TryParse(string, CellReferenceMode, CultureInfo, out Formula)":"TryParse(string, CellReferenceMode, CultureInfo, out Formula)","TryParse(string, CellReferenceMode, CultureInfo, out Formula, out FormulaParseException)":"TryParse(string, CellReferenceMode, CultureInfo, out Formula, out FormulaParseException)"}}],"FormulaConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormulaConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Formula":"Formula","SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)"}}],"FormulaParseException":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FormulaParseException","k":"class","s":"classes","m":{"GetBaseException()":"GetBaseException()","GetBaseException":"GetBaseException()","ToString()":"ToString()","ToString":"ToString()","GetType()":"GetType()","GetType":"GetType()","TargetSite":"TargetSite","Data":"Data","InnerException":"InnerException","HelpLink":"HelpLink","Source":"Source","HResult":"HResult","StackTrace":"StackTrace","SerializeObjectState":"SerializeObjectState","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FormulaParseException()":"FormulaParseException()","FormulaParseException":"FormulaParseException()","FormulaParseException(int, string, string, string)":"FormulaParseException(int, string, string, string)","FormulaParseException(string)":"FormulaParseException(string)","FormulaParseException(string, Exception)":"FormulaParseException(string, Exception)","CharIndexOfError":"CharIndexOfError","FormulaValue":"FormulaValue","Message":"Message","PortionWithError":"PortionWithError"}}],"FrozenPaneSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/FrozenPaneSettings","k":"class","s":"classes","m":{"Reset()":"Reset()","Reset":"Reset()","FirstColumnInRightPane":"FirstColumnInRightPane","FirstRowInBottomPane":"FirstRowInBottomPane","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FrozenColumns":"FrozenColumns","FrozenRows":"FrozenRows","ResetCore()":"ResetCore()","ResetCore":"ResetCore()"}}],"GeographicMapColors":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/GeographicMapColors","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GeographicMapColors(GeographicMapSeriesColor, WorkbookColorInfo, WorkbookColorInfo, WorkbookColorInfo)":"GeographicMapColors(GeographicMapSeriesColor, WorkbookColorInfo, WorkbookColorInfo, WorkbookColorInfo)","GeographicMapColors":"GeographicMapColors(GeographicMapSeriesColor, WorkbookColorInfo, WorkbookColorInfo, WorkbookColorInfo)","Maximum":"Maximum","Midpoint":"Midpoint","Minimum":"Minimum","SeriesColor":"SeriesColor"}}],"GeographicMapSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/GeographicMapSettings","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GeographicMapSettings(string, string, string, GeographicMapProjection?, GeographicMappingArea?, GeographicMapLabels, GeographicMapColors)":"GeographicMapSettings(string, string, string, GeographicMapProjection?, GeographicMappingArea?, GeographicMapLabels, GeographicMapColors)","GeographicMapSettings":"GeographicMapSettings(string, string, string, GeographicMapProjection?, GeographicMappingArea?, GeographicMapLabels, GeographicMapColors)","Area":"Area","Attribution":"Attribution","Colors":"Colors","CultureLanguage":"CultureLanguage","CultureRegion":"CultureRegion","Labels":"Labels","Projection":"Projection"}}],"HeartShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/HeartShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","HeartShape()":"HeartShape()","HeartShape":"HeartShape()"}}],"HiddenColumnCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/HiddenColumnCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetColumn)":"Add(WorksheetColumn)","Add":"Add(WorksheetColumn)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetColumn)":"Contains(WorksheetColumn)","Contains":"Contains(WorksheetColumn)","Count":"Count","this[int]":"this[int]","Remove(WorksheetColumn)":"Remove(WorksheetColumn)","Remove":"Remove(WorksheetColumn)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Worksheet":"Worksheet"}}],"HiddenRowCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/HiddenRowCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetRow)":"Add(WorksheetRow)","Add":"Add(WorksheetRow)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetRow)":"Contains(WorksheetRow)","Contains":"Contains(WorksheetRow)","Count":"Count","this[int]":"this[int]","Remove(WorksheetRow)":"Remove(WorksheetRow)","Remove":"Remove(WorksheetRow)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Worksheet":"Worksheet"}}],"HorizontalPageBreak":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/HorizontalPageBreak","k":"class","s":"classes","m":{"Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","PrintArea":"PrintArea","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","HorizontalPageBreak(int)":"HorizontalPageBreak(int)","HorizontalPageBreak":"HorizontalPageBreak(int)","HorizontalPageBreak(int, WorksheetRegion)":"HorizontalPageBreak(int, WorksheetRegion)","FirstRowOnPage":"FirstRowOnPage"}}],"HorizontalPageBreakCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/HorizontalPageBreakCollection","k":"class","s":"classes","m":{"Add(HorizontalPageBreak)":"Add(HorizontalPageBreak)","Add":"Add(HorizontalPageBreak)","Clear()":"Clear()","Clear":"Clear()","Contains(HorizontalPageBreak)":"Contains(HorizontalPageBreak)","Contains":"Contains(HorizontalPageBreak)","IndexOf(HorizontalPageBreak)":"IndexOf(HorizontalPageBreak)","IndexOf":"IndexOf(HorizontalPageBreak)","Remove(HorizontalPageBreak)":"Remove(HorizontalPageBreak)","Remove":"Remove(HorizontalPageBreak)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"IconCriterion":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IconCriterion","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?, FormatConditionValueType)":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetFormula":"SetFormula(string, CellReferenceMode?, FormatConditionValueType)","SetValue(double, FormatConditionValueType)":"SetValue(double, FormatConditionValueType)","SetValue":"SetValue(double, FormatConditionValueType)","SetValue(FormatConditionValueType)":"SetValue(FormatConditionValueType)","Value":"Value","ValueType":"ValueType","Formula":"Formula","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Comparison":"Comparison","Icon":"Icon","IconSet":"IconSet"}}],"IconFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IconFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IconIndex":"IconIndex","IconSet":"IconSet"}}],"IconSetConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IconSetConditionalFormat","k":"class","s":"classes","m":{"SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Formula":"Formula","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IconCriteria":"IconCriteria","IconSet":"IconSet","IsCustom":"IsCustom","IsReverseOrder":"IsReverseOrder","ShowValue":"ShowValue"}}],"IconSetCriterionCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IconSetCriterionCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Count":"Count","this[int]":"this[int]"}}],"IconSortCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IconSortCondition","k":"class","s":"classes","m":{"Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SortDirection":"SortDirection","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","IconSortCondition(FormatConditionIconSet, int?)":"IconSortCondition(FormatConditionIconSet, int?)","IconSortCondition":"IconSortCondition(FormatConditionIconSet, int?)","IconSortCondition(FormatConditionIconSet, int?, SortDirection)":"IconSortCondition(FormatConditionIconSet, int?, SortDirection)","IconIndex":"IconIndex","IconSet":"IconSet"}}],"ImageWrapper":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ImageWrapper","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ImageWrapper(string)":"ImageWrapper(string)","ImageWrapper":"ImageWrapper(string)","IsEquivalent(ImageWrapper)":"IsEquivalent(ImageWrapper)","IsEquivalent":"IsEquivalent(ImageWrapper)"}}],"IrregularSeal1Shape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IrregularSeal1Shape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IrregularSeal1Shape()":"IrregularSeal1Shape()","IrregularSeal1Shape":"IrregularSeal1Shape()"}}],"IrregularSeal2Shape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/IrregularSeal2Shape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IrregularSeal2Shape()":"IrregularSeal2Shape()","IrregularSeal2Shape":"IrregularSeal2Shape()"}}],"LeaderLines":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/LeaderLines","k":"class","s":"classes","m":{"Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LeaderLines()":"LeaderLines()","LeaderLines":"LeaderLines()"}}],"Legend":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Legend","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Legend()":"Legend()","Legend":"Legend()","Border":"Border","DefaultFont":"DefaultFont","DefaultFontFill":"DefaultFontFill","Fill":"Fill","Height":"Height","Left":"Left","LegendEntries":"LegendEntries","Overlay":"Overlay","Position":"Position","Rotation":"Rotation","TextDirection":"TextDirection","Top":"Top","Width":"Width"}}],"LegendEntries":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/LegendEntries","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Contains(LegendEntry)":"Contains(LegendEntry)","Contains":"Contains(LegendEntry)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(LegendEntry)":"IndexOf(LegendEntry)","IndexOf":"IndexOf(LegendEntry)","this[int]":"this[int]"}}],"LegendEntry":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/LegendEntry","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Font":"Font","FontFill":"FontFill","IsDeleted":"IsDeleted"}}],"LightningBoltShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/LightningBoltShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LightningBoltShape()":"LightningBoltShape()","LightningBoltShape":"LightningBoltShape()"}}],"LimitedValueDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/LimitedValueDataValidationRule","k":"class","s":"classes","m":{"Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AllowNull":"AllowNull","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)"}}],"LineShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/LineShape","k":"class","s":"classes","m":{"ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LineShape()":"LineShape()","LineShape":"LineShape()"}}],"ListDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ListDataValidationRule","k":"class","s":"classes","m":{"AllowNull":"AllowNull","Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ListDataValidationRule()":"ListDataValidationRule()","ListDataValidationRule":"ListDataValidationRule()","GetValuesFormula(string)":"GetValuesFormula(string)","GetValuesFormula":"GetValuesFormula(string)","GetValuesFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)":"GetValuesFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","SetValues(params object[])":"SetValues(params object[])","SetValues":"SetValues(params object[])","SetValuesFormula(string, string)":"SetValuesFormula(string, string)","SetValuesFormula":"SetValuesFormula(string, string)","SetValuesFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)":"SetValuesFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)","ShowDropdown":"ShowDropdown","TryGetValues(out object[])":"TryGetValues(out object[])","TryGetValues":"TryGetValues(out object[])"}}],"NamedReference":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/NamedReference","k":"class","s":"classes","m":{"Comment":"Comment","Name":"Name","Scope":"Scope","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Formula":"Formula","IsSimpleReferenceFormula":"IsSimpleReferenceFormula","ReferencedCell":"ReferencedCell","ReferencedRegion":"ReferencedRegion","ReferencedRegions":"ReferencedRegions","SetFormula(string)":"SetFormula(string)","SetFormula":"SetFormula(string)","SetFormula(string, CellReferenceMode)":"SetFormula(string, CellReferenceMode)","SetFormula(string, CellReferenceMode, CultureInfo)":"SetFormula(string, CellReferenceMode, CultureInfo)","ToString()":"ToString()","ToString":"ToString()"}}],"NamedReferenceBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/NamedReferenceBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Comment":"Comment","Name":"Name","Scope":"Scope"}}],"NamedReferenceCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/NamedReferenceCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string, string)":"Add(string, string)","Add":"Add(string, string)","Add(string, string, CellReferenceMode)":"Add(string, string, CellReferenceMode)","Add(string, string, CellReferenceMode, Worksheet)":"Add(string, string, CellReferenceMode, Worksheet)","Add(string, string, Worksheet)":"Add(string, string, Worksheet)","Clear()":"Clear()","Clear":"Clear()","Contains(NamedReference)":"Contains(NamedReference)","Contains":"Contains(NamedReference)","Count":"Count","Find(string)":"Find(string)","Find":"Find(string)","Find(string, Worksheet)":"Find(string, Worksheet)","FindAll(string)":"FindAll(string)","FindAll":"FindAll(string)","this[int]":"this[int]","Remove(NamedReference)":"Remove(NamedReference)","Remove":"Remove(NamedReference)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Workbook":"Workbook"}}],"NegativeBarFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/NegativeBarFormat","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BarBorderColor":"BarBorderColor","BarBorderColorType":"BarBorderColorType","BarColor":"BarColor","BarColorType":"BarColorType"}}],"NoBlanksConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/NoBlanksConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"NoErrorsConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/NoErrorsConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"OneConstraintDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/OneConstraintDataValidationRule","k":"class","s":"classes","m":{"ValidationCriteria":"ValidationCriteria","AllowNull":"AllowNull","Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","OneConstraintDataValidationRule()":"OneConstraintDataValidationRule()","OneConstraintDataValidationRule":"OneConstraintDataValidationRule()","OneConstraintDataValidationRule(OneConstraintDataValidationOperator, DataValidationCriteria)":"OneConstraintDataValidationRule(OneConstraintDataValidationOperator, DataValidationCriteria)","GetConstraintFormula(string)":"GetConstraintFormula(string)","GetConstraintFormula":"GetConstraintFormula(string)","GetConstraintFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)":"GetConstraintFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","SetConstraint(DateTime)":"SetConstraint(DateTime)","SetConstraint":"SetConstraint(DateTime)","SetConstraint(double)":"SetConstraint(double)","SetConstraint(TimeSpan)":"SetConstraint(TimeSpan)","SetConstraintFormula(string, string)":"SetConstraintFormula(string, string)","SetConstraintFormula":"SetConstraintFormula(string, string)","SetConstraintFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)":"SetConstraintFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)","TryGetConstraint(out DateTime)":"TryGetConstraint(out DateTime)","TryGetConstraint":"TryGetConstraint(out DateTime)","TryGetConstraint(out double)":"TryGetConstraint(out double)","TryGetConstraint(out TimeSpan)":"TryGetConstraint(out TimeSpan)","ValidationOperator":"ValidationOperator"}}],"OpenPackagingNonConformanceException":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/OpenPackagingNonConformanceException","k":"class","s":"classes","m":{"GetBaseException()":"GetBaseException()","GetBaseException":"GetBaseException()","ToString()":"ToString()","ToString":"ToString()","GetType()":"GetType()","GetType":"GetType()","TargetSite":"TargetSite","Message":"Message","Data":"Data","InnerException":"InnerException","HelpLink":"HelpLink","Source":"Source","HResult":"HResult","StackTrace":"StackTrace","SerializeObjectState":"SerializeObjectState","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IPackagePart":"IPackagePart","Reason":"Reason"}}],"OperatorConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/OperatorConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Operand1":"Operand1","Operand2":"Operand2","Operator":"Operator","SetOperand1(DateTime)":"SetOperand1(DateTime)","SetOperand1":"SetOperand1(DateTime)","SetOperand1(double)":"SetOperand1(double)","SetOperand1(string)":"SetOperand1(string)","SetOperand1Formula(string, CellReferenceMode?)":"SetOperand1Formula(string, CellReferenceMode?)","SetOperand1Formula":"SetOperand1Formula(string, CellReferenceMode?)","SetOperand2(DateTime)":"SetOperand2(DateTime)","SetOperand2":"SetOperand2(DateTime)","SetOperand2(double)":"SetOperand2(double)","SetOperand2(string)":"SetOperand2(string)","SetOperand2Formula(string, CellReferenceMode?)":"SetOperand2Formula(string, CellReferenceMode?)","SetOperand2Formula":"SetOperand2Formula(string, CellReferenceMode?)"}}],"OrderedSortCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/OrderedSortCondition","k":"class","s":"classes","m":{"Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SortDirection":"SortDirection","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","OrderedSortCondition()":"OrderedSortCondition()","OrderedSortCondition":"OrderedSortCondition()","OrderedSortCondition(SortDirection)":"OrderedSortCondition(SortDirection)"}}],"PageBreak":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PageBreak","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","PrintArea":"PrintArea"}}],"PageBreakCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PageBreakCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(T)":"Add(T)","Add":"Add(T)","Clear()":"Clear()","Clear":"Clear()","Contains(T)":"Contains(T)","Contains":"Contains(T)","Count":"Count","IndexOf(T)":"IndexOf(T)","IndexOf":"IndexOf(T)","this[int]":"this[int]","Remove(T)":"Remove(T)","Remove":"Remove(T)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"PaneSettingsBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PaneSettingsBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FirstColumnInRightPane":"FirstColumnInRightPane","FirstRowInBottomPane":"FirstRowInBottomPane","Reset()":"Reset()","Reset":"Reset()","ResetCore()":"ResetCore()","ResetCore":"ResetCore()"}}],"PentagonShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PentagonShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","PentagonShape()":"PentagonShape()","PentagonShape":"PentagonShape()"}}],"PlotArea":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PlotArea","k":"class","s":"classes","m":{"Border":"Border","Fill":"Fill","RoundedCorners":"RoundedCorners","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Height":"Height","Left":"Left","Position":"Position","Top":"Top","Width":"Width"}}],"PrintAreasCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PrintAreasCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetRegion)":"Add(WorksheetRegion)","Add":"Add(WorksheetRegion)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetRegion)":"Contains(WorksheetRegion)","Contains":"Contains(WorksheetRegion)","Count":"Count","this[int]":"this[int]","Remove(WorksheetRegion)":"Remove(WorksheetRegion)","Remove":"Remove(WorksheetRegion)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"PrintOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PrintOptions","k":"class","s":"classes","m":{"AlignHeadersAndFootersWithMargins":"AlignHeadersAndFootersWithMargins","BottomMargin":"BottomMargin","DraftQuality":"DraftQuality","Footer":"Footer","FooterMargin":"FooterMargin","Header":"Header","HeaderMargin":"HeaderMargin","LeftMargin":"LeftMargin","NumberOfCopies":"NumberOfCopies","Orientation":"Orientation","OrientationResolved":"OrientationResolved","PageNumbering":"PageNumbering","PaperSize":"PaperSize","PrintErrors":"PrintErrors","PrintInBlackAndWhite":"PrintInBlackAndWhite","PrintNotes":"PrintNotes","Resolution":"Resolution","RightMargin":"RightMargin","ScaleHeadersAndFootersWithDocument":"ScaleHeadersAndFootersWithDocument","StartPageNumber":"StartPageNumber","TopMargin":"TopMargin","VerticalResolution":"VerticalResolution","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CenterHorizontally":"CenterHorizontally","CenterVertically":"CenterVertically","ClearPageBreaks()":"ClearPageBreaks()","ClearPageBreaks":"ClearPageBreaks()","ColumnsToRepeatAtLeft":"ColumnsToRepeatAtLeft","HorizontalPageBreaks":"HorizontalPageBreaks","InsertPageBreak(WorksheetCell)":"InsertPageBreak(WorksheetCell)","InsertPageBreak":"InsertPageBreak(WorksheetCell)","InsertPageBreak(WorksheetColumn)":"InsertPageBreak(WorksheetColumn)","InsertPageBreak(WorksheetRow)":"InsertPageBreak(WorksheetRow)","MaxPagesHorizontally":"MaxPagesHorizontally","MaxPagesVertically":"MaxPagesVertically","PageOrder":"PageOrder","PrintAreas":"PrintAreas","PrintGridlines":"PrintGridlines","PrintRowAndColumnHeaders":"PrintRowAndColumnHeaders","Reset()":"Reset()","Reset":"Reset()","RowsToRepeatAtTop":"RowsToRepeatAtTop","ScalingFactor":"ScalingFactor","ScalingType":"ScalingType","VerticalPageBreaks":"VerticalPageBreaks"}}],"PrintOptionsBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/PrintOptionsBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AlignHeadersAndFootersWithMargins":"AlignHeadersAndFootersWithMargins","BottomMargin":"BottomMargin","DraftQuality":"DraftQuality","Footer":"Footer","FooterMargin":"FooterMargin","Header":"Header","HeaderMargin":"HeaderMargin","LeftMargin":"LeftMargin","NumberOfCopies":"NumberOfCopies","Orientation":"Orientation","OrientationResolved":"OrientationResolved","PageNumbering":"PageNumbering","PaperSize":"PaperSize","PrintErrors":"PrintErrors","PrintInBlackAndWhite":"PrintInBlackAndWhite","PrintNotes":"PrintNotes","Reset()":"Reset()","Reset":"Reset()","Resolution":"Resolution","RightMargin":"RightMargin","ScaleHeadersAndFootersWithDocument":"ScaleHeadersAndFootersWithDocument","StartPageNumber":"StartPageNumber","TopMargin":"TopMargin","VerticalResolution":"VerticalResolution"}}],"RankConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RankConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IsPercent":"IsPercent","Rank":"Rank","TopBottom":"TopBottom"}}],"RectangleShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RectangleShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","RectangleShape()":"RectangleShape()","RectangleShape":"RectangleShape()"}}],"RelativeDateRangeFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RelativeDateRangeFilter","k":"class","s":"classes","m":{"End":"End","Start":"Start","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Duration":"Duration","Offset":"Offset"}}],"RelativeIndex":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RelativeIndex","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","RelativeIndex(int)":"RelativeIndex(int)","RelativeIndex":"RelativeIndex(int)","CompareTo(RelativeIndex)":"CompareTo(RelativeIndex)","CompareTo":"CompareTo(RelativeIndex)","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Index":"Index","ToString()":"ToString()","ToString":"ToString()"}}],"RelativeIndexSortSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RelativeIndexSortSettings","k":"class","s":"classes","m":{"CaseSensitive":"CaseSensitive","SortConditions":"SortConditions","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","InitializeRegion()":"InitializeRegion()","InitializeRegion":"InitializeRegion()"}}],"RepeatTitleRange":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RepeatTitleRange","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","RepeatTitleRange(int, int)":"RepeatTitleRange(int, int)","RepeatTitleRange":"RepeatTitleRange(int, int)","EndIndex":"EndIndex","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","StartIndex":"StartIndex","ToString()":"ToString()","ToString":"ToString()"}}],"RightTriangleShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RightTriangleShape","k":"class","s":"classes","m":{"Text":"Text","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","RightTriangleShape()":"RightTriangleShape()","RightTriangleShape":"RightTriangleShape()"}}],"RowColumnBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RowColumnBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CellFormat":"CellFormat","GetResolvedCellFormat()":"GetResolvedCellFormat()","GetResolvedCellFormat":"GetResolvedCellFormat()","Hidden":"Hidden","Index":"Index","OutlineLevel":"OutlineLevel","Worksheet":"Worksheet"}}],"RowColumnCollectionBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/RowColumnCollectionBase","k":"class","s":"classes","m":{"MaxCount":"MaxCount","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"Series":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Series","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ApplyPicToEnd":"ApplyPicToEnd","ApplyPicToFront":"ApplyPicToFront","ApplyPicToSides":"ApplyPicToSides","AxisBinning":"AxisBinning","AxisGroup":"AxisGroup","BarShape":"BarShape","BarShapeResolved":"BarShapeResolved","Border":"Border","BoxAndWhiskerSettings":"BoxAndWhiskerSettings","BubbleSizes":"BubbleSizes","ChartType":"ChartType","DataLabels":"DataLabels","DataPointCollection":"DataPointCollection","ErrorBars":"ErrorBars","Explosion":"Explosion","Fill":"Fill","GeographicMapSettings":"GeographicMapSettings","InvertIfNegative":"InvertIfNegative","LeaderLines":"LeaderLines","Line":"Line","MarkerBorder":"MarkerBorder","MarkerFill":"MarkerFill","MarkerSize":"MarkerSize","MarkerStyle":"MarkerStyle","Name":"Name","OwningSeries":"OwningSeries","PictureType":"PictureType","PictureUnit":"PictureUnit","PlotOrder":"PlotOrder","ShowDataLabels":"ShowDataLabels","ShowWaterfallConnectorLines":"ShowWaterfallConnectorLines","Smooth":"Smooth","TrendlineCollection":"TrendlineCollection","Type":"Type","Values":"Values","XValues":"XValues"}}],"SeriesCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SeriesCollection","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add()":"Add()","Add":"Add()","Clear()":"Clear()","Clear":"Clear()","Contains(Series)":"Contains(Series)","Contains":"Contains(Series)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(Series)":"IndexOf(Series)","IndexOf":"IndexOf(Series)","Insert(int)":"Insert(int)","Insert":"Insert(int)","IsReadOnly":"IsReadOnly","this[int]":"this[int]","Remove(Series)":"Remove(Series)","Remove":"Remove(Series)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"SeriesDataLabels":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SeriesDataLabels","k":"class","s":"classes","m":{"Height":"Height","IsDeleted":"IsDeleted","LabelPosition":"LabelPosition","Separator":"Separator","ShowBubbleSize":"ShowBubbleSize","ShowCategoryName":"ShowCategoryName","ShowLegendKey":"ShowLegendKey","ShowPercentage":"ShowPercentage","ShowSeriesName":"ShowSeriesName","ShowRange":"ShowRange","ShowValue":"ShowValue","Width":"Width","NumberFormat":"NumberFormat","NumberFormatLinked":"NumberFormatLinked","SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DataLabelsRange":"DataLabelsRange","ParentLabelLayout":"ParentLabelLayout","SetDataLabelsRange(string, CellReferenceMode?)":"SetDataLabelsRange(string, CellReferenceMode?)","SetDataLabelsRange":"SetDataLabelsRange(string, CellReferenceMode?)","ShowLeaderLines":"ShowLeaderLines"}}],"SeriesName":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SeriesName","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SeriesName(Sheet, string, CellReferenceMode?)":"SeriesName(Sheet, string, CellReferenceMode?)","SeriesName":"SeriesName(Sheet, string, CellReferenceMode?)","SeriesName(string)":"SeriesName(string)","ToString()":"ToString()","ToString":"ToString()"}}],"SeriesValues":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SeriesValues","k":"class","s":"classes","m":{"GetValues()":"GetValues()","GetValues":"GetValues()","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SeriesValues(Sheet, string, CellReferenceMode?, SeriesValuesColorBy)":"SeriesValues(Sheet, string, CellReferenceMode?, SeriesValuesColorBy)","SeriesValues":"SeriesValues(Sheet, string, CellReferenceMode?, SeriesValuesColorBy)","SeriesValues(IEnumerable)":"SeriesValues(IEnumerable)"}}],"SeriesValuesBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SeriesValuesBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SeriesValuesBase(Sheet, string, CellReferenceMode?)":"SeriesValuesBase(Sheet, string, CellReferenceMode?)","SeriesValuesBase":"SeriesValuesBase(Sheet, string, CellReferenceMode?)","SeriesValuesBase(IEnumerable)":"SeriesValuesBase(IEnumerable)","GetValues()":"GetValues()","GetValues":"GetValues()"}}],"ShapeFill":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ShapeFill","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ShapeFill()":"ShapeFill()","ShapeFill":"ShapeFill()","FromColor(Color)":"FromColor(Color)","FromColor":"FromColor(Color)","FromColorInfo(WorkbookColorInfo)":"FromColorInfo(WorkbookColorInfo)","FromColorInfo":"FromColorInfo(WorkbookColorInfo)"}}],"ShapeFillSolid":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ShapeFillSolid","k":"class","s":"classes","m":{"FromColor(Color)":"FromColor(Color)","FromColor":"FromColor(Color)","FromColorInfo(WorkbookColorInfo)":"FromColorInfo(WorkbookColorInfo)","FromColorInfo":"FromColorInfo(WorkbookColorInfo)","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ShapeFillSolid()":"ShapeFillSolid()","ShapeFillSolid":"ShapeFillSolid()","ShapeFillSolid(Color)":"ShapeFillSolid(Color)","ShapeFillSolid(WorkbookColorInfo)":"ShapeFillSolid(WorkbookColorInfo)","ColorInfo":"ColorInfo"}}],"ShapeOutline":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ShapeOutline","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ShapeOutline()":"ShapeOutline()","ShapeOutline":"ShapeOutline()","FromColor(Color)":"FromColor(Color)","FromColor":"FromColor(Color)","FromColorInfo(WorkbookColorInfo)":"FromColorInfo(WorkbookColorInfo)","FromColorInfo":"FromColorInfo(WorkbookColorInfo)"}}],"ShapeOutlineSolid":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ShapeOutlineSolid","k":"class","s":"classes","m":{"FromColor(Color)":"FromColor(Color)","FromColor":"FromColor(Color)","FromColorInfo(WorkbookColorInfo)":"FromColorInfo(WorkbookColorInfo)","FromColorInfo":"FromColorInfo(WorkbookColorInfo)","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ShapeOutlineSolid()":"ShapeOutlineSolid()","ShapeOutlineSolid":"ShapeOutlineSolid()","ShapeOutlineSolid(Color)":"ShapeOutlineSolid(Color)","ShapeOutlineSolid(WorkbookColorInfo)":"ShapeOutlineSolid(WorkbookColorInfo)","ColorInfo":"ColorInfo"}}],"Sheet":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Sheet","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","HasProtectionPassword":"HasProtectionPassword","IsProtected":"IsProtected","MoveToSheetIndex(int)":"MoveToSheetIndex(int)","MoveToSheetIndex":"MoveToSheetIndex(int)","Name":"Name","Selected":"Selected","SheetIndex":"SheetIndex","TabColorInfo":"TabColorInfo","Type":"Type","Unprotect()":"Unprotect()","Unprotect":"Unprotect()","Unprotect(SecureString)":"Unprotect(SecureString)","Unprotect(string)":"Unprotect(string)","Workbook":"Workbook"}}],"SheetCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SheetCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string, SheetType)":"Add(string, SheetType)","Add":"Add(string, SheetType)","Clear()":"Clear()","Clear":"Clear()","Contains(Sheet)":"Contains(Sheet)","Contains":"Contains(Sheet)","Count":"Count","Exists(string)":"Exists(string)","Exists":"Exists(string)","IndexOf(Sheet)":"IndexOf(Sheet)","IndexOf":"IndexOf(Sheet)","this[int]":"this[int]","this[string]":"this[string]","Remove(Sheet)":"Remove(Sheet)","Remove":"Remove(Sheet)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"SheetProtection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SheetProtection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"SortCondition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SortCondition","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SortDirection":"SortDirection"}}],"SortConditionCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SortConditionCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(T, SortCondition)":"Add(T, SortCondition)","Add":"Add(T, SortCondition)","AddRange(IEnumerable>)":"AddRange(IEnumerable>)","AddRange":"AddRange(IEnumerable>)","Clear()":"Clear()","Clear":"Clear()","Contains(SortCondition)":"Contains(SortCondition)","Contains":"Contains(SortCondition)","Contains(T)":"Contains(T)","Count":"Count","IndexOf(SortCondition)":"IndexOf(SortCondition)","IndexOf":"IndexOf(SortCondition)","IndexOf(T)":"IndexOf(T)","Insert(int, T, SortCondition)":"Insert(int, T, SortCondition)","Insert":"Insert(int, T, SortCondition)","InsertRange(int, IEnumerable>)":"InsertRange(int, IEnumerable>)","InsertRange":"InsertRange(int, IEnumerable>)","this[int]":"this[int]","this[T]":"this[T]","Remove(SortCondition)":"Remove(SortCondition)","Remove":"Remove(SortCondition)","Remove(T)":"Remove(T)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","ReplaceAll(IEnumerable>)":"ReplaceAll(IEnumerable>)","ReplaceAll":"ReplaceAll(IEnumerable>)"}}],"SortSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SortSettings","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CaseSensitive":"CaseSensitive","SortConditions":"SortConditions"}}],"Sparkline":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Sparkline","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","DataRegion":"DataRegion","DataRegionName":"DataRegionName","Location":"Location"}}],"SparklineCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SparklineCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(int, int, string, CellReferenceMode?)":"Add(int, int, string, CellReferenceMode?)","Add":"Add(int, int, string, CellReferenceMode?)","Clear()":"Clear()","Clear":"Clear()","Contains(Sparkline)":"Contains(Sparkline)","Contains":"Contains(Sparkline)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(Sparkline)":"IndexOf(Sparkline)","IndexOf":"IndexOf(Sparkline)","this[int]":"this[int]","Remove(Sparkline)":"Remove(Sparkline)","Remove":"Remove(Sparkline)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"SparklineGroup":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SparklineGroup","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ColorAxis":"ColorAxis","ColorFirstPoint":"ColorFirstPoint","ColorHighPoint":"ColorHighPoint","ColorLastPoint":"ColorLastPoint","ColorLowPoint":"ColorLowPoint","ColorMarkers":"ColorMarkers","ColorNegativePoints":"ColorNegativePoints","ColorSeries":"ColorSeries","DateAxis":"DateAxis","DateRange":"DateRange","DateRangeFormula":"DateRangeFormula","DisplayBlanksAs":"DisplayBlanksAs","DisplayHidden":"DisplayHidden","DisplayXAxis":"DisplayXAxis","FirstPoint":"FirstPoint","Guid":"Guid","HighPoint":"HighPoint","LastPoint":"LastPoint","LineWeight":"LineWeight","LowPoint":"LowPoint","Markers":"Markers","NegativePoints":"NegativePoints","RightToLeft":"RightToLeft","SetDateRange(string, CellReferenceMode?)":"SetDateRange(string, CellReferenceMode?)","SetDateRange":"SetDateRange(string, CellReferenceMode?)","Sparklines":"Sparklines","Type":"Type","VerticalAxisMax":"VerticalAxisMax","VerticalAxisMaxType":"VerticalAxisMaxType","VerticalAxisMin":"VerticalAxisMin","VerticalAxisMinType":"VerticalAxisMinType","Workbook":"Workbook","Worksheet":"Worksheet"}}],"SparklineGroupCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/SparklineGroupCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(SparklineType, string, string, Action, CellReferenceMode?)":"Add(SparklineType, string, string, Action, CellReferenceMode?)","Add":"Add(SparklineType, string, string, Action, CellReferenceMode?)","Clear()":"Clear()","Clear":"Clear()","Contains(SparklineGroup)":"Contains(SparklineGroup)","Contains":"Contains(SparklineGroup)","Count":"Count","GenerateGuidsForGroups":"GenerateGuidsForGroups","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(SparklineGroup)":"IndexOf(SparklineGroup)","IndexOf":"IndexOf(SparklineGroup)","this[int]":"this[int]","Remove(SparklineGroup)":"Remove(SparklineGroup)","Remove":"Remove(SparklineGroup)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"StandardTableStyleCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/StandardTableStyleCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Count":"Count","this[int]":"this[int]","this[string]":"this[string]"}}],"StraightConnector1Shape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/StraightConnector1Shape","k":"class","s":"classes","m":{"ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","StraightConnector1Shape()":"StraightConnector1Shape()","StraightConnector1Shape":"StraightConnector1Shape()"}}],"TextOperatorConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TextOperatorConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","SetTextFormula(string, CellReferenceMode?)":"SetTextFormula(string, CellReferenceMode?)","SetTextFormula":"SetTextFormula(string, CellReferenceMode?)","Text":"Text","TextFormula":"TextFormula","TextOperator":"TextOperator"}}],"ThresholdConditionBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ThresholdConditionBase","k":"class","s":"classes","m":{"SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ThresholdConditionBase()":"ThresholdConditionBase()","ThresholdConditionBase":"ThresholdConditionBase()","Formula":"Formula","SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)"}}],"TickLabels":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TickLabels","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Alignment":"Alignment","Fill":"Fill","Font":"Font","MultiLevel":"MultiLevel","NumberFormat":"NumberFormat","NumberFormatLinked":"NumberFormatLinked","Offset":"Offset","ReadingOrder":"ReadingOrder","Rotation":"Rotation","TextDirection":"TextDirection"}}],"TopOrBottomFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TopOrBottomFilter","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Type":"Type","Value":"Value"}}],"Trendline":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Trendline","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Backward":"Backward","Forward":"Forward","Intercept":"Intercept","Label":"Label","LegendEntry":"LegendEntry","Line":"Line","Name":"Name","Order":"Order","Period":"Period","TrendlineType":"TrendlineType"}}],"TrendlineCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TrendlineCollection","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add()":"Add()","Add":"Add()","Clear()":"Clear()","Clear":"Clear()","Contains(Trendline)":"Contains(Trendline)","Contains":"Contains(Trendline)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","IndexOf(Trendline)":"IndexOf(Trendline)","IndexOf":"IndexOf(Trendline)","Insert(int)":"Insert(int)","Insert":"Insert(int)","IsReadOnly":"IsReadOnly","this[int]":"this[int]","Remove(Trendline)":"Remove(Trendline)","Remove":"Remove(Trendline)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"TrendlineLabel":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TrendlineLabel","k":"class","s":"classes","m":{"NumberFormat":"NumberFormat","NumberFormatLinked":"NumberFormatLinked","SetFormula(string, CellReferenceMode?)":"SetFormula(string, CellReferenceMode?)","SetFormula":"SetFormula(string, CellReferenceMode?)","Border":"Border","DefaultFont":"DefaultFont","Fill":"Fill","Formula":"Formula","HorizontalOverflow":"HorizontalOverflow","Left":"Left","Position":"Position","ReadingOrder":"ReadingOrder","Rotation":"Rotation","Text":"Text","TextDirection":"TextDirection","Top":"Top","VerticalAlignment":"VerticalAlignment","VerticalOverflow":"VerticalOverflow","WrapText":"WrapText","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","TrendlineLabel()":"TrendlineLabel()","TrendlineLabel":"TrendlineLabel()","DisplayEquation":"DisplayEquation","DisplayRSquared":"DisplayRSquared"}}],"TrendlineLine":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TrendlineLine","k":"class","s":"classes","m":{"LineStyle":"LineStyle","Fill":"Fill","WidthInPoints":"WidthInPoints","Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","TrendlineLine()":"TrendlineLine()","TrendlineLine":"TrendlineLine()"}}],"TwoConstraintDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/TwoConstraintDataValidationRule","k":"class","s":"classes","m":{"ValidationCriteria":"ValidationCriteria","AllowNull":"AllowNull","Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","TwoConstraintDataValidationRule()":"TwoConstraintDataValidationRule()","TwoConstraintDataValidationRule":"TwoConstraintDataValidationRule()","TwoConstraintDataValidationRule(TwoConstraintDataValidationOperator, DataValidationCriteria)":"TwoConstraintDataValidationRule(TwoConstraintDataValidationOperator, DataValidationCriteria)","GetLowerConstraintFormula(string)":"GetLowerConstraintFormula(string)","GetLowerConstraintFormula":"GetLowerConstraintFormula(string)","GetLowerConstraintFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)":"GetLowerConstraintFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)","GetUpperConstraintFormula(string)":"GetUpperConstraintFormula(string)","GetUpperConstraintFormula":"GetUpperConstraintFormula(string)","GetUpperConstraintFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)":"GetUpperConstraintFormula(string, WorkbookFormat, CellReferenceMode, CultureInfo)","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","SetLowerConstraint(DateTime)":"SetLowerConstraint(DateTime)","SetLowerConstraint":"SetLowerConstraint(DateTime)","SetLowerConstraint(double)":"SetLowerConstraint(double)","SetLowerConstraint(TimeSpan)":"SetLowerConstraint(TimeSpan)","SetLowerConstraintFormula(string, string)":"SetLowerConstraintFormula(string, string)","SetLowerConstraintFormula":"SetLowerConstraintFormula(string, string)","SetLowerConstraintFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)":"SetLowerConstraintFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)","SetUpperConstraint(DateTime)":"SetUpperConstraint(DateTime)","SetUpperConstraint":"SetUpperConstraint(DateTime)","SetUpperConstraint(double)":"SetUpperConstraint(double)","SetUpperConstraint(TimeSpan)":"SetUpperConstraint(TimeSpan)","SetUpperConstraintFormula(string, string)":"SetUpperConstraintFormula(string, string)","SetUpperConstraintFormula":"SetUpperConstraintFormula(string, string)","SetUpperConstraintFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)":"SetUpperConstraintFormula(string, string, WorkbookFormat, CellReferenceMode, CultureInfo)","TryGetLowerConstraint(out DateTime)":"TryGetLowerConstraint(out DateTime)","TryGetLowerConstraint":"TryGetLowerConstraint(out DateTime)","TryGetLowerConstraint(out double)":"TryGetLowerConstraint(out double)","TryGetLowerConstraint(out TimeSpan)":"TryGetLowerConstraint(out TimeSpan)","TryGetUpperConstraint(out DateTime)":"TryGetUpperConstraint(out DateTime)","TryGetUpperConstraint":"TryGetUpperConstraint(out DateTime)","TryGetUpperConstraint(out double)":"TryGetUpperConstraint(out double)","TryGetUpperConstraint(out TimeSpan)":"TryGetUpperConstraint(out TimeSpan)","ValidationOperator":"ValidationOperator"}}],"UnfrozenPaneSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/UnfrozenPaneSettings","k":"class","s":"classes","m":{"Reset()":"Reset()","Reset":"Reset()","FirstColumnInRightPane":"FirstColumnInRightPane","FirstRowInBottomPane":"FirstRowInBottomPane","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","FirstColumnInLeftPane":"FirstColumnInLeftPane","FirstRowInTopPane":"FirstRowInTopPane","LeftPaneWidth":"LeftPaneWidth","ResetCore()":"ResetCore()","ResetCore":"ResetCore()","TopPaneHeight":"TopPaneHeight"}}],"UniqueConditionalFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/UniqueConditionalFormat","k":"class","s":"classes","m":{"CellFormat":"CellFormat","SetFirstPriority()":"SetFirstPriority()","SetFirstPriority":"SetFirstPriority()","SetLastPriority()":"SetLastPriority()","SetLastPriority":"SetLastPriority()","SetRegions(string, CellReferenceMode?)":"SetRegions(string, CellReferenceMode?)","SetRegions":"SetRegions(string, CellReferenceMode?)","Worksheet":"Worksheet","Workbook":"Workbook","Regions":"Regions","ConditionType":"ConditionType","Priority":"Priority","StopIfTrue":"StopIfTrue","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"UnknownShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/UnknownShape","k":"class","s":"classes","m":{"Text":"Text","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()"}}],"UpDownBar":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/UpDownBar","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BarType":"BarType","Border":"Border","Fill":"Fill"}}],"UpDownBars":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/UpDownBars","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","UpDownBars()":"UpDownBars()","UpDownBars":"UpDownBars()","DownBar":"DownBar","GapWidth":"GapWidth","UpBar":"UpBar"}}],"ValueConstraintDataValidationRule":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/ValueConstraintDataValidationRule","k":"class","s":"classes","m":{"AllowNull":"AllowNull","Clone()":"Clone()","Clone":"Clone()","ErrorMessageDescription":"ErrorMessageDescription","ErrorMessageTitle":"ErrorMessageTitle","ErrorStyle":"ErrorStyle","ImeMode":"ImeMode","InputMessageDescription":"InputMessageDescription","InputMessageTitle":"InputMessageTitle","ShowErrorMessageForInvalidValue":"ShowErrorMessageForInvalidValue","ShowInputMessage":"ShowInputMessage","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IsEquivalentTo(DataValidationRule)":"IsEquivalentTo(DataValidationRule)","IsEquivalentTo":"IsEquivalentTo(DataValidationRule)","ValidationCriteria":"ValidationCriteria"}}],"VerticalPageBreak":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/VerticalPageBreak","k":"class","s":"classes","m":{"Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","PrintArea":"PrintArea","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","VerticalPageBreak(int)":"VerticalPageBreak(int)","VerticalPageBreak":"VerticalPageBreak(int)","VerticalPageBreak(int, WorksheetRegion)":"VerticalPageBreak(int, WorksheetRegion)","FirstColumnOnPage":"FirstColumnOnPage"}}],"VerticalPageBreakCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/VerticalPageBreakCollection","k":"class","s":"classes","m":{"Add(VerticalPageBreak)":"Add(VerticalPageBreak)","Add":"Add(VerticalPageBreak)","Clear()":"Clear()","Clear":"Clear()","Contains(VerticalPageBreak)":"Contains(VerticalPageBreak)","Contains":"Contains(VerticalPageBreak)","IndexOf(VerticalPageBreak)":"IndexOf(VerticalPageBreak)","IndexOf":"IndexOf(VerticalPageBreak)","Remove(VerticalPageBreak)":"Remove(VerticalPageBreak)","Remove":"Remove(VerticalPageBreak)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Count":"Count","this[int]":"this[int]","GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"Wall":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Wall","k":"class","s":"classes","m":{"Chart":"Chart","Owner":"Owner","Sheet":"Sheet","Workbook":"Workbook","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Border":"Border","Fill":"Fill","Thickness":"Thickness","Type":"Type"}}],"WindowOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WindowOptions","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ObjectDisplayStyle":"ObjectDisplayStyle","Reset()":"Reset()","Reset":"Reset()","ScrollBars":"ScrollBars","SelectedSheet":"SelectedSheet","SelectedWorksheet":"SelectedWorksheet","TabBarVisible":"TabBarVisible","TabBarWidth":"TabBarWidth"}}],"Workbook":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Workbook","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Workbook()":"Workbook()","Workbook":"Workbook()","Workbook(WorkbookFormat)":"Workbook(WorkbookFormat)","CalculationMode":"CalculationMode","CellReferenceMode":"CellReferenceMode","CharacterWidth256thsToPixels(double)":"CharacterWidth256thsToPixels(double)","CharacterWidth256thsToPixels":"CharacterWidth256thsToPixels(double)","ClearConnectionData()":"ClearConnectionData()","ClearConnectionData":"ClearConnectionData()","ClearPivotTableData()":"ClearPivotTableData()","ClearPivotTableData":"ClearPivotTableData()","ClearVbaData()":"ClearVbaData()","ClearVbaData":"ClearVbaData()","CreateNewWorkbookFont()":"CreateNewWorkbookFont()","CreateNewWorkbookFont":"CreateNewWorkbookFont()","CreateNewWorksheetCellFormat()":"CreateNewWorksheetCellFormat()","CreateNewWorksheetCellFormat":"CreateNewWorksheetCellFormat()","Culture":"Culture","CurrentFormat":"CurrentFormat","CustomTableStyles":"CustomTableStyles","CustomViews":"CustomViews","DateSystem":"DateSystem","DefaultTableStyle":"DefaultTableStyle","DocumentProperties":"DocumentProperties","EditingCulture":"EditingCulture","FileWriteProtectedBy":"FileWriteProtectedBy","GetMaxColumnCount(WorkbookFormat)":"GetMaxColumnCount(WorkbookFormat)","GetMaxColumnCount":"GetMaxColumnCount(WorkbookFormat)","GetMaxRowCount(WorkbookFormat)":"GetMaxRowCount(WorkbookFormat)","GetMaxRowCount":"GetMaxRowCount(WorkbookFormat)","GetTable(string)":"GetTable(string)","GetTable":"GetTable(string)","GetWorkbookFormat(string)":"GetWorkbookFormat(string)","GetWorkbookFormat":"GetWorkbookFormat(string)","HasFileWriteProtectionPassword":"HasFileWriteProtectionPassword","HasOpenPassword":"HasOpenPassword","HasProtectionPassword":"HasProtectionPassword","InProcessRuntime":"InProcessRuntime","IsFileWriteProtected":"IsFileWriteProtected","IsProtected":"IsProtected","IsValidFunctionName(string)":"IsValidFunctionName(string)","IsValidFunctionName":"IsValidFunctionName(string)","IsWorkbookEncrypted(Stream)":"IsWorkbookEncrypted(Stream)","IsWorkbookEncrypted":"IsWorkbookEncrypted(Stream)","IterativeCalculationsEnabled":"IterativeCalculationsEnabled","Load(Stream, WorkbookLoadOptions)":"Load(Stream, WorkbookLoadOptions)","Load":"Load(Stream, WorkbookLoadOptions)","MaxChangeInIteration":"MaxChangeInIteration","MaxColumnCount":"MaxColumnCount","MaxExcel2007CellFormatCount":"MaxExcel2007CellFormatCount","MaxExcel2007ColumnCount":"MaxExcel2007ColumnCount","MaxExcel2007RowCount":"MaxExcel2007RowCount","MaxExcelCellFormatCount":"MaxExcelCellFormatCount","MaxExcelColumnCount":"MaxExcelColumnCount","MaxExcelRowCount":"MaxExcelRowCount","MaxExcelWorkbookFonts":"MaxExcelWorkbookFonts","MaxRecursionIterations":"MaxRecursionIterations","MaxRowCount":"MaxRowCount","NamedReferences":"NamedReferences","Palette":"Palette","PixelsToCharacterWidth256ths(double)":"PixelsToCharacterWidth256ths(double)","PixelsToCharacterWidth256ths":"PixelsToCharacterWidth256ths(double)","Precision":"Precision","Protect(bool, bool)":"Protect(bool, bool)","Protect":"Protect(bool, bool)","Protect(SecureString, bool, bool)":"Protect(SecureString, bool, bool)","Protect(string, bool, bool)":"Protect(string, bool, bool)","Protected":"Protected","Protection":"Protection","Recalculate()":"Recalculate()","Recalculate":"Recalculate()","Recalculate(bool)":"Recalculate(bool)","RecalculateBeforeSave":"RecalculateBeforeSave","RegisterUserDefinedFunction(ExcelCalcFunction)":"RegisterUserDefinedFunction(ExcelCalcFunction)","RegisterUserDefinedFunction":"RegisterUserDefinedFunction(ExcelCalcFunction)","RegisterUserDefinedFunctionLibrary(Assembly)":"RegisterUserDefinedFunctionLibrary(Assembly)","RegisterUserDefinedFunctionLibrary":"RegisterUserDefinedFunctionLibrary(Assembly)","ResumeCalculations()":"ResumeCalculations()","ResumeCalculations":"ResumeCalculations()","Save(Stream, IPackageFactory)":"Save(Stream, IPackageFactory)","Save":"Save(Stream, IPackageFactory)","Save(Stream, WorkbookSaveOptions)":"Save(Stream, WorkbookSaveOptions)","SaveExternalLinkedValues":"SaveExternalLinkedValues","ScreenDpi":"ScreenDpi","SetCurrentFormat(WorkbookFormat)":"SetCurrentFormat(WorkbookFormat)","SetCurrentFormat":"SetCurrentFormat(WorkbookFormat)","SetEncryptionMode(WorkbookEncryptionMode)":"SetEncryptionMode(WorkbookEncryptionMode)","SetEncryptionMode":"SetEncryptionMode(WorkbookEncryptionMode)","SetFileWriteProtectionPassword(SecureString, string)":"SetFileWriteProtectionPassword(SecureString, string)","SetFileWriteProtectionPassword":"SetFileWriteProtectionPassword(SecureString, string)","SetFileWriteProtectionPassword(string, string)":"SetFileWriteProtectionPassword(string, string)","SetOpenPassword(SecureString)":"SetOpenPassword(SecureString)","SetOpenPassword":"SetOpenPassword(SecureString)","SetOpenPassword(string)":"SetOpenPassword(string)","Sheets":"Sheets","ShouldRemoveCarriageReturnsOnSave":"ShouldRemoveCarriageReturnsOnSave","StandardTableStyles":"StandardTableStyles","Styles":"Styles","SuspendCalculations()":"SuspendCalculations()","SuspendCalculations":"SuspendCalculations()","SystemDpi":"SystemDpi","Unprotect()":"Unprotect()","Unprotect":"Unprotect()","Unprotect(SecureString)":"Unprotect(SecureString)","Unprotect(string)":"Unprotect(string)","ValidateFileWriteProtectionPassword(SecureString)":"ValidateFileWriteProtectionPassword(SecureString)","ValidateFileWriteProtectionPassword":"ValidateFileWriteProtectionPassword(SecureString)","ValidateFileWriteProtectionPassword(string)":"ValidateFileWriteProtectionPassword(string)","ValidateFormatStrings":"ValidateFormatStrings","WindowOptions":"WindowOptions","Worksheets":"Worksheets"}}],"WorkbookColorInfo":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookColorInfo","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WorkbookColorInfo(Color)":"WorkbookColorInfo(Color)","WorkbookColorInfo":"WorkbookColorInfo(Color)","WorkbookColorInfo(Color, WorkbookColorTransform)":"WorkbookColorInfo(Color, WorkbookColorTransform)","WorkbookColorInfo(Color, double)":"WorkbookColorInfo(Color, double)","WorkbookColorInfo(WorkbookThemeColorType)":"WorkbookColorInfo(WorkbookThemeColorType)","WorkbookColorInfo(WorkbookThemeColorType, WorkbookColorTransform)":"WorkbookColorInfo(WorkbookThemeColorType, WorkbookColorTransform)","WorkbookColorInfo(WorkbookThemeColorType, double)":"WorkbookColorInfo(WorkbookThemeColorType, double)","Automatic":"Automatic","Color":"Color","Equals(object)":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GetResolvedColor()":"GetResolvedColor()","GetResolvedColor":"GetResolvedColor()","GetResolvedColor(Workbook)":"GetResolvedColor(Workbook)","IsAutomatic":"IsAutomatic","ThemeColorType":"ThemeColorType","Tint":"Tint","ToString()":"ToString()","ToString":"ToString()","Transform":"Transform","operator ==(WorkbookColorInfo, WorkbookColorInfo)":"operator ==(WorkbookColorInfo, WorkbookColorInfo)","operator ==":"operator ==(WorkbookColorInfo, WorkbookColorInfo)","implicit operator WorkbookColorInfo(Color)":"implicit operator WorkbookColorInfo(Color)","implicit operator WorkbookColorInfo":"implicit operator WorkbookColorInfo(Color)","implicit operator WorkbookColorInfo(WorkbookThemeColorType)":"implicit operator WorkbookColorInfo(WorkbookThemeColorType)","operator !=(WorkbookColorInfo, WorkbookColorInfo)":"operator !=(WorkbookColorInfo, WorkbookColorInfo)","operator !=":"operator !=(WorkbookColorInfo, WorkbookColorInfo)"}}],"WorkbookColorPalette":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookColorPalette","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Contains(Color)":"Contains(Color)","Contains":"Contains(Color)","Count":"Count","GetIndexOfNearestColor(Color)":"GetIndexOfNearestColor(Color)","GetIndexOfNearestColor":"GetIndexOfNearestColor(Color)","IsCustom":"IsCustom","this[int]":"this[int]","Reset()":"Reset()","Reset":"Reset()"}}],"WorkbookColorTransform":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookColorTransform","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorkbookColorTransform(double?, double?, double?, double?)":"WorkbookColorTransform(double?, double?, double?, double?)","WorkbookColorTransform":"WorkbookColorTransform(double?, double?, double?, double?)","Alpha":"Alpha","LuminanceModulation":"LuminanceModulation","LuminanceOffset":"LuminanceOffset","Shade":"Shade"}}],"WorkbookLoadOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookLoadOptions","k":"class","s":"classes","m":{"PackageFactory":"PackageFactory","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorkbookLoadOptions(IPackageFactory)":"WorkbookLoadOptions(IPackageFactory)","WorkbookLoadOptions":"WorkbookLoadOptions(IPackageFactory)","WorkbookLoadOptions(SecureString, IPackageFactory, bool)":"WorkbookLoadOptions(SecureString, IPackageFactory, bool)","WorkbookLoadOptions(string, IPackageFactory)":"WorkbookLoadOptions(string, IPackageFactory)","AutoResumeCalculations":"AutoResumeCalculations","Culture":"Culture","IsDuplicateFormulaParsingOptimized":"IsDuplicateFormulaParsingOptimized","OpenPassword":"OpenPassword","OpenPasswordSecure":"OpenPasswordSecure","ScreenDpi":"ScreenDpi","UserDefinedFunctionLibraries":"UserDefinedFunctionLibraries","UserDefinedFunctions":"UserDefinedFunctions"}}],"WorkbookOptionsBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookOptionsBase","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","PackageFactory":"PackageFactory"}}],"WorkbookProtection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookProtection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AllowEditStructure":"AllowEditStructure","AllowEditWindows":"AllowEditWindows"}}],"WorkbookSaveOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookSaveOptions","k":"class","s":"classes","m":{"PackageFactory":"PackageFactory","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorkbookSaveOptions(IPackageFactory)":"WorkbookSaveOptions(IPackageFactory)","WorkbookSaveOptions":"WorkbookSaveOptions(IPackageFactory)"}}],"WorkbookStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookStyle","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IsBuiltIn":"IsBuiltIn","Name":"Name","Reset()":"Reset()","Reset":"Reset()","StyleFormat":"StyleFormat"}}],"WorkbookStyleCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookStyleCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AddUserDefinedStyle(IWorksheetCellFormat, string)":"AddUserDefinedStyle(IWorksheetCellFormat, string)","AddUserDefinedStyle":"AddUserDefinedStyle(IWorksheetCellFormat, string)","AddUserDefinedStyle(string)":"AddUserDefinedStyle(string)","Clear()":"Clear()","Clear":"Clear()","Contains(WorkbookStyle)":"Contains(WorkbookStyle)","Contains":"Contains(WorkbookStyle)","Count":"Count","this[int]":"this[int]","this[string]":"this[string]","NormalStyle":"NormalStyle","Remove(WorkbookStyle)":"Remove(WorkbookStyle)","Remove":"Remove(WorkbookStyle)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)","Reset()":"Reset()","Reset":"Reset()"}}],"WorkbookWindowOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorkbookWindowOptions","k":"class","s":"classes","m":{"ObjectDisplayStyle":"ObjectDisplayStyle","ScrollBars":"ScrollBars","SelectedSheet":"SelectedSheet","SelectedWorksheet":"SelectedWorksheet","TabBarVisible":"TabBarVisible","TabBarWidth":"TabBarWidth","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BoundsInTwips":"BoundsInTwips","FirstVisibleTabIndex":"FirstVisibleTabIndex","Minimized":"Minimized","Reset()":"Reset()","Reset":"Reset()"}}],"Worksheet":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/Worksheet","k":"class","s":"classes","m":{"Unprotect(string)":"Unprotect(string)","Unprotect":"Unprotect(string)","Unprotect(SecureString)":"Unprotect(SecureString)","MoveToSheetIndex(int)":"MoveToSheetIndex(int)","MoveToSheetIndex":"MoveToSheetIndex(int)","Unprotect()":"Unprotect()","HasProtectionPassword":"HasProtectionPassword","IsProtected":"IsProtected","Name":"Name","Selected":"Selected","SheetIndex":"SheetIndex","TabColorInfo":"TabColorInfo","Workbook":"Workbook","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Columns":"Columns","ConditionalFormats":"ConditionalFormats","DataTables":"DataTables","DataValidationRules":"DataValidationRules","DefaultColumnWidth":"DefaultColumnWidth","DefaultRowHeight":"DefaultRowHeight","DeleteCells(WorksheetRegion, bool)":"DeleteCells(WorksheetRegion, bool)","DeleteCells":"DeleteCells(WorksheetRegion, bool)","DeleteCells(string, bool)":"DeleteCells(string, bool)","DisplayOptions":"DisplayOptions","FilterSettings":"FilterSettings","GetCell(string)":"GetCell(string)","GetCell":"GetCell(string)","GetCell(string, CellReferenceMode)":"GetCell(string, CellReferenceMode)","GetCell(string, CellReferenceMode, WorksheetCell)":"GetCell(string, CellReferenceMode, WorksheetCell)","GetCell(string, WorksheetCell)":"GetCell(string, WorksheetCell)","GetCellConditionalFormat(int, int)":"GetCellConditionalFormat(int, int)","GetCellConditionalFormat":"GetCellConditionalFormat(int, int)","GetDefaultColumnWidth(WorksheetColumnWidthUnit)":"GetDefaultColumnWidth(WorksheetColumnWidthUnit)","GetDefaultColumnWidth":"GetDefaultColumnWidth(WorksheetColumnWidthUnit)","GetRegion(string)":"GetRegion(string)","GetRegion":"GetRegion(string)","GetRegion(string, CellReferenceMode)":"GetRegion(string, CellReferenceMode)","GetRegion(string, CellReferenceMode, WorksheetCell)":"GetRegion(string, CellReferenceMode, WorksheetCell)","GetRegion(string, WorksheetCell)":"GetRegion(string, WorksheetCell)","GetRegions(string)":"GetRegions(string)","GetRegions":"GetRegions(string)","GetRegions(string, CellReferenceMode)":"GetRegions(string, CellReferenceMode)","GetRegions(string, CellReferenceMode, WorksheetCell)":"GetRegions(string, CellReferenceMode, WorksheetCell)","GetRegions(string, WorksheetCell)":"GetRegions(string, WorksheetCell)","HideColumns(int?, int?)":"HideColumns(int?, int?)","HideColumns":"HideColumns(int?, int?)","HideRows(int?, int?)":"HideRows(int?, int?)","HideRows":"HideRows(int?, int?)","Hyperlinks":"Hyperlinks","ImageBackground":"ImageBackground","Index":"Index","InsertCells(WorksheetRegion, bool)":"InsertCells(WorksheetRegion, bool)","InsertCells":"InsertCells(WorksheetRegion, bool)","InsertCells(string, bool)":"InsertCells(string, bool)","MergedCellsRegions":"MergedCellsRegions","MoveToIndex(int)":"MoveToIndex(int)","MoveToIndex":"MoveToIndex(int)","PrintOptions":"PrintOptions","Protect(bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)":"Protect(bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)","Protect":"Protect(bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)","Protect(SecureString, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)":"Protect(SecureString, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)","Protect(string, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)":"Protect(string, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?, bool?)","Protected":"Protected","Protection":"Protection","Rows":"Rows","SetDefaultColumnWidth(double, WorksheetColumnWidthUnit)":"SetDefaultColumnWidth(double, WorksheetColumnWidthUnit)","SetDefaultColumnWidth":"SetDefaultColumnWidth(double, WorksheetColumnWidthUnit)","Shapes":"Shapes","SortSettings":"SortSettings","SparklineGroups":"SparklineGroups","Tables":"Tables","Type":"Type","UnhideColumns(int?, int?)":"UnhideColumns(int?, int?)","UnhideColumns":"UnhideColumns(int?, int?)","UnhideRows(int?, int?)":"UnhideRows(int?, int?)","UnhideRows":"UnhideRows(int?, int?)"}}],"WorksheetCell":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetCell","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","ApplyFormula(string)":"ApplyFormula(string)","ApplyFormula":"ApplyFormula(string)","AssociatedDataTable":"AssociatedDataTable","AssociatedMergedCellsRegion":"AssociatedMergedCellsRegion","AssociatedTable":"AssociatedTable","CellFormat":"CellFormat","ColumnIndex":"ColumnIndex","Comment":"Comment","DataValidationRule":"DataValidationRule","Equals(object)":"Equals(object)","Formula":"Formula","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","GetCellAddressString(WorksheetRow, int, CellReferenceMode, bool)":"GetCellAddressString(WorksheetRow, int, CellReferenceMode, bool)","GetCellAddressString":"GetCellAddressString(WorksheetRow, int, CellReferenceMode, bool)","GetCellAddressString(WorksheetRow, int, CellReferenceMode, bool, bool, bool)":"GetCellAddressString(WorksheetRow, int, CellReferenceMode, bool, bool, bool)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","GetHyperlink()":"GetHyperlink()","GetHyperlink":"GetHyperlink()","GetResolvedCellFormat()":"GetResolvedCellFormat()","GetResolvedCellFormat":"GetResolvedCellFormat()","GetText()":"GetText()","GetText":"GetText()","GetText(TextFormatMode)":"GetText(TextFormatMode)","HasCellFormat":"HasCellFormat","HasComment":"HasComment","IsCellTypeSupported(Type)":"IsCellTypeSupported(Type)","IsCellTypeSupported":"IsCellTypeSupported(Type)","RowIndex":"RowIndex","ToString()":"ToString()","ToString":"ToString()","ToString(CellReferenceMode, bool)":"ToString(CellReferenceMode, bool)","ToString(CellReferenceMode, bool, bool, bool)":"ToString(CellReferenceMode, bool, bool, bool)","ValidateValue()":"ValidateValue()","ValidateValue":"ValidateValue()","Value":"Value","Worksheet":"Worksheet","operator ==(WorksheetCell, WorksheetCell)":"operator ==(WorksheetCell, WorksheetCell)","operator ==":"operator ==(WorksheetCell, WorksheetCell)","operator !=(WorksheetCell, WorksheetCell)":"operator !=(WorksheetCell, WorksheetCell)","operator !=":"operator !=(WorksheetCell, WorksheetCell)"}}],"WorksheetCellCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetCellCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","this[int]":"this[int]","MaxCount":"MaxCount"}}],"WorksheetCellComment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetCellComment","k":"class","s":"classes","m":{"ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetCellComment()":"WorksheetCellComment()","WorksheetCellComment":"WorksheetCellComment()","Author":"Author","Cell":"Cell","Sheet":"Sheet","Text":"Text"}}],"WorksheetChart":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetChart","k":"class","s":"classes","m":{"Shapes":"Shapes","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AutoScaling":"AutoScaling","AxisCollection":"AxisCollection","BackWall":"BackWall","BarShape":"BarShape","BarShapeResolved":"BarShapeResolved","ChartArea":"ChartArea","ChartTitle":"ChartTitle","ChartType":"ChartType","ComboChartGroups":"ComboChartGroups","DepthPercent":"DepthPercent","DisplayBlanksAs":"DisplayBlanksAs","DoughnutHoleSize":"DoughnutHoleSize","DropLines":"DropLines","FirstSliceAngle":"FirstSliceAngle","Floor":"Floor","GapDepth":"GapDepth","GapWidth":"GapWidth","HeightPercent":"HeightPercent","HighLowLines":"HighLowLines","Legend":"Legend","Perspective":"Perspective","PlotArea":"PlotArea","PlotVisibleOnly":"PlotVisibleOnly","RightAngleAxes":"RightAngleAxes","RotationX":"RotationX","RotationY":"RotationY","SecondPlotSize":"SecondPlotSize","SeriesCollection":"SeriesCollection","SeriesLines":"SeriesLines","SeriesOverlap":"SeriesOverlap","SetComboChartSourceData(string, ChartType[], bool, CellReferenceMode?)":"SetComboChartSourceData(string, ChartType[], bool, CellReferenceMode?)","SetComboChartSourceData":"SetComboChartSourceData(string, ChartType[], bool, CellReferenceMode?)","SetSourceData(string, bool, CellReferenceMode?)":"SetSourceData(string, bool, CellReferenceMode?)","SetSourceData":"SetSourceData(string, bool, CellReferenceMode?)","Sheet":"Sheet","SideWall":"SideWall","UpDownBars":"UpDownBars","VaryColors":"VaryColors","WallDefault":"WallDefault"}}],"WorksheetCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string)":"Add(string)","Add":"Add(string)","Clear()":"Clear()","Clear":"Clear()","Contains(Worksheet)":"Contains(Worksheet)","Contains":"Contains(Worksheet)","Count":"Count","Exists(string)":"Exists(string)","Exists":"Exists(string)","IndexOf(Worksheet)":"IndexOf(Worksheet)","IndexOf":"IndexOf(Worksheet)","this[int]":"this[int]","this[string]":"this[string]","Remove(Worksheet)":"Remove(Worksheet)","Remove":"Remove(Worksheet)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"WorksheetColumn":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetColumn","k":"class","s":"classes","m":{"GetResolvedCellFormat()":"GetResolvedCellFormat()","GetResolvedCellFormat":"GetResolvedCellFormat()","CellFormat":"CellFormat","Hidden":"Hidden","OutlineLevel":"OutlineLevel","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AutoFitWidth()":"AutoFitWidth()","AutoFitWidth":"AutoFitWidth()","AutoFitWidth(int, int)":"AutoFitWidth(int, int)","CalculateAutoFitWidth()":"CalculateAutoFitWidth()","CalculateAutoFitWidth":"CalculateAutoFitWidth()","CalculateAutoFitWidth(int, int)":"CalculateAutoFitWidth(int, int)","GetWidth(WorksheetColumnWidthUnit)":"GetWidth(WorksheetColumnWidthUnit)","GetWidth":"GetWidth(WorksheetColumnWidthUnit)","Index":"Index","SetWidth(double, WorksheetColumnWidthUnit)":"SetWidth(double, WorksheetColumnWidthUnit)","SetWidth":"SetWidth(double, WorksheetColumnWidthUnit)","Width":"Width"}}],"WorksheetColumnCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetColumnCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Insert(int, int)":"Insert(int, int)","Insert":"Insert(int, int)","this[int]":"this[int]","MaxCount":"MaxCount","Remove(int, int)":"Remove(int, int)","Remove":"Remove(int, int)"}}],"WorksheetDataTable":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetDataTable","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","CellsInTable":"CellsInTable","ColumnInputCell":"ColumnInputCell","RowInputCell":"RowInputCell","Worksheet":"Worksheet"}}],"WorksheetDataTableCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetDataTableCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetRegion, WorksheetCell, WorksheetCell)":"Add(WorksheetRegion, WorksheetCell, WorksheetCell)","Add":"Add(WorksheetRegion, WorksheetCell, WorksheetCell)","Clear()":"Clear()","Clear":"Clear()","Count":"Count","this[int]":"this[int]","Remove(WorksheetDataTable)":"Remove(WorksheetDataTable)","Remove":"Remove(WorksheetDataTable)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"WorksheetDisplayOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetDisplayOptions","k":"class","s":"classes","m":{"ClearSelection()":"ClearSelection()","ClearSelection":"ClearSelection()","FrozenPaneSettings":"FrozenPaneSettings","GridlineColor":"GridlineColor","PanesAreFrozen":"PanesAreFrozen","ShowExpansionIndicatorBelowGroupedRows":"ShowExpansionIndicatorBelowGroupedRows","ShowExpansionIndicatorToRightOfGroupedColumns":"ShowExpansionIndicatorToRightOfGroupedColumns","ShowFormulasInCells":"ShowFormulasInCells","ShowGridlines":"ShowGridlines","ShowOutlineSymbols":"ShowOutlineSymbols","ShowRowAndColumnHeaders":"ShowRowAndColumnHeaders","ShowRulerInPageLayoutView":"ShowRulerInPageLayoutView","ShowZeroValues":"ShowZeroValues","UnfrozenPaneSettings":"UnfrozenPaneSettings","View":"View","Reset()":"Reset()","Reset":"Reset()","Visibility":"Visibility","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","MagnificationInNormalView":"MagnificationInNormalView","MagnificationInPageBreakView":"MagnificationInPageBreakView","MagnificationInPageLayoutView":"MagnificationInPageLayoutView","OrderColumnsRightToLeft":"OrderColumnsRightToLeft","ResetCore()":"ResetCore()","ResetCore":"ResetCore()","ShowWhitespaceInPageLayoutView":"ShowWhitespaceInPageLayoutView","TabColorInfo":"TabColorInfo"}}],"WorksheetFilterSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetFilterSettings","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ApplyAverageFilter(int, AverageFilterType)":"ApplyAverageFilter(int, AverageFilterType)","ApplyAverageFilter":"ApplyAverageFilter(int, AverageFilterType)","ApplyCustomFilter(int, CustomFilterCondition)":"ApplyCustomFilter(int, CustomFilterCondition)","ApplyCustomFilter":"ApplyCustomFilter(int, CustomFilterCondition)","ApplyCustomFilter(int, CustomFilterCondition, CustomFilterCondition, ConditionalOperator)":"ApplyCustomFilter(int, CustomFilterCondition, CustomFilterCondition, ConditionalOperator)","ApplyDatePeriodFilter(int, DatePeriodFilterType, int)":"ApplyDatePeriodFilter(int, DatePeriodFilterType, int)","ApplyDatePeriodFilter":"ApplyDatePeriodFilter(int, DatePeriodFilterType, int)","ApplyFillFilter(int, CellFill)":"ApplyFillFilter(int, CellFill)","ApplyFillFilter":"ApplyFillFilter(int, CellFill)","ApplyFixedValuesFilter(int, bool, CalendarType, params FixedDateGroup[])":"ApplyFixedValuesFilter(int, bool, CalendarType, params FixedDateGroup[])","ApplyFixedValuesFilter":"ApplyFixedValuesFilter(int, bool, CalendarType, params FixedDateGroup[])","ApplyFixedValuesFilter(int, bool, CalendarType, IEnumerable)":"ApplyFixedValuesFilter(int, bool, CalendarType, IEnumerable)","ApplyFixedValuesFilter(int, bool, IEnumerable)":"ApplyFixedValuesFilter(int, bool, IEnumerable)","ApplyFixedValuesFilter(int, bool, IEnumerable)":"ApplyFixedValuesFilter(int, bool, IEnumerable)","ApplyFixedValuesFilter(int, bool, params string[])":"ApplyFixedValuesFilter(int, bool, params string[])","ApplyFontColorFilter(int, Color)":"ApplyFontColorFilter(int, Color)","ApplyFontColorFilter":"ApplyFontColorFilter(int, Color)","ApplyFontColorFilter(int, WorkbookColorInfo)":"ApplyFontColorFilter(int, WorkbookColorInfo)","ApplyIconFilter(int, FormatConditionIconSet, int?)":"ApplyIconFilter(int, FormatConditionIconSet, int?)","ApplyIconFilter":"ApplyIconFilter(int, FormatConditionIconSet, int?)","ApplyRelativeDateRangeFilter(int, RelativeDateRangeOffset, RelativeDateRangeDuration)":"ApplyRelativeDateRangeFilter(int, RelativeDateRangeOffset, RelativeDateRangeDuration)","ApplyRelativeDateRangeFilter":"ApplyRelativeDateRangeFilter(int, RelativeDateRangeOffset, RelativeDateRangeDuration)","ApplyTopOrBottomFilter(int)":"ApplyTopOrBottomFilter(int)","ApplyTopOrBottomFilter":"ApplyTopOrBottomFilter(int)","ApplyTopOrBottomFilter(int, TopOrBottomFilterType, int)":"ApplyTopOrBottomFilter(int, TopOrBottomFilterType, int)","ApplyYearToDateFilter(int)":"ApplyYearToDateFilter(int)","ApplyYearToDateFilter":"ApplyYearToDateFilter(int)","ClearFilter(int)":"ClearFilter(int)","ClearFilter":"ClearFilter(int)","ClearFilters()":"ClearFilters()","ClearFilters":"ClearFilters()","ClearRegion()":"ClearRegion()","ClearRegion":"ClearRegion()","GetFilter(int)":"GetFilter(int)","GetFilter":"GetFilter(int)","ReapplyFilters()":"ReapplyFilters()","ReapplyFilters":"ReapplyFilters()","ReapplySortConditions()":"ReapplySortConditions()","ReapplySortConditions":"ReapplySortConditions()","Region":"Region","SetRegion(string)":"SetRegion(string)","SetRegion":"SetRegion(string)","SetRegion(string, CellReferenceMode)":"SetRegion(string, CellReferenceMode)","SortAndFilterAreaRegion":"SortAndFilterAreaRegion","SortSettings":"SortSettings"}}],"WorksheetHyperlink":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetHyperlink","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetHyperlink(WorksheetCell, object, string, string)":"WorksheetHyperlink(WorksheetCell, object, string, string)","WorksheetHyperlink":"WorksheetHyperlink(WorksheetCell, object, string, string)","WorksheetHyperlink(WorksheetRegion, object, string, string)":"WorksheetHyperlink(WorksheetRegion, object, string, string)","WorksheetHyperlink(string, object, string, string)":"WorksheetHyperlink(string, object, string, string)","DisplayText":"DisplayText","IsSealed":"IsSealed","SourceAddress":"SourceAddress","SourceCell":"SourceCell","SourceRegion":"SourceRegion","Target":"Target","TargetAddress":"TargetAddress","TargetCell":"TargetCell","TargetNamedReference":"TargetNamedReference","TargetRegion":"TargetRegion","ToString()":"ToString()","ToString":"ToString()","ToolTip":"ToolTip","Worksheet":"Worksheet"}}],"WorksheetHyperlinkCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetHyperlinkCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetHyperlink)":"Add(WorksheetHyperlink)","Add":"Add(WorksheetHyperlink)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetHyperlink)":"Contains(WorksheetHyperlink)","Contains":"Contains(WorksheetHyperlink)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","Insert(int, WorksheetHyperlink)":"Insert(int, WorksheetHyperlink)","Insert":"Insert(int, WorksheetHyperlink)","this[int]":"this[int]","Remove(WorksheetHyperlink)":"Remove(WorksheetHyperlink)","Remove":"Remove(WorksheetHyperlink)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"WorksheetImage":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetImage","k":"class","s":"classes","m":{"ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetImage(ImageWrapper)":"WorksheetImage(ImageWrapper)","WorksheetImage":"WorksheetImage(ImageWrapper)"}}],"WorksheetItemCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetItemCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","MaxCount":"MaxCount"}}],"WorksheetMergedCellsRegion":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetMergedCellsRegion","k":"class","s":"classes","m":{"Equals(object)":"Equals(object)","Equals":"Equals(object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ToString()":"ToString()","ToString":"ToString()","ApplyArrayFormula(string)":"ApplyArrayFormula(string)","ApplyArrayFormula":"ApplyArrayFormula(string)","ApplyFormula(string)":"ApplyFormula(string)","ApplyFormula":"ApplyFormula(string)","FormatAsTable(bool)":"FormatAsTable(bool)","FormatAsTable":"FormatAsTable(bool)","FormatAsTable(bool, WorksheetTableStyle)":"FormatAsTable(bool, WorksheetTableStyle)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","ToString(CellReferenceMode, bool)":"ToString(CellReferenceMode, bool)","ToString(CellReferenceMode, bool, bool, bool)":"ToString(CellReferenceMode, bool, bool, bool)","FirstColumn":"FirstColumn","FirstRow":"FirstRow","LastColumn":"LastColumn","LastRow":"LastRow","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","CellFormat":"CellFormat","Comment":"Comment","Formula":"Formula","GetResolvedCellFormat()":"GetResolvedCellFormat()","GetResolvedCellFormat":"GetResolvedCellFormat()","Value":"Value"}}],"WorksheetMergedCellsRegionCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetMergedCellsRegionCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(int, int, int, int)":"Add(int, int, int, int)","Add":"Add(int, int, int, int)","Clear()":"Clear()","Clear":"Clear()","Count":"Count","IsOverlappingWithMergedRegion(int, int, int, int)":"IsOverlappingWithMergedRegion(int, int, int, int)","IsOverlappingWithMergedRegion":"IsOverlappingWithMergedRegion(int, int, int, int)","this[int]":"this[int]","Remove(WorksheetMergedCellsRegion)":"Remove(WorksheetMergedCellsRegion)","Remove":"Remove(WorksheetMergedCellsRegion)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"WorksheetProtectedRange":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetProtectedRange","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetProtectedRange(string)":"WorksheetProtectedRange(string)","WorksheetProtectedRange":"WorksheetProtectedRange(string)","WorksheetProtectedRange(string, SecureString)":"WorksheetProtectedRange(string, SecureString)","WorksheetProtectedRange(string, string)":"WorksheetProtectedRange(string, string)","HasPassword":"HasPassword","IsProtected":"IsProtected","Ranges":"Ranges","SecurityDescriptor":"SecurityDescriptor","SetPassword(SecureString)":"SetPassword(SecureString)","SetPassword":"SetPassword(SecureString)","SetPassword(string)":"SetPassword(string)","SetSecurityDescriptor(params WorksheetProtectedRangeUserPermission[])":"SetSecurityDescriptor(params WorksheetProtectedRangeUserPermission[])","SetSecurityDescriptor":"SetSecurityDescriptor(params WorksheetProtectedRangeUserPermission[])","Title":"Title","Unprotect()":"Unprotect()","Unprotect":"Unprotect()","Unprotect(SecureString)":"Unprotect(SecureString)","Unprotect(string)":"Unprotect(string)","Worksheet":"Worksheet"}}],"WorksheetProtectedRangeCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetProtectedRangeCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(WorksheetProtectedRange)":"Add(WorksheetProtectedRange)","Add":"Add(WorksheetProtectedRange)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetProtectedRange)":"Contains(WorksheetProtectedRange)","Contains":"Contains(WorksheetProtectedRange)","Count":"Count","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","Insert(int, WorksheetProtectedRange)":"Insert(int, WorksheetProtectedRange)","Insert":"Insert(int, WorksheetProtectedRange)","this[int]":"this[int]","Remove(WorksheetProtectedRange)":"Remove(WorksheetProtectedRange)","Remove":"Remove(WorksheetProtectedRange)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"WorksheetProtection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetProtection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AllowDeletingColumns":"AllowDeletingColumns","AllowDeletingRows":"AllowDeletingRows","AllowEditObjects":"AllowEditObjects","AllowEditScenarios":"AllowEditScenarios","AllowFiltering":"AllowFiltering","AllowFormattingCells":"AllowFormattingCells","AllowFormattingColumns":"AllowFormattingColumns","AllowFormattingRows":"AllowFormattingRows","AllowInsertingColumns":"AllowInsertingColumns","AllowInsertingHyperlinks":"AllowInsertingHyperlinks","AllowInsertingRows":"AllowInsertingRows","AllowSorting":"AllowSorting","AllowUsingPivotTables":"AllowUsingPivotTables","AllowedEditRanges":"AllowedEditRanges","SelectionMode":"SelectionMode"}}],"WorksheetReferenceCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetReferenceCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetReferenceCollection(Worksheet)":"WorksheetReferenceCollection(Worksheet)","WorksheetReferenceCollection":"WorksheetReferenceCollection(Worksheet)","WorksheetReferenceCollection(Worksheet, string)":"WorksheetReferenceCollection(Worksheet, string)","WorksheetReferenceCollection(WorksheetCell)":"WorksheetReferenceCollection(WorksheetCell)","WorksheetReferenceCollection(WorksheetRegion)":"WorksheetReferenceCollection(WorksheetRegion)","Add(WorksheetCell)":"Add(WorksheetCell)","Add":"Add(WorksheetCell)","Add(WorksheetRegion)":"Add(WorksheetRegion)","Add(string)":"Add(string)","Add(string, CellReferenceMode)":"Add(string, CellReferenceMode)","CellsCount":"CellsCount","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetCell)":"Contains(WorksheetCell)","Contains":"Contains(WorksheetCell)","Contains(WorksheetRegion)":"Contains(WorksheetRegion)","GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()","Remove(WorksheetCell)":"Remove(WorksheetCell)","Remove":"Remove(WorksheetCell)","Remove(WorksheetRegion)":"Remove(WorksheetRegion)","Remove(string)":"Remove(string)","Remove(string, CellReferenceMode)":"Remove(string, CellReferenceMode)","ToString()":"ToString()","ToString":"ToString()","ToString(CellReferenceMode)":"ToString(CellReferenceMode)","Worksheet":"Worksheet"}}],"WorksheetRegion":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetRegion","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object, object)":"Equals(object, object)","Equals":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","WorksheetRegion(Worksheet, int, int, int, int)":"WorksheetRegion(Worksheet, int, int, int, int)","WorksheetRegion":"WorksheetRegion(Worksheet, int, int, int, int)","ApplyArrayFormula(string)":"ApplyArrayFormula(string)","ApplyArrayFormula":"ApplyArrayFormula(string)","ApplyFormula(string)":"ApplyFormula(string)","ApplyFormula":"ApplyFormula(string)","Equals(object)":"Equals(object)","FirstColumn":"FirstColumn","FirstRow":"FirstRow","FormatAsTable(bool)":"FormatAsTable(bool)","FormatAsTable":"FormatAsTable(bool)","FormatAsTable(bool, WorksheetTableStyle)":"FormatAsTable(bool, WorksheetTableStyle)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","LastColumn":"LastColumn","LastRow":"LastRow","ToString()":"ToString()","ToString":"ToString()","ToString(CellReferenceMode, bool)":"ToString(CellReferenceMode, bool)","ToString(CellReferenceMode, bool, bool, bool)":"ToString(CellReferenceMode, bool, bool, bool)","Worksheet":"Worksheet"}}],"WorksheetRow":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetRow","k":"class","s":"classes","m":{"GetResolvedCellFormat()":"GetResolvedCellFormat()","GetResolvedCellFormat":"GetResolvedCellFormat()","CellFormat":"CellFormat","Hidden":"Hidden","OutlineLevel":"OutlineLevel","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ApplyCellFormula(int, string, CellReferenceMode?)":"ApplyCellFormula(int, string, CellReferenceMode?)","ApplyCellFormula":"ApplyCellFormula(int, string, CellReferenceMode?)","Cells":"Cells","GetCellAssociatedDataTable(int)":"GetCellAssociatedDataTable(int)","GetCellAssociatedDataTable":"GetCellAssociatedDataTable(int)","GetCellAssociatedMergedCellsRegion(int)":"GetCellAssociatedMergedCellsRegion(int)","GetCellAssociatedMergedCellsRegion":"GetCellAssociatedMergedCellsRegion(int)","GetCellAssociatedTable(int)":"GetCellAssociatedTable(int)","GetCellAssociatedTable":"GetCellAssociatedTable(int)","GetCellBoundsInTwips(int)":"GetCellBoundsInTwips(int)","GetCellBoundsInTwips":"GetCellBoundsInTwips(int)","GetCellBoundsInTwips(int, PositioningOptions)":"GetCellBoundsInTwips(int, PositioningOptions)","GetCellComment(int)":"GetCellComment(int)","GetCellComment":"GetCellComment(int)","GetCellConditionalFormat(int)":"GetCellConditionalFormat(int)","GetCellConditionalFormat":"GetCellConditionalFormat(int)","GetCellFormat(int)":"GetCellFormat(int)","GetCellFormat":"GetCellFormat(int)","GetCellFormula(int)":"GetCellFormula(int)","GetCellFormula":"GetCellFormula(int)","GetCellHyperlink(int)":"GetCellHyperlink(int)","GetCellHyperlink":"GetCellHyperlink(int)","GetCellText(int)":"GetCellText(int)","GetCellText":"GetCellText(int)","GetCellText(int, TextFormatMode)":"GetCellText(int, TextFormatMode)","GetCellValue(int)":"GetCellValue(int)","GetCellValue":"GetCellValue(int)","GetResolvedCellFormat(int)":"GetResolvedCellFormat(int)","Height":"Height","Index":"Index","SetCellComment(int, WorksheetCellComment)":"SetCellComment(int, WorksheetCellComment)","SetCellComment":"SetCellComment(int, WorksheetCellComment)","SetCellValue(int, object)":"SetCellValue(int, object)","SetCellValue":"SetCellValue(int, object)","TryGetCellFormat(int, out IWorksheetCellFormat)":"TryGetCellFormat(int, out IWorksheetCellFormat)","TryGetCellFormat":"TryGetCellFormat(int, out IWorksheetCellFormat)","ValidateCellValue(int)":"ValidateCellValue(int)","ValidateCellValue":"ValidateCellValue(int)"}}],"WorksheetRowCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetRowCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Insert(int, int)":"Insert(int, int)","Insert":"Insert(int, int)","this[int]":"this[int]","MaxCount":"MaxCount","Remove(int, int)":"Remove(int, int)","Remove":"Remove(int, int)"}}],"WorksheetShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetShape","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","Fill":"Fill","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","Outline":"Outline","PositioningMode":"PositioningMode","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Sheet":"Sheet","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Worksheet":"Worksheet"}}],"WorksheetShapeCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetShapeCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(PredefinedShapeType, Rect)":"Add(PredefinedShapeType, Rect)","Add":"Add(PredefinedShapeType, Rect)","Add(PredefinedShapeType, Sheet, Rect)":"Add(PredefinedShapeType, Sheet, Rect)","Add(PredefinedShapeType, WorksheetCell, Point, WorksheetCell, Point)":"Add(PredefinedShapeType, WorksheetCell, Point, WorksheetCell, Point)","Add(WorksheetShape)":"Add(WorksheetShape)","AddChart(ChartType, Rect, Action)":"AddChart(ChartType, Rect, Action)","AddChart":"AddChart(ChartType, Rect, Action)","AddChart(ChartType, Sheet, Rect, Action)":"AddChart(ChartType, Sheet, Rect, Action)","AddChart(ChartType, WorksheetCell, Point, WorksheetCell, Point, Action)":"AddChart(ChartType, WorksheetCell, Point, WorksheetCell, Point, Action)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetShape)":"Contains(WorksheetShape)","Contains":"Contains(WorksheetShape)","Count":"Count","this[int]":"this[int]","Remove(WorksheetShape)":"Remove(WorksheetShape)","Remove":"Remove(WorksheetShape)","RemoveAt(int)":"RemoveAt(int)","RemoveAt":"RemoveAt(int)"}}],"WorksheetShapeGroup":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetShapeGroup","k":"class","s":"classes","m":{"Shapes":"Shapes","ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetShapeGroup()":"WorksheetShapeGroup()","WorksheetShapeGroup":"WorksheetShapeGroup()"}}],"WorksheetShapeGroupBase":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetShapeGroupBase","k":"class","s":"classes","m":{"ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Shapes":"Shapes"}}],"WorksheetShapeWithText":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetShapeWithText","k":"class","s":"classes","m":{"ClearUnknownData()":"ClearUnknownData()","ClearUnknownData":"ClearUnknownData()","CreatePredefinedShape(PredefinedShapeType)":"CreatePredefinedShape(PredefinedShapeType)","CreatePredefinedShape":"CreatePredefinedShape(PredefinedShapeType)","GetBoundsInTwips()":"GetBoundsInTwips()","GetBoundsInTwips":"GetBoundsInTwips()","GetBoundsInTwips(PositioningOptions)":"GetBoundsInTwips(PositioningOptions)","SetBoundsInTwips(Sheet, Rect)":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips":"SetBoundsInTwips(Sheet, Rect)","SetBoundsInTwips(Sheet, Rect, PositioningOptions)":"SetBoundsInTwips(Sheet, Rect, PositioningOptions)","Fill":"Fill","BottomRightCornerCell":"BottomRightCornerCell","BottomRightCornerPosition":"BottomRightCornerPosition","FlippedHorizontally":"FlippedHorizontally","FlippedVertically":"FlippedVertically","Outline":"Outline","PositioningMode":"PositioningMode","TopLeftCornerCell":"TopLeftCornerCell","TopLeftCornerPosition":"TopLeftCornerPosition","Visible":"Visible","Sheet":"Sheet","Worksheet":"Worksheet","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Text":"Text"}}],"WorksheetSortSettings":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetSortSettings","k":"class","s":"classes","m":{"CaseSensitive":"CaseSensitive","SortConditions":"SortConditions","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ClearRegion()":"ClearRegion()","ClearRegion":"ClearRegion()","InitializeRegion()":"InitializeRegion()","InitializeRegion":"InitializeRegion()","ReapplySortConditions()":"ReapplySortConditions()","ReapplySortConditions":"ReapplySortConditions()","Region":"Region","SetRegion(string)":"SetRegion(string)","SetRegion":"SetRegion(string)","SetRegion(string, CellReferenceMode)":"SetRegion(string, CellReferenceMode)","SortType":"SortType"}}],"WorksheetTable":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetTable","k":"class","s":"classes","m":{"Comment":"Comment","Name":"Name","Scope":"Scope","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","AreaFormats":"AreaFormats","ClearFilters()":"ClearFilters()","ClearFilters":"ClearFilters()","ClearSortConditions()":"ClearSortConditions()","ClearSortConditions":"ClearSortConditions()","Columns":"Columns","DataAreaRegion":"DataAreaRegion","DeleteColumns(int, int)":"DeleteColumns(int, int)","DeleteColumns":"DeleteColumns(int, int)","DeleteDataRows(int, int)":"DeleteDataRows(int, int)","DeleteDataRows":"DeleteDataRows(int, int)","DisplayBandedColumns":"DisplayBandedColumns","DisplayBandedRows":"DisplayBandedRows","DisplayFirstColumnFormatting":"DisplayFirstColumnFormatting","DisplayLastColumnFormatting":"DisplayLastColumnFormatting","HeaderRowRegion":"HeaderRowRegion","InsertColumns(int, int)":"InsertColumns(int, int)","InsertColumns":"InsertColumns(int, int)","InsertDataRows(int, int)":"InsertDataRows(int, int)","InsertDataRows":"InsertDataRows(int, int)","IsFilterUIVisible":"IsFilterUIVisible","IsHeaderRowVisible":"IsHeaderRowVisible","IsTotalsRowVisible":"IsTotalsRowVisible","ReapplyFilters()":"ReapplyFilters()","ReapplyFilters":"ReapplyFilters()","ReapplySortConditions()":"ReapplySortConditions()","ReapplySortConditions":"ReapplySortConditions()","Resize(WorksheetRegion)":"Resize(WorksheetRegion)","Resize":"Resize(WorksheetRegion)","Resize(string)":"Resize(string)","Resize(string, CellReferenceMode)":"Resize(string, CellReferenceMode)","SortSettings":"SortSettings","Style":"Style","ToString()":"ToString()","ToString":"ToString()","TotalsRowRegion":"TotalsRowRegion","WholeTableRegion":"WholeTableRegion","Worksheet":"Worksheet"}}],"WorksheetTableAreaFormatsCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetTableAreaFormatsCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Count":"Count","HasFormat(TArea)":"HasFormat(TArea)","HasFormat":"HasFormat(TArea)","this[TArea]":"this[TArea]"}}],"WorksheetTableCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetTableCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Add(string, bool, WorksheetTableStyle)":"Add(string, bool, WorksheetTableStyle)","Add":"Add(string, bool, WorksheetTableStyle)","Clear()":"Clear()","Clear":"Clear()","Contains(WorksheetTable)":"Contains(WorksheetTable)","Contains":"Contains(WorksheetTable)","Count":"Count","Exists(string)":"Exists(string)","Exists":"Exists(string)","IndexOf(WorksheetTable)":"IndexOf(WorksheetTable)","IndexOf":"IndexOf(WorksheetTable)","this[int]":"this[int]","this[string]":"this[string]","Remove(WorksheetTable, bool)":"Remove(WorksheetTable, bool)","Remove":"Remove(WorksheetTable, bool)","RemoveAt(int, bool)":"RemoveAt(int, bool)","RemoveAt":"RemoveAt(int, bool)"}}],"WorksheetTableColumn":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetTableColumn","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","ApplyAverageFilter(AverageFilterType)":"ApplyAverageFilter(AverageFilterType)","ApplyAverageFilter":"ApplyAverageFilter(AverageFilterType)","ApplyCustomFilter(CustomFilterCondition)":"ApplyCustomFilter(CustomFilterCondition)","ApplyCustomFilter":"ApplyCustomFilter(CustomFilterCondition)","ApplyCustomFilter(CustomFilterCondition, CustomFilterCondition, ConditionalOperator)":"ApplyCustomFilter(CustomFilterCondition, CustomFilterCondition, ConditionalOperator)","ApplyDatePeriodFilter(DatePeriodFilterType, int)":"ApplyDatePeriodFilter(DatePeriodFilterType, int)","ApplyDatePeriodFilter":"ApplyDatePeriodFilter(DatePeriodFilterType, int)","ApplyFillFilter(CellFill)":"ApplyFillFilter(CellFill)","ApplyFillFilter":"ApplyFillFilter(CellFill)","ApplyFixedValuesFilter(bool, CalendarType, params FixedDateGroup[])":"ApplyFixedValuesFilter(bool, CalendarType, params FixedDateGroup[])","ApplyFixedValuesFilter":"ApplyFixedValuesFilter(bool, CalendarType, params FixedDateGroup[])","ApplyFixedValuesFilter(bool, CalendarType, IEnumerable)":"ApplyFixedValuesFilter(bool, CalendarType, IEnumerable)","ApplyFixedValuesFilter(bool, IEnumerable)":"ApplyFixedValuesFilter(bool, IEnumerable)","ApplyFixedValuesFilter(bool, IEnumerable)":"ApplyFixedValuesFilter(bool, IEnumerable)","ApplyFixedValuesFilter(bool, params string[])":"ApplyFixedValuesFilter(bool, params string[])","ApplyFontColorFilter(Color)":"ApplyFontColorFilter(Color)","ApplyFontColorFilter":"ApplyFontColorFilter(Color)","ApplyFontColorFilter(WorkbookColorInfo)":"ApplyFontColorFilter(WorkbookColorInfo)","ApplyIconFilter(FormatConditionIconSet, int?)":"ApplyIconFilter(FormatConditionIconSet, int?)","ApplyIconFilter":"ApplyIconFilter(FormatConditionIconSet, int?)","ApplyRelativeDateRangeFilter(RelativeDateRangeOffset, RelativeDateRangeDuration)":"ApplyRelativeDateRangeFilter(RelativeDateRangeOffset, RelativeDateRangeDuration)","ApplyRelativeDateRangeFilter":"ApplyRelativeDateRangeFilter(RelativeDateRangeOffset, RelativeDateRangeDuration)","ApplyTopOrBottomFilter()":"ApplyTopOrBottomFilter()","ApplyTopOrBottomFilter":"ApplyTopOrBottomFilter()","ApplyTopOrBottomFilter(TopOrBottomFilterType, int)":"ApplyTopOrBottomFilter(TopOrBottomFilterType, int)","ApplyYearToDateFilter()":"ApplyYearToDateFilter()","ApplyYearToDateFilter":"ApplyYearToDateFilter()","AreaFormats":"AreaFormats","ClearFilter()":"ClearFilter()","ClearFilter":"ClearFilter()","ColumnFormula":"ColumnFormula","DataAreaRegion":"DataAreaRegion","Filter":"Filter","HeaderCell":"HeaderCell","Index":"Index","Name":"Name","SetColumnFormula(Formula, bool)":"SetColumnFormula(Formula, bool)","SetColumnFormula":"SetColumnFormula(Formula, bool)","SortCondition":"SortCondition","Table":"Table","TotalCell":"TotalCell","TotalFormula":"TotalFormula","TotalLabel":"TotalLabel","WholeColumnRegion":"WholeColumnRegion"}}],"WorksheetTableColumnCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetTableColumnCollection","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","Contains(WorksheetTableColumn)":"Contains(WorksheetTableColumn)","Contains":"Contains(WorksheetTableColumn)","Count":"Count","IndexOf(WorksheetTableColumn)":"IndexOf(WorksheetTableColumn)","IndexOf":"IndexOf(WorksheetTableColumn)","this[int]":"this[int]","this[string]":"this[string]"}}],"WorksheetTableStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/WorksheetTableStyle","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","WorksheetTableStyle(string)":"WorksheetTableStyle(string)","WorksheetTableStyle":"WorksheetTableStyle(string)","AlternateColumnStripeWidth":"AlternateColumnStripeWidth","AlternateRowStripeHeight":"AlternateRowStripeHeight","AreaFormats":"AreaFormats","Clone(string)":"Clone(string)","Clone":"Clone(string)","ColumnStripeWidth":"ColumnStripeWidth","IsCustom":"IsCustom","Name":"Name","RowStripeHeight":"RowStripeHeight"}}],"XValues":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/XValues","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","XValues(Sheet, string, CellReferenceMode?)":"XValues(Sheet, string, CellReferenceMode?)","XValues":"XValues(Sheet, string, CellReferenceMode?)","XValues(IEnumerable)":"XValues(IEnumerable)","GetValues()":"GetValues()","GetValues":"GetValues()"}}],"YearToDateFilter":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/classes/YearToDateFilter","k":"class","s":"classes","m":{"End":"End","Start":"Start","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()"}}],"IExcelCalcFormula":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/interfaces/IExcelCalcFormula","k":"interface","s":"interfaces","m":{"AddDynamicReference(IExcelCalcReference)":"AddDynamicReference(IExcelCalcReference)","AddDynamicReference":"AddDynamicReference(IExcelCalcReference)","BaseReference":"BaseReference","DynamicReferences":"DynamicReferences","Evaluate(IExcelCalcReference)":"Evaluate(IExcelCalcReference)","Evaluate":"Evaluate(IExcelCalcReference)","FormulaString":"FormulaString","HasAlwaysDirty":"HasAlwaysDirty","References":"References"}}],"IExcelCalcReference":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/interfaces/IExcelCalcReference","k":"interface","s":"interfaces","m":{"AbsoluteName":"AbsoluteName","ContainsReference(IExcelCalcReference)":"ContainsReference(IExcelCalcReference)","ContainsReference":"ContainsReference(IExcelCalcReference)","Context":"Context","CreateReference(string)":"CreateReference(string)","CreateReference":"CreateReference(string)","ElementName":"ElementName","Formula":"Formula","IsEnumerable":"IsEnumerable","IsSubsetReference(IExcelCalcReference)":"IsSubsetReference(IExcelCalcReference)","IsSubsetReference":"IsSubsetReference(IExcelCalcReference)","NormalizedAbsoluteName":"NormalizedAbsoluteName","References":"References","Value":"Value"}}],"IExcelCalcReferenceCollection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/interfaces/IExcelCalcReferenceCollection","k":"interface","s":"interfaces","m":{"GetEnumerator()":"GetEnumerator()","GetEnumerator":"GetEnumerator()"}}],"ISortable":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/interfaces/ISortable","k":"interface","s":"interfaces","m":{"Index":"Index"}}],"IWorkbookFont":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/interfaces/IWorkbookFont","k":"interface","s":"interfaces","m":{"Bold":"Bold","ColorInfo":"ColorInfo","Height":"Height","Italic":"Italic","Name":"Name","SetFontFormatting(IWorkbookFont)":"SetFontFormatting(IWorkbookFont)","SetFontFormatting":"SetFontFormatting(IWorkbookFont)","Strikeout":"Strikeout","SuperscriptSubscriptStyle":"SuperscriptSubscriptStyle","UnderlineStyle":"UnderlineStyle"}}],"IWorksheetCellFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/interfaces/IWorksheetCellFormat","k":"interface","s":"interfaces","m":{"Alignment":"Alignment","BottomBorderColorInfo":"BottomBorderColorInfo","BottomBorderStyle":"BottomBorderStyle","DiagonalBorderColorInfo":"DiagonalBorderColorInfo","DiagonalBorderStyle":"DiagonalBorderStyle","DiagonalBorders":"DiagonalBorders","Fill":"Fill","Font":"Font","FormatOptions":"FormatOptions","FormatString":"FormatString","Hidden":"Hidden","Indent":"Indent","LeftBorderColorInfo":"LeftBorderColorInfo","LeftBorderStyle":"LeftBorderStyle","Locked":"Locked","RightBorderColorInfo":"RightBorderColorInfo","RightBorderStyle":"RightBorderStyle","Rotation":"Rotation","SetFormatting(IWorksheetCellFormat)":"SetFormatting(IWorksheetCellFormat)","SetFormatting":"SetFormatting(IWorksheetCellFormat)","ShrinkToFit":"ShrinkToFit","Style":"Style","TopBorderColorInfo":"TopBorderColorInfo","TopBorderStyle":"TopBorderStyle","VerticalAlignment":"VerticalAlignment","WrapText":"WrapText"}}],"AverageFilterType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/AverageFilterType","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","BelowAverage":"BelowAverage"}}],"AxisCrosses":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/AxisCrosses","k":"enum","s":"enums","m":{"Automatic":"Automatic","Custom":"Custom","Maximum":"Maximum","Minimum":"Minimum"}}],"AxisGroup":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/AxisGroup","k":"enum","s":"enums","m":{"Primary":"Primary","Secondary":"Secondary"}}],"AxisPosition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/AxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"AxisType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/AxisType","k":"enum","s":"enums","m":{"Category":"Category","SeriesAxis":"SeriesAxis","Value":"Value"}}],"BarShape":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/BarShape","k":"enum","s":"enums","m":{"Box":"Box","ConeToMax":"ConeToMax","ConeToPoint":"ConeToPoint","Cylinder":"Cylinder","PyramidToMax":"PyramidToMax","PyramidToPoint":"PyramidToPoint"}}],"BorderLineStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/BorderLineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"CalculationMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/CalculationMode","k":"enum","s":"enums","m":{"Automatic":"Automatic","AutomaticExceptForDataTables":"AutomaticExceptForDataTables","Manual":"Manual"}}],"CalendarType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/CalendarType","k":"enum","s":"enums","m":{"Gregorian":"Gregorian","GregorianArabic":"GregorianArabic","GregorianMeFrench":"GregorianMeFrench","GregorianUs":"GregorianUs","GregorianXlitEnglish":"GregorianXlitEnglish","GregorianXlitFrench":"GregorianXlitFrench","Hebrew":"Hebrew","Hijri":"Hijri","Japan":"Japan","Korea":"Korea","None":"None","Saka":"Saka","Taiwan":"Taiwan","Thai":"Thai"}}],"CategoryType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/CategoryType","k":"enum","s":"enums","m":{"AutomaticScale":"AutomaticScale","CategoryScale":"CategoryScale","TimeScale":"TimeScale"}}],"CellBorderLineStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/CellBorderLineStyle","k":"enum","s":"enums","m":{"DashDot":"DashDot","DashDotDot":"DashDotDot","Dashed":"Dashed","Default":"Default","Dotted":"Dotted","Double":"Double","Hair":"Hair","Medium":"Medium","MediumDashDot":"MediumDashDot","MediumDashDotDot":"MediumDashDotDot","MediumDashed":"MediumDashed","None":"None","SlantedDashDot":"SlantedDashDot","Thick":"Thick","Thin":"Thin"}}],"CellReferenceMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/CellReferenceMode","k":"enum","s":"enums","m":{"A1":"A1","R1C1":"R1C1"}}],"ChartType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ChartType","k":"enum","s":"enums","m":{"Area":"Area","Area3D":"Area3D","Area3DStacked":"Area3DStacked","Area3DStacked100":"Area3DStacked100","AreaStacked":"AreaStacked","AreaStacked100":"AreaStacked100","Bar3DClustered":"Bar3DClustered","Bar3DStacked":"Bar3DStacked","Bar3DStacked100":"Bar3DStacked100","BarClustered":"BarClustered","BarOfPie":"BarOfPie","BarStacked":"BarStacked","BarStacked100":"BarStacked100","BoxAndWhisker":"BoxAndWhisker","Bubble":"Bubble","Bubble3DEffect":"Bubble3DEffect","Column3D":"Column3D","Column3DClustered":"Column3DClustered","Column3DStacked":"Column3DStacked","Column3DStacked100":"Column3DStacked100","ColumnClustered":"ColumnClustered","ColumnStacked":"ColumnStacked","ColumnStacked100":"ColumnStacked100","Combo":"Combo","ConeBarClustered":"ConeBarClustered","ConeBarStacked":"ConeBarStacked","ConeBarStacked100":"ConeBarStacked100","ConeCol":"ConeCol","ConeColClustered":"ConeColClustered","ConeColStacked":"ConeColStacked","ConeColStacked100":"ConeColStacked100","CylinderBarClustered":"CylinderBarClustered","CylinderBarStacked":"CylinderBarStacked","CylinderBarStacked100":"CylinderBarStacked100","CylinderCol":"CylinderCol","CylinderColClustered":"CylinderColClustered","CylinderColStacked":"CylinderColStacked","CylinderColStacked100":"CylinderColStacked100","Doughnut":"Doughnut","DoughnutExploded":"DoughnutExploded","Funnel":"Funnel","Histogram":"Histogram","Line":"Line","Line3D":"Line3D","LineMarkers":"LineMarkers","LineMarkersStacked":"LineMarkersStacked","LineMarkersStacked100":"LineMarkersStacked100","LineStacked":"LineStacked","LineStacked100":"LineStacked100","Pareto":"Pareto","Pie":"Pie","Pie3D":"Pie3D","Pie3DExploded":"Pie3DExploded","PieExploded":"PieExploded","PieOfPie":"PieOfPie","PyramidBarClustered":"PyramidBarClustered","PyramidBarStacked":"PyramidBarStacked","PyramidBarStacked100":"PyramidBarStacked100","PyramidCol":"PyramidCol","PyramidColClustered":"PyramidColClustered","PyramidColStacked":"PyramidColStacked","PyramidColStacked100":"PyramidColStacked100","Radar":"Radar","RadarFilled":"RadarFilled","RadarMarkers":"RadarMarkers","RegionMap":"RegionMap","StockHLC":"StockHLC","StockOHLC":"StockOHLC","StockVHLC":"StockVHLC","StockVOHLC":"StockVOHLC","Sunburst":"Sunburst","Surface":"Surface","SurfaceTopView":"SurfaceTopView","SurfaceTopViewWireframe":"SurfaceTopViewWireframe","SurfaceWireframe":"SurfaceWireframe","Treemap":"Treemap","Waterfall":"Waterfall","XYScatter":"XYScatter","XYScatterLines":"XYScatterLines","XYScatterLinesNoMarkers":"XYScatterLinesNoMarkers","XYScatterSmooth":"XYScatterSmooth","XYScatterSmoothNoMarkers":"XYScatterSmoothNoMarkers"}}],"ColorScaleCriterionThreshold":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ColorScaleCriterionThreshold","k":"enum","s":"enums","m":{"Maximum":"Maximum","Midpoint":"Midpoint","Minimum":"Minimum"}}],"ColorScaleType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ColorScaleType","k":"enum","s":"enums","m":{"ThreeColor":"ThreeColor","TwoColor":"TwoColor"}}],"ConditionalOperator":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ConditionalOperator","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"DataBarAxisPosition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataBarAxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Midpoint":"Midpoint","None":"None"}}],"DataBarDirection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataBarDirection","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"DataBarFillType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataBarFillType","k":"enum","s":"enums","m":{"Gradient":"Gradient","SolidColor":"SolidColor"}}],"DataBarNegativeBarColorType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataBarNegativeBarColorType","k":"enum","s":"enums","m":{"Color":"Color","SameAsPositive":"SameAsPositive"}}],"DataLabelPosition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataLabelPosition","k":"enum","s":"enums","m":{"Above":"Above","Below":"Below","BestFit":"BestFit","Center":"Center","Custom":"Custom","Default":"Default","InsideBase":"InsideBase","InsideEnd":"InsideEnd","Left":"Left","OutsideEnd":"OutsideEnd","Right":"Right"}}],"DataValidationCriteria":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataValidationCriteria","k":"enum","s":"enums","m":{"Date":"Date","Decimal":"Decimal","TextLength":"TextLength","Time":"Time","WholeNumber":"WholeNumber"}}],"DataValidationErrorStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataValidationErrorStyle","k":"enum","s":"enums","m":{"Information":"Information","Stop":"Stop","Warning":"Warning"}}],"DataValidationImeMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DataValidationImeMode","k":"enum","s":"enums","m":{"Disabled":"Disabled","FullAlpha":"FullAlpha","FullHangul":"FullHangul","FullKatakana":"FullKatakana","HalfAlpha":"HalfAlpha","HalfHangul":"HalfHangul","HalfKatakana":"HalfKatakana","Hiragana":"Hiragana","NoControl":"NoControl","Off":"Off","On":"On"}}],"DatePeriodFilterType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DatePeriodFilterType","k":"enum","s":"enums","m":{"Month":"Month","Quarter":"Quarter"}}],"DateSystem":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DateSystem","k":"enum","s":"enums","m":{"From1900":"From1900","From1904":"From1904"}}],"DiagonalBorders":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DiagonalBorders","k":"enum","s":"enums","m":{"All":"All","Default":"Default","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","None":"None"}}],"DisplayBlanksAs":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DisplayBlanksAs","k":"enum","s":"enums","m":{"Interpolated":"Interpolated","NotPlotted":"NotPlotted","Zero":"Zero"}}],"DisplayUnit":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/DisplayUnit","k":"enum","s":"enums","m":{"Custom":"Custom","HundredMillions":"HundredMillions","HundredThousands":"HundredThousands","Hundreds":"Hundreds","MillionMillions":"MillionMillions","Millions":"Millions","None":"None","Percentage":"Percentage","TenMillions":"TenMillions","TenThousands":"TenThousands","ThousandMillions":"ThousandMillions","Thousands":"Thousands"}}],"ElementPosition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ElementPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Left":"Left","LeftBottom":"LeftBottom","LeftTop":"LeftTop","Right":"Right","RightBottom":"RightBottom","RightTop":"RightTop","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"EndStyleCap":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/EndStyleCap","k":"enum","s":"enums","m":{"Cap":"Cap","NoCap":"NoCap"}}],"ErrorBarDirection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ErrorBarDirection","k":"enum","s":"enums","m":{"Both":"Both","Minus":"Minus","Plus":"Plus"}}],"ErrorValueType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ErrorValueType","k":"enum","s":"enums","m":{"FixedValue":"FixedValue","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"ExcelCalcErrorCode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ExcelCalcErrorCode","k":"enum","s":"enums","m":{"Circularity":"Circularity","Div":"Div","NA":"NA","Name":"Name","Null":"Null","Num":"Num","Reference":"Reference","Value":"Value"}}],"ExcelComparisonOperator":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ExcelComparisonOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"ExcelDefaultableBoolean":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ExcelDefaultableBoolean","k":"enum","s":"enums","m":{"Default":"Default","False":"False","True":"True"}}],"FillPatternStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FillPatternStyle","k":"enum","s":"enums","m":{"DiagonalCrosshatch":"DiagonalCrosshatch","DiagonalStripe":"DiagonalStripe","Gray12percent":"Gray12percent","Gray25percent":"Gray25percent","Gray50percent":"Gray50percent","Gray6percent":"Gray6percent","Gray75percent":"Gray75percent","HorizontalStripe":"HorizontalStripe","None":"None","ReverseDiagonalStripe":"ReverseDiagonalStripe","Solid":"Solid","ThickDiagonalCrosshatch":"ThickDiagonalCrosshatch","ThinDiagonalCrosshatch":"ThinDiagonalCrosshatch","ThinDiagonalStripe":"ThinDiagonalStripe","ThinHorizontalCrosshatch":"ThinHorizontalCrosshatch","ThinHorizontalStripe":"ThinHorizontalStripe","ThinReverseDiagonalStripe":"ThinReverseDiagonalStripe","ThinVerticalStripe":"ThinVerticalStripe","VerticalStripe":"VerticalStripe"}}],"FixedDateGroupType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FixedDateGroupType","k":"enum","s":"enums","m":{"Day":"Day","Hour":"Hour","Minute":"Minute","Month":"Month","Second":"Second","Year":"Year"}}],"FontSuperscriptSubscriptStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FontSuperscriptSubscriptStyle","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Subscript":"Subscript","Superscript":"Superscript"}}],"FontUnderlineStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FontUnderlineStyle","k":"enum","s":"enums","m":{"Default":"Default","Double":"Double","DoubleAccounting":"DoubleAccounting","None":"None","Single":"Single","SingleAccounting":"SingleAccounting"}}],"FormatConditionAboveBelow":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionAboveBelow","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","AboveStandardDeviation":"AboveStandardDeviation","BelowAverage":"BelowAverage","BelowStandardDeviation":"BelowStandardDeviation","EqualAboveAverage":"EqualAboveAverage","EqualBelowAverage":"EqualBelowAverage"}}],"FormatConditionIcon":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionIcon","k":"enum","s":"enums","m":{"BlackCircle":"BlackCircle","BlackCircleWithBorder":"BlackCircleWithBorder","CircleWithOneWhiteQuarter":"CircleWithOneWhiteQuarter","CircleWithThreeWhiteQuarters":"CircleWithThreeWhiteQuarters","CircleWithTwoWhiteQuarters":"CircleWithTwoWhiteQuarters","FourBars":"FourBars","FourFilledBoxes":"FourFilledBoxes","GoldStar":"GoldStar","GrayCircle":"GrayCircle","GrayDownArrow":"GrayDownArrow","GrayDownInclineArrow":"GrayDownInclineArrow","GraySideArrow":"GraySideArrow","GrayUpArrow":"GrayUpArrow","GrayUpInclineArrow":"GrayUpInclineArrow","GreenCheck":"GreenCheck","GreenCheckSymbol":"GreenCheckSymbol","GreenCircle":"GreenCircle","GreenFlag":"GreenFlag","GreenTrafficLight":"GreenTrafficLight","GreenUpArrow":"GreenUpArrow","GreenUpTriangle":"GreenUpTriangle","HalfGoldStar":"HalfGoldStar","NoCellIcon":"NoCellIcon","OneBar":"OneBar","OneFilledBox":"OneFilledBox","PinkCircle":"PinkCircle","RedCircle":"RedCircle","RedCircleWithBorder":"RedCircleWithBorder","RedCross":"RedCross","RedCrossSymbol":"RedCrossSymbol","RedDiamond":"RedDiamond","RedDownArrow":"RedDownArrow","RedDownTriangle":"RedDownTriangle","RedFlag":"RedFlag","RedTrafficLight":"RedTrafficLight","SilverStar":"SilverStar","ThreeBars":"ThreeBars","ThreeFilledBoxes":"ThreeFilledBoxes","TwoBars":"TwoBars","TwoFilledBoxes":"TwoFilledBoxes","WhiteCircleAllWhiteQuarters":"WhiteCircleAllWhiteQuarters","YellowCircle":"YellowCircle","YellowDash":"YellowDash","YellowDownInclineArrow":"YellowDownInclineArrow","YellowExclamation":"YellowExclamation","YellowExclamationSymbol":"YellowExclamationSymbol","YellowFlag":"YellowFlag","YellowSideArrow":"YellowSideArrow","YellowTrafficLight":"YellowTrafficLight","YellowTriangle":"YellowTriangle","YellowUpInclineArrow":"YellowUpInclineArrow","ZeroBars":"ZeroBars","ZeroFilledBoxes":"ZeroFilledBoxes"}}],"FormatConditionIconSet":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionIconSet","k":"enum","s":"enums","m":{"IconSet3Arrows":"IconSet3Arrows","IconSet3ArrowsGray":"IconSet3ArrowsGray","IconSet3Flags":"IconSet3Flags","IconSet3Signs":"IconSet3Signs","IconSet3Stars":"IconSet3Stars","IconSet3Symbols":"IconSet3Symbols","IconSet3Symbols2":"IconSet3Symbols2","IconSet3TrafficLights1":"IconSet3TrafficLights1","IconSet3TrafficLights2":"IconSet3TrafficLights2","IconSet3Triangles":"IconSet3Triangles","IconSet4Arrows":"IconSet4Arrows","IconSet4ArrowsGray":"IconSet4ArrowsGray","IconSet4Rating":"IconSet4Rating","IconSet4RedToBlack":"IconSet4RedToBlack","IconSet4TrafficLights":"IconSet4TrafficLights","IconSet5Arrows":"IconSet5Arrows","IconSet5ArrowsGray":"IconSet5ArrowsGray","IconSet5Boxes":"IconSet5Boxes","IconSet5Quarters":"IconSet5Quarters","IconSet5Rating":"IconSet5Rating"}}],"FormatConditionOperator":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionOperator","k":"enum","s":"enums","m":{"Between":"Between","Equal":"Equal","Greater":"Greater","GreaterEqual":"GreaterEqual","Less":"Less","LessEqual":"LessEqual","NotBetween":"NotBetween","NotEqual":"NotEqual"}}],"FormatConditionTextOperator":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionTextOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotContain":"DoesNotContain","EndsWith":"EndsWith"}}],"FormatConditionTimePeriod":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionTimePeriod","k":"enum","s":"enums","m":{"LastMonth":"LastMonth","LastSevenDays":"LastSevenDays","LastWeek":"LastWeek","NextMonth":"NextMonth","NextWeek":"NextWeek","ThisMonth":"ThisMonth","ThisWeek":"ThisWeek","Today":"Today","Tomorrow":"Tomorrow","Yesterday":"Yesterday"}}],"FormatConditionTopBottom":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionTopBottom","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"FormatConditionType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionType","k":"enum","s":"enums","m":{"Average":"Average","Blanks":"Blanks","CellValue":"CellValue","ColorScale":"ColorScale","DataBar":"DataBar","DuplicateValues":"DuplicateValues","Errors":"Errors","Expression":"Expression","IconSets":"IconSets","NoBlanks":"NoBlanks","NoErrors":"NoErrors","Rank":"Rank","TextString":"TextString","TimePeriod":"TimePeriod","UniqueValues":"UniqueValues"}}],"FormatConditionValueType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/FormatConditionValueType","k":"enum","s":"enums","m":{"AutomaticMaximum":"AutomaticMaximum","AutomaticMinimum":"AutomaticMinimum","Formula":"Formula","HighestValue":"HighestValue","LowestValue":"LowestValue","Number":"Number","Percentage":"Percentage","Percentile":"Percentile"}}],"GeographicMapLabels":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/GeographicMapLabels","k":"enum","s":"enums","m":{"BestFit":"BestFit","None":"None","ShowAll":"ShowAll"}}],"GeographicMappingArea":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/GeographicMappingArea","k":"enum","s":"enums","m":{"CountryOrRegion":"CountryOrRegion","County":"County","DataOnly":"DataOnly","MultipleCountriesOrRegions":"MultipleCountriesOrRegions","PostalCode":"PostalCode","State":"State","World":"World"}}],"GeographicMapProjection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/GeographicMapProjection","k":"enum","s":"enums","m":{"Albers":"Albers","Mercator":"Mercator","Miller":"Miller","Robinson":"Robinson"}}],"GeographicMapSeriesColor":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/GeographicMapSeriesColor","k":"enum","s":"enums","m":{"Diverging":"Diverging","Sequential":"Sequential"}}],"GradientType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/GradientType","k":"enum","s":"enums","m":{"Linear":"Linear","Path":"Path","Radial":"Radial","Rectangular":"Rectangular"}}],"GridLineType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/GridLineType","k":"enum","s":"enums","m":{"Major":"Major","Minor":"Minor"}}],"HorizontalCellAlignment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/HorizontalCellAlignment","k":"enum","s":"enums","m":{"Center":"Center","CenterAcrossSelection":"CenterAcrossSelection","Default":"Default","Distributed":"Distributed","Fill":"Fill","General":"General","Justify":"Justify","Left":"Left","Right":"Right"}}],"HorizontalTextAlignment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/HorizontalTextAlignment","k":"enum","s":"enums","m":{"Center":"Center","Distributed":"Distributed","Justified":"Justified","JustifiedLow":"JustifiedLow","Left":"Left","Right":"Right","ThaiDistributed":"ThaiDistributed"}}],"LegendPosition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/LegendPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Default":"Default","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"LineStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/LineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"MarkerStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/MarkerStyle","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Dash":"Dash","Diamond":"Diamond","Dot":"Dot","None":"None","Picture":"Picture","Plus":"Plus","Square":"Square","Star":"Star","Triangle":"Triangle","X":"X"}}],"ObjectDisplayStyle":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ObjectDisplayStyle","k":"enum","s":"enums","m":{"HideAll":"HideAll","ShowAll":"ShowAll","ShowPlaceholders":"ShowPlaceholders"}}],"OneConstraintDataValidationOperator":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/OneConstraintDataValidationOperator","k":"enum","s":"enums","m":{"EqualTo":"EqualTo","GreaterThan":"GreaterThan","GreaterThanOrEqualTo":"GreaterThanOrEqualTo","LessThan":"LessThan","LessThanOrEqualTo":"LessThanOrEqualTo","NotEqualTo":"NotEqualTo"}}],"OpenPackagingNonConformanceExceptionReason":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/OpenPackagingNonConformanceExceptionReason","k":"enum","s":"enums","m":{"ContainsDublinCoreRefinements":"ContainsDublinCoreRefinements","ContainsXmlLanguageAttribute":"ContainsXmlLanguageAttribute","CorePropertiesRelationshipAlreadyProcessed":"CorePropertiesRelationshipAlreadyProcessed","DuplicatePartName":"DuplicatePartName","None":"None","UsesMarkupCompatibilityNamespace":"UsesMarkupCompatibilityNamespace","XmlContainsDocumentTypeDefinition":"XmlContainsDocumentTypeDefinition","XsiTypeAttributeInvalid":"XsiTypeAttributeInvalid"}}],"OpenPackagingNonConformanceReason":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/OpenPackagingNonConformanceReason","k":"enum","s":"enums","m":{"Conformant":"Conformant","ContentTypeHasComments":"ContentTypeHasComments","ContentTypeHasInvalidSyntax":"ContentTypeHasInvalidSyntax","ContentTypeHasInvalidWhitespace":"ContentTypeHasInvalidWhitespace","ContentTypeHasParameters":"ContentTypeHasParameters","ContentTypeMissing":"ContentTypeMissing","CouldNotGetPackagePart":"CouldNotGetPackagePart","DuplicateName":"DuplicateName","GrowthHintChanged":"GrowthHintChanged","NameDerivesFromExistingPartName":"NameDerivesFromExistingPartName","NameDoesNotStartWithForwardSlash":"NameDoesNotStartWithForwardSlash","NameEndsWithForwardSlash":"NameEndsWithForwardSlash","NameMissing":"NameMissing","RelationshipIdInvalid":"RelationshipIdInvalid","RelationshipNameInvalid":"RelationshipNameInvalid","RelationshipTargetInvalid":"RelationshipTargetInvalid","RelationshipTargetNotRelativeReference":"RelationshipTargetNotRelativeReference","RelationshipTargetsOtherRelationship":"RelationshipTargetsOtherRelationship","RelationshipTypeInvalid":"RelationshipTypeInvalid","SegmentEmpty":"SegmentEmpty","SegmentEndsWithDotCharacter":"SegmentEndsWithDotCharacter","SegmentHasNonPCharCharacters":"SegmentHasNonPCharCharacters","SegmentHasPercentEncodedSlashCharacters":"SegmentHasPercentEncodedSlashCharacters","SegmentHasPercentEncodedUnreservedCharacters":"SegmentHasPercentEncodedUnreservedCharacters","SegmentMissingNonDotCharacter":"SegmentMissingNonDotCharacter","XmlContentDrawsOnUndefinedNamespace":"XmlContentDrawsOnUndefinedNamespace","XmlContentInvalidForSchema":"XmlContentInvalidForSchema","XmlEncodingUnsupported":"XmlEncodingUnsupported"}}],"Orientation":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/Orientation","k":"enum","s":"enums","m":{"Default":"Default","Landscape":"Landscape","Portrait":"Portrait"}}],"PageNumbering":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PageNumbering","k":"enum","s":"enums","m":{"Automatic":"Automatic","UseStartPageNumber":"UseStartPageNumber"}}],"PageOrder":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PageOrder","k":"enum","s":"enums","m":{"DownThenOver":"DownThenOver","OverThenDown":"OverThenDown"}}],"PaperSize":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PaperSize","k":"enum","s":"enums","m":{"A2":"A2","A3":"A3","A3Extra":"A3Extra","A3ExtraTransverse":"A3ExtraTransverse","A3Rotated":"A3Rotated","A3Transverse":"A3Transverse","A4":"A4","A4Extra":"A4Extra","A4Plus":"A4Plus","A4Rotated":"A4Rotated","A4Small":"A4Small","A4Transverse":"A4Transverse","A5":"A5","A5Extra":"A5Extra","A5Rotated":"A5Rotated","A5Transverse":"A5Transverse","A6":"A6","A6Rotated":"A6Rotated","B4ISO_1":"B4ISO_1","B4ISO_2":"B4ISO_2","B4JIS":"B4JIS","B4JISRotated":"B4JISRotated","B5ISO":"B5ISO","B5ISOExtra":"B5ISOExtra","B5JIS":"B5JIS","B5JISRotated":"B5JISRotated","B5JISTransverse":"B5JISTransverse","B6ISO":"B6ISO","B6JIS":"B6JIS","B6JISRotated":"B6JISRotated","C":"C","D":"D","DblJapanesePostcard":"DblJapanesePostcard","DblJapanesePostcardRotated":"DblJapanesePostcardRotated","E":"E","Envelope10":"Envelope10","Envelope11":"Envelope11","Envelope12":"Envelope12","Envelope14":"Envelope14","Envelope9":"Envelope9","EnvelopeC3":"EnvelopeC3","EnvelopeC4":"EnvelopeC4","EnvelopeC5":"EnvelopeC5","EnvelopeC6":"EnvelopeC6","EnvelopeC6C5":"EnvelopeC6C5","EnvelopeDL":"EnvelopeDL","EnvelopeInvite":"EnvelopeInvite","EnvelopeItaly":"EnvelopeItaly","EnvelopeMonarch":"EnvelopeMonarch","Executive":"Executive","Folio":"Folio","GermanLegalFanfold":"GermanLegalFanfold","GermanStandardFanfold":"GermanStandardFanfold","JapanesePostcard":"JapanesePostcard","JapanesePostcardRotated":"JapanesePostcardRotated","Ledger":"Ledger","Legal":"Legal","LegalExtra":"LegalExtra","Letter":"Letter","LetterExtra":"LetterExtra","LetterExtraTransverse":"LetterExtraTransverse","LetterPlus":"LetterPlus","LetterRotated":"LetterRotated","LetterSmall":"LetterSmall","LetterTransverse":"LetterTransverse","Note":"Note","Quarto":"Quarto","Size10x11":"Size10x11","Size10x14":"Size10x14","Size11x17":"Size11x17","Size12x11":"Size12x11","Size15x11":"Size15x11","Size634Envelope":"Size634Envelope","Size9x11":"Size9x11","Statement":"Statement","SuperAA4":"SuperAA4","SuperBA3":"SuperBA3","Tabloid":"Tabloid","TabloidExtra":"TabloidExtra","USStandardFanfold":"USStandardFanfold","Undefined":"Undefined"}}],"ParentLabelLayout":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ParentLabelLayout","k":"enum","s":"enums","m":{"Banner":"Banner","None":"None","Overlapping":"Overlapping"}}],"PatternType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PatternType","k":"enum","s":"enums","m":{"Pattern10Percent":"Pattern10Percent","Pattern20Percent":"Pattern20Percent","Pattern25Percent":"Pattern25Percent","Pattern30Percent":"Pattern30Percent","Pattern40Percent":"Pattern40Percent","Pattern50Percent":"Pattern50Percent","Pattern5Percent":"Pattern5Percent","Pattern60Percent":"Pattern60Percent","Pattern70Percent":"Pattern70Percent","Pattern75Percent":"Pattern75Percent","Pattern80Percent":"Pattern80Percent","Pattern90Percent":"Pattern90Percent","PatternCross":"PatternCross","PatternDarkDownwardDiagonal":"PatternDarkDownwardDiagonal","PatternDarkHorizontal":"PatternDarkHorizontal","PatternDarkUpwardDiagonal":"PatternDarkUpwardDiagonal","PatternDarkVertical":"PatternDarkVertical","PatternDashedDownwardDiagonal":"PatternDashedDownwardDiagonal","PatternDashedHorizontal":"PatternDashedHorizontal","PatternDashedUpwardDiagonal":"PatternDashedUpwardDiagonal","PatternDashedVertical":"PatternDashedVertical","PatternDiagonalBrick":"PatternDiagonalBrick","PatternDiagonalCross":"PatternDiagonalCross","PatternDivot":"PatternDivot","PatternDottedDiamond":"PatternDottedDiamond","PatternDottedGrid":"PatternDottedGrid","PatternDownwardDiagonal":"PatternDownwardDiagonal","PatternHorizontal":"PatternHorizontal","PatternHorizontalBrick":"PatternHorizontalBrick","PatternLargeCheckerBoard":"PatternLargeCheckerBoard","PatternLargeConfetti":"PatternLargeConfetti","PatternLargeGrid":"PatternLargeGrid","PatternLightDownwardDiagonal":"PatternLightDownwardDiagonal","PatternLightHorizontal":"PatternLightHorizontal","PatternLightUpwardDiagonal":"PatternLightUpwardDiagonal","PatternLightVertical":"PatternLightVertical","PatternMixed":"PatternMixed","PatternNarrowHorizontal":"PatternNarrowHorizontal","PatternNarrowVertical":"PatternNarrowVertical","PatternOutlinedDiamond":"PatternOutlinedDiamond","PatternPlaid":"PatternPlaid","PatternShingle":"PatternShingle","PatternSmallCheckerBoard":"PatternSmallCheckerBoard","PatternSmallConfetti":"PatternSmallConfetti","PatternSmallGrid":"PatternSmallGrid","PatternSolidDiamond":"PatternSolidDiamond","PatternSphere":"PatternSphere","PatternTrellis":"PatternTrellis","PatternUpwardDiagonal":"PatternUpwardDiagonal","PatternVertical":"PatternVertical","PatternWave":"PatternWave","PatternWeave":"PatternWeave","PatternWideDownwardDiagonal":"PatternWideDownwardDiagonal","PatternWideUpwardDiagonal":"PatternWideUpwardDiagonal","PatternZigZag":"PatternZigZag"}}],"PictureType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PictureType","k":"enum","s":"enums","m":{"Scale":"Scale","Stack":"Stack","Stretch":"Stretch"}}],"PositioningOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PositioningOptions","k":"enum","s":"enums","m":{"None":"None","TreatAllRowsAndColumnsAsVisible":"TreatAllRowsAndColumnsAsVisible"}}],"Precision":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/Precision","k":"enum","s":"enums","m":{"UseDisplayValues":"UseDisplayValues","UseRealCellValues":"UseRealCellValues"}}],"PredefinedShapeType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PredefinedShapeType","k":"enum","s":"enums","m":{"Diamond":"Diamond","Ellipse":"Ellipse","Heart":"Heart","IrregularSeal1":"IrregularSeal1","IrregularSeal2":"IrregularSeal2","LightningBolt":"LightningBolt","Line":"Line","Pentagon":"Pentagon","Rectangle":"Rectangle","RightTriangle":"RightTriangle","StraightConnector1":"StraightConnector1"}}],"PrintErrors":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PrintErrors","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDashes":"PrintAsDashes","PrintAsDisplayed":"PrintAsDisplayed","PrintAsNA":"PrintAsNA"}}],"PrintNotes":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/PrintNotes","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDisplayed":"PrintAsDisplayed","PrintAtEndOfSheet":"PrintAtEndOfSheet"}}],"QuartileCalculation":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/QuartileCalculation","k":"enum","s":"enums","m":{"ExclusiveMedian":"ExclusiveMedian","InclusiveMedian":"InclusiveMedian"}}],"ReadingOrder":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ReadingOrder","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"RelativeDateRangeDuration":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/RelativeDateRangeDuration","k":"enum","s":"enums","m":{"Day":"Day","Month":"Month","Quarter":"Quarter","Week":"Week","Year":"Year"}}],"RelativeDateRangeOffset":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/RelativeDateRangeOffset","k":"enum","s":"enums","m":{"Current":"Current","Next":"Next","Previous":"Previous"}}],"ScaleType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ScaleType","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"ScalingType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ScalingType","k":"enum","s":"enums","m":{"FitToPages":"FitToPages","UseScalingFactor":"UseScalingFactor"}}],"ScrollBars":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ScrollBars","k":"enum","s":"enums","m":{"Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"SeriesType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","Bubble":"Bubble","Line":"Line","Pie":"Pie","Radar":"Radar","Scatter":"Scatter","Surface":"Surface"}}],"SeriesValuesColorBy":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SeriesValuesColorBy","k":"enum","s":"enums","m":{"NumericalValue":"NumericalValue","SecondaryCategory":"SecondaryCategory"}}],"ShapePositioningMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ShapePositioningMode","k":"enum","s":"enums","m":{"DontMoveOrSizeWithCells":"DontMoveOrSizeWithCells","MoveAndSizeWithCells":"MoveAndSizeWithCells","MoveWithCells":"MoveWithCells"}}],"SheetType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SheetType","k":"enum","s":"enums","m":{"Chartsheet":"Chartsheet","Worksheet":"Worksheet"}}],"SortDirection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"SparklineAxisMinMax":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SparklineAxisMinMax","k":"enum","s":"enums","m":{"Custom":"Custom","Group":"Group","Individual":"Individual"}}],"SparklineDisplayBlanksAs":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SparklineDisplayBlanksAs","k":"enum","s":"enums","m":{"Gap":"Gap","Span":"Span","Zero":"Zero"}}],"SparklineType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/SparklineType","k":"enum","s":"enums","m":{"Column":"Column","Line":"Line","WinLoss":"WinLoss"}}],"TextDirection":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TextDirection","k":"enum","s":"enums","m":{"EastAsianVertical":"EastAsianVertical","Horizontal":"Horizontal","MongolianVertical":"MongolianVertical","Vertical":"Vertical","Vertical270":"Vertical270","WordArtVertical":"WordArtVertical","WordArtVerticalRtl":"WordArtVerticalRtl"}}],"TextFormatMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TextFormatMode","k":"enum","s":"enums","m":{"AsDisplayed":"AsDisplayed","IgnoreCellWidth":"IgnoreCellWidth"}}],"TextHorizontalOverflow":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TextHorizontalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Overflow":"Overflow"}}],"TextVerticalOverflow":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TextVerticalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Ellipsis":"Ellipsis","Overflow":"Overflow"}}],"ThresholdComparison":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/ThresholdComparison","k":"enum","s":"enums","m":{"Greater":"Greater","GreaterEqual":"GreaterEqual"}}],"TickLabelAlignment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TickLabelAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}}],"TickLabelPosition":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TickLabelPosition","k":"enum","s":"enums","m":{"High":"High","Low":"Low","NextToAxis":"NextToAxis","None":"None"}}],"TickMark":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TickMark","k":"enum","s":"enums","m":{"Cross":"Cross","Inside":"Inside","None":"None","Outside":"Outside"}}],"TimeUnit":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TimeUnit","k":"enum","s":"enums","m":{"Days":"Days","Months":"Months","Years":"Years"}}],"TopOrBottomFilterType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TopOrBottomFilterType","k":"enum","s":"enums","m":{"BottomPercentage":"BottomPercentage","BottomValues":"BottomValues","TopPercentage":"TopPercentage","TopValues":"TopValues"}}],"TrendlinePolynomialOrder":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TrendlinePolynomialOrder","k":"enum","s":"enums","m":{"Fifth":"Fifth","Fourth":"Fourth","Second":"Second","Sixth":"Sixth","Third":"Third"}}],"TrendlineType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TrendlineType","k":"enum","s":"enums","m":{"Exponential":"Exponential","Linear":"Linear","Logarithmic":"Logarithmic","MovingAverage":"MovingAverage","Polynomial":"Polynomial","Power":"Power"}}],"TwoConstraintDataValidationOperator":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/TwoConstraintDataValidationOperator","k":"enum","s":"enums","m":{"Between":"Between","NotBetween":"NotBetween"}}],"UpDownBarType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/UpDownBarType","k":"enum","s":"enums","m":{"Down":"Down","Up":"Up"}}],"VerticalCellAlignment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/VerticalCellAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Default":"Default","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"VerticalTextAlignment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/VerticalTextAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Top":"Top"}}],"VerticalTitleAlignment":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/VerticalTitleAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"WallType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WallType","k":"enum","s":"enums","m":{"All":"All","Back":"Back","Floor":"Floor","Side":"Side"}}],"WorkbookEncryptionMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorkbookEncryptionMode","k":"enum","s":"enums","m":{"Agile":"Agile","Standard":"Standard"}}],"WorkbookFormat":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorkbookFormat","k":"enum","s":"enums","m":{"Excel2007":"Excel2007","Excel2007MacroEnabled":"Excel2007MacroEnabled","Excel2007MacroEnabledTemplate":"Excel2007MacroEnabledTemplate","Excel2007Template":"Excel2007Template","Excel97To2003":"Excel97To2003","Excel97To2003Template":"Excel97To2003Template","StrictOpenXml":"StrictOpenXml"}}],"WorkbookThemeColorType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorkbookThemeColorType","k":"enum","s":"enums","m":{"Accent1":"Accent1","Accent2":"Accent2","Accent3":"Accent3","Accent4":"Accent4","Accent5":"Accent5","Accent6":"Accent6","Dark1":"Dark1","Dark2":"Dark2","FollowedHyperlink":"FollowedHyperlink","Hyperlink":"Hyperlink","Light1":"Light1","Light2":"Light2"}}],"WorksheetCellFormatOptions":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetCellFormatOptions","k":"enum","s":"enums","m":{"All":"All","ApplyAlignmentFormatting":"ApplyAlignmentFormatting","ApplyBorderFormatting":"ApplyBorderFormatting","ApplyFillFormatting":"ApplyFillFormatting","ApplyFontFormatting":"ApplyFontFormatting","ApplyNumberFormatting":"ApplyNumberFormatting","ApplyProtectionFormatting":"ApplyProtectionFormatting","None":"None"}}],"WorksheetColumnWidthUnit":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetColumnWidthUnit","k":"enum","s":"enums","m":{"Character":"Character","Character256th":"Character256th","CharacterPaddingExcluded":"CharacterPaddingExcluded","Pixel":"Pixel","Point":"Point","Twip":"Twip"}}],"WorksheetProtectedSelectionMode":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetProtectedSelectionMode","k":"enum","s":"enums","m":{"AllCells":"AllCells","NoCells":"NoCells","UnlockedCells":"UnlockedCells"}}],"WorksheetSortType":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetSortType","k":"enum","s":"enums","m":{"Columns":"Columns","Rows":"Rows"}}],"WorksheetTableArea":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetTableArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderRow":"HeaderRow","TotalsRow":"TotalsRow","WholeTable":"WholeTable"}}],"WorksheetTableColumnArea":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetTableColumnArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderCell":"HeaderCell","TotalCell":"TotalCell"}}],"WorksheetTableStyleArea":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetTableStyleArea","k":"enum","s":"enums","m":{"AlternateColumnStripe":"AlternateColumnStripe","AlternateRowStripe":"AlternateRowStripe","ColumnStripe":"ColumnStripe","FirstColumn":"FirstColumn","FirstHeaderCell":"FirstHeaderCell","FirstTotalCell":"FirstTotalCell","HeaderRow":"HeaderRow","LastColumn":"LastColumn","LastHeaderCell":"LastHeaderCell","LastTotalCell":"LastTotalCell","RowStripe":"RowStripe","TotalRow":"TotalRow","WholeTable":"WholeTable"}}],"WorksheetView":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetView","k":"enum","s":"enums","m":{"Normal":"Normal","PageBreakPreview":"PageBreakPreview","PageLayout":"PageLayout"}}],"WorksheetVisibility":[{"p":"IgniteUI.Blazor.Documents.Excel","u":"/api/blazor/IgniteUI.Blazor.Documents.Excel/25.2.83/enums/WorksheetVisibility","k":"enum","s":"enums","m":{"Hidden":"Hidden","StrongHidden":"StrongHidden","Visible":"Visible"}}],"_Imports":[{"p":"IgniteUI.Blazor.Lite","u":"/api/blazor/IgniteUI.Blazor.Lite/0.0.1/classes/_Imports","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","_Imports()":"_Imports()","_Imports":"_Imports()","Execute()":"Execute()","Execute":"Execute()"}}],"IgbColumnConfiguration":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbColumnConfiguration","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbColumnConfiguration()":"IgbColumnConfiguration()","IgbColumnConfiguration":"IgbColumnConfiguration()","DataType":"DataType","Field":"Field","Filterable":"Filterable","FilteringCaseSensitive":"FilteringCaseSensitive","Header":"Header","Hidden":"Hidden","Resizable":"Resizable","Sortable":"Sortable","SortingCaseSensitive":"SortingCaseSensitive","Width":"Width"}}],"IgbGridLite":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLite","k":"class","s":"classes","m":{"OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLite()":"IgbGridLite()","IgbGridLite":"IgbGridLite()","AdditionalAttributes":"AdditionalAttributes","AdoptRootStyles":"AdoptRootStyles","AutoGenerate":"AutoGenerate","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","ChildContent":"ChildContent","ClearFilterAsync(string)":"ClearFilterAsync(string)","ClearFilterAsync":"ClearFilterAsync(string)","ClearSortAsync(string)":"ClearSortAsync(string)","ClearSortAsync":"ClearSortAsync(string)","Data":"Data","Dispose()":"Dispose()","Dispose":"Dispose()","FilterAsync(IgbGridLiteFilterExpression)":"FilterAsync(IgbGridLiteFilterExpression)","FilterAsync":"FilterAsync(IgbGridLiteFilterExpression)","FilterAsync(List)":"FilterAsync(List)","FilterExpressions":"FilterExpressions","Filtered":"Filtered","Filtering":"Filtering","GetColumnsAsync()":"GetColumnsAsync()","GetColumnsAsync":"GetColumnsAsync()","GridId":"GridId","NavigateToAsync(long, string, bool)":"NavigateToAsync(long, string, bool)","NavigateToAsync":"NavigateToAsync(long, string, bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","RefreshAsync()":"RefreshAsync()","RefreshAsync":"RefreshAsync()","RenderAsync()":"RenderAsync()","RenderAsync":"RenderAsync()","Rendered":"Rendered","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","SortAsync(IgbGridLiteSortingExpression)":"SortAsync(IgbGridLiteSortingExpression)","SortAsync":"SortAsync(IgbGridLiteSortingExpression)","SortAsync(List)":"SortAsync(List)","Sorted":"Sorted","Sorting":"Sorting","SortingExpressions":"SortingExpressions","SortingOptions":"SortingOptions","UpdateDataAsync(IEnumerable)":"UpdateDataAsync(IEnumerable)","UpdateDataAsync":"UpdateDataAsync(IEnumerable)"}}],"IgbGridLiteColumn":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteColumn","k":"class","s":"classes","m":{"OnInitialized()":"OnInitialized()","OnInitialized":"OnInitialized()","OnInitializedAsync()":"OnInitializedAsync()","OnInitializedAsync":"OnInitializedAsync()","OnParametersSet()":"OnParametersSet()","OnParametersSet":"OnParametersSet()","OnParametersSetAsync()":"OnParametersSetAsync()","OnParametersSetAsync":"OnParametersSetAsync()","StateHasChanged()":"StateHasChanged()","StateHasChanged":"StateHasChanged()","ShouldRender()":"ShouldRender()","ShouldRender":"ShouldRender()","OnAfterRender(bool)":"OnAfterRender(bool)","OnAfterRender":"OnAfterRender(bool)","OnAfterRenderAsync(bool)":"OnAfterRenderAsync(bool)","OnAfterRenderAsync":"OnAfterRenderAsync(bool)","InvokeAsync(Action)":"InvokeAsync(Action)","InvokeAsync":"InvokeAsync(Action)","InvokeAsync(Func)":"InvokeAsync(Func)","DispatchExceptionAsync(Exception)":"DispatchExceptionAsync(Exception)","DispatchExceptionAsync":"DispatchExceptionAsync(Exception)","SetParametersAsync(ParameterView)":"SetParametersAsync(ParameterView)","SetParametersAsync":"SetParametersAsync(ParameterView)","RendererInfo":"RendererInfo","Assets":"Assets","AssignedRenderMode":"AssignedRenderMode","GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteColumn()":"IgbGridLiteColumn()","IgbGridLiteColumn":"IgbGridLiteColumn()","BuildRenderTree(RenderTreeBuilder)":"BuildRenderTree(RenderTreeBuilder)","BuildRenderTree":"BuildRenderTree(RenderTreeBuilder)","DataType":"DataType","Field":"Field","Filterable":"Filterable","FilteringCaseSensitive":"FilteringCaseSensitive","Header":"Header","Hidden":"Hidden","Resizable":"Resizable","Sortable":"Sortable","SortingCaseSensitive":"SortingCaseSensitive","Width":"Width"}}],"IgbGridLiteFilteredEventArgs":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteFilteredEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteFilteredEventArgs()":"IgbGridLiteFilteredEventArgs()","IgbGridLiteFilteredEventArgs":"IgbGridLiteFilteredEventArgs()","Key":"Key","State":"State"}}],"IgbGridLiteFilterExpression":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteFilterExpression","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteFilterExpression()":"IgbGridLiteFilterExpression()","IgbGridLiteFilterExpression":"IgbGridLiteFilterExpression()","CaseSensitive":"CaseSensitive","Condition":"Condition","Criteria":"Criteria","Key":"Key","SearchTerm":"SearchTerm"}}],"IgbGridLiteFilteringEventArgs":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteFilteringEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteFilteringEventArgs()":"IgbGridLiteFilteringEventArgs()","IgbGridLiteFilteringEventArgs":"IgbGridLiteFilteringEventArgs()","Expressions":"Expressions","Key":"Key","Type":"Type"}}],"IgbGridLiteSortedEventArgs":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteSortedEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteSortedEventArgs()":"IgbGridLiteSortedEventArgs()","IgbGridLiteSortedEventArgs":"IgbGridLiteSortedEventArgs()","Expression":"Expression"}}],"IgbGridLiteSortingEventArgs":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteSortingEventArgs","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteSortingEventArgs()":"IgbGridLiteSortingEventArgs()","IgbGridLiteSortingEventArgs":"IgbGridLiteSortingEventArgs()","Expression":"Expression"}}],"IgbGridLiteSortingExpression":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteSortingExpression","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteSortingExpression()":"IgbGridLiteSortingExpression()","IgbGridLiteSortingExpression":"IgbGridLiteSortingExpression()","CaseSensitive":"CaseSensitive","Direction":"Direction","Key":"Key"}}],"IgbGridLiteSortingOptions":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/classes/IgbGridLiteSortingOptions","k":"class","s":"classes","m":{"GetType()":"GetType()","GetType":"GetType()","MemberwiseClone()":"MemberwiseClone()","MemberwiseClone":"MemberwiseClone()","ToString()":"ToString()","ToString":"ToString()","Equals(object)":"Equals(object)","Equals":"Equals(object)","Equals(object, object)":"Equals(object, object)","ReferenceEquals(object, object)":"ReferenceEquals(object, object)","ReferenceEquals":"ReferenceEquals(object, object)","GetHashCode()":"GetHashCode()","GetHashCode":"GetHashCode()","IgbGridLiteSortingOptions()":"IgbGridLiteSortingOptions()","IgbGridLiteSortingOptions":"IgbGridLiteSortingOptions()","Mode":"Mode"}}],"GridLiteColumnDataType":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/enums/GridLiteColumnDataType","k":"enum","s":"enums","m":{"Boolean":"Boolean","Date":"Date","Number":"Number","String":"String"}}],"GridLiteSortingDirection":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/enums/GridLiteSortingDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending","None":"None"}}],"GridLiteSortingMode":[{"p":"IgniteUI.Blazor.GridLite","u":"/api/blazor/IgniteUI.Blazor.GridLite/0.7.1/enums/GridLiteSortingMode","k":"enum","s":"enums","m":{"Multiple":"Multiple","Single":"Single"}}]}} \ No newline at end of file diff --git a/src/data/api-link-index/manifest.json b/src/data/api-link-index/manifest.json new file mode 100644 index 0000000000..756ef3cfc5 --- /dev/null +++ b/src/data/api-link-index/manifest.json @@ -0,0 +1,8 @@ +{ + "files": [ + "angular/staging-latest.json", + "blazor/staging-latest.json", + "react/staging-latest.json", + "webcomponents/staging-latest.json" + ] +} diff --git a/src/data/api-link-index/react/staging-latest.json b/src/data/api-link-index/react/staging-latest.json new file mode 100644 index 0000000000..faab1cdbe2 --- /dev/null +++ b/src/data/api-link-index/react/staging-latest.json @@ -0,0 +1 @@ +{"platform":"react","version":"latest","generatedAt":"2026-06-02T12:32:46.486Z","packages":["igniteui-react","igniteui-react-charts","igniteui-react-core","igniteui-react-dashboards","igniteui-react-datasources","igniteui-react-dockmanager","igniteui-react-excel","igniteui-react-fdc3","igniteui-react-gauges","igniteui-react-grids","igniteui-react-inputs","igniteui-react-layouts","igniteui-react-maps","igniteui-react-spreadsheet","igniteui-react-spreadsheet-chart-adapter"],"symbols":{"IgrAccordion":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrAccordion","k":"class","s":"classes"}],"IgrAvatar":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrAvatar","k":"class","s":"classes"}],"IgrBadge":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrBadge","k":"class","s":"classes"}],"IgrBanner":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrBanner","k":"class","s":"classes"}],"IgrButton":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrButton","k":"class","s":"classes"}],"IgrButtonGroup":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrButtonGroup","k":"class","s":"classes"}],"IgrCalendar":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCalendar","k":"class","s":"classes"}],"IgrCard":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCard","k":"class","s":"classes"}],"IgrCardActions":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCardActions","k":"class","s":"classes"}],"IgrCardContent":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCardContent","k":"class","s":"classes"}],"IgrCardHeader":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCardHeader","k":"class","s":"classes"}],"IgrCardMedia":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCardMedia","k":"class","s":"classes"}],"IgrCarousel":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCarousel","k":"class","s":"classes"}],"IgrCarouselIndicator":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCarouselIndicator","k":"class","s":"classes"}],"IgrCarouselSlide":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCarouselSlide","k":"class","s":"classes"}],"IgrChat":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrChat","k":"class","s":"classes"}],"IgrCheckbox":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCheckbox","k":"class","s":"classes"}],"IgrChip":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrChip","k":"class","s":"classes"}],"IgrCircularGradient":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCircularGradient","k":"class","s":"classes"}],"IgrCircularProgress":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCircularProgress","k":"class","s":"classes"}],"IgrCombo":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrCombo","k":"class","s":"classes"}],"IgrDatePicker":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDatePicker","k":"class","s":"classes"}],"IgrDateRangePicker":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDateRangePicker","k":"class","s":"classes"}],"IgrDateTimeInput":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDateTimeInput","k":"class","s":"classes"}],"IgrDialog":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDialog","k":"class","s":"classes"}],"IgrDivider":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDivider","k":"class","s":"classes"}],"IgrDropdown":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDropdown","k":"class","s":"classes"}],"IgrDropdownGroup":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDropdownGroup","k":"class","s":"classes"}],"IgrDropdownHeader":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDropdownHeader","k":"class","s":"classes"}],"IgrDropdownItem":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrDropdownItem","k":"class","s":"classes"}],"IgrExpansionPanel":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrExpansionPanel","k":"class","s":"classes"}],"IgrFileInput":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrFileInput","k":"class","s":"classes"}],"IgrHighlight":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrHighlight","k":"class","s":"classes"}],"IgrIcon":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrIcon","k":"class","s":"classes"}],"IgrIconButton":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrIconButton","k":"class","s":"classes"}],"IgrInput":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrInput","k":"class","s":"classes"}],"IgrLinearProgress":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrLinearProgress","k":"class","s":"classes"}],"IgrList":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrList","k":"class","s":"classes"}],"IgrListHeader":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrListHeader","k":"class","s":"classes"}],"IgrListItem":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrListItem","k":"class","s":"classes"}],"IgrMaskInput":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrMaskInput","k":"class","s":"classes"}],"IgrNavbar":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrNavbar","k":"class","s":"classes"}],"IgrNavDrawer":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrNavDrawer","k":"class","s":"classes"}],"IgrNavDrawerHeaderItem":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrNavDrawerHeaderItem","k":"class","s":"classes"}],"IgrNavDrawerItem":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrNavDrawerItem","k":"class","s":"classes"}],"IgrRadio":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrRadio","k":"class","s":"classes"}],"IgrRadioGroup":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrRadioGroup","k":"class","s":"classes"}],"IgrRangeSlider":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrRangeSlider","k":"class","s":"classes"}],"IgrRating":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrRating","k":"class","s":"classes"}],"IgrRatingSymbol":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrRatingSymbol","k":"class","s":"classes"}],"IgrRipple":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrRipple","k":"class","s":"classes"}],"IgrSelect":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSelect","k":"class","s":"classes"}],"IgrSelectGroup":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSelectGroup","k":"class","s":"classes"}],"IgrSelectHeader":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSelectHeader","k":"class","s":"classes"}],"IgrSelectItem":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSelectItem","k":"class","s":"classes"}],"IgrSlider":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSlider","k":"class","s":"classes"}],"IgrSliderLabel":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSliderLabel","k":"class","s":"classes"}],"IgrSnackbar":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSnackbar","k":"class","s":"classes"}],"IgrSplitter":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSplitter","k":"class","s":"classes"}],"IgrStep":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrStep","k":"class","s":"classes"}],"IgrStepper":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrStepper","k":"class","s":"classes"}],"IgrSwitch":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrSwitch","k":"class","s":"classes"}],"IgrTab":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTab","k":"class","s":"classes"}],"IgrTabs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTabs","k":"class","s":"classes"}],"IgrTextarea":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTextarea","k":"class","s":"classes"}],"IgrThemeProvider":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrThemeProvider","k":"class","s":"classes"}],"IgrTile":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTile","k":"class","s":"classes"}],"IgrTileManager":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTileManager","k":"class","s":"classes"}],"IgrToast":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrToast","k":"class","s":"classes"}],"IgrToggleButton":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrToggleButton","k":"class","s":"classes"}],"IgrTooltip":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTooltip","k":"class","s":"classes"}],"IgrTree":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTree","k":"class","s":"classes"}],"IgrTreeItem":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/classes/IgrTreeItem","k":"class","s":"classes"}],"ChatAttachmentRenderContext":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ChatAttachmentRenderContext","k":"interface","s":"interfaces","m":{"attachment":"attachment","instance":"instance","message":"message"}}],"ChatInputRenderContext":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ChatInputRenderContext","k":"interface","s":"interfaces","m":{"attachments":"attachments","instance":"instance","value":"value"}}],"ChatMessageRenderContext":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ChatMessageRenderContext","k":"interface","s":"interfaces","m":{"instance":"instance","message":"message"}}],"ChatRenderContext":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ChatRenderContext","k":"interface","s":"interfaces","m":{"instance":"instance"}}],"ChatRenderers":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ChatRenderers","k":"interface","s":"interfaces","m":{"attachment":"attachment","attachmentContent":"attachmentContent","attachmentHeader":"attachmentHeader","fileUploadButton":"fileUploadButton","input":"input","inputActions":"inputActions","inputActionsEnd":"inputActionsEnd","inputActionsStart":"inputActionsStart","inputAttachments":"inputAttachments","message":"message","messageActions":"messageActions","messageAttachments":"messageAttachments","messageContent":"messageContent","messageHeader":"messageHeader","sendButton":"sendButton","suggestionPrefix":"suggestionPrefix"}}],"ComboTemplateProps":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ComboTemplateProps","k":"interface","s":"interfaces","m":{"item":"item"}}],"CustomDateRange":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/CustomDateRange","k":"interface","s":"interfaces","m":{"dateRange":"dateRange","label":"label"}}],"CustomEvent":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/CustomEvent","k":"interface","s":"interfaces","m":{"detail":"detail"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/CustomEvent","k":"interface","s":"interfaces","m":{"detail":"detail"}},{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/CustomEvent","k":"interface","s":"interfaces","m":{"detail":"detail"}}],"DatePartDeltas":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/DatePartDeltas","k":"interface","s":"interfaces","m":{"date":"date","hours":"hours","minutes":"minutes","month":"month","seconds":"seconds","year":"year"}}],"DateRangeDescriptor":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/DateRangeDescriptor","k":"interface","s":"interfaces","m":{"dateRange":"dateRange","type":"type"}}],"DateRangeValue":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/DateRangeValue","k":"interface","s":"interfaces","m":{"end":"end","start":"start"}}],"FilteringOptions":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/FilteringOptions","k":"interface","s":"interfaces","m":{"caseSensitive":"caseSensitive","filterKey":"filterKey","matchDiacritics":"matchDiacritics"}}],"ICalendarResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ICalendarResourceStrings","k":"interface","s":"interfaces","m":{"calendar_first_picker_of":"calendar_first_picker_of","calendar_multi_selection":"calendar_multi_selection","calendar_next_month":"calendar_next_month","calendar_next_year":"calendar_next_year","calendar_next_years":"calendar_next_years","calendar_previous_month":"calendar_previous_month","calendar_previous_year":"calendar_previous_year","calendar_previous_years":"calendar_previous_years","calendar_range_end":"calendar_range_end","calendar_range_label_end":"calendar_range_label_end","calendar_range_label_start":"calendar_range_label_start","calendar_range_placeholder":"calendar_range_placeholder","calendar_range_selection":"calendar_range_selection","calendar_range_start":"calendar_range_start","calendar_select_date":"calendar_select_date","calendar_select_month":"calendar_select_month","calendar_select_year":"calendar_select_year","calendar_selected_month_is":"calendar_selected_month_is","calendar_single_selection":"calendar_single_selection","calendar_singular_multi_selection":"calendar_singular_multi_selection","calendar_singular_range_selection":"calendar_singular_range_selection","calendar_singular_single_selection":"calendar_singular_single_selection"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/ICalendarResourceStrings","k":"interface","s":"interfaces","m":{"calendar_first_picker_of":"calendar_first_picker_of","calendar_multi_selection":"calendar_multi_selection","calendar_next_month":"calendar_next_month","calendar_next_year":"calendar_next_year","calendar_next_years":"calendar_next_years","calendar_previous_month":"calendar_previous_month","calendar_previous_year":"calendar_previous_year","calendar_previous_years":"calendar_previous_years","calendar_range_end":"calendar_range_end","calendar_range_label_end":"calendar_range_label_end","calendar_range_label_start":"calendar_range_label_start","calendar_range_placeholder":"calendar_range_placeholder","calendar_range_selection":"calendar_range_selection","calendar_range_start":"calendar_range_start","calendar_select_date":"calendar_select_date","calendar_select_month":"calendar_select_month","calendar_select_year":"calendar_select_year","calendar_selected_month_is":"calendar_selected_month_is","calendar_single_selection":"calendar_single_selection","calendar_singular_multi_selection":"calendar_singular_multi_selection","calendar_singular_range_selection":"calendar_singular_range_selection","calendar_singular_single_selection":"calendar_singular_single_selection"}}],"ICarouselResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ICarouselResourceStrings","k":"interface","s":"interfaces","m":{"carousel_next_slide":"carousel_next_slide","carousel_of":"carousel_of","carousel_previous_slide":"carousel_previous_slide","carousel_slide":"carousel_slide"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/ICarouselResourceStrings","k":"interface","s":"interfaces","m":{"carousel_next_slide":"carousel_next_slide","carousel_of":"carousel_of","carousel_previous_slide":"carousel_previous_slide","carousel_slide":"carousel_slide"}}],"IChipResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IChipResourceStrings","k":"interface","s":"interfaces","m":{"chip_remove":"chip_remove","chip_select":"chip_select"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IChipResourceStrings","k":"interface","s":"interfaces","m":{"chip_remove":"chip_remove","chip_select":"chip_select"}}],"IComboResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IComboResourceStrings","k":"interface","s":"interfaces","m":{"combo_addCustomValues_placeholder":"combo_addCustomValues_placeholder","combo_aria_label_no_options":"combo_aria_label_no_options","combo_aria_label_options":"combo_aria_label_options","combo_clearItems_placeholder":"combo_clearItems_placeholder","combo_empty_message":"combo_empty_message","combo_filter_search_placeholder":"combo_filter_search_placeholder"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IComboResourceStrings","k":"interface","s":"interfaces","m":{"combo_addCustomValues_placeholder":"combo_addCustomValues_placeholder","combo_aria_label_no_options":"combo_aria_label_no_options","combo_aria_label_options":"combo_aria_label_options","combo_clearItems_placeholder":"combo_clearItems_placeholder","combo_empty_message":"combo_empty_message","combo_filter_search_placeholder":"combo_filter_search_placeholder"}}],"IconMeta":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IconMeta","k":"interface","s":"interfaces","m":{"collection":"collection","external":"external","name":"name"}}],"IDateRangePickerResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IDateRangePickerResourceStrings","k":"interface","s":"interfaces","m":{"date_range_picker_cancel_button":"date_range_picker_cancel_button","date_range_picker_currentMonth":"date_range_picker_currentMonth","date_range_picker_date_separator":"date_range_picker_date_separator","date_range_picker_done_button":"date_range_picker_done_button","date_range_picker_last30Days":"date_range_picker_last30Days","date_range_picker_last7Days":"date_range_picker_last7Days","date_range_picker_yearToDate":"date_range_picker_yearToDate"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IDateRangePickerResourceStrings","k":"interface","s":"interfaces","m":{"date_range_picker_cancel_button":"date_range_picker_cancel_button","date_range_picker_currentMonth":"date_range_picker_currentMonth","date_range_picker_date_separator":"date_range_picker_date_separator","date_range_picker_done_button":"date_range_picker_done_button","date_range_picker_last30Days":"date_range_picker_last30Days","date_range_picker_last7Days":"date_range_picker_last7Days","date_range_picker_yearToDate":"date_range_picker_yearToDate"}}],"IFileInputResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IFileInputResourceStrings","k":"interface","s":"interfaces","m":{"file_input_placeholder":"file_input_placeholder","file_input_upload_button":"file_input_upload_button"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IFileInputResourceStrings","k":"interface","s":"interfaces","m":{"file_input_placeholder":"file_input_placeholder","file_input_upload_button":"file_input_upload_button"}}],"IgrActiveStepChangedEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrActiveStepChangedEventArgsDetail","k":"interface","s":"interfaces","m":{"index":"index"}}],"IgrActiveStepChangingEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrActiveStepChangingEventArgsDetail","k":"interface","s":"interfaces","m":{"newIndex":"newIndex","oldIndex":"oldIndex"}}],"IgrCalendarResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrCalendarResourceStrings","k":"interface","s":"interfaces","m":{"endDate":"endDate","nextMonth":"nextMonth","nextYear":"nextYear","nextYears":"nextYears","previousMonth":"previousMonth","previousYear":"previousYear","previousYears":"previousYears","selectDate":"selectDate","selectedDate":"selectedDate","selectMonth":"selectMonth","selectRange":"selectRange","selectYear":"selectYear","startDate":"startDate","weekLabel":"weekLabel"}}],"IgrChatMessage":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrChatMessage","k":"interface","s":"interfaces","m":{"attachments":"attachments","id":"id","reactions":"reactions","sender":"sender","text":"text","timestamp":"timestamp"}}],"IgrChatMessageAttachment":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrChatMessageAttachment","k":"interface","s":"interfaces","m":{"file":"file","id":"id","name":"name","thumbnail":"thumbnail","type":"type","url":"url"}}],"IgrChatMessageReaction":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrChatMessageReaction","k":"interface","s":"interfaces","m":{"message":"message","reaction":"reaction"}}],"IgrChatResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrChatResourceStrings","k":"interface","s":"interfaces","m":{"attachmentLabel":"attachmentLabel","attachmentsListLabel":"attachmentsListLabel","messageCopied":"messageCopied","reactionCopy":"reactionCopy","reactionDislike":"reactionDislike","reactionLike":"reactionLike","reactionRegenerate":"reactionRegenerate","suggestionsHeader":"suggestionsHeader"}}],"IgrCheckboxChangeEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrCheckboxChangeEventArgsDetail","k":"interface","s":"interfaces","m":{"checked":"checked","value":"value"}}],"IgrComboChangeEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrComboChangeEventArgsDetail","k":"interface","s":"interfaces","m":{"items":"items","newValue":"newValue","type":"type"}}],"IgrDateRangePickerResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrDateRangePickerResourceStrings","k":"interface","s":"interfaces","m":{"cancel":"cancel","currentMonth":"currentMonth","done":"done","endDate":"endDate","last30Days":"last30Days","last7Days":"last7Days","nextMonth":"nextMonth","nextYear":"nextYear","nextYears":"nextYears","previousMonth":"previousMonth","previousYear":"previousYear","previousYears":"previousYears","selectDate":"selectDate","selectedDate":"selectedDate","selectMonth":"selectMonth","selectRange":"selectRange","selectYear":"selectYear","separator":"separator","startDate":"startDate","weekLabel":"weekLabel","yearToDate":"yearToDate"}}],"IgrRadioChangeEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrRadioChangeEventArgsDetail","k":"interface","s":"interfaces","m":{"checked":"checked","value":"value"}}],"IgrRangeSliderValueEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrRangeSliderValueEventArgsDetail","k":"interface","s":"interfaces","m":{"lower":"lower","upper":"upper"}}],"IgrSplitterResizeEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrSplitterResizeEventArgsDetail","k":"interface","s":"interfaces","m":{"delta":"delta","endPanelSize":"endPanelSize","startPanelSize":"startPanelSize"}},{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrSplitterResizeEventArgsDetail","k":"interface","s":"interfaces","m":{"orientation":"orientation","pane":"pane","paneHeight":"paneHeight","paneWidth":"paneWidth"}}],"IgrTileChangeStateEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrTileChangeStateEventArgsDetail","k":"interface","s":"interfaces","m":{"state":"state","tile":"tile"}}],"IgrTreeSelectionEventArgsDetail":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/IgrTreeSelectionEventArgsDetail","k":"interface","s":"interfaces","m":{"newSelection":"newSelection"}}],"ITreeResourceStrings":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/interfaces/ITreeResourceStrings","k":"interface","s":"interfaces","m":{"collapse":"collapse","expand":"expand"}},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/ITreeResourceStrings","k":"interface","s":"interfaces","m":{"collapse":"collapse","expand":"expand"}}],"DatePart":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/enums/DatePart","k":"enum","s":"enums","m":{"AmPm":"AmPm","Date":"Date","Hours":"Hours","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Year":"Year"}}],"DateRangeType":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/enums/DateRangeType","k":"enum","s":"enums","m":{"After":"After","Before":"Before","Between":"Between","Specific":"Specific","Weekdays":"Weekdays","Weekends":"Weekends"}}],"AbsolutePosition":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/AbsolutePosition","k":"type","s":"types"}],"AvatarShape":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/AvatarShape","k":"type","s":"types"}],"BadgeShape":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/BadgeShape","k":"type","s":"types"}],"ButtonGroupSelection":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ButtonGroupSelection","k":"type","s":"types"}],"ButtonVariant":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ButtonVariant","k":"type","s":"types"}],"CalendarActiveView":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/CalendarActiveView","k":"type","s":"types"}],"CalendarHeaderOrientation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/CalendarHeaderOrientation","k":"type","s":"types"}],"CalendarSelection":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/CalendarSelection","k":"type","s":"types"}],"CarouselIndicatorsOrientation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/CarouselIndicatorsOrientation","k":"type","s":"types"}],"ChatSuggestionsPosition":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ChatSuggestionsPosition","k":"type","s":"types"}],"ChatTemplateRenderer":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ChatTemplateRenderer","k":"type","s":"types"}],"ComboItemTemplate":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ComboItemTemplate","k":"type","s":"types"}],"ContentOrientation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ContentOrientation","k":"type","s":"types"}],"DividerType":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/DividerType","k":"type","s":"types"}],"ExpansionPanelIndicatorPosition":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ExpansionPanelIndicatorPosition","k":"type","s":"types"}],"GroupingDirection":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/GroupingDirection","k":"type","s":"types"}],"HorizontalTransitionAnimation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/HorizontalTransitionAnimation","k":"type","s":"types"}],"IconButtonVariant":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IconButtonVariant","k":"type","s":"types"}],"IgrActiveStepChangedEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrActiveStepChangedEventArgs","k":"type","s":"types"}],"IgrActiveStepChangingEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrActiveStepChangingEventArgs","k":"type","s":"types"}],"IgrChatOptions":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrChatOptions","k":"type","s":"types","m":{"acceptedFiles":"acceptedFiles","adoptRootStyles":"adoptRootStyles","currentUserId":"currentUserId","disableAutoScroll":"disableAutoScroll","disableInputAttachments":"disableInputAttachments","headerText":"headerText","inputPlaceholder":"inputPlaceholder","isTyping":"isTyping","renderers":"renderers","stopTypingDelay":"stopTypingDelay","suggestions":"suggestions","suggestionsPosition":"suggestionsPosition"}}],"IgrCheckboxChangeEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrCheckboxChangeEventArgs","k":"type","s":"types"},{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrCheckboxChangeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","isChecked":"isChecked","isIndeterminate":"isIndeterminate","nativeElement":"nativeElement"}}],"IgrComboChangeEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrComboChangeEventArgs","k":"type","s":"types"}],"IgrRadioChangeEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrRadioChangeEventArgs","k":"type","s":"types"}],"IgrRangeSliderValueEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrRangeSliderValueEventArgs","k":"type","s":"types"}],"IgrSplitterResizeEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrSplitterResizeEventArgs","k":"type","s":"types"},{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrSplitterResizeEventArgs","k":"type","s":"types"}],"IgrTileChangeStateEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrTileChangeStateEventArgs","k":"type","s":"types"}],"IgrTreeSelectionEventArgs":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/IgrTreeSelectionEventArgs","k":"type","s":"types"}],"InputType":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/InputType","k":"type","s":"types"}],"LinearProgressLabelAlign":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/LinearProgressLabelAlign","k":"type","s":"types"}],"MaskInputValueMode":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/MaskInputValueMode","k":"type","s":"types"}],"NavDrawerPosition":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/NavDrawerPosition","k":"type","s":"types"}],"PickerMode":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/PickerMode","k":"type","s":"types"}],"PopoverPlacement":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/PopoverPlacement","k":"type","s":"types"}],"PopoverScrollStrategy":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/PopoverScrollStrategy","k":"type","s":"types"}],"RangeTextSelectMode":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/RangeTextSelectMode","k":"type","s":"types"}],"SelectionRangeDirection":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/SelectionRangeDirection","k":"type","s":"types"}],"SliderTickLabelRotation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/SliderTickLabelRotation","k":"type","s":"types"}],"SliderTickOrientation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/SliderTickOrientation","k":"type","s":"types"}],"SplitterOrientation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/SplitterOrientation","k":"type","s":"types"}],"StepperOrientation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/StepperOrientation","k":"type","s":"types"}],"StepperStepType":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/StepperStepType","k":"type","s":"types"}],"StepperTitlePosition":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/StepperTitlePosition","k":"type","s":"types"}],"StepperVerticalAnimation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/StepperVerticalAnimation","k":"type","s":"types"}],"StyleVariant":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/StyleVariant","k":"type","s":"types"}],"TabsActivation":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/TabsActivation","k":"type","s":"types"}],"TabsAlignment":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/TabsAlignment","k":"type","s":"types"}],"TextareaResize":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/TextareaResize","k":"type","s":"types"}],"Theme":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/Theme","k":"type","s":"types"}],"ThemeVariant":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ThemeVariant","k":"type","s":"types"}],"TileManagerDragMode":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/TileManagerDragMode","k":"type","s":"types"}],"TileManagerResizeMode":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/TileManagerResizeMode","k":"type","s":"types"}],"ToggleLabelPosition":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/ToggleLabelPosition","k":"type","s":"types"}],"TreeSelection":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/TreeSelection","k":"type","s":"types"}],"WeekDays":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/types/WeekDays","k":"type","s":"types"}],"CalendarResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/CalendarResourceStringsEN","k":"variable","s":"variables"}],"CarouselResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/CarouselResourceStringsEN","k":"variable","s":"variables"}],"ChipResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/ChipResourceStringsEN","k":"variable","s":"variables"}],"ComboResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/ComboResourceStringsEN","k":"variable","s":"variables"}],"DateRangePickerResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/DateRangePickerResourceStringsEN","k":"variable","s":"variables"}],"FileInputResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/FileInputResourceStringsEN","k":"variable","s":"variables"}],"IgrCalendarResourceStringEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/IgrCalendarResourceStringEN","k":"variable","s":"variables"}],"IgrChatResourceStringEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/IgrChatResourceStringEN","k":"variable","s":"variables"}],"IgrDateRangePickerResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/IgrDateRangePickerResourceStringsEN","k":"variable","s":"variables"}],"TreeResourceStringsEN":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/variables/TreeResourceStringsEN","k":"variable","s":"variables"}],"configureTheme":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/configureTheme","k":"function","s":"functions"}],"registerI18n":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/registerI18n","k":"function","s":"functions"},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/functions/registerI18n","k":"function","s":"functions"},{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/functions/registerI18n","k":"function","s":"functions"}],"registerIcon":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/registerIcon","k":"function","s":"functions"}],"registerIconFromText":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/registerIconFromText","k":"function","s":"functions"}],"setCurrentI18n":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/setCurrentI18n","k":"function","s":"functions"},{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/functions/setCurrentI18n","k":"function","s":"functions"},{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/functions/setCurrentI18n","k":"function","s":"functions"}],"setIconRef":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/setIconRef","k":"function","s":"functions"}],"θaddAdoptedStylesController":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/-addAdoptedStylesController","k":"function","s":"functions"}],"θaddThemingController":[{"p":"igniteui-react","u":"/api/react/igniteui-react/19.6.0/functions/-addThemingController","k":"function","s":"functions"}],"IgrActionStrip":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrActionStrip","k":"class","s":"classes"}],"IgrBooleanFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrBooleanFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgrByLevelTreeGridMergeStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrByLevelTreeGridMergeStrategy","k":"class","s":"classes","m":{"constructor":"constructor","comparer":"comparer","merge":"merge","instance":"instance"}}],"IgrColumn":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrColumn","k":"class","s":"classes"}],"IgrColumnGroup":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrColumnGroup","k":"class","s":"classes"}],"IgrColumnLayout":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrColumnLayout","k":"class","s":"classes"}],"IgrDateFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrDateFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgrDateSummaryOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrDateSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","count":"count","earliest":"earliest","latest":"latest"}}],"IgrDateTimeFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrDateTimeFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgrDefaultMergeStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrDefaultMergeStrategy","k":"class","s":"classes","m":{"constructor":"constructor","comparer":"comparer","merge":"merge","instance":"instance"}}],"IgrDefaultTreeGridMergeStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrDefaultTreeGridMergeStrategy","k":"class","s":"classes","m":{"constructor":"constructor","comparer":"comparer","merge":"merge","instance":"instance"}}],"IgrFilteringExpressionsTree":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrFilteringExpressionsTree","k":"class","s":"classes","m":{"constructor":"constructor","entity":"entity","fieldName":"fieldName","owner":"owner","returnFields":"returnFields","type":"type","filteringOperands":"filteringOperands","operator":"operator"}}],"IgrFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgrGrid":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGrid","k":"class","s":"classes"}],"IgrGridEditingActions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridEditingActions","k":"class","s":"classes"}],"IgrGridPinningActions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridPinningActions","k":"class","s":"classes"}],"IgrGridState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridState","k":"class","s":"classes"}],"IgrGridToolbar":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbar","k":"class","s":"classes"}],"IgrGridToolbarActions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbarActions","k":"class","s":"classes"}],"IgrGridToolbarAdvancedFiltering":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbarAdvancedFiltering","k":"class","s":"classes"}],"IgrGridToolbarExporter":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbarExporter","k":"class","s":"classes"}],"IgrGridToolbarHiding":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbarHiding","k":"class","s":"classes"}],"IgrGridToolbarPinning":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbarPinning","k":"class","s":"classes"}],"IgrGridToolbarTitle":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrGridToolbarTitle","k":"class","s":"classes"}],"IgrHierarchicalGrid":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrHierarchicalGrid","k":"class","s":"classes"}],"IgrNoopFilteringStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrNoopFilteringStrategy","k":"class","s":"classes","m":{"constructor":"constructor","filter":"filter","findMatchByExpression":"findMatchByExpression","getFilterItems":"getFilterItems","matchRecord":"matchRecord","instance":"instance"}}],"IgrNoopPivotDimensionsStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrNoopPivotDimensionsStrategy","k":"class","s":"classes","m":{"constructor":"constructor","process":"process","instance":"instance"}}],"IgrNoopSortingStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrNoopSortingStrategy","k":"class","s":"classes","m":{"constructor":"constructor","sort":"sort","instance":"instance"}}],"IgrNumberFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrNumberFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgrNumberSummaryOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrNumberSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","average":"average","count":"count","max":"max","min":"min","sum":"sum"}}],"IgrPaginator":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrPaginator","k":"class","s":"classes"}],"IgrPivotDataSelector":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrPivotDataSelector","k":"class","s":"classes"}],"IgrPivotDateDimension":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrPivotDateDimension","k":"class","s":"classes","m":{"constructor":"constructor","childLevel":"childLevel","dataType":"dataType","displayName":"displayName","filter":"filter","horizontalSummary":"horizontalSummary","level":"level","memberFunction":"memberFunction","sortable":"sortable","sortDirection":"sortDirection","width":"width","baseDimension":"baseDimension","enabled":"enabled","memberName":"memberName","options":"options","resourceStrings":"resourceStrings"}}],"IgrPivotGrid":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrPivotGrid","k":"class","s":"classes"}],"IgrQueryBuilder":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrQueryBuilder","k":"class","s":"classes"}],"IgrQueryBuilderHeader":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrQueryBuilderHeader","k":"class","s":"classes"}],"IgrRowIsland":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrRowIsland","k":"class","s":"classes"}],"IgrStringFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrStringFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","applyIgnoreCase":"applyIgnoreCase","instance":"instance"}}],"IgrSummaryOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","count":"count"}}],"IgrTimeFilteringOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrTimeFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgrTimeSummaryOperand":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrTimeSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","count":"count","earliestTime":"earliestTime","latestTime":"latestTime"}}],"IgrTreeGrid":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/classes/IgrTreeGrid","k":"class","s":"classes"}],"IActionStripResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IActionStripResourceStrings","k":"interface","s":"interfaces","m":{"action_strip_button_more_title":"action_strip_button_more_title"}}],"IBannerResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IBannerResourceStrings","k":"interface","s":"interfaces","m":{"banner_button_dismiss":"banner_button_dismiss"}}],"IDatePickerResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IDatePickerResourceStrings","k":"interface","s":"interfaces","m":{"date_picker_change_date":"date_picker_change_date","date_picker_choose_date":"date_picker_choose_date"}}],"IgrActionStripResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrActionStripResourceStrings","k":"interface","s":"interfaces","m":{"igx_action_strip_button_more_title":"igx_action_strip_button_more_title"}}],"IgrActiveNodeChangeEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrActiveNodeChangeEventArgsDetail","k":"interface","s":"interfaces","m":{"column":"column","level":"level","owner":"owner","row":"row","tag":"tag"}}],"IgrBaseEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrBaseEventArgsDetail","k":"interface","s":"interfaces","m":{"owner":"owner"}}],"IgrBaseExporter":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrBaseExporter","k":"interface","s":"interfaces","m":{"export":"export","exportData":"exportData"}}],"IgrBaseFilteringStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrBaseFilteringStrategy","k":"interface","s":"interfaces","m":{"filter":"filter","findMatchByExpression":"findMatchByExpression","getFilterItems":"getFilterItems","matchRecord":"matchRecord"}}],"IgrBaseSearchInfo":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrBaseSearchInfo","k":"interface","s":"interfaces","m":{"caseSensitive":"caseSensitive","content":"content","exactMatch":"exactMatch","matchCount":"matchCount","searchText":"searchText"}}],"IgrCancelableBrowserEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrCancelableBrowserEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel"}}],"IgrCancelableEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrCancelableEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel"}}],"IgrCellPosition":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrCellPosition","k":"interface","s":"interfaces","m":{"rowIndex":"rowIndex","visibleColumnIndex":"visibleColumnIndex"}}],"IgrCellTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrCellTemplateContext","k":"interface","s":"interfaces","m":{"additionalTemplateContext":"additionalTemplateContext","cell":"cell","implicit":"implicit"}}],"IgrCellType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrCellType","k":"interface","s":"interfaces","m":{"cellID":"cellID","id":"id","readonly":"readonly","title":"title","validation":"validation","visibleColumnIndex":"visibleColumnIndex","active":"active","column":"column","editable":"editable","editMode":"editMode","editValue":"editValue","grid":"grid","row":"row","selected":"selected","value":"value","width":"width","calculateSizeToFit":"calculateSizeToFit","setEditMode":"setEditMode","update":"update"}}],"IgrClipboardOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrClipboardOptions","k":"interface","s":"interfaces","m":{"copyFormatters":"copyFormatters","copyHeaders":"copyHeaders","enabled":"enabled","separator":"separator"}}],"IgrColumnEditorOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnEditorOptions","k":"interface","s":"interfaces","m":{"dateTimeFormat":"dateTimeFormat"}}],"IgrColumnExportingEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnExportingEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","columnIndex":"columnIndex","field":"field","grid":"grid","header":"header","owner":"owner","skipFormatter":"skipFormatter"}}],"IgrColumnMovingEndEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnMovingEndEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","owner":"owner","source":"source","target":"target"}}],"IgrColumnMovingEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnMovingEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","owner":"owner","source":"source"}}],"IgrColumnMovingStartEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnMovingStartEventArgsDetail","k":"interface","s":"interfaces","m":{"owner":"owner","source":"source"}}],"IgrColumnPipeArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnPipeArgs","k":"interface","s":"interfaces","m":{"currencyCode":"currencyCode","digitsInfo":"digitsInfo","display":"display","format":"format","timezone":"timezone","weekStart":"weekStart"}}],"IgrColumnResizeEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnResizeEventArgsDetail","k":"interface","s":"interfaces","m":{"column":"column","newWidth":"newWidth","owner":"owner","prevWidth":"prevWidth"}}],"IgrColumnSelectionEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnSelectionEventArgsDetail","k":"interface","s":"interfaces","m":{"added":"added","cancel":"cancel","newSelection":"newSelection","oldSelection":"oldSelection","owner":"owner","removed":"removed"}}],"IgrColumnState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnState","k":"interface","s":"interfaces","m":{"colEnd":"colEnd","collapsible":"collapsible","colStart":"colStart","columnLayout":"columnLayout","expanded":"expanded","parent":"parent","rowEnd":"rowEnd","rowStart":"rowStart","visibleWhenCollapsed":"visibleWhenCollapsed","columnGroup":"columnGroup","dataType":"dataType","disableHiding":"disableHiding","disablePinning":"disablePinning","editable":"editable","field":"field","filterable":"filterable","filteringIgnoreCase":"filteringIgnoreCase","groupable":"groupable","hasSummary":"hasSummary","header":"header","headerClasses":"headerClasses","headerGroupClasses":"headerGroupClasses","hidden":"hidden","key":"key","maxWidth":"maxWidth","parentKey":"parentKey","pinned":"pinned","resizable":"resizable","searchable":"searchable","sortable":"sortable","sortingIgnoreCase":"sortingIgnoreCase","width":"width"}}],"IgrColumnTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnTemplateContext","k":"interface","s":"interfaces","m":{"column":"column","implicit":"implicit"}}],"IgrColumnToggledEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnToggledEventArgsDetail","k":"interface","s":"interfaces","m":{"checked":"checked","column":"column","owner":"owner"}}],"IgrColumnVisibilityChangedEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnVisibilityChangedEventArgsDetail","k":"interface","s":"interfaces","m":{"column":"column","newValue":"newValue","owner":"owner"}}],"IgrColumnVisibilityChangingEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrColumnVisibilityChangingEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","column":"column","newValue":"newValue"}}],"IgrDataCloneStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrDataCloneStrategy","k":"interface","s":"interfaces","m":{"clone":"clone"}}],"IgrDimensionsChange":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrDimensionsChange","k":"interface","s":"interfaces","m":{"dimensionCollectionType":"dimensionCollectionType","dimensions":"dimensions"}}],"IgrEntityType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrEntityType","k":"interface","s":"interfaces","m":{"childEntities":"childEntities","fields":"fields","name":"name"}}],"IgrExporterEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrExporterEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","exporter":"exporter","grid":"grid","options":"options"}}],"IgrExporterOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrExporterOptions","k":"interface","s":"interfaces"}],"IgrExporterOptionsBase":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrExporterOptionsBase","k":"interface","s":"interfaces","m":{"alwaysExportHeaders":"alwaysExportHeaders","exportSummaries":"exportSummaries","fileName":"fileName","freezeHeaders":"freezeHeaders","ignoreColumnsOrder":"ignoreColumnsOrder","ignoreColumnsVisibility":"ignoreColumnsVisibility","ignoreFiltering":"ignoreFiltering","ignoreGrouping":"ignoreGrouping","ignoreMultiColumnHeaders":"ignoreMultiColumnHeaders","ignoreSorting":"ignoreSorting"}}],"IgrExpressionTree":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrExpressionTree","k":"interface","s":"interfaces","m":{"entity":"entity","fieldName":"fieldName","returnFields":"returnFields","filteringOperands":"filteringOperands","operator":"operator"}}],"IgrFieldEditorOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFieldEditorOptions","k":"interface","s":"interfaces","m":{"dateTimeFormat":"dateTimeFormat"}}],"IgrFieldPipeArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFieldPipeArgs","k":"interface","s":"interfaces","m":{"currencyCode":"currencyCode","digitsInfo":"digitsInfo","display":"display","format":"format","timezone":"timezone","weekStart":"weekStart"}}],"IgrFieldType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFieldType","k":"interface","s":"interfaces","m":{"defaultDateTimeFormat":"defaultDateTimeFormat","defaultTimeFormat":"defaultTimeFormat","editorOptions":"editorOptions","filters":"filters","header":"header","label":"label","pipeArgs":"pipeArgs","dataType":"dataType","field":"field","formatter":"formatter"}}],"IgrFilteringEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFilteringEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","filteringExpressions":"filteringExpressions","owner":"owner"}}],"IgrFilteringExpression":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFilteringExpression","k":"interface","s":"interfaces","m":{"condition":"condition","conditionName":"conditionName","ignoreCase":"ignoreCase","searchTree":"searchTree","searchVal":"searchVal","fieldName":"fieldName"}}],"IgrFilteringOperation":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFilteringOperation","k":"interface","s":"interfaces","m":{"hidden":"hidden","isNestedQuery":"isNestedQuery","logic":"logic","iconName":"iconName","isUnary":"isUnary","name":"name"}}],"IgrFilteringStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFilteringStrategy","k":"interface","s":"interfaces","m":{"filter":"filter","getFilterItems":"getFilterItems"}}],"IgrFilterItem":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrFilterItem","k":"interface","s":"interfaces","m":{"children":"children","label":"label","value":"value"}}],"IgrForOfDataChangeEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrForOfDataChangeEventArgsDetail","k":"interface","s":"interfaces","m":{"containerSize":"containerSize","owner":"owner","state":"state"}}],"IgrForOfDataChangingEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrForOfDataChangingEventArgsDetail","k":"interface","s":"interfaces","m":{"containerSize":"containerSize","owner":"owner","state":"state"}}],"IgrForOfState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrForOfState","k":"interface","s":"interfaces","m":{"chunkSize":"chunkSize","owner":"owner","startIndex":"startIndex"}}],"IgrGridActionsBaseDirective":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridActionsBaseDirective","k":"interface","s":"interfaces","m":{"asMenuItems":"asMenuItems"}}],"IgrGridBaseDirective":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridBaseDirective","k":"interface","s":"interfaces","m":{"actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalRecords":"totalRecords","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow"}}],"IgrGridCellEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridCellEventArgsDetail","k":"interface","s":"interfaces","m":{"cell":"cell","event":"event","owner":"owner"}}],"IgrGridClipboardEvent":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridClipboardEvent","k":"interface","s":"interfaces","m":{"cancel":"cancel","data":"data"}}],"IgrGridContextMenuEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridContextMenuEventArgsDetail","k":"interface","s":"interfaces","m":{"cell":"cell","event":"event","row":"row"}}],"IgrGridCreatedEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridCreatedEventArgsDetail","k":"interface","s":"interfaces","m":{"grid":"grid","owner":"owner","parentID":"parentID","parentRowData":"parentRowData"}}],"IgrGridEditDoneEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridEditDoneEventArgsDetail","k":"interface","s":"interfaces","m":{"cellID":"cellID","column":"column","isAddRow":"isAddRow","newValue":"newValue","oldValue":"oldValue","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowID":"rowID","rowKey":"rowKey","valid":"valid"}}],"IgrGridEditEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridEditEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","cellID":"cellID","column":"column","isAddRow":"isAddRow","newValue":"newValue","oldValue":"oldValue","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowID":"rowID","rowKey":"rowKey","valid":"valid"}}],"IgrGridEmptyTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridEmptyTemplateContext","k":"interface","s":"interfaces"}],"IgrGridFormGroupCreatedEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridFormGroupCreatedEventArgsDetail","k":"interface","s":"interfaces","m":{"owner":"owner"}}],"IgrGridGroupingStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridGroupingStrategy","k":"interface","s":"interfaces","m":{"groupBy":"groupBy","sort":"sort"}}],"IgrGridHeaderTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridHeaderTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridKeydownEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridKeydownEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","event":"event","owner":"owner","target":"target","targetType":"targetType"}}],"IgrGridMasterDetailContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridMasterDetailContext","k":"interface","s":"interfaces","m":{"implicit":"implicit","index":"index"}}],"IgrGridMergeStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridMergeStrategy","k":"interface","s":"interfaces","m":{"comparer":"comparer","merge":"merge"}}],"IgrGridPaginatorTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridPaginatorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridResourceStrings","k":"interface","s":"interfaces","m":{"igx_grid_actions_add_child_label":"igx_grid_actions_add_child_label","igx_grid_actions_add_label":"igx_grid_actions_add_label","igx_grid_actions_delete_label":"igx_grid_actions_delete_label","igx_grid_actions_edit_label":"igx_grid_actions_edit_label","igx_grid_actions_jumpDown_label":"igx_grid_actions_jumpDown_label","igx_grid_actions_jumpUp_label":"igx_grid_actions_jumpUp_label","igx_grid_actions_pin_label":"igx_grid_actions_pin_label","igx_grid_actions_unpin_label":"igx_grid_actions_unpin_label","igx_grid_add_row_label":"igx_grid_add_row_label","igx_grid_advanced_filter_add_condition":"igx_grid_advanced_filter_add_condition","igx_grid_advanced_filter_add_condition_root":"igx_grid_advanced_filter_add_condition_root","igx_grid_advanced_filter_add_group":"igx_grid_advanced_filter_add_group","igx_grid_advanced_filter_add_group_root":"igx_grid_advanced_filter_add_group_root","igx_grid_advanced_filter_and_group":"igx_grid_advanced_filter_and_group","igx_grid_advanced_filter_and_label":"igx_grid_advanced_filter_and_label","igx_grid_advanced_filter_column_placeholder":"igx_grid_advanced_filter_column_placeholder","igx_grid_advanced_filter_create_and_group":"igx_grid_advanced_filter_create_and_group","igx_grid_advanced_filter_create_or_group":"igx_grid_advanced_filter_create_or_group","igx_grid_advanced_filter_delete":"igx_grid_advanced_filter_delete","igx_grid_advanced_filter_delete_filters":"igx_grid_advanced_filter_delete_filters","igx_grid_advanced_filter_dialog_checkbox_text":"igx_grid_advanced_filter_dialog_checkbox_text","igx_grid_advanced_filter_dialog_message":"igx_grid_advanced_filter_dialog_message","igx_grid_advanced_filter_dialog_title":"igx_grid_advanced_filter_dialog_title","igx_grid_advanced_filter_drop_ghost_text":"igx_grid_advanced_filter_drop_ghost_text","igx_grid_advanced_filter_end_group":"igx_grid_advanced_filter_end_group","igx_grid_advanced_filter_from_label":"igx_grid_advanced_filter_from_label","igx_grid_advanced_filter_initial_text":"igx_grid_advanced_filter_initial_text","igx_grid_advanced_filter_or_group":"igx_grid_advanced_filter_or_group","igx_grid_advanced_filter_or_label":"igx_grid_advanced_filter_or_label","igx_grid_advanced_filter_query_value_placeholder":"igx_grid_advanced_filter_query_value_placeholder","igx_grid_advanced_filter_select_entity":"igx_grid_advanced_filter_select_entity","igx_grid_advanced_filter_select_return_field_single":"igx_grid_advanced_filter_select_return_field_single","igx_grid_advanced_filter_switch_group":"igx_grid_advanced_filter_switch_group","igx_grid_advanced_filter_title":"igx_grid_advanced_filter_title","igx_grid_advanced_filter_ungroup":"igx_grid_advanced_filter_ungroup","igx_grid_advanced_filter_value_placeholder":"igx_grid_advanced_filter_value_placeholder","igx_grid_complex_filter":"igx_grid_complex_filter","igx_grid_disabled_date_validation_error":"igx_grid_disabled_date_validation_error","igx_grid_email_validation_error":"igx_grid_email_validation_error","igx_grid_emptyFilteredGrid_message":"igx_grid_emptyFilteredGrid_message","igx_grid_emptyGrid_message":"igx_grid_emptyGrid_message","igx_grid_excel_add_to_filter":"igx_grid_excel_add_to_filter","igx_grid_excel_apply":"igx_grid_excel_apply","igx_grid_excel_blanks":"igx_grid_excel_blanks","igx_grid_excel_boolean_filter":"igx_grid_excel_boolean_filter","igx_grid_excel_cancel":"igx_grid_excel_cancel","igx_grid_excel_currency_filter":"igx_grid_excel_currency_filter","igx_grid_excel_custom_dialog_add":"igx_grid_excel_custom_dialog_add","igx_grid_excel_custom_dialog_clear":"igx_grid_excel_custom_dialog_clear","igx_grid_excel_custom_dialog_header":"igx_grid_excel_custom_dialog_header","igx_grid_excel_custom_filter":"igx_grid_excel_custom_filter","igx_grid_excel_date_filter":"igx_grid_excel_date_filter","igx_grid_excel_deselect":"igx_grid_excel_deselect","igx_grid_excel_filter_clear":"igx_grid_excel_filter_clear","igx_grid_excel_filter_moving_header":"igx_grid_excel_filter_moving_header","igx_grid_excel_filter_moving_left":"igx_grid_excel_filter_moving_left","igx_grid_excel_filter_moving_left_short":"igx_grid_excel_filter_moving_left_short","igx_grid_excel_filter_moving_right":"igx_grid_excel_filter_moving_right","igx_grid_excel_filter_moving_right_short":"igx_grid_excel_filter_moving_right_short","igx_grid_excel_filter_sorting_asc":"igx_grid_excel_filter_sorting_asc","igx_grid_excel_filter_sorting_asc_short":"igx_grid_excel_filter_sorting_asc_short","igx_grid_excel_filter_sorting_desc":"igx_grid_excel_filter_sorting_desc","igx_grid_excel_filter_sorting_desc_short":"igx_grid_excel_filter_sorting_desc_short","igx_grid_excel_filter_sorting_header":"igx_grid_excel_filter_sorting_header","igx_grid_excel_hide":"igx_grid_excel_hide","igx_grid_excel_matches_count":"igx_grid_excel_matches_count","igx_grid_excel_no_matches":"igx_grid_excel_no_matches","igx_grid_excel_number_filter":"igx_grid_excel_number_filter","igx_grid_excel_pin":"igx_grid_excel_pin","igx_grid_excel_search_placeholder":"igx_grid_excel_search_placeholder","igx_grid_excel_select":"igx_grid_excel_select","igx_grid_excel_select_all":"igx_grid_excel_select_all","igx_grid_excel_select_all_search_results":"igx_grid_excel_select_all_search_results","igx_grid_excel_show":"igx_grid_excel_show","igx_grid_excel_text_filter":"igx_grid_excel_text_filter","igx_grid_excel_unpin":"igx_grid_excel_unpin","igx_grid_filter":"igx_grid_filter","igx_grid_filter_after":"igx_grid_filter_after","igx_grid_filter_all":"igx_grid_filter_all","igx_grid_filter_at":"igx_grid_filter_at","igx_grid_filter_at_after":"igx_grid_filter_at_after","igx_grid_filter_at_before":"igx_grid_filter_at_before","igx_grid_filter_before":"igx_grid_filter_before","igx_grid_filter_condition_placeholder":"igx_grid_filter_condition_placeholder","igx_grid_filter_contains":"igx_grid_filter_contains","igx_grid_filter_doesNotContain":"igx_grid_filter_doesNotContain","igx_grid_filter_doesNotEqual":"igx_grid_filter_doesNotEqual","igx_grid_filter_empty":"igx_grid_filter_empty","igx_grid_filter_endsWith":"igx_grid_filter_endsWith","igx_grid_filter_equals":"igx_grid_filter_equals","igx_grid_filter_false":"igx_grid_filter_false","igx_grid_filter_greaterThan":"igx_grid_filter_greaterThan","igx_grid_filter_greaterThanOrEqualTo":"igx_grid_filter_greaterThanOrEqualTo","igx_grid_filter_in":"igx_grid_filter_in","igx_grid_filter_lastMonth":"igx_grid_filter_lastMonth","igx_grid_filter_lastYear":"igx_grid_filter_lastYear","igx_grid_filter_lessThan":"igx_grid_filter_lessThan","igx_grid_filter_lessThanOrEqualTo":"igx_grid_filter_lessThanOrEqualTo","igx_grid_filter_nextMonth":"igx_grid_filter_nextMonth","igx_grid_filter_nextYear":"igx_grid_filter_nextYear","igx_grid_filter_not_at":"igx_grid_filter_not_at","igx_grid_filter_notEmpty":"igx_grid_filter_notEmpty","igx_grid_filter_notIn":"igx_grid_filter_notIn","igx_grid_filter_notNull":"igx_grid_filter_notNull","igx_grid_filter_null":"igx_grid_filter_null","igx_grid_filter_operator_and":"igx_grid_filter_operator_and","igx_grid_filter_operator_or":"igx_grid_filter_operator_or","igx_grid_filter_row_boolean_placeholder":"igx_grid_filter_row_boolean_placeholder","igx_grid_filter_row_close":"igx_grid_filter_row_close","igx_grid_filter_row_date_placeholder":"igx_grid_filter_row_date_placeholder","igx_grid_filter_row_placeholder":"igx_grid_filter_row_placeholder","igx_grid_filter_row_reset":"igx_grid_filter_row_reset","igx_grid_filter_row_time_placeholder":"igx_grid_filter_row_time_placeholder","igx_grid_filter_startsWith":"igx_grid_filter_startsWith","igx_grid_filter_thisMonth":"igx_grid_filter_thisMonth","igx_grid_filter_thisYear":"igx_grid_filter_thisYear","igx_grid_filter_today":"igx_grid_filter_today","igx_grid_filter_true":"igx_grid_filter_true","igx_grid_filter_yesterday":"igx_grid_filter_yesterday","igx_grid_groupByArea_deselect_message":"igx_grid_groupByArea_deselect_message","igx_grid_groupByArea_message":"igx_grid_groupByArea_message","igx_grid_groupByArea_select_message":"igx_grid_groupByArea_select_message","igx_grid_hiding_check_all_label":"igx_grid_hiding_check_all_label","igx_grid_hiding_uncheck_all_label":"igx_grid_hiding_uncheck_all_label","igx_grid_mask_validation_error":"igx_grid_mask_validation_error","igx_grid_max_length_validation_error":"igx_grid_max_length_validation_error","igx_grid_max_validation_error":"igx_grid_max_validation_error","igx_grid_min_length_validation_error":"igx_grid_min_length_validation_error","igx_grid_min_validation_error":"igx_grid_min_validation_error","igx_grid_pattern_validation_error":"igx_grid_pattern_validation_error","igx_grid_pinned_row_indicator":"igx_grid_pinned_row_indicator","igx_grid_pinning_check_all_label":"igx_grid_pinning_check_all_label","igx_grid_pinning_uncheck_all_label":"igx_grid_pinning_uncheck_all_label","igx_grid_pivot_aggregate_avg":"igx_grid_pivot_aggregate_avg","igx_grid_pivot_aggregate_count":"igx_grid_pivot_aggregate_count","igx_grid_pivot_aggregate_date_earliest":"igx_grid_pivot_aggregate_date_earliest","igx_grid_pivot_aggregate_date_latest":"igx_grid_pivot_aggregate_date_latest","igx_grid_pivot_aggregate_max":"igx_grid_pivot_aggregate_max","igx_grid_pivot_aggregate_min":"igx_grid_pivot_aggregate_min","igx_grid_pivot_aggregate_sum":"igx_grid_pivot_aggregate_sum","igx_grid_pivot_aggregate_time_earliest":"igx_grid_pivot_aggregate_time_earliest","igx_grid_pivot_aggregate_time_latest":"igx_grid_pivot_aggregate_time_latest","igx_grid_pivot_column_drop_chip":"igx_grid_pivot_column_drop_chip","igx_grid_pivot_date_dimension_total":"igx_grid_pivot_date_dimension_total","igx_grid_pivot_empty_column_drop_area":"igx_grid_pivot_empty_column_drop_area","igx_grid_pivot_empty_filter_drop_area":"igx_grid_pivot_empty_filter_drop_area","igx_grid_pivot_empty_message":"igx_grid_pivot_empty_message","igx_grid_pivot_empty_row_drop_area":"igx_grid_pivot_empty_row_drop_area","igx_grid_pivot_empty_value_drop_area":"igx_grid_pivot_empty_value_drop_area","igx_grid_pivot_filter_drop_chip":"igx_grid_pivot_filter_drop_chip","igx_grid_pivot_row_drop_chip":"igx_grid_pivot_row_drop_chip","igx_grid_pivot_selector_columns":"igx_grid_pivot_selector_columns","igx_grid_pivot_selector_filters":"igx_grid_pivot_selector_filters","igx_grid_pivot_selector_panel_empty":"igx_grid_pivot_selector_panel_empty","igx_grid_pivot_selector_rows":"igx_grid_pivot_selector_rows","igx_grid_pivot_selector_values":"igx_grid_pivot_selector_values","igx_grid_pivot_value_drop_chip":"igx_grid_pivot_value_drop_chip","igx_grid_required_validation_error":"igx_grid_required_validation_error","igx_grid_row_edit_btn_cancel":"igx_grid_row_edit_btn_cancel","igx_grid_row_edit_btn_done":"igx_grid_row_edit_btn_done","igx_grid_row_edit_text":"igx_grid_row_edit_text","igx_grid_snackbar_addrow_actiontext":"igx_grid_snackbar_addrow_actiontext","igx_grid_snackbar_addrow_label":"igx_grid_snackbar_addrow_label","igx_grid_summary_average":"igx_grid_summary_average","igx_grid_summary_count":"igx_grid_summary_count","igx_grid_summary_earliest":"igx_grid_summary_earliest","igx_grid_summary_latest":"igx_grid_summary_latest","igx_grid_summary_max":"igx_grid_summary_max","igx_grid_summary_min":"igx_grid_summary_min","igx_grid_summary_sum":"igx_grid_summary_sum","igx_grid_toolbar_actions_filter_prompt":"igx_grid_toolbar_actions_filter_prompt","igx_grid_toolbar_advanced_filtering_button_label":"igx_grid_toolbar_advanced_filtering_button_label","igx_grid_toolbar_advanced_filtering_button_tooltip":"igx_grid_toolbar_advanced_filtering_button_tooltip","igx_grid_toolbar_exporter_button_label":"igx_grid_toolbar_exporter_button_label","igx_grid_toolbar_exporter_button_tooltip":"igx_grid_toolbar_exporter_button_tooltip","igx_grid_toolbar_exporter_csv_entry_text":"igx_grid_toolbar_exporter_csv_entry_text","igx_grid_toolbar_exporter_excel_entry_text":"igx_grid_toolbar_exporter_excel_entry_text","igx_grid_toolbar_exporter_pdf_entry_text":"igx_grid_toolbar_exporter_pdf_entry_text","igx_grid_toolbar_hiding_button_tooltip":"igx_grid_toolbar_hiding_button_tooltip","igx_grid_toolbar_hiding_title":"igx_grid_toolbar_hiding_title","igx_grid_toolbar_pinning_button_tooltip":"igx_grid_toolbar_pinning_button_tooltip","igx_grid_toolbar_pinning_title":"igx_grid_toolbar_pinning_title","igx_grid_url_validation_error":"igx_grid_url_validation_error"}}],"IgrGridRowComponent":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridRowComponent","k":"interface","s":"interfaces","m":{"addRowUI":"addRowUI","cells":"cells","data":"data","dataRowIndex":"dataRowIndex","disabled":"disabled","expanded":"expanded","hasMergedCells":"hasMergedCells","index":"index","inEditMode":"inEditMode","key":"key","pinned":"pinned","rowHeight":"rowHeight","beginAddRow":"beginAddRow","delete":"delete","getContext":"getContext","getContextMRL":"getContextMRL","isCellActive":"isCellActive","pin":"pin","unpin":"unpin","update":"update"}}],"IgrGridRowDragGhostContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridRowDragGhostContext","k":"interface","s":"interfaces","m":{"data":"data","grid":"grid","implicit":"implicit"}}],"IgrGridRowEditActionsTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridRowEditActionsTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridRowEditTextTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridRowEditTextTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridRowEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridRowEventArgsDetail","k":"interface","s":"interfaces","m":{"event":"event","owner":"owner","row":"row"}}],"IgrGridRowTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridRowTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridScrollEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridScrollEventArgsDetail","k":"interface","s":"interfaces","m":{"direction":"direction","event":"event","owner":"owner","scrollPosition":"scrollPosition"}}],"IgrGridSelectionRange":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridSelectionRange","k":"interface","s":"interfaces","m":{"columnEnd":"columnEnd","columnStart":"columnStart","rowEnd":"rowEnd","rowStart":"rowStart"}}],"IgrGridSortingStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridSortingStrategy","k":"interface","s":"interfaces","m":{"sort":"sort"}}],"IgrGridStateBaseDirective":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridStateBaseDirective","k":"interface","s":"interfaces","m":{"options":"options"}}],"IgrGridStateCollection":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridStateCollection","k":"interface","s":"interfaces","m":{"id":"id","parentRowID":"parentRowID","state":"state"}}],"IgrGridStateInfo":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridStateInfo","k":"interface","s":"interfaces","m":{"advancedFiltering":"advancedFiltering","cellSelection":"cellSelection","columns":"columns","columnSelection":"columnSelection","expansion":"expansion","filtering":"filtering","groupBy":"groupBy","id":"id","moving":"moving","paging":"paging","pinningConfig":"pinningConfig","pivotConfiguration":"pivotConfiguration","rowIslands":"rowIslands","rowPinning":"rowPinning","rowSelection":"rowSelection","sorting":"sorting"}}],"IgrGridStateOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridStateOptions","k":"interface","s":"interfaces","m":{"advancedFiltering":"advancedFiltering","cellSelection":"cellSelection","columns":"columns","columnSelection":"columnSelection","expansion":"expansion","filtering":"filtering","groupBy":"groupBy","moving":"moving","paging":"paging","pinningConfig":"pinningConfig","pivotConfiguration":"pivotConfiguration","rowIslands":"rowIslands","rowPinning":"rowPinning","rowSelection":"rowSelection","sorting":"sorting"}}],"IgrGridTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridToolbarExportEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridToolbarExportEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","exporter":"exporter","grid":"grid","options":"options","owner":"owner"}}],"IgrGridToolbarTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridToolbarTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGridValidationState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridValidationState","k":"interface","s":"interfaces","m":{"errors":"errors","status":"status"}}],"IgrGridValidationStatusEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGridValidationStatusEventArgsDetail","k":"interface","s":"interfaces","m":{"owner":"owner","status":"status"}}],"IgrGroupByExpandState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByExpandState","k":"interface","s":"interfaces","m":{"expanded":"expanded","hierarchy":"hierarchy"}}],"IgrGroupByKey":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByKey","k":"interface","s":"interfaces","m":{"fieldName":"fieldName","value":"value"}}],"IgrGroupByRecord":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByRecord","k":"interface","s":"interfaces","m":{"column":"column","groups":"groups","expression":"expression","groupParent":"groupParent","height":"height","level":"level","records":"records","value":"value"}}],"IgrGroupByResult":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByResult","k":"interface","s":"interfaces","m":{"data":"data","metadata":"metadata"}}],"IgrGroupByRowSelectorTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByRowSelectorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGroupByRowSelectorTemplateDetails":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByRowSelectorTemplateDetails","k":"interface","s":"interfaces","m":{"groupRow":"groupRow","selectedCount":"selectedCount","totalCount":"totalCount"}}],"IgrGroupByRowTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupByRowTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrGroupingDoneEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupingDoneEventArgsDetail","k":"interface","s":"interfaces","m":{"expressions":"expressions","groupedColumns":"groupedColumns","owner":"owner","ungroupedColumns":"ungroupedColumns"}}],"IgrGroupingExpression":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupingExpression","k":"interface","s":"interfaces","m":{"ignoreCase":"ignoreCase","owner":"owner","strategy":"strategy","dir":"dir","fieldName":"fieldName","groupingComparer":"groupingComparer"}}],"IgrGroupingState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrGroupingState","k":"interface","s":"interfaces","m":{"defaultExpanded":"defaultExpanded","expansion":"expansion","expressions":"expressions"}}],"IgrHeaderType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrHeaderType","k":"interface","s":"interfaces","m":{"column":"column","selectable":"selectable","selected":"selected","sortDirection":"sortDirection","sorted":"sorted","title":"title"}}],"IgrHeadSelectorTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrHeadSelectorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrHeadSelectorTemplateDetails":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrHeadSelectorTemplateDetails","k":"interface","s":"interfaces","m":{"selectedCount":"selectedCount","totalCount":"totalCount","deselectAll":"deselectAll","selectAll":"selectAll"}}],"IgrHierarchicalGridBaseDirective":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrHierarchicalGridBaseDirective","k":"interface","s":"interfaces","m":{"actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","hasChildrenKey":"hasChildrenKey","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rootGrid":"rootGrid","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showExpandAll":"showExpandAll","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalRecords":"totalRecords","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow"}}],"IGridResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IGridResourceStrings","k":"interface","s":"interfaces","m":{"grid_actions_add_child_label":"grid_actions_add_child_label","grid_actions_add_label":"grid_actions_add_label","grid_actions_delete_label":"grid_actions_delete_label","grid_actions_edit_label":"grid_actions_edit_label","grid_actions_jumpDown_label":"grid_actions_jumpDown_label","grid_actions_jumpUp_label":"grid_actions_jumpUp_label","grid_actions_pin_label":"grid_actions_pin_label","grid_actions_unpin_label":"grid_actions_unpin_label","grid_add_row_label":"grid_add_row_label","grid_advanced_filter_add_condition":"grid_advanced_filter_add_condition","grid_advanced_filter_add_condition_root":"grid_advanced_filter_add_condition_root","grid_advanced_filter_add_group":"grid_advanced_filter_add_group","grid_advanced_filter_add_group_root":"grid_advanced_filter_add_group_root","grid_advanced_filter_and_group":"grid_advanced_filter_and_group","grid_advanced_filter_and_label":"grid_advanced_filter_and_label","grid_advanced_filter_column_placeholder":"grid_advanced_filter_column_placeholder","grid_advanced_filter_create_and_group":"grid_advanced_filter_create_and_group","grid_advanced_filter_create_or_group":"grid_advanced_filter_create_or_group","grid_advanced_filter_delete":"grid_advanced_filter_delete","grid_advanced_filter_delete_filters":"grid_advanced_filter_delete_filters","grid_advanced_filter_dialog_checkbox_text":"grid_advanced_filter_dialog_checkbox_text","grid_advanced_filter_dialog_message":"grid_advanced_filter_dialog_message","grid_advanced_filter_dialog_title":"grid_advanced_filter_dialog_title","grid_advanced_filter_drop_ghost_text":"grid_advanced_filter_drop_ghost_text","grid_advanced_filter_end_group":"grid_advanced_filter_end_group","grid_advanced_filter_from_label":"grid_advanced_filter_from_label","grid_advanced_filter_initial_text":"grid_advanced_filter_initial_text","grid_advanced_filter_or_group":"grid_advanced_filter_or_group","grid_advanced_filter_or_label":"grid_advanced_filter_or_label","grid_advanced_filter_query_value_placeholder":"grid_advanced_filter_query_value_placeholder","grid_advanced_filter_select_entity":"grid_advanced_filter_select_entity","grid_advanced_filter_select_return_field_single":"grid_advanced_filter_select_return_field_single","grid_advanced_filter_switch_group":"grid_advanced_filter_switch_group","grid_advanced_filter_title":"grid_advanced_filter_title","grid_advanced_filter_ungroup":"grid_advanced_filter_ungroup","grid_advanced_filter_value_placeholder":"grid_advanced_filter_value_placeholder","grid_complex_filter":"grid_complex_filter","grid_disabled_date_validation_error":"grid_disabled_date_validation_error","grid_email_validation_error":"grid_email_validation_error","grid_emptyFilteredGrid_message":"grid_emptyFilteredGrid_message","grid_emptyGrid_message":"grid_emptyGrid_message","grid_excel_add_to_filter":"grid_excel_add_to_filter","grid_excel_apply":"grid_excel_apply","grid_excel_blanks":"grid_excel_blanks","grid_excel_boolean_filter":"grid_excel_boolean_filter","grid_excel_cancel":"grid_excel_cancel","grid_excel_currency_filter":"grid_excel_currency_filter","grid_excel_custom_dialog_add":"grid_excel_custom_dialog_add","grid_excel_custom_dialog_clear":"grid_excel_custom_dialog_clear","grid_excel_custom_dialog_header":"grid_excel_custom_dialog_header","grid_excel_custom_filter":"grid_excel_custom_filter","grid_excel_date_filter":"grid_excel_date_filter","grid_excel_deselect":"grid_excel_deselect","grid_excel_filter_clear":"grid_excel_filter_clear","grid_excel_filter_moving_header":"grid_excel_filter_moving_header","grid_excel_filter_moving_left":"grid_excel_filter_moving_left","grid_excel_filter_moving_left_short":"grid_excel_filter_moving_left_short","grid_excel_filter_moving_right":"grid_excel_filter_moving_right","grid_excel_filter_moving_right_short":"grid_excel_filter_moving_right_short","grid_excel_filter_sorting_asc":"grid_excel_filter_sorting_asc","grid_excel_filter_sorting_asc_short":"grid_excel_filter_sorting_asc_short","grid_excel_filter_sorting_desc":"grid_excel_filter_sorting_desc","grid_excel_filter_sorting_desc_short":"grid_excel_filter_sorting_desc_short","grid_excel_filter_sorting_header":"grid_excel_filter_sorting_header","grid_excel_hide":"grid_excel_hide","grid_excel_matches_count":"grid_excel_matches_count","grid_excel_no_matches":"grid_excel_no_matches","grid_excel_number_filter":"grid_excel_number_filter","grid_excel_pin":"grid_excel_pin","grid_excel_search_placeholder":"grid_excel_search_placeholder","grid_excel_select":"grid_excel_select","grid_excel_select_all":"grid_excel_select_all","grid_excel_select_all_search_results":"grid_excel_select_all_search_results","grid_excel_show":"grid_excel_show","grid_excel_text_filter":"grid_excel_text_filter","grid_excel_unpin":"grid_excel_unpin","grid_filter":"grid_filter","grid_filter_after":"grid_filter_after","grid_filter_all":"grid_filter_all","grid_filter_at":"grid_filter_at","grid_filter_at_after":"grid_filter_at_after","grid_filter_at_before":"grid_filter_at_before","grid_filter_before":"grid_filter_before","grid_filter_condition_placeholder":"grid_filter_condition_placeholder","grid_filter_contains":"grid_filter_contains","grid_filter_doesNotContain":"grid_filter_doesNotContain","grid_filter_doesNotEqual":"grid_filter_doesNotEqual","grid_filter_empty":"grid_filter_empty","grid_filter_endsWith":"grid_filter_endsWith","grid_filter_equals":"grid_filter_equals","grid_filter_false":"grid_filter_false","grid_filter_greaterThan":"grid_filter_greaterThan","grid_filter_greaterThanOrEqualTo":"grid_filter_greaterThanOrEqualTo","grid_filter_in":"grid_filter_in","grid_filter_lastMonth":"grid_filter_lastMonth","grid_filter_lastYear":"grid_filter_lastYear","grid_filter_lessThan":"grid_filter_lessThan","grid_filter_lessThanOrEqualTo":"grid_filter_lessThanOrEqualTo","grid_filter_nextMonth":"grid_filter_nextMonth","grid_filter_nextYear":"grid_filter_nextYear","grid_filter_not_at":"grid_filter_not_at","grid_filter_notEmpty":"grid_filter_notEmpty","grid_filter_notIn":"grid_filter_notIn","grid_filter_notNull":"grid_filter_notNull","grid_filter_null":"grid_filter_null","grid_filter_operator_and":"grid_filter_operator_and","grid_filter_operator_or":"grid_filter_operator_or","grid_filter_row_boolean_placeholder":"grid_filter_row_boolean_placeholder","grid_filter_row_close":"grid_filter_row_close","grid_filter_row_date_placeholder":"grid_filter_row_date_placeholder","grid_filter_row_placeholder":"grid_filter_row_placeholder","grid_filter_row_reset":"grid_filter_row_reset","grid_filter_row_time_placeholder":"grid_filter_row_time_placeholder","grid_filter_startsWith":"grid_filter_startsWith","grid_filter_thisMonth":"grid_filter_thisMonth","grid_filter_thisYear":"grid_filter_thisYear","grid_filter_today":"grid_filter_today","grid_filter_true":"grid_filter_true","grid_filter_yesterday":"grid_filter_yesterday","grid_groupByArea_deselect_message":"grid_groupByArea_deselect_message","grid_groupByArea_message":"grid_groupByArea_message","grid_groupByArea_select_message":"grid_groupByArea_select_message","grid_hiding_check_all_label":"grid_hiding_check_all_label","grid_hiding_uncheck_all_label":"grid_hiding_uncheck_all_label","grid_mask_validation_error":"grid_mask_validation_error","grid_max_length_validation_error":"grid_max_length_validation_error","grid_max_validation_error":"grid_max_validation_error","grid_min_length_validation_error":"grid_min_length_validation_error","grid_min_validation_error":"grid_min_validation_error","grid_pattern_validation_error":"grid_pattern_validation_error","grid_pinned_row_indicator":"grid_pinned_row_indicator","grid_pinning_check_all_label":"grid_pinning_check_all_label","grid_pinning_uncheck_all_label":"grid_pinning_uncheck_all_label","grid_pivot_aggregate_avg":"grid_pivot_aggregate_avg","grid_pivot_aggregate_count":"grid_pivot_aggregate_count","grid_pivot_aggregate_date_earliest":"grid_pivot_aggregate_date_earliest","grid_pivot_aggregate_date_latest":"grid_pivot_aggregate_date_latest","grid_pivot_aggregate_max":"grid_pivot_aggregate_max","grid_pivot_aggregate_min":"grid_pivot_aggregate_min","grid_pivot_aggregate_sum":"grid_pivot_aggregate_sum","grid_pivot_aggregate_time_earliest":"grid_pivot_aggregate_time_earliest","grid_pivot_aggregate_time_latest":"grid_pivot_aggregate_time_latest","grid_pivot_column_drop_chip":"grid_pivot_column_drop_chip","grid_pivot_date_dimension_total":"grid_pivot_date_dimension_total","grid_pivot_empty_column_drop_area":"grid_pivot_empty_column_drop_area","grid_pivot_empty_filter_drop_area":"grid_pivot_empty_filter_drop_area","grid_pivot_empty_message":"grid_pivot_empty_message","grid_pivot_empty_row_drop_area":"grid_pivot_empty_row_drop_area","grid_pivot_empty_value_drop_area":"grid_pivot_empty_value_drop_area","grid_pivot_filter_drop_chip":"grid_pivot_filter_drop_chip","grid_pivot_row_drop_chip":"grid_pivot_row_drop_chip","grid_pivot_selector_columns":"grid_pivot_selector_columns","grid_pivot_selector_filters":"grid_pivot_selector_filters","grid_pivot_selector_panel_empty":"grid_pivot_selector_panel_empty","grid_pivot_selector_rows":"grid_pivot_selector_rows","grid_pivot_selector_values":"grid_pivot_selector_values","grid_pivot_value_drop_chip":"grid_pivot_value_drop_chip","grid_required_validation_error":"grid_required_validation_error","grid_row_edit_btn_cancel":"grid_row_edit_btn_cancel","grid_row_edit_btn_done":"grid_row_edit_btn_done","grid_row_edit_text":"grid_row_edit_text","grid_snackbar_addrow_actiontext":"grid_snackbar_addrow_actiontext","grid_snackbar_addrow_label":"grid_snackbar_addrow_label","grid_summary_average":"grid_summary_average","grid_summary_count":"grid_summary_count","grid_summary_earliest":"grid_summary_earliest","grid_summary_latest":"grid_summary_latest","grid_summary_max":"grid_summary_max","grid_summary_min":"grid_summary_min","grid_summary_sum":"grid_summary_sum","grid_toolbar_actions_filter_prompt":"grid_toolbar_actions_filter_prompt","grid_toolbar_advanced_filtering_button_label":"grid_toolbar_advanced_filtering_button_label","grid_toolbar_advanced_filtering_button_tooltip":"grid_toolbar_advanced_filtering_button_tooltip","grid_toolbar_exporter_button_label":"grid_toolbar_exporter_button_label","grid_toolbar_exporter_button_tooltip":"grid_toolbar_exporter_button_tooltip","grid_toolbar_exporter_csv_entry_text":"grid_toolbar_exporter_csv_entry_text","grid_toolbar_exporter_excel_entry_text":"grid_toolbar_exporter_excel_entry_text","grid_toolbar_exporter_pdf_entry_text":"grid_toolbar_exporter_pdf_entry_text","grid_toolbar_hiding_button_tooltip":"grid_toolbar_hiding_button_tooltip","grid_toolbar_hiding_title":"grid_toolbar_hiding_title","grid_toolbar_pinning_button_tooltip":"grid_toolbar_pinning_button_tooltip","grid_toolbar_pinning_title":"grid_toolbar_pinning_title","grid_url_validation_error":"grid_url_validation_error"}}],"IgrOverlayOutletDirective":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrOverlayOutletDirective","k":"interface","s":"interfaces"}],"IgrOverlaySettings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrOverlaySettings","k":"interface","s":"interfaces","m":{"closeOnEscape":"closeOnEscape","closeOnOutsideClick":"closeOnOutsideClick","modal":"modal","positionStrategy":"positionStrategy","scrollStrategy":"scrollStrategy","target":"target"}}],"IgrPageCancellableEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPageCancellableEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","current":"current","next":"next"}}],"IgrPageEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPageEventArgsDetail","k":"interface","s":"interfaces","m":{"current":"current","owner":"owner","previous":"previous"}}],"IgrPaginatorResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPaginatorResourceStrings","k":"interface","s":"interfaces","m":{"igx_paginator_first_page_button_text":"igx_paginator_first_page_button_text","igx_paginator_label":"igx_paginator_label","igx_paginator_last_page_button_text":"igx_paginator_last_page_button_text","igx_paginator_next_page_button_text":"igx_paginator_next_page_button_text","igx_paginator_pager_text":"igx_paginator_pager_text","igx_paginator_previous_page_button_text":"igx_paginator_previous_page_button_text"}}],"IgrPagingState":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPagingState","k":"interface","s":"interfaces","m":{"index":"index","recordsPerPage":"recordsPerPage"}}],"IgrPinColumnCancellableEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPinColumnCancellableEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","column":"column","insertAtIndex":"insertAtIndex","isPinned":"isPinned"}}],"IgrPinColumnEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPinColumnEventArgsDetail","k":"interface","s":"interfaces","m":{"column":"column","insertAtIndex":"insertAtIndex","isPinned":"isPinned","owner":"owner"}}],"IgrPinningConfig":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPinningConfig","k":"interface","s":"interfaces","m":{"columns":"columns","rows":"rows"}}],"IgrPinRowEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPinRowEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","insertAtIndex":"insertAtIndex","isPinned":"isPinned","owner":"owner","row":"row","rowID":"rowID","rowKey":"rowKey"}}],"IgrPivotAggregator":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotAggregator","k":"interface","s":"interfaces","m":{"aggregator":"aggregator","aggregatorName":"aggregatorName","key":"key","label":"label"}}],"IgrPivotConfiguration":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotConfiguration","k":"interface","s":"interfaces","m":{"columnStrategy":"columnStrategy","filters":"filters","pivotKeys":"pivotKeys","rowStrategy":"rowStrategy","columns":"columns","rows":"rows","values":"values"}}],"IgrPivotConfigurationChangedEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotConfigurationChangedEventArgsDetail","k":"interface","s":"interfaces","m":{"pivotConfiguration":"pivotConfiguration"}}],"IgrPivotDateDimensionOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotDateDimensionOptions","k":"interface","s":"interfaces","m":{"fullDate":"fullDate","months":"months","quarters":"quarters","total":"total","years":"years"}}],"IgrPivotDimension":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotDimension","k":"interface","s":"interfaces","m":{"childLevel":"childLevel","dataType":"dataType","displayName":"displayName","filter":"filter","horizontalSummary":"horizontalSummary","level":"level","memberFunction":"memberFunction","sortable":"sortable","sortDirection":"sortDirection","width":"width","enabled":"enabled","memberName":"memberName"}}],"IgrPivotDimensionStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotDimensionStrategy","k":"interface","s":"interfaces","m":{"process":"process"}}],"IgrPivotGridColumn":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotGridColumn","k":"interface","s":"interfaces","m":{"dimensions":"dimensions","field":"field","value":"value"}}],"IgrPivotGridRecord":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotGridRecord","k":"interface","s":"interfaces","m":{"dataIndex":"dataIndex","level":"level","records":"records","totalRecordDimensionName":"totalRecordDimensionName","dimensions":"dimensions"}}],"IgrPivotGridValueTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotGridValueTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrPivotKeys":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotKeys","k":"interface","s":"interfaces","m":{"aggregations":"aggregations","children":"children","columnDimensionSeparator":"columnDimensionSeparator","level":"level","records":"records","rowDimensionSeparator":"rowDimensionSeparator"}}],"IgrPivotUISettings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotUISettings","k":"interface","s":"interfaces","m":{"horizontalSummariesPosition":"horizontalSummariesPosition","rowLayout":"rowLayout","showConfiguration":"showConfiguration","showRowHeaders":"showRowHeaders"}}],"IgrPivotValue":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPivotValue","k":"interface","s":"interfaces","m":{"aggregateList":"aggregateList","dataType":"dataType","displayName":"displayName","formatter":"formatter","styles":"styles","aggregate":"aggregate","enabled":"enabled","member":"member"}}],"IgrPositionSettings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPositionSettings","k":"interface","s":"interfaces","m":{"horizontalDirection":"horizontalDirection","horizontalStartPoint":"horizontalStartPoint","minSize":"minSize","offset":"offset","verticalDirection":"verticalDirection","verticalStartPoint":"verticalStartPoint"}}],"IgrPositionStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrPositionStrategy","k":"interface","s":"interfaces","m":{"settings":"settings","clone":"clone"}}],"IgrQueryBuilderResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrQueryBuilderResourceStrings","k":"interface","s":"interfaces","m":{"igx_query_builder_add_condition":"igx_query_builder_add_condition","igx_query_builder_add_condition_root":"igx_query_builder_add_condition_root","igx_query_builder_add_group":"igx_query_builder_add_group","igx_query_builder_add_group_root":"igx_query_builder_add_group_root","igx_query_builder_all_fields":"igx_query_builder_all_fields","igx_query_builder_and_group":"igx_query_builder_and_group","igx_query_builder_and_label":"igx_query_builder_and_label","igx_query_builder_column_placeholder":"igx_query_builder_column_placeholder","igx_query_builder_condition_placeholder":"igx_query_builder_condition_placeholder","igx_query_builder_date_placeholder":"igx_query_builder_date_placeholder","igx_query_builder_datetime_placeholder":"igx_query_builder_datetime_placeholder","igx_query_builder_delete":"igx_query_builder_delete","igx_query_builder_delete_filters":"igx_query_builder_delete_filters","igx_query_builder_details":"igx_query_builder_details","igx_query_builder_dialog_cancel":"igx_query_builder_dialog_cancel","igx_query_builder_dialog_checkbox_text":"igx_query_builder_dialog_checkbox_text","igx_query_builder_dialog_confirm":"igx_query_builder_dialog_confirm","igx_query_builder_dialog_message":"igx_query_builder_dialog_message","igx_query_builder_dialog_title":"igx_query_builder_dialog_title","igx_query_builder_drop_ghost_text":"igx_query_builder_drop_ghost_text","igx_query_builder_end_group":"igx_query_builder_end_group","igx_query_builder_filter_after":"igx_query_builder_filter_after","igx_query_builder_filter_all":"igx_query_builder_filter_all","igx_query_builder_filter_at":"igx_query_builder_filter_at","igx_query_builder_filter_at_after":"igx_query_builder_filter_at_after","igx_query_builder_filter_at_before":"igx_query_builder_filter_at_before","igx_query_builder_filter_before":"igx_query_builder_filter_before","igx_query_builder_filter_contains":"igx_query_builder_filter_contains","igx_query_builder_filter_doesNotContain":"igx_query_builder_filter_doesNotContain","igx_query_builder_filter_doesNotEqual":"igx_query_builder_filter_doesNotEqual","igx_query_builder_filter_empty":"igx_query_builder_filter_empty","igx_query_builder_filter_endsWith":"igx_query_builder_filter_endsWith","igx_query_builder_filter_equals":"igx_query_builder_filter_equals","igx_query_builder_filter_false":"igx_query_builder_filter_false","igx_query_builder_filter_greaterThan":"igx_query_builder_filter_greaterThan","igx_query_builder_filter_greaterThanOrEqualTo":"igx_query_builder_filter_greaterThanOrEqualTo","igx_query_builder_filter_in":"igx_query_builder_filter_in","igx_query_builder_filter_lastMonth":"igx_query_builder_filter_lastMonth","igx_query_builder_filter_lastYear":"igx_query_builder_filter_lastYear","igx_query_builder_filter_lessThan":"igx_query_builder_filter_lessThan","igx_query_builder_filter_lessThanOrEqualTo":"igx_query_builder_filter_lessThanOrEqualTo","igx_query_builder_filter_nextMonth":"igx_query_builder_filter_nextMonth","igx_query_builder_filter_nextYear":"igx_query_builder_filter_nextYear","igx_query_builder_filter_not_at":"igx_query_builder_filter_not_at","igx_query_builder_filter_notEmpty":"igx_query_builder_filter_notEmpty","igx_query_builder_filter_notIn":"igx_query_builder_filter_notIn","igx_query_builder_filter_notNull":"igx_query_builder_filter_notNull","igx_query_builder_filter_null":"igx_query_builder_filter_null","igx_query_builder_filter_operator_and":"igx_query_builder_filter_operator_and","igx_query_builder_filter_operator_or":"igx_query_builder_filter_operator_or","igx_query_builder_filter_startsWith":"igx_query_builder_filter_startsWith","igx_query_builder_filter_thisMonth":"igx_query_builder_filter_thisMonth","igx_query_builder_filter_thisYear":"igx_query_builder_filter_thisYear","igx_query_builder_filter_today":"igx_query_builder_filter_today","igx_query_builder_filter_true":"igx_query_builder_filter_true","igx_query_builder_filter_yesterday":"igx_query_builder_filter_yesterday","igx_query_builder_from_label":"igx_query_builder_from_label","igx_query_builder_initial_text":"igx_query_builder_initial_text","igx_query_builder_or_group":"igx_query_builder_or_group","igx_query_builder_or_label":"igx_query_builder_or_label","igx_query_builder_query_value_placeholder":"igx_query_builder_query_value_placeholder","igx_query_builder_search":"igx_query_builder_search","igx_query_builder_select_all":"igx_query_builder_select_all","igx_query_builder_select_entity":"igx_query_builder_select_entity","igx_query_builder_select_label":"igx_query_builder_select_label","igx_query_builder_select_return_field_single":"igx_query_builder_select_return_field_single","igx_query_builder_select_return_fields":"igx_query_builder_select_return_fields","igx_query_builder_switch_group":"igx_query_builder_switch_group","igx_query_builder_time_placeholder":"igx_query_builder_time_placeholder","igx_query_builder_ungroup":"igx_query_builder_ungroup","igx_query_builder_value_placeholder":"igx_query_builder_value_placeholder","igx_query_builder_where_label":"igx_query_builder_where_label"}}],"IgrQueryBuilderSearchValueContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrQueryBuilderSearchValueContext","k":"interface","s":"interfaces","m":{"implicit":"implicit","selectedCondition":"selectedCondition","selectedField":"selectedField"}}],"IgrRowDataCancelableEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowDataCancelableEventArgsDetail","k":"interface","s":"interfaces","m":{"cellID":"cellID","data":"data","isAddRow":"isAddRow","newValue":"newValue","oldValue":"oldValue","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowKey":"rowKey"}}],"IgrRowDataEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowDataEventArgsDetail","k":"interface","s":"interfaces","m":{"data":"data","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowKey":"rowKey"}}],"IgrRowDirective":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowDirective","k":"interface","s":"interfaces","m":{"addRowUI":"addRowUI","cells":"cells","data":"data","dataRowIndex":"dataRowIndex","disabled":"disabled","expanded":"expanded","hasMergedCells":"hasMergedCells","index":"index","inEditMode":"inEditMode","key":"key","pinned":"pinned","rowHeight":"rowHeight","beginAddRow":"beginAddRow","delete":"delete","isCellActive":"isCellActive","pin":"pin","unpin":"unpin","update":"update"}}],"IgrRowDragEndEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowDragEndEventArgsDetail","k":"interface","s":"interfaces","m":{"animation":"animation","dragData":"dragData","dragDirective":"dragDirective","owner":"owner"}}],"IgrRowDragStartEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowDragStartEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","dragData":"dragData","dragDirective":"dragDirective","owner":"owner"}}],"IgrRowExportingEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowExportingEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","owner":"owner","rowData":"rowData","rowIndex":"rowIndex"}}],"IgrRowSelectionEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowSelectionEventArgsDetail","k":"interface","s":"interfaces","m":{"added":"added","allRowsSelected":"allRowsSelected","cancel":"cancel","newSelection":"newSelection","oldSelection":"oldSelection","owner":"owner","removed":"removed"}}],"IgrRowSelectorTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowSelectorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrRowSelectorTemplateDetails":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowSelectorTemplateDetails","k":"interface","s":"interfaces","m":{"index":"index","key":"key","rowID":"rowID","selected":"selected","deselect":"deselect","select":"select"}}],"IgrRowToggleEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowToggleEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","expanded":"expanded","owner":"owner","rowID":"rowID","rowKey":"rowKey"}}],"IgrRowType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrRowType","k":"interface","s":"interfaces","m":{"addRowUI":"addRowUI","cells":"cells","children":"children","data":"data","deleted":"deleted","disabled":"disabled","expanded":"expanded","focused":"focused","groupRow":"groupRow","hasChildren":"hasChildren","inEditMode":"inEditMode","isGroupByRow":"isGroupByRow","isSummaryRow":"isSummaryRow","key":"key","parent":"parent","pinned":"pinned","selected":"selected","treeRow":"treeRow","validation":"validation","grid":"grid","index":"index","viewIndex":"viewIndex","delete":"delete","pin":"pin","unpin":"unpin","update":"update"}}],"IgrScrollStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrScrollStrategy","k":"interface","s":"interfaces","m":{"attach":"attach","detach":"detach"}}],"IgrSearchInfo":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSearchInfo","k":"interface","s":"interfaces","m":{"activeMatchIndex":"activeMatchIndex","caseSensitive":"caseSensitive","content":"content","exactMatch":"exactMatch","matchCount":"matchCount","matchInfoCache":"matchInfoCache","searchText":"searchText"}}],"IgrSize":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSize","k":"interface","s":"interfaces","m":{"height":"height","width":"width"}}],"IgrSortingEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSortingEventArgsDetail","k":"interface","s":"interfaces","m":{"cancel":"cancel","groupingExpressions":"groupingExpressions","owner":"owner","sortingExpressions":"sortingExpressions"}}],"IgrSortingExpression":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSortingExpression","k":"interface","s":"interfaces","m":{"ignoreCase":"ignoreCase","owner":"owner","strategy":"strategy","dir":"dir","fieldName":"fieldName"}}],"IgrSortingOptions":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSortingOptions","k":"interface","s":"interfaces","m":{"mode":"mode"}}],"IgrSortingStrategy":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSortingStrategy","k":"interface","s":"interfaces"}],"IgrSummaryExpression":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSummaryExpression","k":"interface","s":"interfaces","m":{"customSummary":"customSummary","fieldName":"fieldName"}}],"IgrSummaryResult":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSummaryResult","k":"interface","s":"interfaces","m":{"defaultFormatting":"defaultFormatting","key":"key","label":"label","summaryResult":"summaryResult"}}],"IgrSummaryTemplateContext":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrSummaryTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgrToggleViewCancelableEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrToggleViewCancelableEventArgsDetail","k":"interface","s":"interfaces","m":{"id":"id"}}],"IgrToggleViewEventArgsDetail":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrToggleViewEventArgsDetail","k":"interface","s":"interfaces","m":{"id":"id","owner":"owner"}}],"IgrTreeGridRecord":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrTreeGridRecord","k":"interface","s":"interfaces","m":{"children":"children","expanded":"expanded","isFilteredOutParent":"isFilteredOutParent","level":"level","parent":"parent","data":"data","key":"key"}}],"IgrValidationErrors":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrValidationErrors","k":"interface","s":"interfaces"}],"IgrValidationResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrValidationResourceStrings","k":"interface","s":"interfaces","m":{"igx_grid_disabled_date_validation_error":"igx_grid_disabled_date_validation_error","igx_grid_email_validation_error":"igx_grid_email_validation_error","igx_grid_mask_validation_error":"igx_grid_mask_validation_error","igx_grid_max_length_validation_error":"igx_grid_max_length_validation_error","igx_grid_max_validation_error":"igx_grid_max_validation_error","igx_grid_min_length_validation_error":"igx_grid_min_length_validation_error","igx_grid_min_validation_error":"igx_grid_min_validation_error","igx_grid_pattern_validation_error":"igx_grid_pattern_validation_error","igx_grid_required_validation_error":"igx_grid_required_validation_error","igx_grid_url_validation_error":"igx_grid_url_validation_error"}}],"IgrValuesChange":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IgrValuesChange","k":"interface","s":"interfaces","m":{"values":"values"}}],"IListResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IListResourceStrings","k":"interface","s":"interfaces","m":{"list_loading":"list_loading","list_no_items":"list_no_items"}}],"IPaginatorResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IPaginatorResourceStrings","k":"interface","s":"interfaces","m":{"paginator_first_page_button_text":"paginator_first_page_button_text","paginator_label":"paginator_label","paginator_last_page_button_text":"paginator_last_page_button_text","paginator_next_page_button_text":"paginator_next_page_button_text","paginator_pager_text":"paginator_pager_text","paginator_previous_page_button_text":"paginator_previous_page_button_text"}}],"IQueryBuilderResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IQueryBuilderResourceStrings","k":"interface","s":"interfaces","m":{"query_builder_add_condition":"query_builder_add_condition","query_builder_add_condition_root":"query_builder_add_condition_root","query_builder_add_group":"query_builder_add_group","query_builder_add_group_root":"query_builder_add_group_root","query_builder_all_fields":"query_builder_all_fields","query_builder_and_group":"query_builder_and_group","query_builder_and_label":"query_builder_and_label","query_builder_column_placeholder":"query_builder_column_placeholder","query_builder_condition_placeholder":"query_builder_condition_placeholder","query_builder_date_placeholder":"query_builder_date_placeholder","query_builder_datetime_placeholder":"query_builder_datetime_placeholder","query_builder_delete":"query_builder_delete","query_builder_delete_filters":"query_builder_delete_filters","query_builder_details":"query_builder_details","query_builder_dialog_cancel":"query_builder_dialog_cancel","query_builder_dialog_checkbox_text":"query_builder_dialog_checkbox_text","query_builder_dialog_confirm":"query_builder_dialog_confirm","query_builder_dialog_message":"query_builder_dialog_message","query_builder_dialog_title":"query_builder_dialog_title","query_builder_drop_ghost_text":"query_builder_drop_ghost_text","query_builder_end_group":"query_builder_end_group","query_builder_filter_after":"query_builder_filter_after","query_builder_filter_all":"query_builder_filter_all","query_builder_filter_at":"query_builder_filter_at","query_builder_filter_at_after":"query_builder_filter_at_after","query_builder_filter_at_before":"query_builder_filter_at_before","query_builder_filter_before":"query_builder_filter_before","query_builder_filter_contains":"query_builder_filter_contains","query_builder_filter_doesNotContain":"query_builder_filter_doesNotContain","query_builder_filter_doesNotEqual":"query_builder_filter_doesNotEqual","query_builder_filter_empty":"query_builder_filter_empty","query_builder_filter_endsWith":"query_builder_filter_endsWith","query_builder_filter_equals":"query_builder_filter_equals","query_builder_filter_false":"query_builder_filter_false","query_builder_filter_greaterThan":"query_builder_filter_greaterThan","query_builder_filter_greaterThanOrEqualTo":"query_builder_filter_greaterThanOrEqualTo","query_builder_filter_in":"query_builder_filter_in","query_builder_filter_lastMonth":"query_builder_filter_lastMonth","query_builder_filter_lastYear":"query_builder_filter_lastYear","query_builder_filter_lessThan":"query_builder_filter_lessThan","query_builder_filter_lessThanOrEqualTo":"query_builder_filter_lessThanOrEqualTo","query_builder_filter_nextMonth":"query_builder_filter_nextMonth","query_builder_filter_nextYear":"query_builder_filter_nextYear","query_builder_filter_not_at":"query_builder_filter_not_at","query_builder_filter_notEmpty":"query_builder_filter_notEmpty","query_builder_filter_notIn":"query_builder_filter_notIn","query_builder_filter_notNull":"query_builder_filter_notNull","query_builder_filter_null":"query_builder_filter_null","query_builder_filter_operator_and":"query_builder_filter_operator_and","query_builder_filter_operator_or":"query_builder_filter_operator_or","query_builder_filter_startsWith":"query_builder_filter_startsWith","query_builder_filter_thisMonth":"query_builder_filter_thisMonth","query_builder_filter_thisYear":"query_builder_filter_thisYear","query_builder_filter_today":"query_builder_filter_today","query_builder_filter_true":"query_builder_filter_true","query_builder_filter_yesterday":"query_builder_filter_yesterday","query_builder_from_label":"query_builder_from_label","query_builder_initial_text":"query_builder_initial_text","query_builder_or_group":"query_builder_or_group","query_builder_or_label":"query_builder_or_label","query_builder_query_value_placeholder":"query_builder_query_value_placeholder","query_builder_search":"query_builder_search","query_builder_select_all":"query_builder_select_all","query_builder_select_entity":"query_builder_select_entity","query_builder_select_label":"query_builder_select_label","query_builder_select_return_field_single":"query_builder_select_return_field_single","query_builder_select_return_fields":"query_builder_select_return_fields","query_builder_switch_group":"query_builder_switch_group","query_builder_time_placeholder":"query_builder_time_placeholder","query_builder_ungroup":"query_builder_ungroup","query_builder_value_placeholder":"query_builder_value_placeholder","query_builder_where_label":"query_builder_where_label"}}],"IResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/IResourceStrings","k":"interface","s":"interfaces","m":{"action_strip_button_more_title":"action_strip_button_more_title","banner_button_dismiss":"banner_button_dismiss","calendar_first_picker_of":"calendar_first_picker_of","calendar_multi_selection":"calendar_multi_selection","calendar_next_month":"calendar_next_month","calendar_next_year":"calendar_next_year","calendar_next_years":"calendar_next_years","calendar_previous_month":"calendar_previous_month","calendar_previous_year":"calendar_previous_year","calendar_previous_years":"calendar_previous_years","calendar_range_end":"calendar_range_end","calendar_range_label_end":"calendar_range_label_end","calendar_range_label_start":"calendar_range_label_start","calendar_range_placeholder":"calendar_range_placeholder","calendar_range_selection":"calendar_range_selection","calendar_range_start":"calendar_range_start","calendar_select_date":"calendar_select_date","calendar_select_month":"calendar_select_month","calendar_select_year":"calendar_select_year","calendar_selected_month_is":"calendar_selected_month_is","calendar_single_selection":"calendar_single_selection","calendar_singular_multi_selection":"calendar_singular_multi_selection","calendar_singular_range_selection":"calendar_singular_range_selection","calendar_singular_single_selection":"calendar_singular_single_selection","carousel_next_slide":"carousel_next_slide","carousel_of":"carousel_of","carousel_previous_slide":"carousel_previous_slide","carousel_slide":"carousel_slide","chip_remove":"chip_remove","chip_select":"chip_select","collapse":"collapse","combo_addCustomValues_placeholder":"combo_addCustomValues_placeholder","combo_aria_label_no_options":"combo_aria_label_no_options","combo_aria_label_options":"combo_aria_label_options","combo_clearItems_placeholder":"combo_clearItems_placeholder","combo_empty_message":"combo_empty_message","combo_filter_search_placeholder":"combo_filter_search_placeholder","date_picker_change_date":"date_picker_change_date","date_picker_choose_date":"date_picker_choose_date","date_range_picker_cancel_button":"date_range_picker_cancel_button","date_range_picker_currentMonth":"date_range_picker_currentMonth","date_range_picker_date_separator":"date_range_picker_date_separator","date_range_picker_done_button":"date_range_picker_done_button","date_range_picker_last30Days":"date_range_picker_last30Days","date_range_picker_last7Days":"date_range_picker_last7Days","date_range_picker_yearToDate":"date_range_picker_yearToDate","disabled_date_validation_error":"disabled_date_validation_error","dock_manager_close":"dock_manager_close","dock_manager_documents":"dock_manager_documents","dock_manager_maximize":"dock_manager_maximize","dock_manager_minimize":"dock_manager_minimize","dock_manager_more_options":"dock_manager_more_options","dock_manager_more_tabs":"dock_manager_more_tabs","dock_manager_panes":"dock_manager_panes","dock_manager_pin":"dock_manager_pin","dock_manager_unpin":"dock_manager_unpin","email_validation_error":"email_validation_error","expand":"expand","file_input_placeholder":"file_input_placeholder","file_input_upload_button":"file_input_upload_button","grid_actions_add_child_label":"grid_actions_add_child_label","grid_actions_add_label":"grid_actions_add_label","grid_actions_delete_label":"grid_actions_delete_label","grid_actions_edit_label":"grid_actions_edit_label","grid_actions_jumpDown_label":"grid_actions_jumpDown_label","grid_actions_jumpUp_label":"grid_actions_jumpUp_label","grid_actions_pin_label":"grid_actions_pin_label","grid_actions_unpin_label":"grid_actions_unpin_label","grid_add_row_label":"grid_add_row_label","grid_advanced_filter_add_condition":"grid_advanced_filter_add_condition","grid_advanced_filter_add_condition_root":"grid_advanced_filter_add_condition_root","grid_advanced_filter_add_group":"grid_advanced_filter_add_group","grid_advanced_filter_add_group_root":"grid_advanced_filter_add_group_root","grid_advanced_filter_and_group":"grid_advanced_filter_and_group","grid_advanced_filter_and_label":"grid_advanced_filter_and_label","grid_advanced_filter_column_placeholder":"grid_advanced_filter_column_placeholder","grid_advanced_filter_create_and_group":"grid_advanced_filter_create_and_group","grid_advanced_filter_create_or_group":"grid_advanced_filter_create_or_group","grid_advanced_filter_delete":"grid_advanced_filter_delete","grid_advanced_filter_delete_filters":"grid_advanced_filter_delete_filters","grid_advanced_filter_dialog_checkbox_text":"grid_advanced_filter_dialog_checkbox_text","grid_advanced_filter_dialog_message":"grid_advanced_filter_dialog_message","grid_advanced_filter_dialog_title":"grid_advanced_filter_dialog_title","grid_advanced_filter_drop_ghost_text":"grid_advanced_filter_drop_ghost_text","grid_advanced_filter_end_group":"grid_advanced_filter_end_group","grid_advanced_filter_from_label":"grid_advanced_filter_from_label","grid_advanced_filter_initial_text":"grid_advanced_filter_initial_text","grid_advanced_filter_or_group":"grid_advanced_filter_or_group","grid_advanced_filter_or_label":"grid_advanced_filter_or_label","grid_advanced_filter_query_value_placeholder":"grid_advanced_filter_query_value_placeholder","grid_advanced_filter_select_entity":"grid_advanced_filter_select_entity","grid_advanced_filter_select_return_field_single":"grid_advanced_filter_select_return_field_single","grid_advanced_filter_switch_group":"grid_advanced_filter_switch_group","grid_advanced_filter_title":"grid_advanced_filter_title","grid_advanced_filter_ungroup":"grid_advanced_filter_ungroup","grid_advanced_filter_value_placeholder":"grid_advanced_filter_value_placeholder","grid_complex_filter":"grid_complex_filter","grid_disabled_date_validation_error":"grid_disabled_date_validation_error","grid_email_validation_error":"grid_email_validation_error","grid_emptyFilteredGrid_message":"grid_emptyFilteredGrid_message","grid_emptyGrid_message":"grid_emptyGrid_message","grid_excel_add_to_filter":"grid_excel_add_to_filter","grid_excel_apply":"grid_excel_apply","grid_excel_blanks":"grid_excel_blanks","grid_excel_boolean_filter":"grid_excel_boolean_filter","grid_excel_cancel":"grid_excel_cancel","grid_excel_currency_filter":"grid_excel_currency_filter","grid_excel_custom_dialog_add":"grid_excel_custom_dialog_add","grid_excel_custom_dialog_clear":"grid_excel_custom_dialog_clear","grid_excel_custom_dialog_header":"grid_excel_custom_dialog_header","grid_excel_custom_filter":"grid_excel_custom_filter","grid_excel_date_filter":"grid_excel_date_filter","grid_excel_deselect":"grid_excel_deselect","grid_excel_filter_clear":"grid_excel_filter_clear","grid_excel_filter_moving_header":"grid_excel_filter_moving_header","grid_excel_filter_moving_left":"grid_excel_filter_moving_left","grid_excel_filter_moving_left_short":"grid_excel_filter_moving_left_short","grid_excel_filter_moving_right":"grid_excel_filter_moving_right","grid_excel_filter_moving_right_short":"grid_excel_filter_moving_right_short","grid_excel_filter_sorting_asc":"grid_excel_filter_sorting_asc","grid_excel_filter_sorting_asc_short":"grid_excel_filter_sorting_asc_short","grid_excel_filter_sorting_desc":"grid_excel_filter_sorting_desc","grid_excel_filter_sorting_desc_short":"grid_excel_filter_sorting_desc_short","grid_excel_filter_sorting_header":"grid_excel_filter_sorting_header","grid_excel_hide":"grid_excel_hide","grid_excel_matches_count":"grid_excel_matches_count","grid_excel_no_matches":"grid_excel_no_matches","grid_excel_number_filter":"grid_excel_number_filter","grid_excel_pin":"grid_excel_pin","grid_excel_search_placeholder":"grid_excel_search_placeholder","grid_excel_select":"grid_excel_select","grid_excel_select_all":"grid_excel_select_all","grid_excel_select_all_search_results":"grid_excel_select_all_search_results","grid_excel_show":"grid_excel_show","grid_excel_text_filter":"grid_excel_text_filter","grid_excel_unpin":"grid_excel_unpin","grid_filter":"grid_filter","grid_filter_after":"grid_filter_after","grid_filter_all":"grid_filter_all","grid_filter_at":"grid_filter_at","grid_filter_at_after":"grid_filter_at_after","grid_filter_at_before":"grid_filter_at_before","grid_filter_before":"grid_filter_before","grid_filter_condition_placeholder":"grid_filter_condition_placeholder","grid_filter_contains":"grid_filter_contains","grid_filter_doesNotContain":"grid_filter_doesNotContain","grid_filter_doesNotEqual":"grid_filter_doesNotEqual","grid_filter_empty":"grid_filter_empty","grid_filter_endsWith":"grid_filter_endsWith","grid_filter_equals":"grid_filter_equals","grid_filter_false":"grid_filter_false","grid_filter_greaterThan":"grid_filter_greaterThan","grid_filter_greaterThanOrEqualTo":"grid_filter_greaterThanOrEqualTo","grid_filter_in":"grid_filter_in","grid_filter_lastMonth":"grid_filter_lastMonth","grid_filter_lastYear":"grid_filter_lastYear","grid_filter_lessThan":"grid_filter_lessThan","grid_filter_lessThanOrEqualTo":"grid_filter_lessThanOrEqualTo","grid_filter_nextMonth":"grid_filter_nextMonth","grid_filter_nextYear":"grid_filter_nextYear","grid_filter_not_at":"grid_filter_not_at","grid_filter_notEmpty":"grid_filter_notEmpty","grid_filter_notIn":"grid_filter_notIn","grid_filter_notNull":"grid_filter_notNull","grid_filter_null":"grid_filter_null","grid_filter_operator_and":"grid_filter_operator_and","grid_filter_operator_or":"grid_filter_operator_or","grid_filter_row_boolean_placeholder":"grid_filter_row_boolean_placeholder","grid_filter_row_close":"grid_filter_row_close","grid_filter_row_date_placeholder":"grid_filter_row_date_placeholder","grid_filter_row_placeholder":"grid_filter_row_placeholder","grid_filter_row_reset":"grid_filter_row_reset","grid_filter_row_time_placeholder":"grid_filter_row_time_placeholder","grid_filter_startsWith":"grid_filter_startsWith","grid_filter_thisMonth":"grid_filter_thisMonth","grid_filter_thisYear":"grid_filter_thisYear","grid_filter_today":"grid_filter_today","grid_filter_true":"grid_filter_true","grid_filter_yesterday":"grid_filter_yesterday","grid_groupByArea_deselect_message":"grid_groupByArea_deselect_message","grid_groupByArea_message":"grid_groupByArea_message","grid_groupByArea_select_message":"grid_groupByArea_select_message","grid_hiding_check_all_label":"grid_hiding_check_all_label","grid_hiding_uncheck_all_label":"grid_hiding_uncheck_all_label","grid_mask_validation_error":"grid_mask_validation_error","grid_max_length_validation_error":"grid_max_length_validation_error","grid_max_validation_error":"grid_max_validation_error","grid_min_length_validation_error":"grid_min_length_validation_error","grid_min_validation_error":"grid_min_validation_error","grid_pattern_validation_error":"grid_pattern_validation_error","grid_pinned_row_indicator":"grid_pinned_row_indicator","grid_pinning_check_all_label":"grid_pinning_check_all_label","grid_pinning_uncheck_all_label":"grid_pinning_uncheck_all_label","grid_pivot_aggregate_avg":"grid_pivot_aggregate_avg","grid_pivot_aggregate_count":"grid_pivot_aggregate_count","grid_pivot_aggregate_date_earliest":"grid_pivot_aggregate_date_earliest","grid_pivot_aggregate_date_latest":"grid_pivot_aggregate_date_latest","grid_pivot_aggregate_max":"grid_pivot_aggregate_max","grid_pivot_aggregate_min":"grid_pivot_aggregate_min","grid_pivot_aggregate_sum":"grid_pivot_aggregate_sum","grid_pivot_aggregate_time_earliest":"grid_pivot_aggregate_time_earliest","grid_pivot_aggregate_time_latest":"grid_pivot_aggregate_time_latest","grid_pivot_column_drop_chip":"grid_pivot_column_drop_chip","grid_pivot_date_dimension_total":"grid_pivot_date_dimension_total","grid_pivot_empty_column_drop_area":"grid_pivot_empty_column_drop_area","grid_pivot_empty_filter_drop_area":"grid_pivot_empty_filter_drop_area","grid_pivot_empty_message":"grid_pivot_empty_message","grid_pivot_empty_row_drop_area":"grid_pivot_empty_row_drop_area","grid_pivot_empty_value_drop_area":"grid_pivot_empty_value_drop_area","grid_pivot_filter_drop_chip":"grid_pivot_filter_drop_chip","grid_pivot_row_drop_chip":"grid_pivot_row_drop_chip","grid_pivot_selector_columns":"grid_pivot_selector_columns","grid_pivot_selector_filters":"grid_pivot_selector_filters","grid_pivot_selector_panel_empty":"grid_pivot_selector_panel_empty","grid_pivot_selector_rows":"grid_pivot_selector_rows","grid_pivot_selector_values":"grid_pivot_selector_values","grid_pivot_value_drop_chip":"grid_pivot_value_drop_chip","grid_required_validation_error":"grid_required_validation_error","grid_row_edit_btn_cancel":"grid_row_edit_btn_cancel","grid_row_edit_btn_done":"grid_row_edit_btn_done","grid_row_edit_text":"grid_row_edit_text","grid_snackbar_addrow_actiontext":"grid_snackbar_addrow_actiontext","grid_snackbar_addrow_label":"grid_snackbar_addrow_label","grid_summary_average":"grid_summary_average","grid_summary_count":"grid_summary_count","grid_summary_earliest":"grid_summary_earliest","grid_summary_latest":"grid_summary_latest","grid_summary_max":"grid_summary_max","grid_summary_min":"grid_summary_min","grid_summary_sum":"grid_summary_sum","grid_toolbar_actions_filter_prompt":"grid_toolbar_actions_filter_prompt","grid_toolbar_advanced_filtering_button_label":"grid_toolbar_advanced_filtering_button_label","grid_toolbar_advanced_filtering_button_tooltip":"grid_toolbar_advanced_filtering_button_tooltip","grid_toolbar_exporter_button_label":"grid_toolbar_exporter_button_label","grid_toolbar_exporter_button_tooltip":"grid_toolbar_exporter_button_tooltip","grid_toolbar_exporter_csv_entry_text":"grid_toolbar_exporter_csv_entry_text","grid_toolbar_exporter_excel_entry_text":"grid_toolbar_exporter_excel_entry_text","grid_toolbar_exporter_pdf_entry_text":"grid_toolbar_exporter_pdf_entry_text","grid_toolbar_hiding_button_tooltip":"grid_toolbar_hiding_button_tooltip","grid_toolbar_hiding_title":"grid_toolbar_hiding_title","grid_toolbar_pinning_button_tooltip":"grid_toolbar_pinning_button_tooltip","grid_toolbar_pinning_title":"grid_toolbar_pinning_title","grid_url_validation_error":"grid_url_validation_error","list_loading":"list_loading","list_no_items":"list_no_items","mask_validation_error":"mask_validation_error","max_length_validation_error":"max_length_validation_error","max_validation_error":"max_validation_error","min_length_validation_error":"min_length_validation_error","min_validation_error":"min_validation_error","paginator_first_page_button_text":"paginator_first_page_button_text","paginator_label":"paginator_label","paginator_last_page_button_text":"paginator_last_page_button_text","paginator_next_page_button_text":"paginator_next_page_button_text","paginator_pager_text":"paginator_pager_text","paginator_previous_page_button_text":"paginator_previous_page_button_text","pattern_validation_error":"pattern_validation_error","query_builder_add_condition":"query_builder_add_condition","query_builder_add_condition_root":"query_builder_add_condition_root","query_builder_add_group":"query_builder_add_group","query_builder_add_group_root":"query_builder_add_group_root","query_builder_all_fields":"query_builder_all_fields","query_builder_and_group":"query_builder_and_group","query_builder_and_label":"query_builder_and_label","query_builder_column_placeholder":"query_builder_column_placeholder","query_builder_condition_placeholder":"query_builder_condition_placeholder","query_builder_date_placeholder":"query_builder_date_placeholder","query_builder_datetime_placeholder":"query_builder_datetime_placeholder","query_builder_delete":"query_builder_delete","query_builder_delete_filters":"query_builder_delete_filters","query_builder_details":"query_builder_details","query_builder_dialog_cancel":"query_builder_dialog_cancel","query_builder_dialog_checkbox_text":"query_builder_dialog_checkbox_text","query_builder_dialog_confirm":"query_builder_dialog_confirm","query_builder_dialog_message":"query_builder_dialog_message","query_builder_dialog_title":"query_builder_dialog_title","query_builder_drop_ghost_text":"query_builder_drop_ghost_text","query_builder_end_group":"query_builder_end_group","query_builder_filter_after":"query_builder_filter_after","query_builder_filter_all":"query_builder_filter_all","query_builder_filter_at":"query_builder_filter_at","query_builder_filter_at_after":"query_builder_filter_at_after","query_builder_filter_at_before":"query_builder_filter_at_before","query_builder_filter_before":"query_builder_filter_before","query_builder_filter_contains":"query_builder_filter_contains","query_builder_filter_doesNotContain":"query_builder_filter_doesNotContain","query_builder_filter_doesNotEqual":"query_builder_filter_doesNotEqual","query_builder_filter_empty":"query_builder_filter_empty","query_builder_filter_endsWith":"query_builder_filter_endsWith","query_builder_filter_equals":"query_builder_filter_equals","query_builder_filter_false":"query_builder_filter_false","query_builder_filter_greaterThan":"query_builder_filter_greaterThan","query_builder_filter_greaterThanOrEqualTo":"query_builder_filter_greaterThanOrEqualTo","query_builder_filter_in":"query_builder_filter_in","query_builder_filter_lastMonth":"query_builder_filter_lastMonth","query_builder_filter_lastYear":"query_builder_filter_lastYear","query_builder_filter_lessThan":"query_builder_filter_lessThan","query_builder_filter_lessThanOrEqualTo":"query_builder_filter_lessThanOrEqualTo","query_builder_filter_nextMonth":"query_builder_filter_nextMonth","query_builder_filter_nextYear":"query_builder_filter_nextYear","query_builder_filter_not_at":"query_builder_filter_not_at","query_builder_filter_notEmpty":"query_builder_filter_notEmpty","query_builder_filter_notIn":"query_builder_filter_notIn","query_builder_filter_notNull":"query_builder_filter_notNull","query_builder_filter_null":"query_builder_filter_null","query_builder_filter_operator_and":"query_builder_filter_operator_and","query_builder_filter_operator_or":"query_builder_filter_operator_or","query_builder_filter_startsWith":"query_builder_filter_startsWith","query_builder_filter_thisMonth":"query_builder_filter_thisMonth","query_builder_filter_thisYear":"query_builder_filter_thisYear","query_builder_filter_today":"query_builder_filter_today","query_builder_filter_true":"query_builder_filter_true","query_builder_filter_yesterday":"query_builder_filter_yesterday","query_builder_from_label":"query_builder_from_label","query_builder_initial_text":"query_builder_initial_text","query_builder_or_group":"query_builder_or_group","query_builder_or_label":"query_builder_or_label","query_builder_query_value_placeholder":"query_builder_query_value_placeholder","query_builder_search":"query_builder_search","query_builder_select_all":"query_builder_select_all","query_builder_select_entity":"query_builder_select_entity","query_builder_select_label":"query_builder_select_label","query_builder_select_return_field_single":"query_builder_select_return_field_single","query_builder_select_return_fields":"query_builder_select_return_fields","query_builder_switch_group":"query_builder_switch_group","query_builder_time_placeholder":"query_builder_time_placeholder","query_builder_ungroup":"query_builder_ungroup","query_builder_value_placeholder":"query_builder_value_placeholder","query_builder_where_label":"query_builder_where_label","required_validation_error":"required_validation_error","time_picker_cancel":"time_picker_cancel","time_picker_change_time":"time_picker_change_time","time_picker_choose_time":"time_picker_choose_time","time_picker_ok":"time_picker_ok","url_validation_error":"url_validation_error"}}],"ITimePickerResourceStrings":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/ITimePickerResourceStrings","k":"interface","s":"interfaces","m":{"time_picker_cancel":"time_picker_cancel","time_picker_change_time":"time_picker_change_time","time_picker_choose_time":"time_picker_choose_time","time_picker_ok":"time_picker_ok"}}],"Point":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/interfaces/Point","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}},{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/Point","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"ColumnPinningPosition":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/ColumnPinningPosition","k":"enum","s":"enums","m":{"End":"End","Start":"Start"}}],"DropPosition":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/DropPosition","k":"enum","s":"enums","m":{"AfterDropTarget":"AfterDropTarget","BeforeDropTarget":"BeforeDropTarget"}}],"FilteringExpressionsTreeType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/FilteringExpressionsTreeType","k":"enum","s":"enums","m":{"Advanced":"Advanced","Regular":"Regular"}}],"FilteringLogic":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/FilteringLogic","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"HorizontalAlignment":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/HorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}},{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/HorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right","Stretch":"Stretch"}}],"PivotDimensionType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/PivotDimensionType","k":"enum","s":"enums","m":{"Column":"Column","Filter":"Filter","Row":"Row"}}],"RowPinningPosition":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/RowPinningPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"SortingDirection":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/SortingDirection","k":"enum","s":"enums","m":{"Asc":"Asc","Desc":"Desc","None":"None"}}],"VerticalAlignment":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/enums/VerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Middle":"Middle","Top":"Top"}},{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/VerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Stretch":"Stretch","Top":"Top"}}],"FilterMode":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/FilterMode","k":"type","s":"types"}],"GridCellMergeMode":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridCellMergeMode","k":"type","s":"types"}],"GridColumnDataType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridColumnDataType","k":"type","s":"types"}],"GridKeydownTargetType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridKeydownTargetType","k":"type","s":"types"}],"GridPagingMode":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridPagingMode","k":"type","s":"types"}],"GridSelectionMode":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridSelectionMode","k":"type","s":"types"}],"GridSummaryCalculationMode":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridSummaryCalculationMode","k":"type","s":"types"}],"GridSummaryPosition":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridSummaryPosition","k":"type","s":"types"}],"GridToolbarExporterType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridToolbarExporterType","k":"type","s":"types"}],"GridValidationTrigger":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/GridValidationTrigger","k":"type","s":"types"}],"IgrActiveNodeChangeEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrActiveNodeChangeEventArgs","k":"type","s":"types"}],"IgrBaseEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrBaseEventArgs","k":"type","s":"types"}],"IgrCancelableBrowserEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrCancelableBrowserEventArgs","k":"type","s":"types"}],"IgrCancelableEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrCancelableEventArgs","k":"type","s":"types"}],"IgrColumnExportingEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnExportingEventArgs","k":"type","s":"types"}],"IgrColumnMovingEndEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnMovingEndEventArgs","k":"type","s":"types"}],"IgrColumnMovingEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnMovingEventArgs","k":"type","s":"types"}],"IgrColumnMovingStartEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnMovingStartEventArgs","k":"type","s":"types"}],"IgrColumnResizeEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnResizeEventArgs","k":"type","s":"types"}],"IgrColumnsAutoGeneratedEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnsAutoGeneratedEventArgs","k":"type","s":"types"}],"IgrColumnSelectionEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnSelectionEventArgs","k":"type","s":"types"}],"IgrColumnToggledEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnToggledEventArgs","k":"type","s":"types"}],"IgrColumnVisibilityChangedEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnVisibilityChangedEventArgs","k":"type","s":"types"}],"IgrColumnVisibilityChangingEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrColumnVisibilityChangingEventArgs","k":"type","s":"types"}],"IgrExporterEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrExporterEventArgs","k":"type","s":"types"}],"IgrFilteringEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrFilteringEventArgs","k":"type","s":"types"}],"IgrForOfDataChangeEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrForOfDataChangeEventArgs","k":"type","s":"types"}],"IgrForOfDataChangingEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrForOfDataChangingEventArgs","k":"type","s":"types"}],"IgrGridCellEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridCellEventArgs","k":"type","s":"types"}],"IgrGridContextMenuEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridContextMenuEventArgs","k":"type","s":"types"}],"IgrGridCreatedEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridCreatedEventArgs","k":"type","s":"types"}],"IgrGridEditDoneEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridEditDoneEventArgs","k":"type","s":"types"}],"IgrGridEditEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridEditEventArgs","k":"type","s":"types"}],"IgrGridFormGroupCreatedEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridFormGroupCreatedEventArgs","k":"type","s":"types"}],"IgrGridKeydownEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridKeydownEventArgs","k":"type","s":"types"}],"IgrGridRowEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridRowEventArgs","k":"type","s":"types"}],"IgrGridScrollEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridScrollEventArgs","k":"type","s":"types"}],"IgrGridToolbarExportEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridToolbarExportEventArgs","k":"type","s":"types"}],"IgrGridValidationStatusEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGridValidationStatusEventArgs","k":"type","s":"types"}],"IgrGroupingDoneEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrGroupingDoneEventArgs","k":"type","s":"types"}],"IgrPageCancellableEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrPageCancellableEventArgs","k":"type","s":"types"}],"IgrPageEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrPageEventArgs","k":"type","s":"types"}],"IgrPinColumnCancellableEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrPinColumnCancellableEventArgs","k":"type","s":"types"}],"IgrPinColumnEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrPinColumnEventArgs","k":"type","s":"types"}],"IgrPinRowEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrPinRowEventArgs","k":"type","s":"types"}],"IgrPivotConfigurationChangedEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrPivotConfigurationChangedEventArgs","k":"type","s":"types"}],"IgrRowDataCancelableEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowDataCancelableEventArgs","k":"type","s":"types"}],"IgrRowDataEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowDataEventArgs","k":"type","s":"types"}],"IgrRowDragEndEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowDragEndEventArgs","k":"type","s":"types"}],"IgrRowDragStartEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowDragStartEventArgs","k":"type","s":"types"}],"IgrRowExportingEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowExportingEventArgs","k":"type","s":"types"}],"IgrRowSelectionEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowSelectionEventArgs","k":"type","s":"types"}],"IgrRowToggleEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrRowToggleEventArgs","k":"type","s":"types"}],"IgrSortingEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrSortingEventArgs","k":"type","s":"types"}],"IgrToggleViewCancelableEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrToggleViewCancelableEventArgs","k":"type","s":"types"}],"IgrToggleViewEventArgs":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/IgrToggleViewEventArgs","k":"type","s":"types"}],"PivotAggregationType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/PivotAggregationType","k":"type","s":"types"}],"PivotRowLayoutType":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/PivotRowLayoutType","k":"type","s":"types"}],"PivotSummaryPosition":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/PivotSummaryPosition","k":"type","s":"types"}],"SortingOptionsMode":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/SortingOptionsMode","k":"type","s":"types"}],"ValidationStatus":[{"p":"igniteui-react-grids","u":"/api/react/igniteui-react-grids/19.6.0/types/ValidationStatus","k":"type","s":"types"}],"IgrDockManager":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/classes/IgrDockManager","k":"class","s":"classes"}],"IgrActivePaneEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrActivePaneEventArgsDetail","k":"interface","s":"interfaces","m":{"newPane":"newPane","oldPane":"oldPane"}}],"IgrContentPane":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrContentPane","k":"interface","s":"interfaces","m":{"acceptsInnerDock":"acceptsInnerDock","allowClose":"allowClose","allowDocking":"allowDocking","allowFloating":"allowFloating","allowMaximize":"allowMaximize","allowPinning":"allowPinning","contentId":"contentId","disabled":"disabled","documentOnly":"documentOnly","floatingHeaderId":"floatingHeaderId","header":"header","headerId":"headerId","hidden":"hidden","id":"id","isMaximized":"isMaximized","isPinned":"isPinned","minResizeHeight":"minResizeHeight","minResizeWidth":"minResizeWidth","size":"size","tabHeaderId":"tabHeaderId","type":"type","unpinnedHeaderId":"unpinnedHeaderId","unpinnedLocation":"unpinnedLocation","unpinnedSize":"unpinnedSize"}}],"IgrDockingIndicator":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrDockingIndicator","k":"interface","s":"interfaces","m":{"direction":"direction","isRoot":"isRoot","position":"position"}}],"IgrDockManagerLayout":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrDockManagerLayout","k":"interface","s":"interfaces","m":{"floatingPanes":"floatingPanes","rootPane":"rootPane"}}],"IgrDockManagerPoint":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrDockManagerPoint","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"IgrDockManagerResourceStrings":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrDockManagerResourceStrings","k":"interface","s":"interfaces","m":{"close":"close","documents":"documents","maximize":"maximize","minimize":"minimize","moreOptions":"moreOptions","moreTabs":"moreTabs","panes":"panes","pin":"pin","unpin":"unpin"}}],"IgrDockPaneAction":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrDockPaneAction","k":"interface","s":"interfaces","m":{"dockingIndicator":"dockingIndicator","targetPane":"targetPane","type":"type"}}],"IgrDocumentHost":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrDocumentHost","k":"interface","s":"interfaces","m":{"id":"id","rootPane":"rootPane","size":"size","type":"type"}}],"IgrFloatingPaneResizeEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrFloatingPaneResizeEventArgsDetail","k":"interface","s":"interfaces","m":{"resizerLocation":"resizerLocation","sourcePane":"sourcePane"}}],"IgrFloatingPaneResizeMoveEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrFloatingPaneResizeMoveEventArgsDetail","k":"interface","s":"interfaces","m":{"newHeight":"newHeight","newLocation":"newLocation","newWidth":"newWidth","oldHeight":"oldHeight","oldLocation":"oldLocation","oldWidth":"oldWidth","resizerLocation":"resizerLocation","sourcePane":"sourcePane"}}],"IgrFloatPaneAction":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrFloatPaneAction","k":"interface","s":"interfaces","m":{"height":"height","location":"location","type":"type","width":"width"}}],"IgrMoveFloatingPaneAction":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrMoveFloatingPaneAction","k":"interface","s":"interfaces","m":{"newLocation":"newLocation","oldLocation":"oldLocation","type":"type"}}],"IgrMoveTabAction":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrMoveTabAction","k":"interface","s":"interfaces","m":{"newIndex":"newIndex","oldIndex":"oldIndex","type":"type"}}],"IgrPaneCloseEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneCloseEventArgsDetail","k":"interface","s":"interfaces","m":{"panes":"panes","sourcePane":"sourcePane"}}],"IgrPaneDragEndEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneDragEndEventArgsDetail","k":"interface","s":"interfaces","m":{"panes":"panes","sourcePane":"sourcePane"}}],"IgrPaneDragOverEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneDragOverEventArgsDetail","k":"interface","s":"interfaces","m":{"action":"action","isValid":"isValid","panes":"panes","sourcePane":"sourcePane"}}],"IgrPaneDragStartEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneDragStartEventArgsDetail","k":"interface","s":"interfaces","m":{"panes":"panes","sourcePane":"sourcePane"}}],"IgrPaneHeaderConnectionEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneHeaderConnectionEventArgsDetail","k":"interface","s":"interfaces","m":{"element":"element","pane":"pane"}}],"IgrPaneHeaderElement":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneHeaderElement","k":"interface","s":"interfaces","m":{"dragService":"dragService"}}],"IgrPanePinnedEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPanePinnedEventArgsDetail","k":"interface","s":"interfaces","m":{"location":"location","newValue":"newValue","panes":"panes","sourcePane":"sourcePane"}}],"IgrPaneScrollEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrPaneScrollEventArgsDetail","k":"interface","s":"interfaces","m":{"contentElement":"contentElement","pane":"pane"}}],"IgrSplitPane":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrSplitPane","k":"interface","s":"interfaces","m":{"allowEmpty":"allowEmpty","floatingHeight":"floatingHeight","floatingLocation":"floatingLocation","floatingResizable":"floatingResizable","floatingWidth":"floatingWidth","id":"id","isMaximized":"isMaximized","minResizeHeight":"minResizeHeight","minResizeWidth":"minResizeWidth","orientation":"orientation","panes":"panes","size":"size","type":"type","useFixedSize":"useFixedSize"}}],"IgrTabGroupPane":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrTabGroupPane","k":"interface","s":"interfaces","m":{"allowEmpty":"allowEmpty","id":"id","isMaximized":"isMaximized","minResizeHeight":"minResizeHeight","minResizeWidth":"minResizeWidth","panes":"panes","selectedIndex":"selectedIndex","size":"size","type":"type"}}],"IgrTabHeaderConnectionEventArgsDetail":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrTabHeaderConnectionEventArgsDetail","k":"interface","s":"interfaces","m":{"element":"element","pane":"pane"}}],"IgrTabHeaderElement":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/interfaces/IgrTabHeaderElement","k":"interface","s":"interfaces","m":{"dragService":"dragService"}}],"IgrActivePaneEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrActivePaneEventArgs","k":"type","s":"types"}],"IgrDockingIndicatorPosition":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrDockingIndicatorPosition","k":"variable","s":"variables"}],"IgrDockManagerPane":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrDockManagerPane","k":"type","s":"types"}],"IgrDockManagerPaneType":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrDockManagerPaneType","k":"variable","s":"variables"}],"IgrFloatingPaneResizeEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrFloatingPaneResizeEventArgs","k":"type","s":"types"}],"IgrFloatingPaneResizeMoveEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrFloatingPaneResizeMoveEventArgs","k":"type","s":"types"}],"IgrPaneActionBehavior":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrPaneActionBehavior","k":"variable","s":"variables"}],"IgrPaneCloseEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneCloseEventArgs","k":"type","s":"types"}],"IgrPaneDragAction":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneDragAction","k":"type","s":"types"}],"IgrPaneDragActionType":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrPaneDragActionType","k":"variable","s":"variables"}],"IgrPaneDragEndEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneDragEndEventArgs","k":"type","s":"types"}],"IgrPaneDragOverEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneDragOverEventArgs","k":"type","s":"types"}],"IgrPaneDragStartEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneDragStartEventArgs","k":"type","s":"types"}],"IgrPaneHeaderConnectionEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneHeaderConnectionEventArgs","k":"type","s":"types"}],"IgrPanePinnedEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPanePinnedEventArgs","k":"type","s":"types"}],"IgrPaneScrollEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrPaneScrollEventArgs","k":"type","s":"types"}],"IgrResizerLocation":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrResizerLocation","k":"variable","s":"variables"}],"IgrSplitPaneOrientation":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrSplitPaneOrientation","k":"variable","s":"variables"}],"IgrTabHeaderConnectionEventArgs":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/types/IgrTabHeaderConnectionEventArgs","k":"type","s":"types"}],"IgrUnpinnedLocation":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/variables/IgrUnpinnedLocation","k":"variable","s":"variables"}],"defineAllComponents":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/functions/defineAllComponents","k":"function","s":"functions"}],"defineComponents":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/functions/defineComponents","k":"function","s":"functions"}],"getCurrentI18n":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/functions/getCurrentI18n","k":"function","s":"functions"}],"getCurrentResourceStrings":[{"p":"igniteui-react-dockmanager","u":"/api/react/igniteui-react-dockmanager/19.6.0/functions/getCurrentResourceStrings","k":"function","s":"functions"}],"IgrAbsoluteVolumeOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAbsoluteVolumeOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAccumulationDistributionIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAccumulationDistributionIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAnchoredCategorySeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAnchoredCategorySeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAnchoredRadialSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAnchoredRadialSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAnnotationLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAnnotationLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAreaFragment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAreaFragment","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAssigningCategoryMarkerStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningCategoryMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningCategoryStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningCategoryStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningCategoryStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningCategoryStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningPolarMarkerStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningPolarMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningPolarStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningPolarStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningPolarStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningPolarStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningRadialMarkerStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningRadialMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningRadialStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningRadialStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningRadialStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningRadialStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningScatterMarkerStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningScatterMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningScatterStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningScatterStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningScatterStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningScatterStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningSeriesShapeStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningSeriesShapeStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningSeriesStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningSeriesStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningShapeMarkerStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningShapeMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningShapeStyleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningShapeStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAssigningShapeStyleEventArgsBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAssigningShapeStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","nativeElement":"nativeElement","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAverageDirectionalIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAverageDirectionalIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAverageTrueRangeIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAverageTrueRangeIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","i":"i","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrAxisAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxisAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundCornerRadius":"backgroundCornerRadius","backgroundPaddingBottom":"backgroundPaddingBottom","backgroundPaddingLeft":"backgroundPaddingLeft","backgroundPaddingRight":"backgroundPaddingRight","backgroundPaddingTop":"backgroundPaddingTop","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeOutlineThickness":"badgeOutlineThickness","badgeSize":"badgeSize","formatLabel":"formatLabel","isBadgeEnabled":"isBadgeEnabled","isPillShaped":"isPillShaped","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","nativeElement":"nativeElement","outline":"outline","strokeThickness":"strokeThickness","text":"text","textColor":"textColor","value":"value","findByName":"findByName","resetCachedExtent":"resetCachedExtent","resolveLabelValue":"resolveLabelValue"}}],"IgrAxisAnnotationCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxisAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrAxisCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxisCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrAxisMatcher":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxisMatcher","k":"class","s":"classes","m":{"constructor":"constructor","axisType":"axisType","index":"index","memberPath":"memberPath","memberPathType":"memberPathType","name":"name","nativeElement":"nativeElement","title":"title","typedIndex":"typedIndex","findByName":"findByName"}}],"IgrAxisMouseEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxisMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","axis":"axis","axisDateValue":"axisDateValue","axisValue":"axisValue","chartPosition":"chartPosition","label":"label","labelContext":"labelContext","nativeElement":"nativeElement","plotAreaPosition":"plotAreaPosition","worldPosition":"worldPosition"}}],"IgrAxisRangeChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrAxisRangeChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","maximumValue":"maximumValue","minimumValue":"minimumValue","nativeElement":"nativeElement","oldMaximumValue":"oldMaximumValue","oldMinimumValue":"oldMinimumValue"}}],"IgrBarFragment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrBarFragment","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","barFragmentXAxis":"barFragmentXAxis","barFragmentYAxis":"barFragmentYAxis","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","fragmentXAxis":"fragmentXAxis","fragmentYAxis":"fragmentYAxis","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrBarSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrBarSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrBollingerBandsOverlay":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrBollingerBandsOverlay","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrBollingerBandWidthIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrBollingerBandWidthIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrBrushScale":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrBrushScale","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","isBrushScale":"isBrushScale","isReady":"isReady","nativeElement":"nativeElement","propertyUpdated":"propertyUpdated","componentDidMount":"componentDidMount","findByName":"findByName","getBrush":"getBrush","notifySeries":"notifySeries","registerSeries":"registerSeries","render":"render","shouldComponentUpdate":"shouldComponentUpdate","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal"}}],"IgrBubbleSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrBubbleSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","fillMemberAsLegendLabel":"fillMemberAsLegendLabel","fillMemberAsLegendUnit":"fillMemberAsLegendUnit","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCalculatedColumn":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalculatedColumn","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","findByName":"findByName"}}],"IgrCalloutAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundCornerRadius":"backgroundCornerRadius","backgroundPaddingBottom":"backgroundPaddingBottom","backgroundPaddingLeft":"backgroundPaddingLeft","backgroundPaddingRight":"backgroundPaddingRight","backgroundPaddingTop":"backgroundPaddingTop","badgeBackground":"badgeBackground","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","content":"content","formatLabel":"formatLabel","itemColor":"itemColor","key":"key","leaderBrush":"leaderBrush","nativeElement":"nativeElement","outline":"outline","series":"series","strokeThickness":"strokeThickness","text":"text","textColor":"textColor","xValue":"xValue","yValue":"yValue","findByName":"findByName"}}],"IgrCalloutAnnotationCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrCalloutBadgeInfo":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutBadgeInfo","k":"class","s":"classes","m":{"constructor":"constructor","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrCalloutContentUpdatingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutContentUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","content":"content","item":"item","nativeElement":"nativeElement","xValue":"xValue","yValue":"yValue"}}],"IgrCalloutLabelUpdatingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutLabelUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","label":"label","nativeElement":"nativeElement","series":"series","seriesName":"seriesName","xValue":"xValue","yValue":"yValue"}}],"IgrCalloutLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","allowedPositions":"allowedPositions","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoCalloutVisibilityMode":"autoCalloutVisibilityMode","brush":"brush","calloutBackground":"calloutBackground","calloutBadgeBackground":"calloutBadgeBackground","calloutBadgeCorner":"calloutBadgeCorner","calloutBadgeGap":"calloutBadgeGap","calloutBadgeHeight":"calloutBadgeHeight","calloutBadgeImageMemberPath":"calloutBadgeImageMemberPath","calloutBadgeMatchSeries":"calloutBadgeMatchSeries","calloutBadgeOutline":"calloutBadgeOutline","calloutBadgeThickness":"calloutBadgeThickness","calloutBadgeVisible":"calloutBadgeVisible","calloutBadgeWidth":"calloutBadgeWidth","calloutCollisionMode":"calloutCollisionMode","calloutContentUpdating":"calloutContentUpdating","calloutCornerRadius":"calloutCornerRadius","calloutDarkTextColor":"calloutDarkTextColor","calloutExpandsAxisBufferEnabled":"calloutExpandsAxisBufferEnabled","calloutExpandsAxisBufferMaxHeight":"calloutExpandsAxisBufferMaxHeight","calloutExpandsAxisBufferMaxWidth":"calloutExpandsAxisBufferMaxWidth","calloutExpandsAxisBufferMinHeight":"calloutExpandsAxisBufferMinHeight","calloutExpandsAxisBufferMinWidth":"calloutExpandsAxisBufferMinWidth","calloutExpandsAxisBufferOnInitialVisibility":"calloutExpandsAxisBufferOnInitialVisibility","calloutExpandsAxisBufferOnlyWhenVisible":"calloutExpandsAxisBufferOnlyWhenVisible","calloutInterpolatedValuePrecision":"calloutInterpolatedValuePrecision","calloutLabelUpdating":"calloutLabelUpdating","calloutLeaderBrush":"calloutLeaderBrush","calloutLightTextColor":"calloutLightTextColor","calloutOutline":"calloutOutline","calloutPaddingBottom":"calloutPaddingBottom","calloutPaddingLeft":"calloutPaddingLeft","calloutPaddingRight":"calloutPaddingRight","calloutPaddingTop":"calloutPaddingTop","calloutPositionPadding":"calloutPositionPadding","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutSeriesSelecting":"calloutSeriesSelecting","calloutStrokeThickness":"calloutStrokeThickness","calloutStyleUpdating":"calloutStyleUpdating","calloutSuspendedWhenShiftingToVisible":"calloutSuspendedWhenShiftingToVisible","calloutTextColor":"calloutTextColor","coercionMethods":"coercionMethods","collisionChannel":"collisionChannel","contentMemberPath":"contentMemberPath","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueLabelMode":"highlightedValueLabelMode","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAutoCalloutBehaviorEnabled":"isAutoCalloutBehaviorEnabled","isBar":"isBar","isCalloutOffsettingEnabled":"isCalloutOffsettingEnabled","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCalloutRenderStyleEnabled":"isCustomCalloutRenderStyleEnabled","isCustomCalloutStyleEnabled":"isCustomCalloutStyleEnabled","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","keyMemberPath":"keyMemberPath","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelMemberPath":"labelMemberPath","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldTruncateOnBoundaryCollisions":"shouldTruncateOnBoundaryCollisions","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","textStyle":"textStyle","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useAutoContrastingLabelColors":"useAutoContrastingLabelColors","useIndex":"useIndex","useInterpolatedValueForAutoCalloutLabels":"useInterpolatedValueForAutoCalloutLabels","useItemColorForFill":"useItemColorForFill","useItemColorForOutline":"useItemColorForOutline","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSeriesColorForOutline":"useSeriesColorForOutline","useSingleShadow":"useSingleShadow","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xMemberPath":"xMemberPath","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","invalidateCalloutContent":"invalidateCalloutContent","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","recalculateAxisRangeBuffer":"recalculateAxisRangeBuffer","refreshAxisBufferAndCalloutPositions":"refreshAxisBufferAndCalloutPositions","refreshLabelPositions":"refreshLabelPositions","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCalloutPlacementPositionsCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutPlacementPositionsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrCalloutRenderStyleUpdatingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutRenderStyleUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualPosition":"actualPosition","background":"background","backgroundCorner":"backgroundCorner","badgeBackground":"badgeBackground","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","height":"height","item":"item","labelPositionX":"labelPositionX","labelPositionY":"labelPositionY","leaderBrush":"leaderBrush","nativeElement":"nativeElement","outline":"outline","series":"series","strokeThickness":"strokeThickness","targetPositionX":"targetPositionX","targetPositionY":"targetPositionY","textColor":"textColor","width":"width","xValue":"xValue","yValue":"yValue"}}],"IgrCalloutSeriesSelectingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutSeriesSelectingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","nativeElement":"nativeElement","series":"series","seriesName":"seriesName","xValue":"xValue","yValue":"yValue"}}],"IgrCalloutStyleUpdatingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCalloutStyleUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bacgkroundPaddingBottom":"bacgkroundPaddingBottom","bacgkroundPaddingLeft":"bacgkroundPaddingLeft","bacgkroundPaddingRight":"bacgkroundPaddingRight","bacgkroundPaddingTop":"bacgkroundPaddingTop","background":"background","backgroundCorner":"backgroundCorner","badgeBackground":"badgeBackground","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","item":"item","leaderBrush":"leaderBrush","nativeElement":"nativeElement","outline":"outline","series":"series","strokeThickness":"strokeThickness","textColor":"textColor","xValue":"xValue","yValue":"yValue"}}],"IgrCategoryAngleAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryAngleAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","areGroupSizesUneven":"areGroupSizesUneven","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryAxisBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryAxisBase","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryChart","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isCategoryHighlightingEnabled":"isCategoryHighlightingEnabled","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isItemHighlightingEnabled":"isItemHighlightingEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisActualMaximum":"xAxisActualMaximum","xAxisActualMinimum":"xAxisActualMinimum","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisGap":"xAxisGap","xAxisInterval":"xAxisInterval","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumGap":"xAxisMaximumGap","xAxisMinimumGapSize":"xAxisMinimumGapSize","xAxisMinorInterval":"xAxisMinorInterval","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisOverlap":"xAxisOverlap","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisActualMaximum":"yAxisActualMaximum","yAxisActualMinimum":"yAxisActualMinimum","yAxisAutoRangeBufferMode":"yAxisAutoRangeBufferMode","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFavorLabellingScaleEnd":"yAxisFavorLabellingScaleEnd","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getCurrentXAxisActualMaximum":"getCurrentXAxisActualMaximum","getCurrentXAxisActualMinimum":"getCurrentXAxisActualMinimum","getCurrentYAxisActualMaximum":"getCurrentYAxisActualMaximum","getCurrentYAxisActualMinimum":"getCurrentYAxisActualMinimum","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","recalculateMarginAutoExpansion":"recalculateMarginAutoExpansion","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","i":"i"}}],"IgrCategoryDateTimeXAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryDateTimeXAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","displayType":"displayType","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","unevenlySpacedLabels":"unevenlySpacedLabels","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryHighlightLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryHighlightLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryItemHighlightLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryItemHighlightLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highlightType":"highlightType","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerTemplate":"markerTemplate","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategorySeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategorySeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryToolTipLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryToolTipLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","toolTipPosition":"toolTipPosition","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryXAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryXAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCategoryYAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCategoryYAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrChaikinOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChaikinOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrChaikinVolatilityIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChaikinVolatilityIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrChartCursorEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartCursorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","nativeElement":"nativeElement","series":"series","seriesViewer":"seriesViewer","toString":"toString"}}],"IgrChartGroupDescription":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgrChartGroupDescriptionCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrChartMouseEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","chartPosition":"chartPosition","item":"item","nativeElement":"nativeElement","originalSource":"originalSource","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition","getPosition":"getPosition","toString":"toString"}}],"IgrChartResizeIdleEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartResizeIdleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrChartSelectedItemCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSelectedItemCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrChartSelection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSelection","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","matcher":"matcher","nativeElement":"nativeElement","series":"series","equals":"equals","findByName":"findByName"}}],"IgrChartSeriesEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSeriesEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","series":"series"}}],"IgrChartSortDescription":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgrChartSortDescriptionCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrChartSummaryDescription":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","nativeElement":"nativeElement","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgrChartSummaryDescriptionCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrChartSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrColorScale":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrColorScale","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","propertyUpdated":"propertyUpdated","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrColumnFragment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrColumnFragment","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","fragmentXAxis":"fragmentXAxis","fragmentYAxis":"fragmentYAxis","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrColumnSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrColumnSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedColumnVerticalPosition":"consolidatedColumnVerticalPosition","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrColumnSupportingCalculation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrColumnSupportingCalculation","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrCommodityChannelIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCommodityChannelIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrContourValueResolver":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrContourValueResolver","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrCrosshairLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCrosshairLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalLineVisibility":"horizontalLineVisibility","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipAxisAnnotationOnInvalidData":"skipAxisAnnotationOnInvalidData","skipAxisAnnotationOnZeroValueFragments":"skipAxisAnnotationOnZeroValueFragments","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalLineVisibility":"verticalLineVisibility","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCustomContourValueResolver":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCustomContourValueResolver","k":"class","s":"classes","m":{"constructor":"constructor","getCustomContourValues":"getCustomContourValues","nativeElement":"nativeElement","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrCustomContourValueResolverEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCustomContourValueResolverEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contourValues":"contourValues","nativeElement":"nativeElement","values":"values"}}],"IgrCustomIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCustomIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","basedOnColumns":"basedOnColumns","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","indicator":"indicator","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrCustomIndicatorNameCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCustomIndicatorNameCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrCustomPaletteBrushScale":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCustomPaletteBrushScale","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","brushSelectionMode":"brushSelectionMode","isBrushScale":"isBrushScale","isReady":"isReady","nativeElement":"nativeElement","propertyUpdated":"propertyUpdated","componentDidMount":"componentDidMount","findByName":"findByName","getBrush":"getBrush","getBrush1":"getBrush1","notifySeries":"notifySeries","registerSeries":"registerSeries","render":"render","shouldComponentUpdate":"shouldComponentUpdate","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal"}}],"IgrCustomPaletteColorScale":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrCustomPaletteColorScale","k":"class","s":"classes","m":{"constructor":"constructor","interpolationMode":"interpolationMode","maximumValue":"maximumValue","minimumValue":"minimumValue","nativeElement":"nativeElement","palette":"palette","propertyUpdated":"propertyUpdated","componentDidMount":"componentDidMount","findByName":"findByName","providePalette":"providePalette","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrDataAnnotationAxisLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationAxisLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationBandLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationBandLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationBreadthMemberPath":"annotationBreadthMemberPath","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationInfo":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationInfo","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","borderColor":"borderColor","borderRadius":"borderRadius","borderThickness":"borderThickness","dataIndex":"dataIndex","dataLabelX":"dataLabelX","dataLabelY":"dataLabelY","dataValueX":"dataValueX","dataValueY":"dataValueY","isCenterLabel":"isCenterLabel","isEndLabel":"isEndLabel","isStartLabel":"isStartLabel","isXAxisBadgeEnabled":"isXAxisBadgeEnabled","isYAxisBadgeEnabled":"isYAxisBadgeEnabled","nativeElement":"nativeElement","textColor":"textColor","xAxisBadgeBackground":"xAxisBadgeBackground","xAxisBadgeImagePath":"xAxisBadgeImagePath","xAxisBadgeMargin":"xAxisBadgeMargin","xAxisBadgeOutline":"xAxisBadgeOutline","xAxisBadgeOutlineThickness":"xAxisBadgeOutlineThickness","xAxisBadgeRadius":"xAxisBadgeRadius","xAxisBadgeSize":"xAxisBadgeSize","xAxisLabel":"xAxisLabel","xAxisPixel":"xAxisPixel","xAxisUserAnnotation":"xAxisUserAnnotation","xAxisValue":"xAxisValue","xAxisWindow":"xAxisWindow","yAxisBadgeBackground":"yAxisBadgeBackground","yAxisBadgeImagePath":"yAxisBadgeImagePath","yAxisBadgeMargin":"yAxisBadgeMargin","yAxisBadgeOutline":"yAxisBadgeOutline","yAxisBadgeOutlineThickness":"yAxisBadgeOutlineThickness","yAxisBadgeRadius":"yAxisBadgeRadius","yAxisBadgeSize":"yAxisBadgeSize","yAxisLabel":"yAxisLabel","yAxisPixel":"yAxisPixel","yAxisUserAnnotation":"yAxisUserAnnotation","yAxisValue":"yAxisValue","yAxisWindow":"yAxisWindow","findByName":"findByName"}}],"IgrDataAnnotationItem":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationItem","k":"class","s":"classes","m":{"constructor":"constructor","centerLabelX":"centerLabelX","centerLabelY":"centerLabelY","dataIndex":"dataIndex","endLabelX":"endLabelX","endLabelY":"endLabelY","nativeElement":"nativeElement","shapeBrush":"shapeBrush","shapeCenterX":"shapeCenterX","shapeCenterY":"shapeCenterY","shapeEndX":"shapeEndX","shapeEndY":"shapeEndY","shapeOutline":"shapeOutline","shapeStartX":"shapeStartX","shapeStartY":"shapeStartY","shapeThickness":"shapeThickness","startLabelX":"startLabelX","startLabelY":"startLabelY","findByName":"findByName"}}],"IgrDataAnnotationLineLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationLineLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationPointLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationPointLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationRangeLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationRangeLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationRectLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationRectLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationShapeLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationShapeLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationSliceLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationSliceLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelMemberPath":"annotationLabelMemberPath","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMemberPath":"annotationValueMemberPath","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataAnnotationStripLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataAnnotationStripLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelDisplayMode":"centerLabelDisplayMode","centerLabelMemberPath":"centerLabelMemberPath","centerLabelTextColor":"centerLabelTextColor","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelDisplayMode":"endLabelDisplayMode","endLabelMemberPath":"endLabelMemberPath","endLabelTextColor":"endLabelTextColor","endValueMemberPath":"endValueMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelDisplayMode":"startLabelDisplayMode","startLabelMemberPath":"startLabelMemberPath","startLabelTextColor":"startLabelTextColor","startValueMemberPath":"startValueMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDataChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataChart","k":"class","s":"classes","m":{"constructor":"constructor","actualAxes":"actualAxes","actualSeries":"actualSeries","contentAxes":"contentAxes","contentSeries":"contentSeries","actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualPlotAreaMarginBottom":"actualPlotAreaMarginBottom","actualPlotAreaMarginLeft":"actualPlotAreaMarginLeft","actualPlotAreaMarginRight":"actualPlotAreaMarginRight","actualPlotAreaMarginTop":"actualPlotAreaMarginTop","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","actualWindowScaleHorizontal":"actualWindowScaleHorizontal","actualWindowScaleVertical":"actualWindowScaleVertical","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axes":"axes","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","contentHitTestMode":"contentHitTestMode","contentViewport":"contentViewport","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","dataSource":"dataSource","defaultAxisMajorStroke":"defaultAxisMajorStroke","defaultAxisMinorStroke":"defaultAxisMinorStroke","defaultAxisStroke":"defaultAxisStroke","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","fullAxes":"fullAxes","fullSeries":"fullSeries","gridAreaRectChanged":"gridAreaRectChanged","gridMode":"gridMode","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isInCreateAnnotationMode":"isInCreateAnnotationMode","isInDeleteAnnotationMode":"isInDeleteAnnotationMode","isMap":"isMap","isPagePanningAllowed":"isPagePanningAllowed","isSquare":"isSquare","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","nativeElement":"nativeElement","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","series":"series","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldSuppressAxisLabelTruncation":"shouldSuppressAxisLabelTruncation","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","suppressAutoMarginAndAngleRecalculation":"suppressAutoMarginAndAngleRecalculation","syncChannel":"syncChannel","synchronizeHorizontally":"synchronizeHorizontally","synchronizeVertically":"synchronizeVertically","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","viewportRect":"viewportRect","width":"width","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowScaleHorizontal":"windowScaleHorizontal","windowScaleVertical":"windowScaleVertical","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attachSeries":"attachSeries","bindData":"bindData","bindHighlightedData":"bindHighlightedData","cancelAnnotationFlow":"cancelAnnotationFlow","cancelCreatingAnnotation":"cancelCreatingAnnotation","cancelDeletingAnnotation":"cancelDeletingAnnotation","cancelManipulation":"cancelManipulation","captureImage":"captureImage","clearTileZoomCache":"clearTileZoomCache","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","endTiledZoomingIfRunning":"endTiledZoomingIfRunning","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","finishCreatingAnnotation":"finishCreatingAnnotation","finishDeletingAnnotation":"finishDeletingAnnotation","flush":"flush","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getAnimationIdleVersionNumber":"getAnimationIdleVersionNumber","getCurrentActualWindowRect":"getCurrentActualWindowRect","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","initializeContent":"initializeContent","isAnimationActive":"isAnimationActive","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","queueForAnimationIdle":"queueForAnimationIdle","recalculateAutoLabelsAngle":"recalculateAutoLabelsAngle","recalculateMarginAutoExpansion":"recalculateMarginAutoExpansion","refreshComputedPlotAreaMargin":"refreshComputedPlotAreaMargin","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","renderToImage":"renderToImage","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","startTiledZoomingIfNecessary":"startTiledZoomingIfNecessary","styleUpdated":"styleUpdated","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgrDataChartDefaultTooltips":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataChartDefaultTooltips","k":"class","s":"classes","m":{"constructor":"constructor","anchoredCategoryTooltip":"anchoredCategoryTooltip","financialTooltip":"financialTooltip","polarTooltip":"polarTooltip","radialTooltip":"radialTooltip","rangeCategoryTooltip":"rangeCategoryTooltip","scatterTooltip":"scatterTooltip","shapeTooltip":"shapeTooltip","userAnnotationTooltip":"userAnnotationTooltip","ensureDefaultTooltip":"ensureDefaultTooltip","register":"register"}}],"IgrDataChartMouseButtonEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataChartMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelSelection":"cancelSelection","chart":"chart","chartPosition":"chartPosition","handled":"handled","item":"item","nativeElement":"nativeElement","originalSource":"originalSource","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition","getPosition":"getPosition","toString":"toString"}}],"IgrDataLegend":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataLegend","k":"class","s":"classes","m":{"constructor":"constructor","actualBackground":"actualBackground","actualBadgesVisible":"actualBadgesVisible","actualBorderBrush":"actualBorderBrush","actualBorderThicknessBottom":"actualBorderThicknessBottom","actualBorderThicknessLeft":"actualBorderThicknessLeft","actualBorderThicknessRight":"actualBorderThicknessRight","actualBorderThicknessTop":"actualBorderThicknessTop","actualPixelScalingRatio":"actualPixelScalingRatio","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","calculateColumnSummary":"calculateColumnSummary","contentBackground":"contentBackground","contentBorderBrush":"contentBorderBrush","contentBorderThickness":"contentBorderThickness","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","height":"height","i":"i","includedColumns":"includedColumns","includedSeries":"includedSeries","isEmbeddedInDataTooltip":"isEmbeddedInDataTooltip","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layoutMode":"layoutMode","pixelScalingRatio":"pixelScalingRatio","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","styleGroupRow":"styleGroupRow","styleHeaderRow":"styleHeaderRow","styleSeriesColumn":"styleSeriesColumn","styleSeriesRow":"styleSeriesRow","styleSummaryColumn":"styleSummaryColumn","styleSummaryRow":"styleSummaryRow","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","target":"target","targetCursorPositionX":"targetCursorPositionX","targetCursorPositionY":"targetCursorPositionY","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatCurrencyCode":"valueFormatCurrencyCode","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureActualBorderThickness":"ensureActualBorderThickness","ensureBadgeMargin":"ensureBadgeMargin","ensureGroupRowMargin":"ensureGroupRowMargin","ensureGroupTextMargin":"ensureGroupTextMargin","ensureHeaderRowMargin":"ensureHeaderRowMargin","ensureHeaderTextMargin":"ensureHeaderTextMargin","ensureLabelTextMargin":"ensureLabelTextMargin","ensureSummaryRowMargin":"ensureSummaryRowMargin","ensureSummaryTitleTextMargin":"ensureSummaryTitleTextMargin","ensureTitleTextMargin":"ensureTitleTextMargin","ensureUnitsTextMargin":"ensureUnitsTextMargin","ensureValueRowMargin":"ensureValueRowMargin","ensureValueTextMargin":"ensureValueTextMargin","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getAbbreviatedNumber":"getAbbreviatedNumber","getAbbreviatedString":"getAbbreviatedString","getAbbreviatedSymbol":"getAbbreviatedSymbol","initializeContent":"initializeContent","notifySizeChanged":"notifySizeChanged","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrDataLegendSeriesGroupInfo":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataLegendSeriesGroupInfo","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrDataLegendStylingColumnEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataLegendStylingColumnEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","columnIndex":"columnIndex","groupName":"groupName","labelText":"labelText","labelTextColor":"labelTextColor","nativeElement":"nativeElement","seriesIndex":"seriesIndex","seriesTitle":"seriesTitle","unitsText":"unitsText","unitsTextColor":"unitsTextColor","valueAbbreviation":"valueAbbreviation","valueMemberLabel":"valueMemberLabel","valueMemberPath":"valueMemberPath","valueOriginal":"valueOriginal","valueText":"valueText","valueTextColor":"valueTextColor"}}],"IgrDataLegendStylingRowEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataLegendStylingRowEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","badgeShape":"badgeShape","groupName":"groupName","isBadgeVisible":"isBadgeVisible","isRowVisible":"isRowVisible","nativeElement":"nativeElement","seriesIndex":"seriesIndex","seriesTitle":"seriesTitle","titleText":"titleText","titleTextColor":"titleTextColor"}}],"IgrDataLegendSummaryEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataLegendSummaryEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","columnMemberPath":"columnMemberPath","columnValues":"columnValues","nativeElement":"nativeElement","summaryLabel":"summaryLabel","summaryUnits":"summaryUnits","summaryValue":"summaryValue"}}],"IgrDataPieBaseChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataPieBaseChart","k":"class","s":"classes","m":{"constructor":"constructor","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","innerExtent":"innerExtent","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","sortDescriptions":"sortDescriptions","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisActualMaximum":"valueAxisActualMaximum","valueAxisActualMinimum":"valueAxisActualMinimum","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getOthersContext":"getOthersContext","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","i":"i"}}],"IgrDataPieChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataPieChart","k":"class","s":"classes","m":{"constructor":"constructor","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","innerExtent":"innerExtent","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","sortDescriptions":"sortDescriptions","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisActualMaximum":"valueAxisActualMaximum","valueAxisActualMinimum":"valueAxisActualMinimum","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getOthersContext":"getOthersContext","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","i":"i"}}],"IgrDataSourceSupportingCalculation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataSourceSupportingCalculation","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrDataToolTipLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDataToolTipLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualGroupedPositionModeX":"actualGroupedPositionModeX","actualGroupedPositionModeY":"actualGroupedPositionModeY","actualGroupingMode":"actualGroupingMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultPositionOffsetX":"defaultPositionOffsetX","defaultPositionOffsetY":"defaultPositionOffsetY","discreteLegendItemTemplate":"discreteLegendItemTemplate","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","groupedPositionModeX":"groupedPositionModeX","groupedPositionModeY":"groupedPositionModeY","groupingMode":"groupingMode","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","includedColumns":"includedColumns","includedSeries":"includedSeries","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layers":"layers","layoutMode":"layoutMode","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","positionOffsetX":"positionOffsetX","positionOffsetY":"positionOffsetY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","showDefaultTooltip":"showDefaultTooltip","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","ensureBadgeMargin":"ensureBadgeMargin","ensureGroupRowMargin":"ensureGroupRowMargin","ensureGroupTextMargin":"ensureGroupTextMargin","ensureHeaderRowMargin":"ensureHeaderRowMargin","ensureHeaderTextMargin":"ensureHeaderTextMargin","ensureLabelTextMargin":"ensureLabelTextMargin","ensureSummaryRowMargin":"ensureSummaryRowMargin","ensureSummaryTitleTextMargin":"ensureSummaryTitleTextMargin","ensureTitleTextMargin":"ensureTitleTextMargin","ensureUnitsTextMargin":"ensureUnitsTextMargin","ensureValueRowMargin":"ensureValueRowMargin","ensureValueTextMargin":"ensureValueTextMargin","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDetrendedPriceOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDetrendedPriceOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrDomainChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDomainChart","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","i":"i","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgrDomainChartPlotAreaPointerEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDomainChartPlotAreaPointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chartPosition":"chartPosition","nativeElement":"nativeElement","plotAreaPosition":"plotAreaPosition"}}],"IgrDomainChartSeriesPointerEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDomainChartSeriesPointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelSelection":"cancelSelection","chartPosition":"chartPosition","item":"item","nativeElement":"nativeElement","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition"}}],"IgrDomainChartTestingInfo":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDomainChartTestingInfo","k":"class","s":"classes","m":{"constructor":"constructor","mainDataChart":"mainDataChart","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrDoughnutChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDoughnutChart","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","height":"height","holeDimensionsChanged":"holeDimensionsChanged","i":"i","innerExtent":"innerExtent","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","pixelScalingRatio":"pixelScalingRatio","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","series":"series","sliceClick":"sliceClick","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getCenterCoordinates":"getCenterCoordinates","getContainerID":"getContainerID","getHoleRadius":"getHoleRadius","initializeContent":"initializeContent","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate"}}],"IgrDoughnutChartDefaultTooltips":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrDoughnutChartDefaultTooltips","k":"class","s":"classes","m":{"constructor":"constructor","doughnutSliceTooltip":"doughnutSliceTooltip","ensureDefaultTooltip":"ensureDefaultTooltip","register":"register"}}],"IgrEaseOfMovementIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrEaseOfMovementIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFastStochasticOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFastStochasticOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFilterStringErrorsParsingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","errors":"errors","nativeElement":"nativeElement","propertyName":"propertyName"}}],"IgrFinalValueLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinalValueLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","finalValueSelectionMode":"finalValueSelectionMode","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFinancialCalculationDataSource":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialCalculationDataSource","k":"class","s":"classes","m":{"constructor":"constructor","calculateCount":"calculateCount","calculateFrom":"calculateFrom","closeColumn":"closeColumn","count":"count","highColumn":"highColumn","i":"i","indicatorColumn":"indicatorColumn","longPeriod":"longPeriod","lowColumn":"lowColumn","maximumValue":"maximumValue","minimumValue":"minimumValue","multiplier":"multiplier","openColumn":"openColumn","period":"period","shortPeriod":"shortPeriod","specifiesRange":"specifiesRange","trueLow":"trueLow","trueRange":"trueRange","typicalColumn":"typicalColumn","volumeColumn":"volumeColumn","findByName":"findByName"}}],"IgrFinancialCalculationSupportingCalculations":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialCalculationSupportingCalculations","k":"class","s":"classes","m":{"constructor":"constructor","eMA":"eMA","longPriceOscillatorAverage":"longPriceOscillatorAverage","longVolumeOscillatorAverage":"longVolumeOscillatorAverage","makeSafe":"makeSafe","movingSum":"movingSum","nativeElement":"nativeElement","shortPriceOscillatorAverage":"shortPriceOscillatorAverage","shortVolumeOscillatorAverage":"shortVolumeOscillatorAverage","sMA":"sMA","sTDEV":"sTDEV","findByName":"findByName"}}],"IgrFinancialChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialChart","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","applyCustomIndicators":"applyCustomIndicators","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTemplate":"chartTemplate","chartTitle":"chartTitle","chartType":"chartType","chartTypePickerTemplate":"chartTypePickerTemplate","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","customIndicatorNames":"customIndicatorNames","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","indicatorBrushes":"indicatorBrushes","indicatorDisplayTypes":"indicatorDisplayTypes","indicatorLongPeriod":"indicatorLongPeriod","indicatorMenuTemplate":"indicatorMenuTemplate","indicatorMultiplier":"indicatorMultiplier","indicatorNegativeBrushes":"indicatorNegativeBrushes","indicatorPeriod":"indicatorPeriod","indicatorShortPeriod":"indicatorShortPeriod","indicatorSignalPeriod":"indicatorSignalPeriod","indicatorSmoothingPeriod":"indicatorSmoothingPeriod","indicatorThickness":"indicatorThickness","indicatorTypes":"indicatorTypes","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isLegendVisible":"isLegendVisible","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isToolbarVisible":"isToolbarVisible","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","overlayBrushes":"overlayBrushes","overlayMultiplier":"overlayMultiplier","overlayOutlines":"overlayOutlines","overlayThickness":"overlayThickness","overlayTypes":"overlayTypes","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","rangeSelectorOptions":"rangeSelectorOptions","rangeSelectorTemplate":"rangeSelectorTemplate","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","toolbarHeight":"toolbarHeight","toolbarTemplate":"toolbarTemplate","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","volumeBrushes":"volumeBrushes","volumeOutlines":"volumeOutlines","volumeThickness":"volumeThickness","volumeType":"volumeType","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisBreaks":"xAxisBreaks","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumValue":"xAxisMaximumValue","xAxisMinimumValue":"xAxisMinimumValue","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisMode":"xAxisMode","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisActualMaximum":"yAxisActualMaximum","yAxisActualMinimum":"yAxisActualMinimum","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisMode":"yAxisMode","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","zoomSliderType":"zoomSliderType","zoomSliderXAxisMajorStroke":"zoomSliderXAxisMajorStroke","zoomSliderXAxisMajorStrokeThickness":"zoomSliderXAxisMajorStrokeThickness","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","i":"i"}}],"IgrFinancialChartCustomIndicatorArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialChartCustomIndicatorArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","index":"index","indicatorInfo":"indicatorInfo","series":"series"}}],"IgrFinancialChartDefaultTemplates":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialChartDefaultTemplates","k":"class","s":"classes","m":{"constructor":"constructor","financialChartIndicatorMenuTemplate":"financialChartIndicatorMenuTemplate","financialChartRangeSelectorTemplate":"financialChartRangeSelectorTemplate","financialChartToolbarTemplate":"financialChartToolbarTemplate","financialChartTypePickerTemplate":"financialChartTypePickerTemplate","register":"register"}}],"IgrFinancialChartRangeSelectorOptionCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialChartRangeSelectorOptionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrFinancialEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","basedOn":"basedOn","count":"count","dataSource":"dataSource","i":"i","position":"position","supportingCalculations":"supportingCalculations"}}],"IgrFinancialIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFinancialIndicatorTypeCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialIndicatorTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrFinancialLegend":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialLegend","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","componentDidMount":"componentDidMount","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","render":"render","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgrFinancialOverlay":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialOverlay","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFinancialOverlayTypeCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialOverlayTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrFinancialPriceSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialPriceSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","closeMemberAsLegendLabel":"closeMemberAsLegendLabel","closeMemberAsLegendUnit":"closeMemberAsLegendUnit","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","openMemberAsLegendLabel":"openMemberAsLegendLabel","openMemberAsLegendUnit":"openMemberAsLegendUnit","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFinancialSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFinancialSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrForceIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrForceIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFragmentBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFragmentBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFullStochasticOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFullStochasticOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","smoothingPeriod":"smoothingPeriod","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","triggerPeriod":"triggerPeriod","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrFunnelChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelChart","k":"class","s":"classes","m":{"constructor":"constructor","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","allowSliceSelection":"allowSliceSelection","bottomEdgeWidth":"bottomEdgeWidth","brushes":"brushes","dataSource":"dataSource","formatInnerLabel":"formatInnerLabel","formatOuterLabel":"formatOuterLabel","funnelSliceDisplay":"funnelSliceDisplay","height":"height","highlightedValueMemberPath":"highlightedValueMemberPath","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","innerLabelMemberPath":"innerLabelMemberPath","innerLabelVisibility":"innerLabelVisibility","isInverted":"isInverted","legend":"legend","legendItemBadgeTemplate":"legendItemBadgeTemplate","nativeElement":"nativeElement","outerLabelAlignment":"outerLabelAlignment","outerLabelMemberPath":"outerLabelMemberPath","outerLabelTextColor":"outerLabelTextColor","outerLabelTextStyle":"outerLabelTextStyle","outerLabelVisibility":"outerLabelVisibility","outlines":"outlines","outlineThickness":"outlineThickness","pixelScalingRatio":"pixelScalingRatio","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","sliceClicked":"sliceClicked","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","unselectedSliceFill":"unselectedSliceFill","unselectedSliceOpacity":"unselectedSliceOpacity","unselectedSliceStroke":"unselectedSliceStroke","unselectedSliceStrokeThickness":"unselectedSliceStrokeThickness","useBezierCurve":"useBezierCurve","useOuterLabelsForLegend":"useOuterLabelsForLegend","useUnselectedStyle":"useUnselectedStyle","valueMemberPath":"valueMemberPath","width":"width","bindData":"bindData","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureSelectedSliceStyle":"ensureSelectedSliceStyle","ensureUnselectedSliceStyle":"ensureUnselectedSliceStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","toggleSelection":"toggleSelection","_createFromInternal":"_createFromInternal"}}],"IgrFunnelChartSelectedItemsChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelChartSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentItems":"currentItems","nativeElement":"nativeElement","newItems":"newItems","oldItems":"oldItems"}}],"IgrFunnelChartSelectedItemsCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelChartSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrFunnelDataContext":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelDataContext","k":"class","s":"classes","m":{"constructor":"constructor","index":"index","item":"item","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrFunnelSliceClickedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelSliceClickedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","index":"index","item":"item","nativeElement":"nativeElement"}}],"IgrFunnelSliceDataContext":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelSliceDataContext","k":"class","s":"classes","m":{"constructor":"constructor","itemOutline":"itemOutline"}}],"IgrFunnelSliceEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrFunnelSliceEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","index":"index","item":"item","nativeElement":"nativeElement","position":"position"}}],"IgrHierarchicalRingSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrHierarchicalRingSeries","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","childrenMemberPath":"childrenMemberPath","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","bindData":"bindData","componentDidMount":"componentDidMount","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrHighDensityScatterSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrHighDensityScatterSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useBruteForce":"useBruteForce","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrHoleDimensionsChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrHoleDimensionsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","center":"center","nativeElement":"nativeElement","radius":"radius"}}],"IgrHorizontalAnchoredCategorySeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrHorizontalAnchoredCategorySeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrHorizontalRangeCategorySeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrHorizontalRangeCategorySeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrHorizontalStackedSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrHorizontalStackedSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrIndexCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrIndexCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrIndicatorDisplayTypeCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrIndicatorDisplayTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrItemLegend":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrItemLegend","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","orientation":"orientation","textColor":"textColor","textStyle":"textStyle","componentDidMount":"componentDidMount","createItemwiseLegendItems":"createItemwiseLegendItems","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","render":"render","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgrItemToolTipLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrItemToolTipLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrItemwiseStrategyBasedIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrItemwiseStrategyBasedIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrLabelClickEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLabelClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","allowSliceClick":"allowSliceClick","item":"item","nativeElement":"nativeElement"}}],"IgrLabelFormatOverrideEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLabelFormatOverrideEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dateTime":"dateTime","format":"format","label":"label","nativeElement":"nativeElement"}}],"IgrLegend":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLegend","k":"class","s":"classes","m":{"constructor":"constructor","container":"container","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","orientation":"orientation","textColor":"textColor","textStyle":"textStyle","componentDidMount":"componentDidMount","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","render":"render","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgrLegendBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLegendBase","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","render":"render","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgrLegendMouseButtonEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLegendMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","handled":"handled","item":"item","legendItem":"legendItem","nativeElement":"nativeElement","originalSource":"originalSource","series":"series","toString":"toString"}}],"IgrLegendMouseEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLegendMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","item":"item","legendItem":"legendItem","nativeElement":"nativeElement","originalSource":"originalSource","series":"series","toString":"toString"}}],"IgrLegendTextContentChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLegendTextContentChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrLinearContourValueResolver":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLinearContourValueResolver","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","valueCount":"valueCount","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrLineFragment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLineFragment","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrLineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrMarkerSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMarkerSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrMarkerTypeCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMarkerTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrMarketFacilitationIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMarketFacilitationIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrMassIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMassIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrMedianPriceIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMedianPriceIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrMoneyFlowIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMoneyFlowIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrMovingAverageConvergenceDivergenceIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrMovingAverageConvergenceDivergenceIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","signalPeriod":"signalPeriod","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrNegativeVolumeIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrNegativeVolumeIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrNumericAngleAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrNumericAngleAxis","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrNumericAxisBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrNumericAxisBase","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrNumericRadiusAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrNumericRadiusAxis","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","innerRadiusExtentScale":"innerRadiusExtentScale","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","radiusExtentScale":"radiusExtentScale","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledValue":"getScaledValue","getUnscaledValue":"getUnscaledValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrNumericXAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrNumericXAxis","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrNumericYAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrNumericYAxis","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrOnBalanceVolumeIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrOnBalanceVolumeIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrOrdinalTimeXAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrOrdinalTimeXAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormats":"labelFormats","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrOthersCategoryContext":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrOthersCategoryContext","k":"class","s":"classes","m":{"constructor":"constructor","items":"items","nativeElement":"nativeElement","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrOverlayTextInfo":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrOverlayTextInfo","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundMode":"backgroundMode","backgroundShift":"backgroundShift","borderMode":"borderMode","borderRadius":"borderRadius","borderShift":"borderShift","borderStroke":"borderStroke","borderThickness":"borderThickness","horizontalMargin":"horizontalMargin","horizontalPadding":"horizontalPadding","nativeElement":"nativeElement","shapeBrush":"shapeBrush","shapeOutline":"shapeOutline","textAngle":"textAngle","textColor":"textColor","textColorMode":"textColorMode","textColorShift":"textColorShift","textContent":"textContent","textLocation":"textLocation","textVisible":"textVisible","verticalMargin":"verticalMargin","verticalPadding":"verticalPadding","findByName":"findByName"}}],"IgrOverlayTextUpdatingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrOverlayTextUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundMode":"backgroundMode","backgroundShift":"backgroundShift","borderMode":"borderMode","borderRadius":"borderRadius","borderShift":"borderShift","borderStroke":"borderStroke","borderThickness":"borderThickness","dataIndex":"dataIndex","horizontalMargin":"horizontalMargin","horizontalPadding":"horizontalPadding","nativeElement":"nativeElement","shapeBrush":"shapeBrush","shapeOutline":"shapeOutline","textAngle":"textAngle","textColor":"textColor","textColorMode":"textColorMode","textColorShift":"textColorShift","textContent":"textContent","textEmpty":"textEmpty","textLocation":"textLocation","textVisible":"textVisible","verticalMargin":"verticalMargin","verticalPadding":"verticalPadding"}}],"IgrPercentagePriceOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPercentagePriceOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPercentageVolumeOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPercentageVolumeOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPercentChangeYAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPercentChangeYAxis","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPieChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPieChart","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","dataSource":"dataSource","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","height":"height","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","nativeElement":"nativeElement","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","width":"width","bindData":"bindData","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideContainer":"provideContainer","removeWidgetLevelDataSource":"removeWidgetLevelDataSource","render":"render","setWidgetLevelDataSource":"setWidgetLevelDataSource","shouldComponentUpdate":"shouldComponentUpdate","simulateLeftClick":"simulateLeftClick","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgrPieChartBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPieChartBase","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","nativeElement":"nativeElement","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","componentDidMount":"componentDidMount","destroy":"destroy","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideContainer":"provideContainer","removeWidgetLevelDataSource":"removeWidgetLevelDataSource","render":"render","setWidgetLevelDataSource":"setWidgetLevelDataSource","shouldComponentUpdate":"shouldComponentUpdate","simulateLeftClick":"simulateLeftClick","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgrPieSliceDataContext":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPieSliceDataContext","k":"class","s":"classes","m":{"constructor":"constructor","isOthersSlice":"isOthersSlice","percentValue":"percentValue"}}],"IgrPieSliceOthersContext":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPieSliceOthersContext","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrPlotAreaMouseButtonEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPlotAreaMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chartPosition":"chartPosition","manipulationOccurred":"manipulationOccurred","nativeElement":"nativeElement","plotAreaPosition":"plotAreaPosition","viewer":"viewer"}}],"IgrPlotAreaMouseEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPlotAreaMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chartPosition":"chartPosition","isDuringManipulation":"isDuringManipulation","nativeElement":"nativeElement","plotAreaPosition":"plotAreaPosition","viewer":"viewer"}}],"IgrPointSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPointSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarLineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarLineSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarLineSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarScatterSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarScatterSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarSplineAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarSplineAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPolarSplineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPolarSplineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPositiveVolumeIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPositiveVolumeIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPriceChannelOverlay":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPriceChannelOverlay","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrPriceVolumeTrendIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrPriceVolumeTrendIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrProgressiveLoadStatusEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrProgressiveLoadStatusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentStatus":"currentStatus","nativeElement":"nativeElement"}}],"IgrProportionalCategoryAngleAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrProportionalCategoryAngleAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","areGroupSizesUneven":"areGroupSizesUneven","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","hasOthersCategory":"hasOthersCategory","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","normalizationMayContainUnknowns":"normalizationMayContainUnknowns","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersIndex":"othersIndex","othersValue":"othersValue","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","valueMemberPath":"valueMemberPath","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNormalizingValueAtIndex":"getNormalizingValueAtIndex","getPercentageValue":"getPercentageValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","isOthersValue":"isOthersValue","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRadialAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRadialAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRadialBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRadialBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRadialBaseChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRadialBaseChart","k":"class","s":"classes","m":{"constructor":"constructor","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisExtent":"valueAxisExtent","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInverted":"valueAxisInverted","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","i":"i"}}],"IgrRadialColumnSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRadialColumnSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRadialLineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRadialLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRadialPieSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRadialPieSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useInsetOutlines":"useInsetOutlines","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRangeAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRangeAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRangeCategorySeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRangeCategorySeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRangeColumnSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRangeColumnSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRateOfChangeAndMomentumIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRateOfChangeAndMomentumIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRefreshCompletedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRefreshCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrRelativeStrengthIndexIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRelativeStrengthIndexIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrRenderRequestedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRenderRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","animate":"animate","nativeElement":"nativeElement"}}],"IgrRing":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRing","k":"class","s":"classes","m":{"constructor":"constructor","center":"center","controlSize":"controlSize","index":"index","innerExtend":"innerExtend","nativeElement":"nativeElement","ringBreadth":"ringBreadth","ringSeries":"ringSeries","findByName":"findByName","prepareArcs":"prepareArcs","renderArcs":"renderArcs"}}],"IgrRingSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRingSeries","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","dataSource":"dataSource","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","i":"i","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","ring":"ring","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSlices":"selectedSlices","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","bindData":"bindData","componentDidMount":"componentDidMount","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal"}}],"IgrRingSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRingSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","i":"i","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","bindData":"bindData","componentDidMount":"componentDidMount","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal"}}],"IgrRingSeriesCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrRingSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrScaleLegend":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScaleLegend","k":"class","s":"classes","m":{"constructor":"constructor","isFinancial":"isFinancial","isItemwise":"isItemwise","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","render":"render","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","i":"i"}}],"IgrScalerParams":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScalerParams","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","referenceValue":"referenceValue","findByName":"findByName"}}],"IgrScatterAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualColorScale":"actualColorScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","colorMemberAsLegendLabel":"colorMemberAsLegendLabel","colorMemberAsLegendUnit":"colorMemberAsLegendUnit","colorMemberPath":"colorMemberPath","colorScale":"colorScale","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","attachImage":"attachImage","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","updateActualColorScale":"updateActualColorScale","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterContourSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterContourSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFillScale":"actualFillScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillScale":"fillScale","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterLineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterPolygonSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterPolygonSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterPolylineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterPolylineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterSplineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterSplineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrScatterTriangulationSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrScatterTriangulationSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSelectedItemChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSelectedItemChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newItem":"newItem","oldItem":"oldItem"}}],"IgrSelectedItemChangingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSelectedItemChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","nativeElement":"nativeElement","newItem":"newItem","oldItem":"oldItem"}}],"IgrSelectedItemsChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentItems":"currentItems","nativeElement":"nativeElement","newItems":"newItems","oldItems":"oldItems"}}],"IgrSelectedItemsChangingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSelectedItemsChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","currentItems":"currentItems","nativeElement":"nativeElement","newItems":"newItems","oldItems":"oldItems"}}],"IgrSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","i":"i","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgrSeriesCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrSeriesLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesLayer","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","propertyOverlays":"propertyOverlays","transitionOutIsInProgress":"transitionOutIsInProgress","zIndex":"zIndex","findByName":"findByName","playTransitionIn":"playTransitionIn","playTransitionOutAndRemove":"playTransitionOutAndRemove"}}],"IgrSeriesLayerCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesLayerCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrSeriesLayerPropertyOverlay":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesLayerPropertyOverlay","k":"class","s":"classes","m":{"constructor":"constructor","currentValuePropertyName":"currentValuePropertyName","internalPropertyName":"internalPropertyName","isAlwaysApplied":"isAlwaysApplied","isSourceOverlay":"isSourceOverlay","nativeElement":"nativeElement","propertyName":"propertyName","propertyUpdated":"propertyUpdated","value":"value","valueResolving":"valueResolving","findByName":"findByName"}}],"IgrSeriesLayerPropertyOverlayCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesLayerPropertyOverlayCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrSeriesLayerPropertyOverlayValueResolvingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesLayerPropertyOverlayValueResolvingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","value":"value"}}],"IgrSeriesMatcher":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesMatcher","k":"class","s":"classes","m":{"constructor":"constructor","index":"index","memberPath":"memberPath","memberPathType":"memberPathType","name":"name","nativeElement":"nativeElement","title":"title","findByName":"findByName"}}],"IgrSeriesViewer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesViewer","k":"class","s":"classes","m":{"constructor":"constructor","actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","contentHitTestMode":"contentHitTestMode","contentViewport":"contentViewport","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","fullSeries":"fullSeries","gridAreaRectChanged":"gridAreaRectChanged","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isDetached":"isDetached","isInCreateAnnotationMode":"isInCreateAnnotationMode","isInDeleteAnnotationMode":"isInDeleteAnnotationMode","isMap":"isMap","isPagePanningAllowed":"isPagePanningAllowed","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","nativeElement":"nativeElement","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","viewportRect":"viewportRect","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attachSeries":"attachSeries","cancelAnnotationFlow":"cancelAnnotationFlow","cancelCreatingAnnotation":"cancelCreatingAnnotation","cancelDeletingAnnotation":"cancelDeletingAnnotation","cancelManipulation":"cancelManipulation","captureImage":"captureImage","clearTileZoomCache":"clearTileZoomCache","componentDidMount":"componentDidMount","destroy":"destroy","endTiledZoomingIfRunning":"endTiledZoomingIfRunning","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","finishCreatingAnnotation":"finishCreatingAnnotation","finishDeletingAnnotation":"finishDeletingAnnotation","flush":"flush","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getAnimationIdleVersionNumber":"getAnimationIdleVersionNumber","getCurrentActualWindowRect":"getCurrentActualWindowRect","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","isAnimationActive":"isAnimationActive","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","queueForAnimationIdle":"queueForAnimationIdle","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","renderToImage":"renderToImage","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","startTiledZoomingIfNecessary":"startTiledZoomingIfNecessary","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgrSeriesViewerManipulationEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesViewerManipulationEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dragSelectRectangle":"dragSelectRectangle","isDragSelect":"isDragSelect","isDragSelectCancelled":"isDragSelectCancelled","isDragZoom":"isDragZoom","isZoomPan":"isZoomPan","nativeElement":"nativeElement"}}],"IgrSeriesViewerSelectedSeriesItemsChangedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesViewerSelectedSeriesItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentItems":"currentItems","nativeElement":"nativeElement","newItems":"newItems","oldItems":"oldItems"}}],"IgrSeriesViewerSelectedSeriesItemsChangingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSeriesViewerSelectedSeriesItemsChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","currentItems":"currentItems","nativeElement":"nativeElement","newItems":"newItems","oldItems":"oldItems"}}],"IgrShapeSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrShapeSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSizeScale":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSizeScale","k":"class","s":"classes","m":{"constructor":"constructor","globalMaximum":"globalMaximum","globalMinimum":"globalMinimum","isLogarithmic":"isLogarithmic","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","nativeElement":"nativeElement","propertyUpdated":"propertyUpdated","componentDidMount":"componentDidMount","findByName":"findByName","getCurrentGlobalMaximum":"getCurrentGlobalMaximum","getCurrentGlobalMinimum":"getCurrentGlobalMinimum","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrSliceClickEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSliceClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","dataContext":"dataContext","endAngle":"endAngle","fill":"fill","index":"index","isExploded":"isExploded","isOthersSlice":"isOthersSlice","isSelected":"isSelected","nativeElement":"nativeElement","origin":"origin","originalEvent":"originalEvent","outline":"outline","radius":"radius","startAngle":"startAngle"}}],"IgrSliceEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSliceEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","dataContext":"dataContext","endAngle":"endAngle","fill":"fill","index":"index","isExploded":"isExploded","isOthersSlice":"isOthersSlice","isSelected":"isSelected","nativeElement":"nativeElement","origin":"origin","originalEvent":"originalEvent","outline":"outline","position":"position","radius":"radius","startAngle":"startAngle"}}],"IgrSlowStochasticOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSlowStochasticOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSparkline":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSparkline","k":"class","s":"classes","m":{"constructor":"constructor","actualPixelScalingRatio":"actualPixelScalingRatio","brush":"brush","dataSource":"dataSource","displayNormalRangeInFront":"displayNormalRangeInFront","displayType":"displayType","firstMarkerBrush":"firstMarkerBrush","firstMarkerSize":"firstMarkerSize","firstMarkerVisibility":"firstMarkerVisibility","formatLabel":"formatLabel","height":"height","highMarkerBrush":"highMarkerBrush","highMarkerSize":"highMarkerSize","highMarkerVisibility":"highMarkerVisibility","horizontalAxisBrush":"horizontalAxisBrush","horizontalAxisLabel":"horizontalAxisLabel","horizontalAxisVisibility":"horizontalAxisVisibility","horizontalLabelFormat":"horizontalLabelFormat","horizontalLabelFormatSpecifiers":"horizontalLabelFormatSpecifiers","labelMemberPath":"labelMemberPath","lastMarkerBrush":"lastMarkerBrush","lastMarkerSize":"lastMarkerSize","lastMarkerVisibility":"lastMarkerVisibility","lineThickness":"lineThickness","lowMarkerBrush":"lowMarkerBrush","lowMarkerSize":"lowMarkerSize","lowMarkerVisibility":"lowMarkerVisibility","markerBrush":"markerBrush","markerSize":"markerSize","markerVisibility":"markerVisibility","maximum":"maximum","minimum":"minimum","nativeElement":"nativeElement","negativeBrush":"negativeBrush","negativeMarkerBrush":"negativeMarkerBrush","negativeMarkerSize":"negativeMarkerSize","negativeMarkerVisibility":"negativeMarkerVisibility","normalRangeFill":"normalRangeFill","normalRangeMaximum":"normalRangeMaximum","normalRangeMinimum":"normalRangeMinimum","normalRangeVisibility":"normalRangeVisibility","pixelScalingRatio":"pixelScalingRatio","tooltipTemplate":"tooltipTemplate","trendLineBrush":"trendLineBrush","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","valueMemberPath":"valueMemberPath","verticalAxisBrush":"verticalAxisBrush","verticalAxisLabel":"verticalAxisLabel","verticalAxisVisibility":"verticalAxisVisibility","verticalLabelFormat":"verticalLabelFormat","verticalLabelFormatSpecifiers":"verticalLabelFormatSpecifiers","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","initializeContent":"initializeContent","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrSplineAreaFragment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSplineAreaFragment","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSplineAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSplineAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSplineFragment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSplineFragment","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSplineFragmentBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSplineFragmentBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSplineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSplineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrSplineSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrSplineSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStacked100AreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStacked100AreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStacked100BarSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStacked100BarSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStacked100ColumnSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStacked100ColumnSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStacked100LineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStacked100LineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStacked100SplineAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStacked100SplineAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStacked100SplineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStacked100SplineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedBarSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedBarSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedColumnSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedColumnSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedFragmentSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedFragmentSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDataLegendGroup":"actualDataLegendGroup","actualHighlightedValuesDataLegendGroup":"actualHighlightedValuesDataLegendGroup","actualHighlightedValuesDisplayMode":"actualHighlightedValuesDisplayMode","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualIsDropShadowEnabled":"actualIsDropShadowEnabled","actualIsSplineShapePartOfRange":"actualIsSplineShapePartOfRange","actualIsTransitionInEnabled":"actualIsTransitionInEnabled","actualLegendItemBadgeMode":"actualLegendItemBadgeMode","actualLegendItemBadgeShape":"actualLegendItemBadgeShape","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLegendItemTemplate":"actualLegendItemTemplate","actualLegendItemVisibility":"actualLegendItemVisibility","actualLineCap":"actualLineCap","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillMode":"actualMarkerFillMode","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerOutlineMode":"actualMarkerOutlineMode","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerThickness":"actualMarkerThickness","actualMarkerType":"actualMarkerType","actualOpacity":"actualOpacity","actualOutline":"actualOutline","actualOutlineMode":"actualOutlineMode","actualRadiusX":"actualRadiusX","actualRadiusY":"actualRadiusY","actualShadowBlur":"actualShadowBlur","actualShadowColor":"actualShadowColor","actualShadowOffsetX":"actualShadowOffsetX","actualShadowOffsetY":"actualShadowOffsetY","actualThickness":"actualThickness","actualTransitionDuration":"actualTransitionDuration","actualTransitionEasingFunction":"actualTransitionEasingFunction","actualTransitionInDuration":"actualTransitionInDuration","actualTransitionInEasingFunction":"actualTransitionInEasingFunction","actualTransitionInMode":"actualTransitionInMode","actualTransitionInSpeedType":"actualTransitionInSpeedType","actualUseSingleShadow":"actualUseSingleShadow","actualValueMemberAsLegendLabel":"actualValueMemberAsLegendLabel","actualValueMemberAsLegendUnit":"actualValueMemberAsLegendUnit","actualVisibility":"actualVisibility","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","brush":"brush","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","highlightedDataSource":"highlightedDataSource","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightingFadeOpacity":"highlightingFadeOpacity","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDropShadowEnabled":"isDropShadowEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","name":"name","nativeElement":"nativeElement","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","parentOrLocalBrush":"parentOrLocalBrush","propertyUpdated":"propertyUpdated","radiusX":"radiusX","radiusY":"radiusY","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","moveCursorPoint":"moveCursorPoint","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","render":"render","replayTransitionIn":"replayTransitionIn","scrollIntoView":"scrollIntoView","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","toWorldPosition":"toWorldPosition","_createFromInternal":"_createFromInternal"}}],"IgrStackedLineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedSeriesCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrStackedSeriesCreatedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedSeriesCreatedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","brush":"brush","dashArray":"dashArray","index":"index","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerOutline":"markerOutline","markerStyle":"markerStyle","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","nativeElement":"nativeElement","outline":"outline","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction"}}],"IgrStackedSplineAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedSplineAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStackedSplineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStackedSplineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStandardDeviationIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStandardDeviationIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStepAreaSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStepAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStepLineSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStepLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStochRSIIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStochRSIIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStraightNumericAxisBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStraightNumericAxisBase","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStrategyBasedIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStrategyBasedIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrStyleShapeEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrStyleShapeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","item":"item","shapeFill":"shapeFill","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","ensureShapeStyle":"ensureShapeStyle"}}],"IgrTimeAxisBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisBase","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrTimeAxisBreak":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisBreak","k":"class","s":"classes","m":{"constructor":"constructor","end":"end","i":"i","interval":"interval","start":"start","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrTimeAxisBreakCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrTimeAxisInterval":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisInterval","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","interval":"interval","intervalType":"intervalType","range":"range","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrTimeAxisIntervalCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisIntervalCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrTimeAxisLabelFormat":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisLabelFormat","k":"class","s":"classes","m":{"constructor":"constructor","format":"format","i":"i","labelFormatOverride":"labelFormatOverride","range":"range","repeatedDayFormat":"repeatedDayFormat","repeatedMonthFormat":"repeatedMonthFormat","repeatedYearFormat":"repeatedYearFormat","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrTimeAxisLabelFormatCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeAxisLabelFormatCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrTimeXAxis":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTimeXAxis","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","breaks":"breaks","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","intervals":"intervals","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormats":"labelFormats","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","bindAxes":"bindAxes","componentDidMount":"componentDidMount","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","render":"render","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrTransitionOutCompletedEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTransitionOutCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrTreemap":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTreemap","k":"class","s":"classes","m":{"constructor":"constructor","actualStyleMappings":"actualStyleMappings","contentStyleMappings":"contentStyleMappings","actualHighlightingMode":"actualHighlightingMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","animating":"animating","breadcrumbSequence":"breadcrumbSequence","customValueMemberPath":"customValueMemberPath","darkTextColor":"darkTextColor","dataSource":"dataSource","fillBrushes":"fillBrushes","fillScaleLogarithmBase":"fillScaleLogarithmBase","fillScaleMaximumValue":"fillScaleMaximumValue","fillScaleMinimumValue":"fillScaleMinimumValue","fillScaleMode":"fillScaleMode","focusItem":"focusItem","headerBackground":"headerBackground","headerDarkTextColor":"headerDarkTextColor","headerDisplayMode":"headerDisplayMode","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverDarkTextColor":"headerHoverDarkTextColor","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","headerTextStyle":"headerTextStyle","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValueOpacity":"highlightedValueOpacity","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","i":"i","idMemberPath":"idMemberPath","interactionPixelScalingRatio":"interactionPixelScalingRatio","isFillScaleLogarithmic":"isFillScaleLogarithmic","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelHorizontalFitMode":"labelHorizontalFitMode","labelLeftMargin":"labelLeftMargin","labelMemberPath":"labelMemberPath","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVerticalFitMode":"labelVerticalFitMode","layoutOrientation":"layoutOrientation","layoutType":"layoutType","minimumDisplaySize":"minimumDisplaySize","nodeOpacity":"nodeOpacity","nodePointerEnter":"nodePointerEnter","nodePointerLeave":"nodePointerLeave","nodePointerOver":"nodePointerOver","nodePointerPressed":"nodePointerPressed","nodePointerReleased":"nodePointerReleased","nodeRenderStyling":"nodeRenderStyling","nodeStyling":"nodeStyling","outline":"outline","overlayHeaderBackground":"overlayHeaderBackground","overlayHeaderHoverBackground":"overlayHeaderHoverBackground","overlayHeaderLabelBottomMargin":"overlayHeaderLabelBottomMargin","overlayHeaderLabelLeftMargin":"overlayHeaderLabelLeftMargin","overlayHeaderLabelRightMargin":"overlayHeaderLabelRightMargin","overlayHeaderLabelTopMargin":"overlayHeaderLabelTopMargin","parentIdMemberPath":"parentIdMemberPath","parentNodeBottomMargin":"parentNodeBottomMargin","parentNodeBottomPadding":"parentNodeBottomPadding","parentNodeLeftMargin":"parentNodeLeftMargin","parentNodeLeftPadding":"parentNodeLeftPadding","parentNodeRightMargin":"parentNodeRightMargin","parentNodeRightPadding":"parentNodeRightPadding","parentNodeTopMargin":"parentNodeTopMargin","parentNodeTopPadding":"parentNodeTopPadding","pixelScalingRatio":"pixelScalingRatio","rootTitle":"rootTitle","strokeThickness":"strokeThickness","styleMappings":"styleMappings","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","valueMemberPath":"valueMemberPath","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","initializeContent":"initializeContent","markDirty":"markDirty","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","notifySizeChanged":"notifySizeChanged","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","updateStyle":"updateStyle"}}],"IgrTreemapNodePointerEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTreemapNodePointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","customValue":"customValue","isHandled":"isHandled","isOverHeader":"isOverHeader","isRightButton":"isRightButton","item":"item","label":"label","nativeElement":"nativeElement","parentItem":"parentItem","parentLabel":"parentLabel","parentSum":"parentSum","parentValue":"parentValue","position":"position","sum":"sum","value":"value"}}],"IgrTreemapNodeStyle":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTreemapNodeStyle","k":"class","s":"classes","m":{"constructor":"constructor","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","nativeElement":"nativeElement","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","textColor":"textColor","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrTreemapNodeStyleMapping":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTreemapNodeStyleMapping","k":"class","s":"classes","m":{"constructor":"constructor","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","mappingMode":"mappingMode","maximumValue":"maximumValue","minimumValue":"minimumValue","name":"name","nativeElement":"nativeElement","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","targetType":"targetType","textColor":"textColor","value":"value","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrTreemapNodeStyleMappingCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTreemapNodeStyleMappingCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrTreemapNodeStylingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTreemapNodeStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","customValue":"customValue","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isHighlightInProgress":"isHighlightInProgress","isParent":"isParent","item":"item","label":"label","nativeElement":"nativeElement","parentItem":"parentItem","parentLabel":"parentLabel","parentSum":"parentSum","parentValue":"parentValue","style":"style","sum":"sum","totalHighlightProgress":"totalHighlightProgress","value":"value"}}],"IgrTrendLineLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTrendLineLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualTargetSeries":"actualTargetSeries","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLinePeriod":"trendLinePeriod","trendLineType":"trendLineType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getManagerIdentifier":"getManagerIdentifier","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrTrendLineTypeCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTrendLineTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrTRIXIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTRIXIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrTypicalPriceIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrTypicalPriceIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrUltimateOscillatorIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUltimateOscillatorIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrUserAnnotationCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrUserAnnotationInformation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAnnotationInformation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","annotationId":"annotationId","badgeColor":"badgeColor","badgeImageUri":"badgeImageUri","dialogSuggestedXLocation":"dialogSuggestedXLocation","dialogSuggestedYLocation":"dialogSuggestedYLocation","label":"label","mainColor":"mainColor","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrUserAnnotationInformationEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAnnotationInformationEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotationInfo":"annotationInfo","nativeElement":"nativeElement"}}],"IgrUserAnnotationLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAnnotationLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","annotations":"annotations","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingPointAnnotation":"stylingPointAnnotation","stylingSliceAnnotation":"stylingSliceAnnotation","stylingStripAnnotation":"stylingStripAnnotation","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","userAnnotationInformationRequested":"userAnnotationInformationRequested","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","loadAnnotationsFromJson":"loadAnnotationsFromJson","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","saveAnnotationsToJson":"saveAnnotationsToJson","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrUserAnnotationToolTipContentUpdatingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAnnotationToolTipContentUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotationInfo":"annotationInfo","content":"content","nativeElement":"nativeElement"}}],"IgrUserAnnotationToolTipLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAnnotationToolTipLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","contentUpdating":"contentUpdating","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrUserAxisAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAxisAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","nativeElement":"nativeElement","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrUserAxisAnnotationStylingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserAxisAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation","nativeElement":"nativeElement"}}],"IgrUserBaseAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserBaseAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","nativeElement":"nativeElement","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrUserPointAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserPointAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","nativeElement":"nativeElement","targetSeries":"targetSeries","targetSeriesMatcher":"targetSeriesMatcher","targetSeriesName":"targetSeriesName","xValue":"xValue","yValue":"yValue","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrUserPointAnnotationStylingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserPointAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation","nativeElement":"nativeElement"}}],"IgrUserShapeAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserShapeAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","nativeElement":"nativeElement","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrUserSliceAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserSliceAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","nativeElement":"nativeElement","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrUserSliceAnnotationStylingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserSliceAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation","nativeElement":"nativeElement"}}],"IgrUserStripAnnotation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserStripAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","endLabel":"endLabel","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelColor":"endLabelColor","endValue":"endValue","endValueDisplayMode":"endValueDisplayMode","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","nativeElement":"nativeElement","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","startLabel":"startLabel","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelColor":"startLabelColor","startValue":"startValue","startValueDisplayMode":"startValueDisplayMode","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrUserStripAnnotationStylingEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrUserStripAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation","nativeElement":"nativeElement"}}],"IgrValueBrushScale":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrValueBrushScale","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","isBrushScale":"isBrushScale","isLogarithmic":"isLogarithmic","isReady":"isReady","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","nativeElement":"nativeElement","propertyUpdated":"propertyUpdated","componentDidMount":"componentDidMount","findByName":"findByName","getBrush":"getBrush","notifySeries":"notifySeries","registerSeries":"registerSeries","render":"render","shouldComponentUpdate":"shouldComponentUpdate","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal"}}],"IgrValueLayer":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrValueLayer","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualValueLayerBrush":"actualValueLayerBrush","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","stylingOverlayText":"stylingOverlayText","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueMode":"valueMode","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationFormatLabel":"xAxisAnnotationFormatLabel","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationFormatLabel":"yAxisAnnotationFormatLabel","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrValueModeCollection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrValueModeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrValueOverlay":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrValueOverlay","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axis":"axis","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationFormatLabel":"axisAnnotationFormatLabel","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","axisName":"axisName","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","dateValue":"dateValue","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","labelResolved":"labelResolved","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingOverlayText":"stylingOverlayText","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","value":"value","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","bindAxes":"bindAxes","bindSeries":"bindSeries","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getLabel":"getLabel","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrVerticalAnchoredCategorySeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrVerticalAnchoredCategorySeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrVerticalStackedSeriesBase":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrVerticalStackedSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrWaterfallSeries":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrWaterfallSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrWeightedCloseIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrWeightedCloseIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrWilliamsPercentRIndicator":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrWilliamsPercentRIndicator","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","componentDidMount":"componentDidMount","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","render":"render","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","shouldComponentUpdate":"shouldComponentUpdate","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","i":"i"}}],"IgrXYChart":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrXYChart","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInverted":"yAxisInverted","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","componentDidMount":"componentDidMount","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","render":"render","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","i":"i"}}],"IgrZoomSlider":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrZoomSlider","k":"class","s":"classes","m":{"constructor":"constructor","actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","endInset":"endInset","height":"height","higherCalloutBrush":"higherCalloutBrush","higherCalloutOutline":"higherCalloutOutline","higherCalloutStrokeThickness":"higherCalloutStrokeThickness","higherCalloutTextColor":"higherCalloutTextColor","higherShadeBrush":"higherShadeBrush","higherShadeOutline":"higherShadeOutline","higherShadeStrokeThickness":"higherShadeStrokeThickness","higherThumbBrush":"higherThumbBrush","higherThumbHeight":"higherThumbHeight","higherThumbOutline":"higherThumbOutline","higherThumbRidgesBrush":"higherThumbRidgesBrush","higherThumbStrokeThickness":"higherThumbStrokeThickness","higherThumbWidth":"higherThumbWidth","i":"i","isCustomBarProvided":"isCustomBarProvided","isCustomRangeThumbProvided":"isCustomRangeThumbProvided","isCustomShadeProvided":"isCustomShadeProvided","isCustomThumbProvided":"isCustomThumbProvided","lowerCalloutBrush":"lowerCalloutBrush","lowerCalloutOutline":"lowerCalloutOutline","lowerCalloutStrokeThickness":"lowerCalloutStrokeThickness","lowerCalloutTextColor":"lowerCalloutTextColor","lowerShadeBrush":"lowerShadeBrush","lowerShadeOutline":"lowerShadeOutline","lowerShadeStrokeThickness":"lowerShadeStrokeThickness","lowerThumbBrush":"lowerThumbBrush","lowerThumbHeight":"lowerThumbHeight","lowerThumbOutline":"lowerThumbOutline","lowerThumbRidgesBrush":"lowerThumbRidgesBrush","lowerThumbStrokeThickness":"lowerThumbStrokeThickness","lowerThumbWidth":"lowerThumbWidth","maxZoomWidth":"maxZoomWidth","minZoomWidth":"minZoomWidth","orientation":"orientation","panTransitionDuration":"panTransitionDuration","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingAxisValue":"resolvingAxisValue","startInset":"startInset","thumbCalloutTextStyle":"thumbCalloutTextStyle","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","width":"width","windowRect":"windowRect","windowRectChanged":"windowRectChanged","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","findByName":"findByName","flush":"flush","hide":"hide","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","show":"show","trackDirty":"trackDirty","updateStyle":"updateStyle"}}],"IgrZoomSliderResolvingAxisValueEventArgs":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/classes/IgrZoomSliderResolvingAxisValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","position":"position","value":"value"}}],"IIgrAbsoluteVolumeOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAbsoluteVolumeOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrAccumulationDistributionIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAccumulationDistributionIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrAnchoredCategorySeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAnchoredCategorySeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrAnchoredRadialSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAnchoredRadialSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrAnnotationLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAnnotationLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrAreaFragmentProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAreaFragmentProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrAverageDirectionalIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAverageDirectionalIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrAverageTrueRangeIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAverageTrueRangeIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrAxisProps","k":"interface","s":"interfaces","m":{"actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrBarFragmentProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrBarFragmentProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrBarSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrBarSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrBollingerBandsOverlayProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrBollingerBandsOverlayProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrBollingerBandWidthIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrBollingerBandWidthIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrBrushScaleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrBrushScaleProps","k":"interface","s":"interfaces","m":{"brushes":"brushes","children":"children","propertyUpdated":"propertyUpdated"}}],"IIgrBubbleSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrBubbleSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberAsLegendLabel":"fillMemberAsLegendLabel","fillMemberAsLegendUnit":"fillMemberAsLegendUnit","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrCalloutLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCalloutLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","allowedPositions":"allowedPositions","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoCalloutVisibilityMode":"autoCalloutVisibilityMode","brush":"brush","calloutBackground":"calloutBackground","calloutBadgeBackground":"calloutBadgeBackground","calloutBadgeCorner":"calloutBadgeCorner","calloutBadgeGap":"calloutBadgeGap","calloutBadgeHeight":"calloutBadgeHeight","calloutBadgeImageMemberPath":"calloutBadgeImageMemberPath","calloutBadgeMatchSeries":"calloutBadgeMatchSeries","calloutBadgeOutline":"calloutBadgeOutline","calloutBadgeThickness":"calloutBadgeThickness","calloutBadgeVisible":"calloutBadgeVisible","calloutBadgeWidth":"calloutBadgeWidth","calloutCollisionMode":"calloutCollisionMode","calloutContentUpdating":"calloutContentUpdating","calloutCornerRadius":"calloutCornerRadius","calloutDarkTextColor":"calloutDarkTextColor","calloutExpandsAxisBufferEnabled":"calloutExpandsAxisBufferEnabled","calloutExpandsAxisBufferMaxHeight":"calloutExpandsAxisBufferMaxHeight","calloutExpandsAxisBufferMaxWidth":"calloutExpandsAxisBufferMaxWidth","calloutExpandsAxisBufferMinHeight":"calloutExpandsAxisBufferMinHeight","calloutExpandsAxisBufferMinWidth":"calloutExpandsAxisBufferMinWidth","calloutExpandsAxisBufferOnInitialVisibility":"calloutExpandsAxisBufferOnInitialVisibility","calloutExpandsAxisBufferOnlyWhenVisible":"calloutExpandsAxisBufferOnlyWhenVisible","calloutInterpolatedValuePrecision":"calloutInterpolatedValuePrecision","calloutLabelUpdating":"calloutLabelUpdating","calloutLeaderBrush":"calloutLeaderBrush","calloutLightTextColor":"calloutLightTextColor","calloutOutline":"calloutOutline","calloutPaddingBottom":"calloutPaddingBottom","calloutPaddingLeft":"calloutPaddingLeft","calloutPaddingRight":"calloutPaddingRight","calloutPaddingTop":"calloutPaddingTop","calloutPositionPadding":"calloutPositionPadding","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutSeriesSelecting":"calloutSeriesSelecting","calloutStrokeThickness":"calloutStrokeThickness","calloutStyleUpdating":"calloutStyleUpdating","calloutSuspendedWhenShiftingToVisible":"calloutSuspendedWhenShiftingToVisible","calloutTextColor":"calloutTextColor","children":"children","coercionMethods":"coercionMethods","collisionChannel":"collisionChannel","contentMemberPath":"contentMemberPath","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueLabelMode":"highlightedValueLabelMode","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAutoCalloutBehaviorEnabled":"isAutoCalloutBehaviorEnabled","isCalloutOffsettingEnabled":"isCalloutOffsettingEnabled","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCalloutRenderStyleEnabled":"isCustomCalloutRenderStyleEnabled","isCustomCalloutStyleEnabled":"isCustomCalloutStyleEnabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","keyMemberPath":"keyMemberPath","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelMemberPath":"labelMemberPath","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldTruncateOnBoundaryCollisions":"shouldTruncateOnBoundaryCollisions","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","textStyle":"textStyle","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useAutoContrastingLabelColors":"useAutoContrastingLabelColors","useIndex":"useIndex","useInterpolatedValueForAutoCalloutLabels":"useInterpolatedValueForAutoCalloutLabels","useItemColorForFill":"useItemColorForFill","useItemColorForOutline":"useItemColorForOutline","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSeriesColorForOutline":"useSeriesColorForOutline","useSingleShadow":"useSingleShadow","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xMemberPath":"xMemberPath","yMemberPath":"yMemberPath"}}],"IIgrCategoryAngleAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryAngleAxisProps","k":"interface","s":"interfaces","m":{"actualInterval":"actualInterval","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrCategoryAxisBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryAxisBaseProps","k":"interface","s":"interfaces","m":{"actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrCategoryChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryChartProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","isCategoryHighlightingEnabled":"isCategoryHighlightingEnabled","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isItemHighlightingEnabled":"isItemHighlightingEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisGap":"xAxisGap","xAxisInterval":"xAxisInterval","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumGap":"xAxisMaximumGap","xAxisMinimumGapSize":"xAxisMinimumGapSize","xAxisMinorInterval":"xAxisMinorInterval","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisOverlap":"xAxisOverlap","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisAutoRangeBufferMode":"yAxisAutoRangeBufferMode","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFavorLabellingScaleEnd":"yAxisFavorLabellingScaleEnd","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin"}}],"IIgrCategoryDateTimeXAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryDateTimeXAxisProps","k":"interface","s":"interfaces","m":{"actualInterval":"actualInterval","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","displayType":"displayType","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isCompanionAxis":"isCompanionAxis","isDataPreSorted":"isDataPreSorted","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","unevenlySpacedLabels":"unevenlySpacedLabels","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrCategoryHighlightLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryHighlightLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrCategoryItemHighlightLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryItemHighlightLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highlightType":"highlightType","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerTemplate":"markerTemplate","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrCategorySeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategorySeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrCategoryToolTipLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryToolTipLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","toolTipPosition":"toolTipPosition","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrCategoryXAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryXAxisProps","k":"interface","s":"interfaces","m":{"actualInterval":"actualInterval","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan"}}],"IIgrCategoryYAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCategoryYAxisProps","k":"interface","s":"interfaces","m":{"actualInterval":"actualInterval","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan"}}],"IIgrChaikinOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrChaikinOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrChaikinVolatilityIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrChaikinVolatilityIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrColorScaleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrColorScaleProps","k":"interface","s":"interfaces","m":{"children":"children","propertyUpdated":"propertyUpdated"}}],"IIgrColumnFragmentProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrColumnFragmentProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrColumnSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrColumnSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedColumnVerticalPosition":"consolidatedColumnVerticalPosition","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrCommodityChannelIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCommodityChannelIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrContourValueResolverProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrContourValueResolverProps","k":"interface","s":"interfaces","m":{"children":"children"}}],"IIgrCrosshairLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCrosshairLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalLineVisibility":"horizontalLineVisibility","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipAxisAnnotationOnInvalidData":"skipAxisAnnotationOnInvalidData","skipAxisAnnotationOnZeroValueFragments":"skipAxisAnnotationOnZeroValueFragments","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalLineVisibility":"verticalLineVisibility","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor"}}],"IIgrCustomContourValueResolverProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCustomContourValueResolverProps","k":"interface","s":"interfaces","m":{"children":"children","getCustomContourValues":"getCustomContourValues"}}],"IIgrCustomIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCustomIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","basedOnColumns":"basedOnColumns","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","indicator":"indicator","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrCustomPaletteBrushScaleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCustomPaletteBrushScaleProps","k":"interface","s":"interfaces","m":{"brushes":"brushes","brushSelectionMode":"brushSelectionMode","children":"children","propertyUpdated":"propertyUpdated"}}],"IIgrCustomPaletteColorScaleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrCustomPaletteColorScaleProps","k":"interface","s":"interfaces","m":{"children":"children","interpolationMode":"interpolationMode","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated"}}],"IIgrDataAnnotationAxisLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationAxisLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationBandLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationBandLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationBreadthMemberPath":"annotationBreadthMemberPath","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationLineLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationLineLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationPointLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationPointLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationRangeLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationRangeLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationRectLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationRectLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationShapeLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationShapeLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationSliceLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationSliceLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelMemberPath":"annotationLabelMemberPath","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMemberPath":"annotationValueMemberPath","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataAnnotationStripLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataAnnotationStripLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelDisplayMode":"centerLabelDisplayMode","centerLabelMemberPath":"centerLabelMemberPath","centerLabelTextColor":"centerLabelTextColor","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelDisplayMode":"endLabelDisplayMode","endLabelMemberPath":"endLabelMemberPath","endLabelTextColor":"endLabelTextColor","endValueMemberPath":"endValueMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelDisplayMode":"startLabelDisplayMode","startLabelMemberPath":"startLabelMemberPath","startLabelTextColor":"startLabelTextColor","startValueMemberPath":"startValueMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDataChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataChartProps","k":"interface","s":"interfaces","m":{"actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualPlotAreaMarginBottom":"actualPlotAreaMarginBottom","actualPlotAreaMarginLeft":"actualPlotAreaMarginLeft","actualPlotAreaMarginRight":"actualPlotAreaMarginRight","actualPlotAreaMarginTop":"actualPlotAreaMarginTop","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","actualWindowScaleHorizontal":"actualWindowScaleHorizontal","actualWindowScaleVertical":"actualWindowScaleVertical","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","contentHitTestMode":"contentHitTestMode","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","dataSource":"dataSource","defaultAxisMajorStroke":"defaultAxisMajorStroke","defaultAxisMinorStroke":"defaultAxisMinorStroke","defaultAxisStroke":"defaultAxisStroke","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","gridAreaRectChanged":"gridAreaRectChanged","gridMode":"gridMode","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isPagePanningAllowed":"isPagePanningAllowed","isSquare":"isSquare","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldSuppressAxisLabelTruncation":"shouldSuppressAxisLabelTruncation","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","suppressAutoMarginAndAngleRecalculation":"suppressAutoMarginAndAngleRecalculation","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","width":"width","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowScaleHorizontal":"windowScaleHorizontal","windowScaleVertical":"windowScaleVertical","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize"}}],"IIgrDataLegendProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataLegendProps","k":"interface","s":"interfaces","m":{"actualBackground":"actualBackground","actualBadgesVisible":"actualBadgesVisible","actualBorderBrush":"actualBorderBrush","actualBorderThicknessBottom":"actualBorderThicknessBottom","actualBorderThicknessLeft":"actualBorderThicknessLeft","actualBorderThicknessRight":"actualBorderThicknessRight","actualBorderThicknessTop":"actualBorderThicknessTop","actualPixelScalingRatio":"actualPixelScalingRatio","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","calculateColumnSummary":"calculateColumnSummary","children":"children","contentBackground":"contentBackground","contentBorderBrush":"contentBorderBrush","contentBorderThickness":"contentBorderThickness","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","height":"height","includedColumns":"includedColumns","includedSeries":"includedSeries","isEmbeddedInDataTooltip":"isEmbeddedInDataTooltip","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layoutMode":"layoutMode","pixelScalingRatio":"pixelScalingRatio","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","styleGroupRow":"styleGroupRow","styleHeaderRow":"styleHeaderRow","styleSeriesColumn":"styleSeriesColumn","styleSeriesRow":"styleSeriesRow","styleSummaryColumn":"styleSummaryColumn","styleSummaryRow":"styleSummaryRow","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","target":"target","targetCursorPositionX":"targetCursorPositionX","targetCursorPositionY":"targetCursorPositionY","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatCurrencyCode":"valueFormatCurrencyCode","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","width":"width"}}],"IIgrDataPieBaseChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataPieBaseChartProps","k":"interface","s":"interfaces","m":{"actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","innerExtent":"innerExtent","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth"}}],"IIgrDataPieChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataPieChartProps","k":"interface","s":"interfaces","m":{"actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","innerExtent":"innerExtent","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth"}}],"IIgrDataToolTipLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDataToolTipLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualGroupedPositionModeX":"actualGroupedPositionModeX","actualGroupedPositionModeY":"actualGroupedPositionModeY","actualGroupingMode":"actualGroupingMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","defaultPositionOffsetX":"defaultPositionOffsetX","defaultPositionOffsetY":"defaultPositionOffsetY","discreteLegendItemTemplate":"discreteLegendItemTemplate","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","groupedPositionModeX":"groupedPositionModeX","groupedPositionModeY":"groupedPositionModeY","groupingMode":"groupingMode","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","includedColumns":"includedColumns","includedSeries":"includedSeries","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layoutMode":"layoutMode","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","positionOffsetX":"positionOffsetX","positionOffsetY":"positionOffsetY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","showDefaultTooltip":"showDefaultTooltip","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrDetrendedPriceOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDetrendedPriceOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrDomainChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDomainChartProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth"}}],"IIgrDoughnutChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrDoughnutChartProps","k":"interface","s":"interfaces","m":{"actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","children":"children","height":"height","holeDimensionsChanged":"holeDimensionsChanged","innerExtent":"innerExtent","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","pixelScalingRatio":"pixelScalingRatio","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","sliceClick":"sliceClick","width":"width"}}],"IIgrEaseOfMovementIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrEaseOfMovementIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFastStochasticOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFastStochasticOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFinalValueLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinalValueLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","finalValueSelectionMode":"finalValueSelectionMode","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrFinancialChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinancialChartProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","applyCustomIndicators":"applyCustomIndicators","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","customIndicatorNames":"customIndicatorNames","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","indicatorBrushes":"indicatorBrushes","indicatorDisplayTypes":"indicatorDisplayTypes","indicatorLongPeriod":"indicatorLongPeriod","indicatorMultiplier":"indicatorMultiplier","indicatorNegativeBrushes":"indicatorNegativeBrushes","indicatorPeriod":"indicatorPeriod","indicatorShortPeriod":"indicatorShortPeriod","indicatorSignalPeriod":"indicatorSignalPeriod","indicatorSmoothingPeriod":"indicatorSmoothingPeriod","indicatorThickness":"indicatorThickness","indicatorTypes":"indicatorTypes","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isLegendVisible":"isLegendVisible","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isToolbarVisible":"isToolbarVisible","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","overlayBrushes":"overlayBrushes","overlayMultiplier":"overlayMultiplier","overlayOutlines":"overlayOutlines","overlayThickness":"overlayThickness","overlayTypes":"overlayTypes","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","rangeSelectorOptions":"rangeSelectorOptions","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","toolbarHeight":"toolbarHeight","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","volumeBrushes":"volumeBrushes","volumeOutlines":"volumeOutlines","volumeThickness":"volumeThickness","volumeType":"volumeType","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumValue":"xAxisMaximumValue","xAxisMinimumValue":"xAxisMinimumValue","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisMode":"xAxisMode","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisMode":"yAxisMode","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","zoomSliderType":"zoomSliderType","zoomSliderXAxisMajorStroke":"zoomSliderXAxisMajorStroke","zoomSliderXAxisMajorStrokeThickness":"zoomSliderXAxisMajorStrokeThickness"}}],"IIgrFinancialIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinancialIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFinancialLegendProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinancialLegendProps","k":"interface","s":"interfaces","m":{"children":"children","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged"}}],"IIgrFinancialOverlayProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinancialOverlayProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFinancialPriceSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinancialPriceSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","closeMemberAsLegendLabel":"closeMemberAsLegendLabel","closeMemberAsLegendUnit":"closeMemberAsLegendUnit","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","openMemberAsLegendLabel":"openMemberAsLegendLabel","openMemberAsLegendUnit":"openMemberAsLegendUnit","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFinancialSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFinancialSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrForceIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrForceIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFragmentBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFragmentBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFullStochasticOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFullStochasticOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","smoothingPeriod":"smoothingPeriod","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","triggerPeriod":"triggerPeriod","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrFunnelChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrFunnelChartProps","k":"interface","s":"interfaces","m":{"actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","allowSliceSelection":"allowSliceSelection","bottomEdgeWidth":"bottomEdgeWidth","brushes":"brushes","children":"children","dataSource":"dataSource","formatInnerLabel":"formatInnerLabel","formatOuterLabel":"formatOuterLabel","funnelSliceDisplay":"funnelSliceDisplay","height":"height","highlightedValueMemberPath":"highlightedValueMemberPath","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","innerLabelMemberPath":"innerLabelMemberPath","innerLabelVisibility":"innerLabelVisibility","isInverted":"isInverted","legend":"legend","legendItemBadgeTemplate":"legendItemBadgeTemplate","outerLabelAlignment":"outerLabelAlignment","outerLabelMemberPath":"outerLabelMemberPath","outerLabelTextColor":"outerLabelTextColor","outerLabelTextStyle":"outerLabelTextStyle","outerLabelVisibility":"outerLabelVisibility","outlines":"outlines","outlineThickness":"outlineThickness","pixelScalingRatio":"pixelScalingRatio","selectedItemsChanged":"selectedItemsChanged","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","sliceClicked":"sliceClicked","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","unselectedSliceFill":"unselectedSliceFill","unselectedSliceOpacity":"unselectedSliceOpacity","unselectedSliceStroke":"unselectedSliceStroke","unselectedSliceStrokeThickness":"unselectedSliceStrokeThickness","useBezierCurve":"useBezierCurve","useOuterLabelsForLegend":"useOuterLabelsForLegend","useUnselectedStyle":"useUnselectedStyle","valueMemberPath":"valueMemberPath","width":"width"}}],"IIgrHierarchicalRingSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrHierarchicalRingSeriesProps","k":"interface","s":"interfaces","m":{"brushes":"brushes","children":"children","childrenMemberPath":"childrenMemberPath","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","name":"name","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath"}}],"IIgrHighDensityScatterSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrHighDensityScatterSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useBruteForce":"useBruteForce","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrHorizontalAnchoredCategorySeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrHorizontalAnchoredCategorySeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrHorizontalRangeCategorySeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrHorizontalRangeCategorySeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrHorizontalStackedSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrHorizontalStackedSeriesBaseProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrItemLegendProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrItemLegendProps","k":"interface","s":"interfaces","m":{"children":"children","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","orientation":"orientation","textColor":"textColor","textStyle":"textStyle"}}],"IIgrItemToolTipLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrItemToolTipLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrItemwiseStrategyBasedIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrItemwiseStrategyBasedIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrLegendBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrLegendBaseProps","k":"interface","s":"interfaces","m":{"children":"children","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged"}}],"IIgrLegendProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrLegendProps","k":"interface","s":"interfaces","m":{"children":"children","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","orientation":"orientation","textColor":"textColor","textStyle":"textStyle"}}],"IIgrLinearContourValueResolverProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrLinearContourValueResolverProps","k":"interface","s":"interfaces","m":{"children":"children","valueCount":"valueCount"}}],"IIgrLineFragmentProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrLineFragmentProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrLineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrLineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrMarkerSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrMarkerSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrMarketFacilitationIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrMarketFacilitationIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrMassIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrMassIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrMedianPriceIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrMedianPriceIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrMoneyFlowIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrMoneyFlowIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrMovingAverageConvergenceDivergenceIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrMovingAverageConvergenceDivergenceIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","signalPeriod":"signalPeriod","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrNegativeVolumeIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrNegativeVolumeIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrNumericAngleAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrNumericAngleAxisProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrNumericAxisBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrNumericAxisBaseProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrNumericRadiusAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrNumericRadiusAxisProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","innerRadiusExtentScale":"innerRadiusExtentScale","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","radiusExtentScale":"radiusExtentScale","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrNumericXAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrNumericXAxisProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrNumericYAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrNumericYAxisProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrOnBalanceVolumeIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrOnBalanceVolumeIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrOrdinalTimeXAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrOrdinalTimeXAxisProps","k":"interface","s":"interfaces","m":{"actualInterval":"actualInterval","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan"}}],"IIgrOthersCategoryContextProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrOthersCategoryContextProps","k":"interface","s":"interfaces","m":{"children":"children","items":"items"}}],"IIgrPercentagePriceOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPercentagePriceOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrPercentageVolumeOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPercentageVolumeOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrPercentChangeYAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPercentChangeYAxisProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrPieChartBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPieChartBaseProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","children":"children","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath"}}],"IIgrPieChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPieChartProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","children":"children","dataSource":"dataSource","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","height":"height","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","width":"width"}}],"IIgrPointSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPointSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrPolarAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPolarBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPolarLineSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarLineSeriesBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPolarLineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarLineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPolarScatterSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarScatterSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPolarSplineAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarSplineAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPolarSplineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPolarSplineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrPositiveVolumeIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPositiveVolumeIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrPriceChannelOverlayProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPriceChannelOverlayProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrPriceVolumeTrendIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrPriceVolumeTrendIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrProportionalCategoryAngleAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrProportionalCategoryAngleAxisProps","k":"interface","s":"interfaces","m":{"actualInterval":"actualInterval","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","valueMemberPath":"valueMemberPath"}}],"IIgrRadialAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRadialAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrRadialBaseChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRadialBaseChartProps","k":"interface","s":"interfaces","m":{"actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisExtent":"valueAxisExtent","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInverted":"valueAxisInverted","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth"}}],"IIgrRadialBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRadialBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrRadialColumnSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRadialColumnSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrRadialLineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRadialLineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrRadialPieSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRadialPieSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useInsetOutlines":"useInsetOutlines","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrRangeAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRangeAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrRangeCategorySeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRangeCategorySeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrRangeColumnSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRangeColumnSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrRateOfChangeAndMomentumIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRateOfChangeAndMomentumIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrRelativeStrengthIndexIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRelativeStrengthIndexIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrRingSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRingSeriesBaseProps","k":"interface","s":"interfaces","m":{"brushes":"brushes","children":"children","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","name":"name","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath"}}],"IIgrRingSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrRingSeriesProps","k":"interface","s":"interfaces","m":{"brushes":"brushes","children":"children","dataSource":"dataSource","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","name":"name","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","ring":"ring","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSlices":"selectedSlices","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath"}}],"IIgrScaleLegendProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScaleLegendProps","k":"interface","s":"interfaces","m":{"children":"children","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged"}}],"IIgrScatterAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualColorScale":"actualColorScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","colorMemberAsLegendLabel":"colorMemberAsLegendLabel","colorMemberAsLegendUnit":"colorMemberAsLegendUnit","colorMemberPath":"colorMemberPath","colorScale":"colorScale","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrScatterBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrScatterContourSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterContourSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFillScale":"actualFillScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillScale":"fillScale","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrScatterLineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterLineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrScatterPolygonSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterPolygonSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrScatterPolylineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterPolylineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrScatterSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrScatterSplineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterSplineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrScatterTriangulationSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrScatterTriangulationSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath"}}],"IIgrSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrSeriesViewerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSeriesViewerProps","k":"interface","s":"interfaces","m":{"actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","children":"children","contentHitTestMode":"contentHitTestMode","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","gridAreaRectChanged":"gridAreaRectChanged","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isPagePanningAllowed":"isPagePanningAllowed","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize"}}],"IIgrShapeSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrShapeSeriesBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSizeScaleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSizeScaleProps","k":"interface","s":"interfaces","m":{"children":"children","globalMaximum":"globalMaximum","globalMinimum":"globalMinimum","isLogarithmic":"isLogarithmic","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated"}}],"IIgrSlowStochasticOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSlowStochasticOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSparklineProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSparklineProps","k":"interface","s":"interfaces","m":{"actualPixelScalingRatio":"actualPixelScalingRatio","brush":"brush","children":"children","dataSource":"dataSource","displayNormalRangeInFront":"displayNormalRangeInFront","displayType":"displayType","firstMarkerBrush":"firstMarkerBrush","firstMarkerSize":"firstMarkerSize","firstMarkerVisibility":"firstMarkerVisibility","formatLabel":"formatLabel","height":"height","highMarkerBrush":"highMarkerBrush","highMarkerSize":"highMarkerSize","highMarkerVisibility":"highMarkerVisibility","horizontalAxisBrush":"horizontalAxisBrush","horizontalAxisLabel":"horizontalAxisLabel","horizontalAxisVisibility":"horizontalAxisVisibility","horizontalLabelFormat":"horizontalLabelFormat","horizontalLabelFormatSpecifiers":"horizontalLabelFormatSpecifiers","labelMemberPath":"labelMemberPath","lastMarkerBrush":"lastMarkerBrush","lastMarkerSize":"lastMarkerSize","lastMarkerVisibility":"lastMarkerVisibility","lineThickness":"lineThickness","lowMarkerBrush":"lowMarkerBrush","lowMarkerSize":"lowMarkerSize","lowMarkerVisibility":"lowMarkerVisibility","markerBrush":"markerBrush","markerSize":"markerSize","markerVisibility":"markerVisibility","maximum":"maximum","minimum":"minimum","negativeBrush":"negativeBrush","negativeMarkerBrush":"negativeMarkerBrush","negativeMarkerSize":"negativeMarkerSize","negativeMarkerVisibility":"negativeMarkerVisibility","normalRangeFill":"normalRangeFill","normalRangeMaximum":"normalRangeMaximum","normalRangeMinimum":"normalRangeMinimum","normalRangeVisibility":"normalRangeVisibility","pixelScalingRatio":"pixelScalingRatio","tooltipTemplate":"tooltipTemplate","trendLineBrush":"trendLineBrush","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","valueMemberPath":"valueMemberPath","verticalAxisBrush":"verticalAxisBrush","verticalAxisLabel":"verticalAxisLabel","verticalAxisVisibility":"verticalAxisVisibility","verticalLabelFormat":"verticalLabelFormat","verticalLabelFormatSpecifiers":"verticalLabelFormatSpecifiers","width":"width"}}],"IIgrSplineAreaFragmentProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSplineAreaFragmentProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSplineAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSplineAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSplineFragmentBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSplineFragmentBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSplineFragmentProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSplineFragmentProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSplineSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSplineSeriesBaseProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrSplineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrSplineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStacked100AreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStacked100AreaSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStacked100BarSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStacked100BarSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","radiusX":"radiusX","radiusY":"radiusY","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStacked100ColumnSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStacked100ColumnSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","radiusX":"radiusX","radiusY":"radiusY","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStacked100LineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStacked100LineSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStacked100SplineAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStacked100SplineAreaSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","isSplineShapePartOfRange":"isSplineShapePartOfRange","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStacked100SplineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStacked100SplineSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","isSplineShapePartOfRange":"isSplineShapePartOfRange","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStackedAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedAreaSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStackedBarSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedBarSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","radiusX":"radiusX","radiusY":"radiusY","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStackedColumnSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedColumnSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","radiusX":"radiusX","radiusY":"radiusY","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStackedFragmentSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedFragmentSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDataLegendGroup":"actualDataLegendGroup","actualHighlightedValuesDataLegendGroup":"actualHighlightedValuesDataLegendGroup","actualHighlightedValuesDisplayMode":"actualHighlightedValuesDisplayMode","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualIsDropShadowEnabled":"actualIsDropShadowEnabled","actualIsSplineShapePartOfRange":"actualIsSplineShapePartOfRange","actualIsTransitionInEnabled":"actualIsTransitionInEnabled","actualLegendItemBadgeMode":"actualLegendItemBadgeMode","actualLegendItemBadgeShape":"actualLegendItemBadgeShape","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLegendItemTemplate":"actualLegendItemTemplate","actualLegendItemVisibility":"actualLegendItemVisibility","actualLineCap":"actualLineCap","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillMode":"actualMarkerFillMode","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerOutlineMode":"actualMarkerOutlineMode","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerThickness":"actualMarkerThickness","actualMarkerType":"actualMarkerType","actualOpacity":"actualOpacity","actualOutline":"actualOutline","actualOutlineMode":"actualOutlineMode","actualRadiusX":"actualRadiusX","actualRadiusY":"actualRadiusY","actualShadowBlur":"actualShadowBlur","actualShadowColor":"actualShadowColor","actualShadowOffsetX":"actualShadowOffsetX","actualShadowOffsetY":"actualShadowOffsetY","actualThickness":"actualThickness","actualTransitionDuration":"actualTransitionDuration","actualTransitionEasingFunction":"actualTransitionEasingFunction","actualTransitionInDuration":"actualTransitionInDuration","actualTransitionInEasingFunction":"actualTransitionInEasingFunction","actualTransitionInMode":"actualTransitionInMode","actualTransitionInSpeedType":"actualTransitionInSpeedType","actualUseSingleShadow":"actualUseSingleShadow","actualValueMemberAsLegendLabel":"actualValueMemberAsLegendLabel","actualValueMemberAsLegendUnit":"actualValueMemberAsLegendUnit","actualVisibility":"actualVisibility","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","brush":"brush","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","highlightedDataSource":"highlightedDataSource","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightingFadeOpacity":"highlightingFadeOpacity","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDropShadowEnabled":"isDropShadowEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","parentOrLocalBrush":"parentOrLocalBrush","propertyUpdated":"propertyUpdated","radiusX":"radiusX","radiusY":"radiusY","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility"}}],"IIgrStackedLineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedLineSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStackedSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedSeriesBaseProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated"}}],"IIgrStackedSplineAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedSplineAreaSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","isSplineShapePartOfRange":"isSplineShapePartOfRange","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStackedSplineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStackedSplineSeriesProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","isSplineShapePartOfRange":"isSplineShapePartOfRange","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStandardDeviationIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStandardDeviationIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStepAreaSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStepAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStepLineSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStepLineSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStochRSIIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStochRSIIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrStraightNumericAxisBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStraightNumericAxisBaseProps","k":"interface","s":"interfaces","m":{"abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","autoRangeBufferMode":"autoRangeBufferMode","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","interval":"interval","isCompanionAxis":"isCompanionAxis","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isInverted":"isInverted","isLogarithmic":"isLogarithmic","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrStrategyBasedIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrStrategyBasedIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrTimeAxisBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTimeAxisBaseProps","k":"interface","s":"interfaces","m":{"actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isCompanionAxis":"isCompanionAxis","isDataPreSorted":"isDataPreSorted","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrTimeAxisBreakProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTimeAxisBreakProps","k":"interface","s":"interfaces","m":{"end":"end","interval":"interval","start":"start"}}],"IIgrTimeAxisIntervalProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTimeAxisIntervalProps","k":"interface","s":"interfaces","m":{"interval":"interval","intervalType":"intervalType","range":"range"}}],"IIgrTimeAxisLabelFormatProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTimeAxisLabelFormatProps","k":"interface","s":"interfaces","m":{"format":"format","labelFormatOverride":"labelFormatOverride","range":"range","repeatedDayFormat":"repeatedDayFormat","repeatedMonthFormat":"repeatedMonthFormat","repeatedYearFormat":"repeatedYearFormat"}}],"IIgrTimeXAxisProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTimeXAxisProps","k":"interface","s":"interfaces","m":{"actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","children":"children","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isCompanionAxis":"isCompanionAxis","isDataPreSorted":"isDataPreSorted","isDisabled":"isDisabled","isInverted":"isInverted","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement"}}],"IIgrTreemapNodeStyleMappingProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTreemapNodeStyleMappingProps","k":"interface","s":"interfaces","m":{"children":"children","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","mappingMode":"mappingMode","maximumValue":"maximumValue","minimumValue":"minimumValue","name":"name","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","targetType":"targetType","textColor":"textColor","value":"value"}}],"IIgrTreemapNodeStyleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTreemapNodeStyleProps","k":"interface","s":"interfaces","m":{"children":"children","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","textColor":"textColor"}}],"IIgrTreemapProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTreemapProps","k":"interface","s":"interfaces","m":{"actualHighlightingMode":"actualHighlightingMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","breadcrumbSequence":"breadcrumbSequence","children":"children","customValueMemberPath":"customValueMemberPath","darkTextColor":"darkTextColor","dataSource":"dataSource","fillBrushes":"fillBrushes","fillScaleLogarithmBase":"fillScaleLogarithmBase","fillScaleMaximumValue":"fillScaleMaximumValue","fillScaleMinimumValue":"fillScaleMinimumValue","fillScaleMode":"fillScaleMode","focusItem":"focusItem","headerBackground":"headerBackground","headerDarkTextColor":"headerDarkTextColor","headerDisplayMode":"headerDisplayMode","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverDarkTextColor":"headerHoverDarkTextColor","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","headerTextStyle":"headerTextStyle","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValueOpacity":"highlightedValueOpacity","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","idMemberPath":"idMemberPath","interactionPixelScalingRatio":"interactionPixelScalingRatio","isFillScaleLogarithmic":"isFillScaleLogarithmic","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelHorizontalFitMode":"labelHorizontalFitMode","labelLeftMargin":"labelLeftMargin","labelMemberPath":"labelMemberPath","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVerticalFitMode":"labelVerticalFitMode","layoutOrientation":"layoutOrientation","layoutType":"layoutType","minimumDisplaySize":"minimumDisplaySize","nodeOpacity":"nodeOpacity","nodePointerEnter":"nodePointerEnter","nodePointerLeave":"nodePointerLeave","nodePointerOver":"nodePointerOver","nodePointerPressed":"nodePointerPressed","nodePointerReleased":"nodePointerReleased","nodeRenderStyling":"nodeRenderStyling","nodeStyling":"nodeStyling","outline":"outline","overlayHeaderBackground":"overlayHeaderBackground","overlayHeaderHoverBackground":"overlayHeaderHoverBackground","overlayHeaderLabelBottomMargin":"overlayHeaderLabelBottomMargin","overlayHeaderLabelLeftMargin":"overlayHeaderLabelLeftMargin","overlayHeaderLabelRightMargin":"overlayHeaderLabelRightMargin","overlayHeaderLabelTopMargin":"overlayHeaderLabelTopMargin","parentIdMemberPath":"parentIdMemberPath","parentNodeBottomMargin":"parentNodeBottomMargin","parentNodeBottomPadding":"parentNodeBottomPadding","parentNodeLeftMargin":"parentNodeLeftMargin","parentNodeLeftPadding":"parentNodeLeftPadding","parentNodeRightMargin":"parentNodeRightMargin","parentNodeRightPadding":"parentNodeRightPadding","parentNodeTopMargin":"parentNodeTopMargin","parentNodeTopPadding":"parentNodeTopPadding","pixelScalingRatio":"pixelScalingRatio","rootTitle":"rootTitle","strokeThickness":"strokeThickness","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","valueMemberPath":"valueMemberPath","width":"width"}}],"IIgrTrendLineLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTrendLineLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualTargetSeries":"actualTargetSeries","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLinePeriod":"trendLinePeriod","trendLineType":"trendLineType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrTRIXIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTRIXIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrTypicalPriceIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrTypicalPriceIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrUltimateOscillatorIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrUltimateOscillatorIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrUserAnnotationLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrUserAnnotationLayerProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingPointAnnotation":"stylingPointAnnotation","stylingSliceAnnotation":"stylingSliceAnnotation","stylingStripAnnotation":"stylingStripAnnotation","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","userAnnotationInformationRequested":"userAnnotationInformationRequested","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrUserAnnotationToolTipLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrUserAnnotationToolTipLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","contentUpdating":"contentUpdating","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrValueBrushScaleProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrValueBrushScaleProps","k":"interface","s":"interfaces","m":{"brushes":"brushes","children":"children","isLogarithmic":"isLogarithmic","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated"}}],"IIgrValueLayerProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrValueLayerProps","k":"interface","s":"interfaces","m":{"actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLayerBrush":"actualValueLayerBrush","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","stylingOverlayText":"stylingOverlayText","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueMode":"valueMode","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationFormatLabel":"xAxisAnnotationFormatLabel","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationFormatLabel":"yAxisAnnotationFormatLabel","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor"}}],"IIgrValueOverlayProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrValueOverlayProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axis":"axis","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationFormatLabel":"axisAnnotationFormatLabel","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","axisName":"axisName","brush":"brush","children":"children","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","dateValue":"dateValue","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingOverlayText":"stylingOverlayText","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","value":"value","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode"}}],"IIgrVerticalAnchoredCategorySeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrVerticalAnchoredCategorySeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrVerticalStackedSeriesBaseProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrVerticalStackedSeriesBaseProps","k":"interface","s":"interfaces","m":{"autoGenerateSeries":"autoGenerateSeries","children":"children","name":"name","reverseLegendOrder":"reverseLegendOrder","seriesCreated":"seriesCreated","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrWaterfallSeriesProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrWaterfallSeriesProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","children":"children","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrWeightedCloseIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrWeightedCloseIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrWilliamsPercentRIndicatorProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrWilliamsPercentRIndicatorProps","k":"interface","s":"interfaces","m":{"actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOutline":"actualOutline","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","children":"children","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isHighlightingEnabled":"isHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName"}}],"IIgrXYChartProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrXYChartProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","children":"children","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInverted":"yAxisInverted","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin"}}],"IIgrZoomSliderProps":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/interfaces/IIgrZoomSliderProps","k":"interface","s":"interfaces","m":{"actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","children":"children","endInset":"endInset","height":"height","higherCalloutBrush":"higherCalloutBrush","higherCalloutOutline":"higherCalloutOutline","higherCalloutStrokeThickness":"higherCalloutStrokeThickness","higherCalloutTextColor":"higherCalloutTextColor","higherShadeBrush":"higherShadeBrush","higherShadeOutline":"higherShadeOutline","higherShadeStrokeThickness":"higherShadeStrokeThickness","higherThumbBrush":"higherThumbBrush","higherThumbHeight":"higherThumbHeight","higherThumbOutline":"higherThumbOutline","higherThumbRidgesBrush":"higherThumbRidgesBrush","higherThumbStrokeThickness":"higherThumbStrokeThickness","higherThumbWidth":"higherThumbWidth","lowerCalloutBrush":"lowerCalloutBrush","lowerCalloutOutline":"lowerCalloutOutline","lowerCalloutStrokeThickness":"lowerCalloutStrokeThickness","lowerCalloutTextColor":"lowerCalloutTextColor","lowerShadeBrush":"lowerShadeBrush","lowerShadeOutline":"lowerShadeOutline","lowerShadeStrokeThickness":"lowerShadeStrokeThickness","lowerThumbBrush":"lowerThumbBrush","lowerThumbHeight":"lowerThumbHeight","lowerThumbOutline":"lowerThumbOutline","lowerThumbRidgesBrush":"lowerThumbRidgesBrush","lowerThumbStrokeThickness":"lowerThumbStrokeThickness","lowerThumbWidth":"lowerThumbWidth","maxZoomWidth":"maxZoomWidth","minZoomWidth":"minZoomWidth","orientation":"orientation","panTransitionDuration":"panTransitionDuration","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingAxisValue":"resolvingAxisValue","startInset":"startInset","thumbCalloutTextStyle":"thumbCalloutTextStyle","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","width":"width","windowRect":"windowRect","windowRectChanged":"windowRectChanged"}}],"AngleAxisLabelLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AngleAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"AnnotationAppearanceMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AnnotationAppearanceMode","k":"enum","s":"enums","m":{"Auto":"Auto","BrightnessShift":"BrightnessShift","DashPattern":"DashPattern","OpacityShift":"OpacityShift","SaturationShift":"SaturationShift"}}],"AutoCalloutVisibilityMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AutoCalloutVisibilityMode","k":"enum","s":"enums","m":{"Auto":"Auto","DedicatedLanes":"DedicatedLanes","Normal":"Normal"}}],"AutoMarginsAndAngleUpdateMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AutoMarginsAndAngleUpdateMode","k":"enum","s":"enums","m":{"None":"None","SizeChanging":"SizeChanging","SizeChangingAndZoom":"SizeChangingAndZoom"}}],"AxisAngleLabelMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AxisAngleLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Center":"Center","ClosestPoint":"ClosestPoint"}}],"AxisExtentType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AxisExtentType","k":"enum","s":"enums","m":{"Percent":"Percent","Pixel":"Pixel"}}],"AxisLabelsLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AxisLabelsLocation","k":"enum","s":"enums","m":{"InsideBottom":"InsideBottom","InsideLeft":"InsideLeft","InsideRight":"InsideRight","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight","OutsideTop":"OutsideTop"}}],"AxisOrientation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AxisOrientation","k":"enum","s":"enums","m":{"Angular":"Angular","Horizontal":"Horizontal","Radial":"Radial","Vertical":"Vertical"}}],"AxisRangeBufferMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AxisRangeBufferMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series","SeriesMaximum":"SeriesMaximum","SeriesMinimum":"SeriesMinimum"}}],"AxisTitlePosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/AxisTitlePosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"BrushSelectionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/BrushSelectionMode","k":"enum","s":"enums","m":{"Interpolate":"Interpolate","Select":"Select"}}],"CalloutPlacementPositions":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CalloutPlacementPositions","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"CategoryChartType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CategoryChartType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Column":"Column","Line":"Line","Point":"Point","Spline":"Spline","SplineArea":"SplineArea","StepArea":"StepArea","StepLine":"StepLine","Waterfall":"Waterfall"}}],"CategoryCollisionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CategoryCollisionMode","k":"enum","s":"enums","m":{"MatchHeight":"MatchHeight","WholeColumn":"WholeColumn"}}],"CategoryItemHighlightType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CategoryItemHighlightType","k":"enum","s":"enums","m":{"Auto":"Auto","Marker":"Marker","Shape":"Shape"}}],"CategorySeriesMarkerCollisionAvoidance":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CategorySeriesMarkerCollisionAvoidance","k":"enum","s":"enums","m":{"None":"None","Omit":"Omit"}}],"CategoryTooltipLayerPosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CategoryTooltipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"CategoryTransitionInMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CategoryTransitionInMode","k":"enum","s":"enums","m":{"AccordionFromBottom":"AccordionFromBottom","AccordionFromCategoryAxisMaximum":"AccordionFromCategoryAxisMaximum","AccordionFromCategoryAxisMinimum":"AccordionFromCategoryAxisMinimum","AccordionFromLeft":"AccordionFromLeft","AccordionFromRight":"AccordionFromRight","AccordionFromTop":"AccordionFromTop","AccordionFromValueAxisMaximum":"AccordionFromValueAxisMaximum","AccordionFromValueAxisMinimum":"AccordionFromValueAxisMinimum","Auto":"Auto","Expand":"Expand","FromParent":"FromParent","FromZero":"FromZero","SweepFromBottom":"SweepFromBottom","SweepFromCategoryAxisMaximum":"SweepFromCategoryAxisMaximum","SweepFromCategoryAxisMinimum":"SweepFromCategoryAxisMinimum","SweepFromCenter":"SweepFromCenter","SweepFromLeft":"SweepFromLeft","SweepFromRight":"SweepFromRight","SweepFromTop":"SweepFromTop","SweepFromValueAxisMaximum":"SweepFromValueAxisMaximum","SweepFromValueAxisMinimum":"SweepFromValueAxisMinimum"}}],"ChartHitTestMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ChartHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational","Mixed":"Mixed","MixedFavoringComputational":"MixedFavoringComputational"}}],"CollisionAvoidanceType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CollisionAvoidanceType","k":"enum","s":"enums","m":{"Fade":"Fade","FadeAndShift":"FadeAndShift","None":"None","Omit":"Omit","OmitAndShift":"OmitAndShift"}}],"ColorScaleInterpolationMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ColorScaleInterpolationMode","k":"enum","s":"enums","m":{"InterpolateHSV":"InterpolateHSV","InterpolateRGB":"InterpolateRGB","Select":"Select"}}],"ComputedPlotAreaMarginMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ComputedPlotAreaMarginMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series"}}],"ConsolidatedItemHitTestBehavior":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ConsolidatedItemHitTestBehavior","k":"enum","s":"enums","m":{"Basic":"Basic","NearestY":"NearestY"}}],"ConsolidatedItemsPosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ConsolidatedItemsPosition","k":"enum","s":"enums","m":{"Maximum":"Maximum","Median":"Median","Minimum":"Minimum","RelativeMaximum":"RelativeMaximum","RelativeMinimum":"RelativeMinimum"}}],"CrosshairsDisplayMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/CrosshairsDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"DataAnnotationDisplayMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/DataAnnotationDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisValue":"AxisValue","DataLabel":"DataLabel","DataValue":"DataValue","Hidden":"Hidden","PixelValue":"PixelValue","WindowValue":"WindowValue"}}],"DataAnnotationTargetMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/DataAnnotationTargetMode","k":"enum","s":"enums","m":{"Auto":"Auto","CategoryXAxes":"CategoryXAxes","CategoryYAxes":"CategoryYAxes","CompanionXAxes":"CompanionXAxes","CompanionYAxes":"CompanionYAxes","DataSourceAxes":"DataSourceAxes","HorizontalAxes":"HorizontalAxes","None":"None","NumericXAxes":"NumericXAxes","NumericYAxes":"NumericYAxes","PrimaryXAxes":"PrimaryXAxes","PrimaryYAxes":"PrimaryYAxes","TimeAxes":"TimeAxes","VerticalAxes":"VerticalAxes"}}],"DataPieChartType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/DataPieChartType","k":"enum","s":"enums","m":{"Auto":"Auto","PieSingleRing":"PieSingleRing"}}],"DataTooltipConstraintMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/DataTooltipConstraintMode","k":"enum","s":"enums","m":{"Application":"Application","Auto":"Auto","Chart":"Chart","None":"None","PlotArea":"PlotArea"}}],"DataToolTipLayerPosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/DataToolTipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"DomainType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/DomainType","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Pie":"Pie","Scatter":"Scatter","Shape":"Shape"}}],"EnableErrorBars":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/EnableErrorBars","k":"enum","s":"enums","m":{"Both":"Both","Negative":"Negative","None":"None","Positive":"Positive"}}],"FinalValueSelectionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinalValueSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Final":"Final","FinalVisible":"FinalVisible","FinalVisibleInterpolated":"FinalVisibleInterpolated"}}],"FinancialChartRangeSelectorOption":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialChartRangeSelectorOption","k":"enum","s":"enums","m":{"All":"All","OneMonth":"OneMonth","OneYear":"OneYear","SixMonths":"SixMonths","ThreeMonths":"ThreeMonths","YearToDate":"YearToDate"}}],"FinancialChartType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialChartType","k":"enum","s":"enums","m":{"Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line"}}],"FinancialChartVolumeType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialChartVolumeType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","None":"None"}}],"FinancialChartXAxisMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialChartXAxisMode","k":"enum","s":"enums","m":{"Ordinal":"Ordinal","Time":"Time"}}],"FinancialChartYAxisMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialChartYAxisMode","k":"enum","s":"enums","m":{"Numeric":"Numeric","PercentChange":"PercentChange"}}],"FinancialChartZoomSliderType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialChartZoomSliderType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line","None":"None"}}],"FinancialIndicatorType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialIndicatorType","k":"enum","s":"enums","m":{"AbsoluteVolumeOscillator":"AbsoluteVolumeOscillator","AccumulationDistribution":"AccumulationDistribution","AverageDirectionalIndex":"AverageDirectionalIndex","AverageTrueRange":"AverageTrueRange","BollingerBandWidth":"BollingerBandWidth","ChaikinOscillator":"ChaikinOscillator","ChaikinVolatility":"ChaikinVolatility","CommodityChannelIndex":"CommodityChannelIndex","DetrendedPriceOscillator":"DetrendedPriceOscillator","EaseOfMovement":"EaseOfMovement","FastStochasticOscillator":"FastStochasticOscillator","ForceIndex":"ForceIndex","FullStochasticOscillator":"FullStochasticOscillator","MarketFacilitationIndex":"MarketFacilitationIndex","MassIndex":"MassIndex","MedianPrice":"MedianPrice","MoneyFlowIndex":"MoneyFlowIndex","MovingAverageConvergenceDivergence":"MovingAverageConvergenceDivergence","NegativeVolumeIndex":"NegativeVolumeIndex","OnBalanceVolume":"OnBalanceVolume","PercentagePriceOscillator":"PercentagePriceOscillator","PercentageVolumeOscillator":"PercentageVolumeOscillator","PositiveVolumeIndex":"PositiveVolumeIndex","PriceVolumeTrend":"PriceVolumeTrend","RateOfChangeAndMomentum":"RateOfChangeAndMomentum","RelativeStrengthIndex":"RelativeStrengthIndex","SlowStochasticOscillator":"SlowStochasticOscillator","StandardDeviation":"StandardDeviation","StochRSI":"StochRSI","TRIX":"TRIX","TypicalPrice":"TypicalPrice","UltimateOscillator":"UltimateOscillator","WeightedClose":"WeightedClose","WilliamsPercentR":"WilliamsPercentR"}}],"FinancialOverlayType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FinancialOverlayType","k":"enum","s":"enums","m":{"BollingerBands":"BollingerBands","PriceChannel":"PriceChannel"}}],"FunnelSliceDisplay":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/FunnelSliceDisplay","k":"enum","s":"enums","m":{"Uniform":"Uniform","Weighted":"Weighted"}}],"GridMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/GridMode","k":"enum","s":"enums","m":{"BeforeSeries":"BeforeSeries","BehindSeries":"BehindSeries","None":"None"}}],"HighlightingMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/HighlightingMode","k":"enum","s":"enums","m":{"Closest":"Closest","DirectlyOver":"DirectlyOver"}}],"IndicatorDisplayType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/IndicatorDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line"}}],"ItemsSourceAction":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ItemsSourceAction","k":"enum","s":"enums","m":{"Change":"Change","Insert":"Insert","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"LabelsPosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/LabelsPosition","k":"enum","s":"enums","m":{"BestFit":"BestFit","Center":"Center","InsideEnd":"InsideEnd","None":"None","OutsideEnd":"OutsideEnd"}}],"LeaderLineType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/LeaderLineType","k":"enum","s":"enums","m":{"Arc":"Arc","Spline":"Spline","Straight":"Straight"}}],"LegendHighlightingMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/LegendHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchSeries":"MatchSeries","None":"None"}}],"LegendOrientation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/LegendOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"MarkerAutomaticBehavior":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/MarkerAutomaticBehavior","k":"enum","s":"enums","m":{"Circle":"Circle","CircleSmart":"CircleSmart","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Indexed":"Indexed","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","SmartIndexed":"SmartIndexed","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"MarkerFillMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/MarkerFillMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerOutline":"MatchMarkerOutline","Normal":"Normal"}}],"MarkerOutlineMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/MarkerOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerBrush":"MatchMarkerBrush","Normal":"Normal"}}],"MarkerType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/MarkerType","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle","Unset":"Unset"}}],"NumericScaleMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/NumericScaleMode","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"OuterLabelAlignment":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/OuterLabelAlignment","k":"enum","s":"enums","m":{"Left":"Left","Right":"Right"}}],"OverlayTextLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/OverlayTextLocation","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","InsideBottomCenter":"InsideBottomCenter","InsideBottomLeft":"InsideBottomLeft","InsideBottomRight":"InsideBottomRight","InsideMiddleCenter":"InsideMiddleCenter","InsideMiddleLeft":"InsideMiddleLeft","InsideMiddleRight":"InsideMiddleRight","InsideTopCenter":"InsideTopCenter","InsideTopLeft":"InsideTopLeft","InsideTopRight":"InsideTopRight","OutsideBottomCenter":"OutsideBottomCenter","OutsideBottomLeft":"OutsideBottomLeft","OutsideBottomRight":"OutsideBottomRight","OutsideMiddleLeft":"OutsideMiddleLeft","OutsideMiddleRight":"OutsideMiddleRight","OutsideTopCenter":"OutsideTopCenter","OutsideTopLeft":"OutsideTopLeft","OutsideTopRight":"OutsideTopRight"}}],"PieChartSweepDirection":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/PieChartSweepDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"PointerTooltipPointerLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/PointerTooltipPointerLocation","k":"enum","s":"enums","m":{"Auto":"Auto","BottomLeft":"BottomLeft","BottomMiddle":"BottomMiddle","BottomRight":"BottomRight","LeftBottom":"LeftBottom","LeftMiddle":"LeftMiddle","LeftTop":"LeftTop","RightBottom":"RightBottom","RightMiddle":"RightMiddle","RightTop":"RightTop","TopLeft":"TopLeft","TopMiddle":"TopMiddle","TopRight":"TopRight"}}],"PriceDisplayType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/PriceDisplayType","k":"enum","s":"enums","m":{"Candlestick":"Candlestick","OHLC":"OHLC"}}],"ScatterItemSearchMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ScatterItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestPoint":"ClosestPoint","ClosestPointOnClosestLine":"ClosestPointOnClosestLine","ClosestVisiblePoint":"ClosestVisiblePoint","ClosestVisiblePointOnClosestLine":"ClosestVisiblePointOnClosestLine","None":"None","TopVisiblePoint":"TopVisiblePoint"}}],"SeriesHighlightingBehavior":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesHighlightingBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","DirectlyOver":"DirectlyOver","NearestItems":"NearestItems","NearestItemsAndSeries":"NearestItemsAndSeries","NearestItemsRetainMainShapes":"NearestItemsRetainMainShapes"}}],"SeriesHighlightingMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","BrightenSpecific":"BrightenSpecific","FadeOthers":"FadeOthers","FadeOthersSpecific":"FadeOthersSpecific","None":"None"}}],"SeriesHitTestMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational"}}],"SeriesOutlineMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","Collapsed":"Collapsed","Visible":"Visible"}}],"SeriesPlotAreaMarginHorizontalMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesPlotAreaMarginHorizontalMode","k":"enum","s":"enums","m":{"Auto":"Auto","LeftBufferRightBuffer":"LeftBufferRightBuffer","LeftBufferRightMargin":"LeftBufferRightMargin","LeftMarginRightBuffer":"LeftMarginRightBuffer","LeftMarginRightMargin":"LeftMarginRightMargin","None":"None"}}],"SeriesPlotAreaMarginVerticalMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesPlotAreaMarginVerticalMode","k":"enum","s":"enums","m":{"Auto":"Auto","BottomBufferTopBuffer":"BottomBufferTopBuffer","BottomBufferTopMargin":"BottomBufferTopMargin","BottomMarginTopBuffer":"BottomMarginTopBuffer","BottomMarginTopMargin":"BottomMarginTopMargin","None":"None"}}],"SeriesSelectionBehavior":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesSelectionBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","PerDataItemMultiSelect":"PerDataItemMultiSelect","PerDataItemSingleSelect":"PerDataItemSingleSelect","PerSeriesAndDataItemGlobalSingleSelect":"PerSeriesAndDataItemGlobalSingleSelect","PerSeriesAndDataItemMultiSelect":"PerSeriesAndDataItemMultiSelect","PerSeriesAndDataItemSingleSelect":"PerSeriesAndDataItemSingleSelect","PerSeriesMultiSelect":"PerSeriesMultiSelect","PerSeriesSingleSelect":"PerSeriesSingleSelect"}}],"SeriesSelectionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","FocusColorFill":"FocusColorFill","FocusColorOutline":"FocusColorOutline","FocusColorThickOutline":"FocusColorThickOutline","GrayscaleOthers":"GrayscaleOthers","None":"None","SelectionColorFill":"SelectionColorFill","SelectionColorOutline":"SelectionColorOutline","SelectionColorThickOutline":"SelectionColorThickOutline","ThickOutline":"ThickOutline"}}],"SeriesViewerHorizontalScrollbarPosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesViewerHorizontalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop"}}],"SeriesViewerScrollbarMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesViewerScrollbarMode","k":"enum","s":"enums","m":{"FadeToLine":"FadeToLine","Fading":"Fading","None":"None","Persistent":"Persistent"}}],"SeriesViewerVerticalScrollbarPosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesViewerVerticalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight"}}],"SeriesVisibleRangeMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SeriesVisibleRangeMode","k":"enum","s":"enums","m":{"Auto":"Auto","IncludeReferenceValue":"IncludeReferenceValue","ValuesOnly":"ValuesOnly"}}],"ShapeItemSearchMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ShapeItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestBoundingBox":"ClosestBoundingBox","ClosestPointOnClosestShape":"ClosestPointOnClosestShape","ClosestShape":"ClosestShape","None":"None"}}],"SliceSelectionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SliceSelectionMode","k":"enum","s":"enums","m":{"Manual":"Manual","Multiple":"Multiple","Single":"Single"}}],"SparklineDisplayType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SparklineDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","WinLoss":"WinLoss"}}],"SplineType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/SplineType","k":"enum","s":"enums","m":{"Clamped":"Clamped","Natural":"Natural"}}],"ThumbRangePosition":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"TimeAxisDisplayType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TimeAxisDisplayType","k":"enum","s":"enums","m":{"Continuous":"Continuous","Discrete":"Discrete"}}],"TimeAxisIntervalType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TimeAxisIntervalType","k":"enum","s":"enums","m":{"Days":"Days","Hours":"Hours","Milliseconds":"Milliseconds","Minutes":"Minutes","Months":"Months","Seconds":"Seconds","Ticks":"Ticks","Weeks":"Weeks","Years":"Years"}}],"TimeAxisLabellingMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TimeAxisLabellingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Compressed":"Compressed","Normal":"Normal"}}],"ToolTipType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ToolTipType","k":"enum","s":"enums","m":{"Category":"Category","Data":"Data","Default":"Default","Item":"Item","None":"None"}}],"TransitionInSpeedType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TransitionInSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TransitionOutSpeedType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TransitionOutSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TreemapFillScaleMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapFillScaleMode","k":"enum","s":"enums","m":{"GlobalSum":"GlobalSum","GlobalValue":"GlobalValue","Sum":"Sum","Value":"Value"}}],"TreemapHeaderDisplayMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapHeaderDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Header":"Header","Overlay":"Overlay"}}],"TreemapHighlightedValueDisplayMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapHighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"TreemapHighlightingMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","None":"None"}}],"TreemapLabelHorizontalFitMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapLabelHorizontalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Ellipsis":"Ellipsis","Hide":"Hide"}}],"TreemapLabelVerticalFitMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapLabelVerticalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hide":"Hide","Show":"Show"}}],"TreemapLayoutType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapLayoutType","k":"enum","s":"enums","m":{"SliceAndDice":"SliceAndDice","Squarified":"Squarified","Stripped":"Stripped"}}],"TreemapNodeStyleMappingTargetType":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapNodeStyleMappingTargetType","k":"enum","s":"enums","m":{"All":"All","Child":"Child","Parent":"Parent"}}],"TreemapOrientation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"TreemapValueMappingMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/TreemapValueMappingMode","k":"enum","s":"enums","m":{"CustomValue":"CustomValue","Sum":"Sum","Value":"Value"}}],"UserAnnotationTarget":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/UserAnnotationTarget","k":"enum","s":"enums","m":{"Axis":"Axis","Point":"Point","Slice":"Slice","Strip":"Strip"}}],"ValueAxisLabelLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ValueAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ValueCollisionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ValueCollisionMode","k":"enum","s":"enums","m":{"Range":"Range","Value":"Value"}}],"ValueLayerValueMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ValueLayerValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","GlobalAverage":"GlobalAverage","GlobalMaximum":"GlobalMaximum","GlobalMinimum":"GlobalMinimum","Maximum":"Maximum","Minimum":"Minimum"}}],"ViewerSurfaceUsage":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ViewerSurfaceUsage","k":"enum","s":"enums","m":{"Minimal":"Minimal","Normal":"Normal"}}],"WindowResponse":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/WindowResponse","k":"enum","s":"enums","m":{"Deferred":"Deferred","Immediate":"Immediate"}}],"XAxisLabelLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/XAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"YAxisLabelLocation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/YAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ZoomCoercionMode":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ZoomCoercionMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisConstrained":"AxisConstrained","Unconstrained":"Unconstrained"}}],"ZoomSliderOrientation":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/enums/ZoomSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"DataChartStylingDefaults":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/variables/DataChartStylingDefaults","k":"variable","s":"variables"}],"LegendBaseStyles":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/variables/LegendBaseStyles","k":"variable","s":"variables"}],"SparklineStylingDefaults":[{"p":"igniteui-react-charts","u":"/api/react/igniteui-react-charts/19.5.2/variables/SparklineStylingDefaults","k":"variable","s":"variables"}],"ArrayBox$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ArrayBox-1","k":"class","s":"classes","m":{"constructor":"constructor","$arrayWrapper":"$arrayWrapper","isFixedSize":"isFixedSize","isReadOnly":"isReadOnly","isSynchronized":"isSynchronized","syncRoot":"syncRoot","$type":"$type","count":"count","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","equals":"equals","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","getHashCode":"getHashCode","indexOf":"indexOf","insert":"insert","insertRange":"insertRange","item":"item","remove":"remove","removeAt":"removeAt","removeRange":"removeRange","reverse":"reverse"}}],"Base":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Base","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"BaseError":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/BaseError","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"BinaryUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/BinaryUtil","k":"class","s":"classes","m":{"constructor":"constructor","getBinary":"getBinary","isResponseTypeSupported":"isResponseTypeSupported"}}],"Calendar":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Calendar","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","addMonths":"addMonths","addYears":"addYears","equals":"equals","eras":"eras","getDayOfMonth":"getDayOfMonth","getDaysInMonth":"getDaysInMonth","getDaysInYear":"getDaysInYear","getEra":"getEra","getHashCode":"getHashCode","getMonth":"getMonth","getYear":"getYear","memberwiseClone":"memberwiseClone","toDateTime":"toDateTime","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"CollectionAdapter":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/CollectionAdapter","k":"class","s":"classes","m":{"constructor":"constructor","actualContent":"actualContent","collisionChecker":"collisionChecker","addManualItem":"addManualItem","clearManualItems":"clearManualItems","insertManualItem":"insertManualItem","notifyContentChanged":"notifyContentChanged","onQueryChanged":"onQueryChanged","removeManualItem":"removeManualItem","removeManualItemAt":"removeManualItemAt","shiftContentToManual":"shiftContentToManual","syncItems":"syncItems","updateQuery":"updateQuery"}}],"CompareInfo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/CompareInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","compare1":"compare1","compare4":"compare4","compare5":"compare5","equals":"equals","getHashCode":"getHashCode","indexOf1":"indexOf1","indexOf3":"indexOf3","indexOf5":"indexOf5","indexOf6":"indexOf6","memberwiseClone":"memberwiseClone","referenceEquals":"referenceEquals","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic"}}],"CompareUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/CompareUtil","k":"class","s":"classes","m":{"constructor":"constructor","compareTo":"compareTo","compareToObject":"compareToObject"}}],"ComponentRendererAdapter":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ComponentRendererAdapter","k":"class","s":"classes","m":{"constructor":"constructor","isBlazorRenderer":"isBlazorRenderer","addItemToCollection":"addItemToCollection","clearCollection":"clearCollection","clearContainer":"clearContainer","coerceToEnum":"coerceToEnum","createBrushCollection":"createBrushCollection","createColorCollection":"createColorCollection","createDoubleCollection":"createDoubleCollection","createHandler":"createHandler","createObject":"createObject","disposeHandler":"disposeHandler","ensureExternalObject":"ensureExternalObject","executeMethod":"executeMethod","flushChanges":"flushChanges","forPropertyValueItem":"forPropertyValueItem","getMarkupCollection":"getMarkupCollection","getMarkupTypeMatcher":"getMarkupTypeMatcher","getPropertyValue":"getPropertyValue","getRootObject":"getRootObject","mustManageInMarkup":"mustManageInMarkup","onPendingRef":"onPendingRef","onUIThread":"onUIThread","publicCollectionAsObjectArray":"publicCollectionAsObjectArray","removeItemFromCollection":"removeItemFromCollection","removeRootItem":"removeRootItem","replaceItemInCollection":"replaceItemInCollection","replaceRootItem":"replaceRootItem","resetPropertyOnTarget":"resetPropertyOnTarget","serializeBrush":"serializeBrush","serializeBrushCollection":"serializeBrushCollection","serializeColor":"serializeColor","serializeColorCollection":"serializeColorCollection","serializeDoubleCollection":"serializeDoubleCollection","serializePixelPoint":"serializePixelPoint","serializePixelRect":"serializePixelRect","serializePixelSize":"serializePixelSize","serializePoint":"serializePoint","serializeRect":"serializeRect","serializeSize":"serializeSize","serializeTimespan":"serializeTimespan","setHandler":"setHandler","setOrUpdateCollectionOnTarget":"setOrUpdateCollectionOnTarget","setPropertyValue":"setPropertyValue"}}],"ContentChildrenManager":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ContentChildrenManager","k":"class","s":"classes","m":{"constructor":"constructor","contentChildrenActual":"contentChildrenActual","getChildren":"getChildren","trackChild":"trackChild"}}],"ConvertUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ConvertUtil","k":"class","s":"classes","m":{"constructor":"constructor","convertToNumber":"convertToNumber","toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toSByte":"toSByte","toSingle":"toSingle","toString1":"toString1","toUInt16":"toUInt16","toUInt32":"toUInt32","toUInt64":"toUInt64"}}],"CultureInfo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/CultureInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","calendar":"calendar","compareInfo":"compareInfo","dateTimeFormat":"dateTimeFormat","name":"name","numberFormat":"numberFormat","twoLetterISOLanguageName":"twoLetterISOLanguageName","currentCulture":"currentCulture","invariantCulture":"invariantCulture","clone":"clone","equals":"equals","getFormat":"getFormat","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getCultureInfo":"getCultureInfo","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"DataVisualizationLocaleCs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleDa":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleDe":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleEn":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleEs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleFr":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleHu":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleIt":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleJa":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleKo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleKo","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleNb":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleNl":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocalePl":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocalePt":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleRo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleSv":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleTr":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleZhHans":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleZhHant":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DataVisualizationLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DateTimeFormat":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DateTimeFormat","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","dateSeparator":"dateSeparator","longDatePattern":"longDatePattern","monthNames":"monthNames","shortDatePattern":"shortDatePattern","shortTimePattern":"shortTimePattern","timeSeparator":"timeSeparator","clone":"clone","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"DictionaryUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/DictionaryUtil","k":"class","s":"classes","m":{"constructor":"constructor","dictionaryCreate":"dictionaryCreate","dictionaryGetDictionary":"dictionaryGetDictionary","dictionaryGetEnumerator":"dictionaryGetEnumerator","dictionaryGetKeys":"dictionaryGetKeys","dictionaryGetValues":"dictionaryGetValues","en":"en"}}],"Enum":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Enum","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"EnumBox":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EnumBox","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","value":"value","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getActualName":"getActualName","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","toDouble":"toDouble","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"EnumerableWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EnumerableWrapper","k":"class","s":"classes","m":{"constructor":"constructor"}}],"EnumerableWrapperObject":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EnumerableWrapperObject","k":"class","s":"classes","m":{"constructor":"constructor"}}],"EnumeratorWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EnumeratorWrapper","k":"class","s":"classes","m":{"constructor":"constructor","next":"next"}}],"EnumeratorWrapperObject":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EnumeratorWrapperObject","k":"class","s":"classes","m":{"constructor":"constructor","next":"next"}}],"EnumUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EnumUtil","k":"class","s":"classes","m":{"constructor":"constructor","enumHasFlag":"enumHasFlag","getEnumValue":"getEnumValue","getFlaggedName":"getFlaggedName","getName":"getName","getNames":"getNames","getValues":"getValues","isDefined":"isDefined","parse":"parse","toDouble":"toDouble","toObject":"toObject","toString":"toString","tryParse$1":"tryParse$1"}}],"EventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/EventArgs","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","empty":"empty","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"FormatException":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/FormatException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"HttpRequestUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/HttpRequestUtil","k":"class","s":"classes","m":{"constructor":"constructor","submit":"submit"}}],"IgCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgEvent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgEvent","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","emit":"emit","remove":"remove"}}],"IgrAsyncCompletedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrAsyncCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelled":"cancelled","errorMessage":"errorMessage","nativeElement":"nativeElement","userState":"userState"}}],"IgrBaseGenericDataSource":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrBaseGenericDataSource","k":"class","s":"classes","m":{"constructor":"constructor","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","nativeElement":"nativeElement","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","findByName":"findByName","queueAutoRefresh":"queueAutoRefresh","_createFromInternal":"_createFromInternal"}}],"IgrCancelEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrCancelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","nativeElement":"nativeElement"}}],"IgrCancellingMultiScaleImageEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrCancellingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","uri":"uri"}}],"IgrCaptureImageSettings":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrCaptureImageSettings","k":"class","s":"classes","m":{"constructor":"constructor","addToClipboard":"addToClipboard","format":"format","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrChildContent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrChildContent","k":"class","s":"classes","m":{"constructor":"constructor","render":"render"}}],"IgrComponentRendererContainer":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrComponentRendererContainer","k":"class","s":"classes","m":{"constructor":"constructor","clearContainer":"clearContainer","createObject":"createObject","getRootObject":"getRootObject","render":"render","replaceRootItem":"replaceRootItem","rootCreated":"rootCreated"}}],"IgrContentChildCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrContentChildCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrDataContext":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataContext","k":"class","s":"classes","m":{"constructor":"constructor","actualItemBrush":"actualItemBrush","i":"i","item":"item","itemBrush":"itemBrush","itemLabel":"itemLabel","legendLabel":"legendLabel","outline":"outline","series":"series","thickness":"thickness","findByName":"findByName"}}],"IgrDataLegendSeriesContext":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataLegendSeriesContext","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","seriesFamily":"seriesFamily","findByName":"findByName","getSeriesValue":"getSeriesValue","getSeriesValueInfo":"getSeriesValueInfo","getSeriesValues":"getSeriesValues","setSeriesValue":"setSeriesValue","setSeriesValueInfo":"setSeriesValueInfo"}}],"IgrDataLegendSeriesValueInfo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataLegendSeriesValueInfo","k":"class","s":"classes","m":{"constructor":"constructor","allowLabels":"allowLabels","allowUnits":"allowUnits","formatAllowAbbreviation":"formatAllowAbbreviation","formatAllowCurrency":"formatAllowCurrency","formatAllowDecimal":"formatAllowDecimal","formatAllowInteger":"formatAllowInteger","formatAllowPercent":"formatAllowPercent","formatMaxFractions":"formatMaxFractions","formatMinFractions":"formatMinFractions","formatUseNegativeColor":"formatUseNegativeColor","formatUsePositiveColor":"formatUsePositiveColor","formatWithSeriesColor":"formatWithSeriesColor","index":"index","isExcludeByDefault":"isExcludeByDefault","memberLabel":"memberLabel","memberPath":"memberPath","memberSymbol":"memberSymbol","memberUnit":"memberUnit","nativeElement":"nativeElement","orderIndex":"orderIndex","value":"value","valueNegativePrefix":"valueNegativePrefix","valueNegativeSuffix":"valueNegativeSuffix","valuePositivePrefix":"valuePositivePrefix","valuePositiveSuffix":"valuePositiveSuffix","valueType":"valueType","findByName":"findByName","toString":"toString"}}],"IgrDataLegendSummaryColumn":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataLegendSummaryColumn","k":"class","s":"classes","m":{"constructor":"constructor","allowLabels":"allowLabels","allowUnits":"allowUnits","formatAllowAbbreviation":"formatAllowAbbreviation","formatAllowCurrency":"formatAllowCurrency","formatAllowDecimal":"formatAllowDecimal","formatAllowInteger":"formatAllowInteger","formatAllowPercent":"formatAllowPercent","formatMaxFractions":"formatMaxFractions","formatMinFractions":"formatMinFractions","formatUseNegativeColor":"formatUseNegativeColor","formatUsePositiveColor":"formatUsePositiveColor","formatWithSeriesColor":"formatWithSeriesColor","index":"index","isExcludeByDefault":"isExcludeByDefault","memberLabel":"memberLabel","memberPath":"memberPath","memberSymbol":"memberSymbol","memberUnit":"memberUnit","nativeElement":"nativeElement","orderIndex":"orderIndex","seriesLabels":"seriesLabels","seriesUnits":"seriesUnits","seriesValues":"seriesValues","value":"value","valueNegativePrefix":"valueNegativePrefix","valueNegativeSuffix":"valueNegativeSuffix","valuePositivePrefix":"valuePositivePrefix","valuePositiveSuffix":"valuePositiveSuffix","valueType":"valueType","addLabel":"addLabel","addUnits":"addUnits","addValue":"addValue","findByName":"findByName","toString":"toString"}}],"IgrDataSeriesCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrDataSourceDataProviderSchemaChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceDataProviderSchemaChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","nativeElement":"nativeElement","schema":"schema"}}],"IgrDataSourceGroupDescription":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","nativeElement":"nativeElement","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgrDataSourceGroupDescriptionCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgrDataSourcePropertiesRequestedChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourcePropertiesRequestedChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrDataSourceRootSummariesChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceRootSummariesChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrDataSourceRowExpansionChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceRowExpansionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newState":"newState","oldState":"oldState","rowIndex":"rowIndex"}}],"IgrDataSourceSchemaChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceSchemaChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","nativeElement":"nativeElement","schema":"schema"}}],"IgrDataSourceSortDescription":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","nativeElement":"nativeElement","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgrDataSourceSortDescriptionCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgrDataSourceSummaryDescription":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","nativeElement":"nativeElement","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgrDataSourceSummaryDescriptionCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDataSourceSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgrDateTimeFormatSpecifier":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDateTimeFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","calendar":"calendar","dateStyle":"dateStyle","day":"day","dayPeriod":"dayPeriod","era":"era","formatMatcher":"formatMatcher","fractionalSecondDigits":"fractionalSecondDigits","hour":"hour","hour12":"hour12","hourCycle":"hourCycle","locale":"locale","localeMatcher":"localeMatcher","minute":"minute","month":"month","nativeElement":"nativeElement","numberingSystem":"numberingSystem","second":"second","timeStyle":"timeStyle","timeZone":"timeZone","timeZoneName":"timeZoneName","weekDay":"weekDay","year":"year","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgrDoubleValueChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDoubleValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrDownloadingMultiScaleImageEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrDownloadingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","image":"image","uri":"uri"}}],"IgrFilterExpressionCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrFilterExpressionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","onChanged":"onChanged","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","syncTarget":"syncTarget","add":"add","clear":"clear","findByName":"findByName","get":"get","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","set":"set","toArray":"toArray"}}],"IgrFocusEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","fromTarget":"fromTarget","nativeElement":"nativeElement","target":"target"}}],"IgrFormatSpecifier":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgrFormatSpecifierCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrFormatSpecifierCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrGenericVirtualDataSource":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrGenericVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","nativeElement":"nativeElement","pageRequested":"pageRequested","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","addSchemaProperty":"addSchemaProperty","addSummaryDate":"addSummaryDate","addSummaryDouble":"addSummaryDouble","addSummaryInt":"addSummaryInt","addSummaryString":"addSummaryString","fillColumnBool":"fillColumnBool","fillColumnDate":"fillColumnDate","fillColumnDouble":"fillColumnDouble","fillColumnInt":"fillColumnInt","fillColumnString":"fillColumnString","fillCount":"fillCount","fillGroupEnd":"fillGroupEnd","fillGroupStart":"fillGroupStart","fillGroupValueDate":"fillGroupValueDate","fillGroupValueDouble":"fillGroupValueDouble","fillGroupValueInt":"fillGroupValueInt","fillGroupValueString":"fillGroupValueString","fillPageEnd":"fillPageEnd","fillPageStart":"fillPageStart","findByName":"findByName","queueAutoRefresh":"queueAutoRefresh","_createFromInternal":"_createFromInternal"}}],"IgrGetTileImageUriArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrGetTileImageUriArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","tileImageUri":"tileImageUri","tileLevel":"tileLevel","tilePositionX":"tilePositionX","tilePositionY":"tilePositionY"}}],"IgrHeatTileGenerator":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrHeatTileGenerator","k":"class","s":"classes","m":{"constructor":"constructor","blurRadius":"blurRadius","logarithmBase":"logarithmBase","maxBlurRadius":"maxBlurRadius","maximumColor":"maximumColor","maximumValue":"maximumValue","minimumColor":"minimumColor","minimumValue":"minimumValue","scaleColorOffsets":"scaleColorOffsets","scaleColors":"scaleColors","useBlurRadiusAdjustedForZoom":"useBlurRadiusAdjustedForZoom","useGlobalMinMax":"useGlobalMinMax","useGlobalMinMaxAdjustedForZoom":"useGlobalMinMaxAdjustedForZoom","useLogarithmicScale":"useLogarithmicScale","useWebWorkers":"useWebWorkers","values":"values","webWorkerInstance":"webWorkerInstance","webWorkerScriptPath":"webWorkerScriptPath","xValues":"xValues","yValues":"yValues","cancelTile":"cancelTile","destroy":"destroy","findByName":"findByName","getTile":"getTile"}}],"IgrHighlightingInfo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrHighlightingInfo","k":"class","s":"classes","m":{"constructor":"constructor","context":"context","endIndex":"endIndex","isExclusive":"isExclusive","isFullRange":"isFullRange","isMarker":"isMarker","nativeElement":"nativeElement","progress":"progress","startIndex":"startIndex","state":"state","findByName":"findByName"}}],"IgrImageCapturedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrImageCapturedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","base64Data":"base64Data","image":"image","nativeElement":"nativeElement","settings":"settings"}}],"IgrImageLoadEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrImageLoadEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","data":"data","error":"error","nativeElement":"nativeElement","path":"path","status":"status"}}],"IgrKeyEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrKeyEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","alt":"alt","ctrl":"ctrl","defaultPrevented":"defaultPrevented","keyCode":"keyCode","modifiers":"modifiers","nativeElement":"nativeElement","originalEvent":"originalEvent","shift":"shift","preventDefault":"preventDefault","stopPropagation":"stopPropagation"}}],"IgrNumberFormatSpecifier":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrNumberFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","compactDisplay":"compactDisplay","currency":"currency","currencyCode":"currencyCode","currencyDisplay":"currencyDisplay","currencySign":"currencySign","locale":"locale","localeMatcher":"localeMatcher","maximumFractionDigits":"maximumFractionDigits","maximumSignificantDigits":"maximumSignificantDigits","minimumFractionDigits":"minimumFractionDigits","minimumIntegerDigits":"minimumIntegerDigits","minimumSignificantDigits":"minimumSignificantDigits","nativeElement":"nativeElement","notation":"notation","numberingSystem":"numberingSystem","signDisplay":"signDisplay","style":"style","unit":"unit","unitDisplay":"unitDisplay","useGrouping":"useGrouping","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgrObjectCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrObjectCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrOnClosedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrOnClosedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrOnPopupEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrOnPopupEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrPageRequestedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrPageRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dataSourceId":"dataSourceId","isSchemaRequest":"isSchemaRequest","nativeElement":"nativeElement","pageIndex":"pageIndex","pageSize":"pageSize","requestId":"requestId"}}],"IgrPopup":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrPopup","k":"class","s":"classes","m":{"constructor":"constructor","actualAmbientShadowColor":"actualAmbientShadowColor","actualElevation":"actualElevation","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","animationDuration":"animationDuration","animationEnabled":"animationEnabled","animationType":"animationType","background":"background","cornerRadius":"cornerRadius","disableHitTestDuringAnimation":"disableHitTestDuringAnimation","elevation":"elevation","height":"height","i":"i","isClosing":"isClosing","isFixed":"isFixed","isFocusable":"isFocusable","isHitTestVisible":"isHitTestVisible","isPointerEnabled":"isPointerEnabled","isShowing":"isShowing","isShown":"isShown","measuringContentSize":"measuringContentSize","onClosed":"onClosed","onPopup":"onPopup","pointerBackground":"pointerBackground","pointerPosition":"pointerPosition","pointerSize":"pointerSize","popupGotFocus":"popupGotFocus","popupLostFocus":"popupLostFocus","useTopLayer":"useTopLayer","width":"width","close":"close","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","render":"render","shouldComponentUpdate":"shouldComponentUpdate","showRelativeToExclusionRect":"showRelativeToExclusionRect","updateStyle":"updateStyle"}}],"IgrPopupMeasuringContentSizeEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrPopupMeasuringContentSizeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrPropertyUpdatedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrPropertyUpdatedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue","propertyName":"propertyName"}}],"IgrProvideCalculatorEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrProvideCalculatorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","calculator":"calculator","nativeElement":"nativeElement"}}],"IgrRectChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrRectChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newRect":"newRect","oldRect":"oldRect"}}],"IgrShapeDataSource":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrShapeDataSource","k":"class","s":"classes","m":{"constructor":"constructor","computedWorldRect":"computedWorldRect","count":"count","databaseSource":"databaseSource","deferImportCompleted":"deferImportCompleted","filter":"filter","i":"i","importCompleted":"importCompleted","importPending":"importPending","name":"name","shapefileSource":"shapefileSource","shapeHeader":"shapeHeader","shapeType":"shapeType","worldRect":"worldRect","dataBind":"dataBind","findByName":"findByName","getLargestShapeBoundsForRecord":"getLargestShapeBoundsForRecord","getMaxLongitude":"getMaxLongitude","getPointData":"getPointData","getRecord":"getRecord","getRecordBounds":"getRecordBounds","getRecordFieldNames":"getRecordFieldNames","getRecordsCount":"getRecordsCount","getRecordValue":"getRecordValue","getRecordValues":"getRecordValues","getWorldBounds":"getWorldBounds","removeRecord":"removeRecord","sendImportCompleted":"sendImportCompleted","setRecordValue":"setRecordValue","setRecordValues":"setRecordValues","setWorldBounds":"setWorldBounds","shiftAllShapes":"shiftAllShapes","shiftShapes":"shiftShapes"}}],"IgrShapefileRecord":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrShapefileRecord","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","fieldsNames":"fieldsNames","fieldsTypes":"fieldsTypes","fieldValues":"fieldValues","i":"i","points":"points","shapeType":"shapeType","findByName":"findByName","getFieldValue":"getFieldValue","setFieldValue":"setFieldValue"}}],"IgrShapeFilterRecordEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrShapeFilterRecordEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","record":"record","shouldInclude":"shouldInclude"}}],"IgrSimpleDefaultTooltip":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrSimpleDefaultTooltip","k":"class","s":"classes","m":{"constructor":"constructor","labelText":"labelText","onContentReady":"onContentReady","ensureDefaultTooltip":"ensureDefaultTooltip","getLabel":"getLabel","render":"render","willComponentMount":"willComponentMount","register":"register"}}],"IgrStockChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrStockChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","addedSymbols":"addedSymbols","nativeElement":"nativeElement","removedSymbols":"removedSymbols"}}],"IgrStyle":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrStyle","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrTemplateContainer":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTemplateContainer","k":"class","s":"classes","m":{"constructor":"constructor","contentReady":"contentReady","containerTemplate":"containerTemplate","currentOwner":"currentOwner","dataContext":"dataContext","template":"template","componentDidUpdate":"componentDidUpdate","render":"render","shouldComponentUpdate":"shouldComponentUpdate"}}],"IgrTemplateContent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTemplateContent","k":"class","s":"classes","m":{"constructor":"constructor","render":"render"}}],"IgrTemplateView":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTemplateView","k":"class","s":"classes","m":{"constructor":"constructor","render":"render"}}],"IgrToolCommandArgumentCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrToolCommandArgumentCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgrTooltipContainer":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTooltipContainer","k":"class","s":"classes","m":{"constructor":"constructor","containerTemplate":"containerTemplate","currentOwner":"currentOwner","dataContext":"dataContext","template":"template","render":"render","shouldComponentUpdate":"shouldComponentUpdate"}}],"IgrTransactionState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTransactionState","k":"class","s":"classes","m":{"constructor":"constructor","id":"id","nativeElement":"nativeElement","transactionType":"transactionType","value":"value","version":"version","findByName":"findByName"}}],"IgrTriangulationDataSource":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTriangulationDataSource","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","importCompleted":"importCompleted","source":"source","findByName":"findByName","getPointData":"getPointData","getTriangleData":"getTriangleData"}}],"IgrTriangulationStatusEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrTriangulationStatusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentStatus":"currentStatus","nativeElement":"nativeElement"}}],"IgrUploadDataCompletedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrUploadDataCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelled":"cancelled","errorMessage":"errorMessage","nativeElement":"nativeElement","result":"result","userState":"userState"}}],"IgrUploadStringCompletedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IgrUploadStringCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelled":"cancelled","errorMessage":"errorMessage","nativeElement":"nativeElement","result":"result","userState":"userState"}}],"IterableWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IterableWrapper","k":"class","s":"classes","m":{"constructor":"constructor","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject"}}],"IteratorWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/IteratorWrapper","k":"class","s":"classes","m":{"constructor":"constructor","current":"current","currentObject":"currentObject","dispose":"dispose","moveNext":"moveNext","reset":"reset"}}],"NamePatcher":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/NamePatcher","k":"class","s":"classes","m":{"constructor":"constructor","_patched":"_patched","ensurePatched":"ensurePatched","ensureStylablePatched":"ensureStylablePatched"}}],"NotSupportedException":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/NotSupportedException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Nullable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Nullable","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","getUnderlyingType":"getUnderlyingType","referenceEquals":"referenceEquals"}}],"Nullable$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Nullable-1","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","isNullable":"isNullable","$t":"$t","nextHashCode":"nextHashCode","hasValue":"hasValue","value":"value","equals":"equals","getDefaultValue":"getDefaultValue","getHashCode":"getHashCode","getValueOrDefault":"getValueOrDefault","getValueOrDefault1":"getValueOrDefault1","memberwiseClone":"memberwiseClone","postDecrement":"postDecrement","postIncrement":"postIncrement","preDecrement":"preDecrement","preIncrement":"preIncrement","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","nullableEquals":"nullableEquals","referenceEquals":"referenceEquals"}}],"NumberFormatInfo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/NumberFormatInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","currencySymbol":"currencySymbol","nativeDigits":"nativeDigits","negativeSign":"negativeSign","numberDecimalSeparator":"numberDecimalSeparator","numberGroupSeparator":"numberGroupSeparator","numberGroupSizes":"numberGroupSizes","percentSymbol":"percentSymbol","positiveSign":"positiveSign","clone":"clone","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"PlatformConstants":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/PlatformConstants","k":"class","s":"classes","m":{"constructor":"constructor","Postfix":"Postfix","Prefix":"Prefix"}}],"PointUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/PointUtil","k":"class","s":"classes","m":{"constructor":"constructor","create":"create","createXY":"createXY","equals":"equals","notEquals":"notEquals"}}],"PortalManager":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/PortalManager","k":"class","s":"classes","m":{"constructor":"constructor","disableContentPortal":"disableContentPortal","renderer":"renderer","_destroy":"_destroy","getPortal":"getPortal","getPortals":"getPortals","onRender":"onRender"}}],"PromiseFactory":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/PromiseFactory","k":"class","s":"classes","m":{"constructor":"constructor","promise":"promise","reject":"reject","resolve":"resolve"}}],"PromiseWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/PromiseWrapper","k":"class","s":"classes","m":{"constructor":"constructor","always":"always","done":"done","fail":"fail","state":"state","then":"then"}}],"PropertyChangedEventArgs":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/PropertyChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","propertyName":"propertyName","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"ReactRenderer":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ReactRenderer","k":"class","s":"classes","m":{"constructor":"constructor","rootWrapper":"rootWrapper","addSizeWatcher":"addSizeWatcher","append":"append","appendToBody":"appendToBody","clearTimeout":"clearTimeout","createElement":"createElement","createElementNS":"createElementNS","destroy":"destroy","endCSSQuery":"endCSSQuery","expandTemplate":"expandTemplate","get2DCanvasContext":"get2DCanvasContext","getClearTimeout":"getClearTimeout","getCssDefaultPropertyValue":"getCssDefaultPropertyValue","getCssDefaultValuesForClassCollection":"getCssDefaultValuesForClassCollection","getCurrentDiscovery":"getCurrentDiscovery","getDefaultFontHeight":"getDefaultFontHeight","getExternal":"getExternal","getHeightForFontString":"getHeightForFontString","getPortal":"getPortal","getRequestAnimationFrame":"getRequestAnimationFrame","getResourceString":"getResourceString","getSetTimeout":"getSetTimeout","getSubRenderer":"getSubRenderer","getWrapper":"getWrapper","globalListen":"globalListen","hasBody":"hasBody","hasWindow":"hasWindow","listen":"listen","querySelector":"querySelector","removeSizeWatcher":"removeSizeWatcher","runInMainZone":"runInMainZone","setCssQueryFontString":"setCssQueryFontString","setCultureId":"setCultureId","setResourceBundleId":"setResourceBundleId","setTimeout":"setTimeout","startCSSQuery":"startCSSQuery","supportsAnimation":"supportsAnimation","supportsDOMEvents":"supportsDOMEvents","updateRoot":"updateRoot","withRenderer":"withRenderer"}}],"ReactTemplateAdapter":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ReactTemplateAdapter","k":"class","s":"classes","m":{"constructor":"constructor","adjustDynamicContent":"adjustDynamicContent","createMutationObserver":"createMutationObserver","ensureExternalObject":"ensureExternalObject","setValue":"setValue"}}],"ReactWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ReactWrapper","k":"class","s":"classes","m":{"constructor":"constructor","addClass":"addClass","append":"append","before":"before","clone":"clone","destroy":"destroy","findByClass":"findByClass","focus":"focus","getAttribute":"getAttribute","getChildAt":"getChildAt","getChildCount":"getChildCount","getNativeElement":"getNativeElement","getOffset":"getOffset","getOffsetHelper":"getOffsetHelper","getProperty":"getProperty","getStyleProperty":"getStyleProperty","getText":"getText","height":"height","hide":"hide","listen":"listen","outerHeight":"outerHeight","outerHeightWithMargin":"outerHeightWithMargin","outerWidth":"outerWidth","outerWidthWithMargin":"outerWidthWithMargin","parent":"parent","querySelectorAll":"querySelectorAll","remove":"remove","removeChild":"removeChild","removeChildren":"removeChildren","removeClass":"removeClass","setAttribute":"setAttribute","setOffset":"setOffset","setProperty":"setProperty","setRawPosition":"setRawPosition","setRawSize":"setRawSize","setRawStyleProperty":"setRawStyleProperty","setRawText":"setRawText","setRawXPosition":"setRawXPosition","setRawYPosition":"setRawYPosition","setStyleProperty":"setStyleProperty","setText":"setText","show":"show","unlistenAll":"unlistenAll","width":"width","withRenderer":"withRenderer"}}],"ReflectionUtil":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ReflectionUtil","k":"class","s":"classes","m":{"constructor":"constructor","getPropertyGetter":"getPropertyGetter"}}],"Stream":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Stream","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","canRead":"canRead","canSeek":"canSeek","canWrite":"canWrite","length":"length","position":"position","close":"close","dispose":"dispose","equals":"equals","flush":"flush","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","read":"read","readByte":"readByte","seek":"seek","setLength":"setLength","write":"write","writeByte":"writeByte","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"SystemException":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/SystemException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Thread":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Thread","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","currentCulture":"currentCulture","currentThread":"currentThread","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/Type","k":"class","s":"classes","m":{"constructor":"constructor","_$nullNullable":"_$nullNullable","$type":"$type","baseType":"baseType","enumInfo":"enumInfo","identifier":"identifier","InstanceConstructor":"InstanceConstructor","interfaces":"interfaces","isEnumType":"isEnumType","isNullable":"isNullable","name":"name","specializationCache":"specializationCache","stringId":"stringId","typeArguments":"typeArguments","nextHashCode":"nextHashCode","fullName":"fullName","genericTypeArguments":"genericTypeArguments","isGenericType":"isGenericType","isGenericTypeDefinition":"isGenericTypeDefinition","isPrimitive":"isPrimitive","isValueType":"isValueType","typeName":"typeName","equals":"equals","generateString":"generateString","getHashCode":"getHashCode","getSpecId":"getSpecId","getStaticFields":"getStaticFields","initSelfReferences":"initSelfReferences","isAssignableFrom":"isAssignableFrom","isInstanceOfType":"isInstanceOfType","memberwiseClone":"memberwiseClone","specialize":"specialize","canAssign":"canAssign","canAssignSimple":"canAssignSimple","checkEquals":"checkEquals","compare":"compare","compareSimple":"compareSimple","createInstance":"createInstance","decodePropType":"decodePropType","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getDefaultValue":"getDefaultValue","getHashCodeStatic":"getHashCodeStatic","getPrimitiveHashCode":"getPrimitiveHashCode","op_Equality":"op_Equality","op_Inequality":"op_Inequality","referenceEquals":"referenceEquals"}}],"TypeRegistrar":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/TypeRegistrar","k":"class","s":"classes","m":{"constructor":"constructor","_registrar":"_registrar","callRegister":"callRegister","create":"create","createFromInternal":"createFromInternal","get":"get","isRegistered":"isRegistered","register":"register","registerCons":"registerCons"}}],"ValueType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/classes/ValueType","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"AngularWrapperPosition":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/AngularWrapperPosition","k":"interface","s":"interfaces","m":{"left":"left","top":"top"}}],"Delegate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/Delegate","k":"interface","s":"interfaces","m":{"original":"original","target":"target","enumerate":"enumerate"}}],"DomPortal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/DomPortal","k":"interface","s":"interfaces","m":{"componentRef":"componentRef","portalContainer":"portalContainer","destroy":"destroy"}}],"DomRenderer":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/DomRenderer","k":"interface","s":"interfaces","m":{"rootWrapper":"rootWrapper","append":"append","appendToBody":"appendToBody","clearTimeout":"clearTimeout","createElement":"createElement","createElementNS":"createElementNS","destroy":"destroy","endCSSQuery":"endCSSQuery","expandTemplate":"expandTemplate","get2DCanvasContext":"get2DCanvasContext","getClearTimeout":"getClearTimeout","getCssDefaultPropertyValue":"getCssDefaultPropertyValue","getCssDefaultValuesForClassCollection":"getCssDefaultValuesForClassCollection","getExternal":"getExternal","getHeightForFontString":"getHeightForFontString","getPortal":"getPortal","getRequestAnimationFrame":"getRequestAnimationFrame","getResourceString":"getResourceString","getSetTimeout":"getSetTimeout","getSubRenderer":"getSubRenderer","getWrapper":"getWrapper","globalListen":"globalListen","hasBody":"hasBody","hasWindow":"hasWindow","querySelector":"querySelector","runInMainZone":"runInMainZone","setCssQueryFontString":"setCssQueryFontString","setCultureId":"setCultureId","setResourceBundleId":"setResourceBundleId","setTimeout":"setTimeout","startCSSQuery":"startCSSQuery","supportsAnimation":"supportsAnimation","supportsDOMEvents":"supportsDOMEvents"}}],"DomWrapper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/DomWrapper","k":"interface","s":"interfaces","m":{"addClass":"addClass","append":"append","before":"before","clone":"clone","destroy":"destroy","findByClass":"findByClass","focus":"focus","getAttribute":"getAttribute","getChildAt":"getChildAt","getChildCount":"getChildCount","getNativeElement":"getNativeElement","getOffset":"getOffset","getProperty":"getProperty","getStyleProperty":"getStyleProperty","getText":"getText","height":"height","hide":"hide","listen":"listen","outerHeight":"outerHeight","outerHeightWithMargin":"outerHeightWithMargin","outerWidth":"outerWidth","outerWidthWithMargin":"outerWidthWithMargin","parent":"parent","querySelectorAll":"querySelectorAll","remove":"remove","removeChild":"removeChild","removeChildren":"removeChildren","removeClass":"removeClass","setAttribute":"setAttribute","setOffset":"setOffset","setProperty":"setProperty","setRawPosition":"setRawPosition","setRawSize":"setRawSize","setRawStyleProperty":"setRawStyleProperty","setRawText":"setRawText","setRawXPosition":"setRawXPosition","setRawYPosition":"setRawYPosition","setStyleProperty":"setStyleProperty","setText":"setText","show":"show","unlistenAll":"unlistenAll","width":"width"}}],"DomWrapperPosition":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/DomWrapperPosition","k":"interface","s":"interfaces","m":{"left":"left","top":"top"}}],"EnumInfo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/EnumInfo","k":"interface","s":"interfaces","m":{"actualNames":"actualNames","actualNamesValuesMap":"actualNamesValuesMap","mustCoerceToInt":"mustCoerceToInt","names":"names","namesValuesMap":"namesValuesMap"}}],"IChartTooltipProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IChartTooltipProps","k":"interface","s":"interfaces","m":{"dataContext":"dataContext"}}],"ICollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/ICollection","k":"interface","s":"interfaces","m":{"count":"count","isSynchronized":"isSynchronized","syncRoot":"syncRoot","copyTo":"copyTo","getEnumeratorObject":"getEnumeratorObject"}}],"ICollection$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/ICollection-1","k":"interface","s":"interfaces","m":{"count":"count","isReadOnly":"isReadOnly","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","remove":"remove"}}],"IComparable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IComparable","k":"interface","s":"interfaces","m":{"compareToObject":"compareToObject"}}],"IComparable$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IComparable-1","k":"interface","s":"interfaces","m":{"compareTo":"compareTo"}}],"IConvertible":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IConvertible","k":"interface","s":"interfaces","m":{"toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toSByte":"toSByte","toSingle":"toSingle","toString1":"toString1","toUInt16":"toUInt16","toUInt32":"toUInt32","toUInt64":"toUInt64"}}],"IDictionary":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IDictionary","k":"interface","s":"interfaces"}],"IDisposable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IDisposable","k":"interface","s":"interfaces","m":{"dispose":"dispose"}}],"IEnumerable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEnumerable","k":"interface","s":"interfaces","m":{"getEnumeratorObject":"getEnumeratorObject"}}],"IEnumerable$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEnumerable-1","k":"interface","s":"interfaces","m":{"getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject"}}],"IEnumerator":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEnumerator","k":"interface","s":"interfaces","m":{"currentObject":"currentObject","moveNext":"moveNext","reset":"reset"}}],"IEnumerator$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEnumerator-1","k":"interface","s":"interfaces","m":{"current":"current","currentObject":"currentObject","dispose":"dispose","moveNext":"moveNext","reset":"reset"}}],"IEqualityComparer":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEqualityComparer","k":"interface","s":"interfaces","m":{"equals":"equals","getHashCode":"getHashCode"}}],"IEqualityComparer$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEqualityComparer-1","k":"interface","s":"interfaces","m":{"equalsC":"equalsC","getHashCodeC":"getHashCodeC"}}],"IEquatable$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IEquatable-1","k":"interface","s":"interfaces","m":{"equals":"equals"}}],"IFormatProvider":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IFormatProvider","k":"interface","s":"interfaces","m":{"getFormat":"getFormat"}}],"IgDataTemplate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IgDataTemplate","k":"interface","s":"interfaces","m":{"measure":"measure","passCompleted":"passCompleted","passStarting":"passStarting","render":"render"}}],"IgPoint":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IgPoint","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"IgRect":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IgRect","k":"interface","s":"interfaces","m":{"height":"height","left":"left","top":"top","width":"width"}}],"IgSize":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IgSize","k":"interface","s":"interfaces","m":{"height":"height","width":"width"}}],"IIgrChildContentProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrChildContentProps","k":"interface","s":"interfaces","m":{"children":"children"}}],"IIgrComponentRendererContainerProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrComponentRendererContainerProps","k":"interface","s":"interfaces","m":{"children":"children","style":"style"}}],"IIgrComponentRendererContainerState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrComponentRendererContainerState","k":"interface","s":"interfaces","m":{"rootComponentType":"rootComponentType"}}],"IIgrPopupProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrPopupProps","k":"interface","s":"interfaces","m":{"actualAmbientShadowColor":"actualAmbientShadowColor","actualElevation":"actualElevation","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","animationDuration":"animationDuration","animationEnabled":"animationEnabled","animationType":"animationType","background":"background","children":"children","cornerRadius":"cornerRadius","disableHitTestDuringAnimation":"disableHitTestDuringAnimation","elevation":"elevation","height":"height","isClosing":"isClosing","isFixed":"isFixed","isFocusable":"isFocusable","isHitTestVisible":"isHitTestVisible","isPointerEnabled":"isPointerEnabled","isShowing":"isShowing","measuringContentSize":"measuringContentSize","onClosed":"onClosed","onPopup":"onPopup","pointerBackground":"pointerBackground","pointerPosition":"pointerPosition","pointerSize":"pointerSize","popupGotFocus":"popupGotFocus","popupLostFocus":"popupLostFocus","useTopLayer":"useTopLayer","width":"width"}}],"IIgrSimpleDefaultTooltipProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrSimpleDefaultTooltipProps","k":"interface","s":"interfaces","m":{"context":"context","tooltip":"tooltip"}}],"IIgrTemplateContainerProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrTemplateContainerProps","k":"interface","s":"interfaces","m":{"omitContainer":"omitContainer","owner":"owner"}}],"IIgrTemplateContentProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrTemplateContentProps","k":"interface","s":"interfaces","m":{"dataContext":"dataContext","template":"template"}}],"IIgrTemplateViewProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrTemplateViewProps","k":"interface","s":"interfaces","m":{"dataContext":"dataContext","template":"template"}}],"IIgrTooltipContainerProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IIgrTooltipContainerProps","k":"interface","s":"interfaces","m":{"owner":"owner"}}],"IList":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IList","k":"interface","s":"interfaces","m":{"count":"count","isFixedSize":"isFixedSize","isReadOnly":"isReadOnly","isSynchronized":"isSynchronized","syncRoot":"syncRoot","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"IList$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IList-1","k":"interface","s":"interfaces","m":{"count":"count","isReadOnly":"isReadOnly","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"INotifyPropertyChanged":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/INotifyPropertyChanged","k":"interface","s":"interfaces","m":{"propertyChanged":"propertyChanged"}}],"IRenderTemplateObject":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/IRenderTemplateObject","k":"interface","s":"interfaces","m":{"strings":"strings","values":"values"}}],"LegacyGestureEvent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/LegacyGestureEvent","k":"interface","s":"interfaces","m":{"scale":"scale"}}],"NormalizedEvent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/NormalizedEvent","k":"interface","s":"interfaces","m":{"button":"button","originalEvent":"originalEvent","pageX":"pageX","pageY":"pageY","target":"target","wheelDelta":"wheelDelta"}}],"XmlAttribute":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlAttribute","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlDocument":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlDocument","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","documentElement":"documentElement","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","createElementNS":"createElementNS","createNode":"createNode","getAttributeNodeNS":"getAttributeNodeNS","importNode":"importNode","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlElement":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlElement","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlLinkedNode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlLinkedNode","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlNamedNodeMap":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlNamedNodeMap","k":"interface","s":"interfaces","m":{"getQualifiedItem":"getQualifiedItem"}}],"XmlNode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlNode","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlNodeList":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/interfaces/XmlNodeList","k":"interface","s":"interfaces","m":{"length":"length","getQualifiedItem":"getQualifiedItem","item":"item"}}],"BaseControlTheme":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/BaseControlTheme","k":"enum","s":"enums","m":{"Default":"Default","DenaliLight":"DenaliLight","MaterialLight":"MaterialLight","RevealDark":"RevealDark","RevealLight":"RevealLight","SlingshotDark":"SlingshotDark","SlingshotLight":"SlingshotLight"}}],"CalendarWeekRule":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CalendarWeekRule","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"CalloutCollisionMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CalloutCollisionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Greedy":"Greedy","GreedyCenterOfMass":"GreedyCenterOfMass","RadialBestFit":"RadialBestFit","RadialCenter":"RadialCenter","RadialInsideEnd":"RadialInsideEnd","RadialOutsideEnd":"RadialOutsideEnd","SimulatedAnnealing":"SimulatedAnnealing"}}],"CancelBehavior":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CancelBehavior","k":"enum","s":"enums","m":{"KeepCurrent":"KeepCurrent","ToBeginning":"ToBeginning","ToEnd":"ToEnd"}}],"CaptureImageFormat":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CaptureImageFormat","k":"enum","s":"enums","m":{"Jpeg":"Jpeg","Png":"Png"}}],"CodeGenerationLibraryItemContentLocation":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CodeGenerationLibraryItemContentLocation","k":"enum","s":"enums","m":{"CDN":"CDN","CDNSkipHydrate":"CDNSkipHydrate","Code":"Code","JsonFile":"JsonFile"}}],"CodeGenerationLibraryItemPlatform":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CodeGenerationLibraryItemPlatform","k":"enum","s":"enums","m":{"All":"All","AllWeb":"AllWeb","Android":"Android","Angular":"Angular","Blazor":"Blazor","Desktop":"Desktop","DotNet":"DotNet","iOS":"iOS","JQuery":"JQuery","Kotlin":"Kotlin","React":"React","Swift":"Swift","Unknown":"Unknown","Web":"Web","WebComponents":"WebComponents","Win":"Win","WindowsForms":"WindowsForms","WPF":"WPF","XPlat":"XPlat"}}],"CodeGenerationLibraryItemType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CodeGenerationLibraryItemType","k":"enum","s":"enums","m":{"Data":"Data","EventHandler":"EventHandler","Template":"Template","Unknown":"Unknown"}}],"CodeGenerationTargetPlatforms":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CodeGenerationTargetPlatforms","k":"enum","s":"enums","m":{"Angular":"Angular","Blazor":"Blazor","Kotlin":"Kotlin","React":"React","Swift":"Swift","WebComponents":"WebComponents","WindowsForms":"WindowsForms","WPF":"WPF"}}],"CollisionGeometryType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CollisionGeometryType","k":"enum","s":"enums","m":{"Box":"Box","Boxes":"Boxes","Circle":"Circle","PieSlice":"PieSlice"}}],"CompareOptions":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/CompareOptions","k":"enum","s":"enums","m":{"IgnoreCase":"IgnoreCase","IgnoreKanaType":"IgnoreKanaType","IgnoreNonSpace":"IgnoreNonSpace","IgnoreSymbols":"IgnoreSymbols","IgnoreWidth":"IgnoreWidth","None":"None","Ordinal":"Ordinal","OrdinalIgnoreCase":"OrdinalIgnoreCase","StringSort":"StringSort"}}],"ControlDisplayDensity":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ControlDisplayDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"DataAbbreviationMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataAbbreviationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Billion":"Billion","Independent":"Independent","Kilo":"Kilo","Million":"Million","None":"None","Quadrillion":"Quadrillion","Shared":"Shared","Trillion":"Trillion","Unset":"Unset"}}],"DataLegendHeaderDateMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendHeaderDateMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendHeaderTimeMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendHeaderTimeMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendLabelMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendLayoutMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendLayoutMode","k":"enum","s":"enums","m":{"Table":"Table","Vertical":"Vertical"}}],"DataLegendSeriesFamily":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendSeriesFamily","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Geographic":"Geographic","Highlight":"Highlight","Indicator":"Indicator","Polar":"Polar","Radial":"Radial","Range":"Range","Scatter":"Scatter","Shape":"Shape","Stacked":"Stacked"}}],"DataLegendSeriesValueType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendSeriesValueType","k":"enum","s":"enums","m":{"Angle":"Angle","Average":"Average","Change":"Change","Close":"Close","Fill":"Fill","High":"High","Low":"Low","Open":"Open","Radius":"Radius","Range":"Range","Summary":"Summary","TypicalPrice":"TypicalPrice","Value":"Value","Volume":"Volume","XValue":"XValue","YValue":"YValue"}}],"DataLegendSummaryType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendSummaryType","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","Max":"Max","Min":"Min","None":"None","Total":"Total"}}],"DataLegendUnitsMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendUnitsMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendValueMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataLegendValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Currency":"Currency","Decimal":"Decimal"}}],"DataSeriesAxisType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSeriesAxisType","k":"enum","s":"enums","m":{"Category":"Category","CategoryAngle":"CategoryAngle","ContinuousDateTime":"ContinuousDateTime","DiscreteDateTime":"DiscreteDateTime","Linear":"Linear","Logarithmic":"Logarithmic","NotApplicable":"NotApplicable","ProportionalCategoryAngle":"ProportionalCategoryAngle","RadialLinear":"RadialLinear","RadialLogarithmic":"RadialLogarithmic"}}],"DataSeriesIntent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSeriesIntent","k":"enum","s":"enums","m":{"AxisDateValue":"AxisDateValue","AxisLabelValue":"AxisLabelValue","CloseSeriesValue":"CloseSeriesValue","DontPlot":"DontPlot","GenerationInput":"GenerationInput","HighSeriesValue":"HighSeriesValue","LowSeriesValue":"LowSeriesValue","OpenSeriesValue":"OpenSeriesValue","PrimarySeriesValue":"PrimarySeriesValue","SalesFixedCost":"SalesFixedCost","SalesMarginalProfit":"SalesMarginalProfit","SalesRevenue":"SalesRevenue","SalesTotalCost":"SalesTotalCost","SalesUnit":"SalesUnit","SalesVariableCost":"SalesVariableCost","SeriesAngle":"SeriesAngle","SeriesFill":"SeriesFill","SeriesGroup":"SeriesGroup","SeriesLabel":"SeriesLabel","SeriesRadius":"SeriesRadius","SeriesShape":"SeriesShape","SeriesTitle":"SeriesTitle","SeriesValue":"SeriesValue","SeriesX":"SeriesX","SeriesY":"SeriesY","VolumeSeriesValue":"VolumeSeriesValue"}}],"DataSeriesMarker":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSeriesMarker","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Smart":"Smart","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"DataSeriesPropertyType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSeriesPropertyType","k":"enum","s":"enums","m":{"DateTime":"DateTime","Numeric":"Numeric","string1":"string1"}}],"DataSeriesType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","CalloutLayer":"CalloutLayer","CategoryHighlightLayer":"CategoryHighlightLayer","CategoryItemHighlightLayer":"CategoryItemHighlightLayer","CategoryToolTipLayer":"CategoryToolTipLayer","Column":"Column","CrosshairLayer":"CrosshairLayer","DataToolTipLayer":"DataToolTipLayer","FinalValueLayer":"FinalValueLayer","FinancialIndicator":"FinancialIndicator","FinancialOverlay":"FinancialOverlay","FinancialPrice":"FinancialPrice","GeographicBubble":"GeographicBubble","GeographicContour":"GeographicContour","GeographicHeat":"GeographicHeat","GeographicHighDensity":"GeographicHighDensity","GeographicPolygon":"GeographicPolygon","GeographicPolyline":"GeographicPolyline","GeographicScatter":"GeographicScatter","GeographicScatterArea":"GeographicScatterArea","ItemToolTipLayer":"ItemToolTipLayer","Line":"Line","LinearGauge":"LinearGauge","Pie":"Pie","Point":"Point","RadialGauge":"RadialGauge","RadialLine":"RadialLine","ScatterArea":"ScatterArea","ScatterBubble":"ScatterBubble","ScatterContour":"ScatterContour","ScatterHighDensity":"ScatterHighDensity","ScatterLine":"ScatterLine","ScatterPoint":"ScatterPoint","ScatterPolygon":"ScatterPolygon","ScatterPolyline":"ScatterPolyline","ScatterSpline":"ScatterSpline","Spline":"Spline","SplineArea":"SplineArea","Stacked":"Stacked","StepArea":"StepArea","StepLine":"StepLine","TrendLineLayer":"TrendLineLayer","Unknown":"Unknown","UserAnnotationToolTipLayer":"UserAnnotationToolTipLayer","ValueLayer":"ValueLayer","ValueOverlay":"ValueOverlay","Waterfall":"Waterfall"}}],"DataSourcePageRequestPriority":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSourcePageRequestPriority","k":"enum","s":"enums","m":{"High":"High","Low":"Low","Normal":"Normal"}}],"DataSourceRowType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSourceRowType","k":"enum","s":"enums","m":{"Custom":"Custom","Normal":"Normal","SectionFooter":"SectionFooter","SectionHeader":"SectionHeader","ShiftedRow":"ShiftedRow","SummaryRowRoot":"SummaryRowRoot","SummaryRowSection":"SummaryRowSection"}}],"DataSourceSchemaPropertyType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","ByteValue":"ByteValue","DateTimeOffsetValue":"DateTimeOffsetValue","DateTimeValue":"DateTimeValue","DecimalValue":"DecimalValue","DoubleValue":"DoubleValue","IntValue":"IntValue","LongValue":"LongValue","ObjectValue":"ObjectValue","ShortValue":"ShortValue","SingleValue":"SingleValue","StringValue":"StringValue"}}],"DataSourceSectionHeaderDisplayMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSourceSectionHeaderDisplayMode","k":"enum","s":"enums","m":{"Combined":"Combined","Split":"Split"}}],"DataSourceSummaryOperand":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSourceSummaryOperand","k":"enum","s":"enums","m":{"Average":"Average","Count":"Count","Custom":"Custom","Max":"Max","Min":"Min","Sum":"Sum"}}],"DataSourceSummaryScope":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataSourceSummaryScope","k":"enum","s":"enums","m":{"Both":"Both","Groups":"Groups","None":"None","Root":"Root"}}],"DataTooltipGroupedPositionX":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataTooltipGroupedPositionX","k":"enum","s":"enums","m":{"Auto":"Auto","LeftEdgeSnapLeft":"LeftEdgeSnapLeft","LeftEdgeSnapMiddle":"LeftEdgeSnapMiddle","LeftEdgeSnapRight":"LeftEdgeSnapRight","PinLeft":"PinLeft","PinMiddle":"PinMiddle","PinRight":"PinRight","RightEdgeSnapLeft":"RightEdgeSnapLeft","RightEdgeSnapMiddle":"RightEdgeSnapMiddle","RightEdgeSnapRight":"RightEdgeSnapRight","SnapLeft":"SnapLeft","SnapMiddle":"SnapMiddle","SnapRight":"SnapRight","TrackLeft":"TrackLeft","TrackMiddle":"TrackMiddle","TrackRight":"TrackRight"}}],"DataTooltipGroupedPositionY":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataTooltipGroupedPositionY","k":"enum","s":"enums","m":{"Auto":"Auto","BottomEdgeSnapBottom":"BottomEdgeSnapBottom","BottomEdgeSnapMiddle":"BottomEdgeSnapMiddle","BottomEdgeSnapTop":"BottomEdgeSnapTop","PinBottom":"PinBottom","PinMiddle":"PinMiddle","PinTop":"PinTop","SnapBottom":"SnapBottom","SnapMiddle":"SnapMiddle","SnapTop":"SnapTop","TopEdgeSnapBottom":"TopEdgeSnapBottom","TopEdgeSnapMiddle":"TopEdgeSnapMiddle","TopEdgeSnapTop":"TopEdgeSnapTop","TrackBottom":"TrackBottom","TrackMiddle":"TrackMiddle","TrackTop":"TrackTop"}}],"DataToolTipLayerGroupingMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DataToolTipLayerGroupingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Grouped":"Grouped","Individual":"Individual"}}],"DateTimeKind":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DateTimeKind","k":"enum","s":"enums","m":{"Local":"Local","Unspecified":"Unspecified","Utc":"Utc"}}],"DayOfWeek":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}},{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}}],"DescriptionPathOperatorType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/DescriptionPathOperatorType","k":"enum","s":"enums","m":{"Combine":"Combine","None":"None"}}],"ElevationMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ElevationMode","k":"enum","s":"enums","m":{"Auto":"Auto","HaloShadow":"HaloShadow","MaterialShadow":"MaterialShadow"}}],"EntityHandling":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/EntityHandling","k":"enum","s":"enums","m":{"ExpandCharEntities":"ExpandCharEntities","ExpandEntities":"ExpandEntities"}}],"ErrorBarCalculatorReference":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ErrorBarCalculatorReference","k":"enum","s":"enums","m":{"X":"X","Y":"Y"}}],"ErrorBarCalculatorType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ErrorBarCalculatorType","k":"enum","s":"enums","m":{"Data":"Data","Fixed":"Fixed","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"FastItemsSourceEventAction":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FastItemsSourceEventAction","k":"enum","s":"enums","m":{"Change":"Change","Insert":"Insert","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"FeatureState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FeatureState","k":"enum","s":"enums","m":{"Disabled":"Disabled","Enabled":"Enabled","Unset":"Unset"}}],"FillRule":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FillRule","k":"enum","s":"enums","m":{"EvenOdd":"EvenOdd","Nonzero":"Nonzero"}}],"FilterExpressionFunctionType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FilterExpressionFunctionType","k":"enum","s":"enums","m":{"Cast":"Cast","Ceiling":"Ceiling","Concat":"Concat","Contains":"Contains","Date":"Date","Day":"Day","EndsWith":"EndsWith","Env":"Env","Floor":"Floor","Hour":"Hour","IndexOf":"IndexOf","IsOf":"IsOf","Length":"Length","Minute":"Minute","Month":"Month","Now":"Now","Replace":"Replace","Round":"Round","Second":"Second","StartsWith":"StartsWith","Substring":"Substring","Time":"Time","ToLower":"ToLower","ToUpper":"ToUpper","Trim":"Trim","Year":"Year"}}],"FilterExpressionOperatorType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FilterExpressionOperatorType","k":"enum","s":"enums","m":{"Add":"Add","And":"And","Divide":"Divide","Equal":"Equal","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","Grouping":"Grouping","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","Modulo":"Modulo","Multiply":"Multiply","None":"None","Not":"Not","NotEqual":"NotEqual","Or":"Or","Subtract":"Subtract"}}],"FilterExpressionWrapperType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FilterExpressionWrapperType","k":"enum","s":"enums","m":{"Last30":"Last30","Last365":"Last365","Last7":"Last7","LastMonth":"LastMonth","LastQuarter":"LastQuarter","LastWeek":"LastWeek","LastYear":"LastYear","MonthToDate":"MonthToDate","NextMonth":"NextMonth","NextQuarter":"NextQuarter","NextWeek":"NextWeek","NextYear":"NextYear","Q1":"Q1","Q2":"Q2","Q3":"Q3","Q4":"Q4","QuarterToDate":"QuarterToDate","ThisMonth":"ThisMonth","ThisQuarter":"ThisQuarter","ThisWeek":"ThisWeek","ThisYear":"ThisYear","Today":"Today","Tomorrow":"Tomorrow","TrailingTwelveMonths":"TrailingTwelveMonths","YearToDate":"YearToDate","Yesterday":"Yesterday"}}],"FlatDataProviderJoinCollisionType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FlatDataProviderJoinCollisionType","k":"enum","s":"enums","m":{"Auto":"Auto","LeftOnly":"LeftOnly","PreferLeft":"PreferLeft","PreferRight":"PreferRight","RightOnly":"RightOnly"}}],"FlatDataProviderJoinType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/FlatDataProviderJoinType","k":"enum","s":"enums","m":{"Join":"Join","Left":"Left","Right":"Right"}}],"Formatting":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/Formatting","k":"enum","s":"enums","m":{"Indented":"Indented","None":"None"}}],"GenericDataSourceSchemaPropertyType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/GenericDataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","DateTimeValue":"DateTimeValue","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"GeometryType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/GeometryType","k":"enum","s":"enums","m":{"Ellipse":"Ellipse","Group":"Group","Line":"Line","Path":"Path","Rectangle":"Rectangle"}}],"GradientDirection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/GradientDirection","k":"enum","s":"enums","m":{"BottomTop":"BottomTop","LeftRight":"LeftRight","Radial":"Radial","RightLeft":"RightLeft","TopBottom":"TopBottom"}}],"HighlightedValueDisplayMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/HighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"HighlightedValueLabelMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/HighlightedValueLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","LabelBoth":"LabelBoth","PreferHighlighted":"PreferHighlighted","PreferOriginal":"PreferOriginal"}}],"HighlightingState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/HighlightingState","k":"enum","s":"enums","m":{"inward":"inward","outward":"outward","Static":"Static"}}],"HighlightState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/HighlightState","k":"enum","s":"enums","m":{"Hidden":"Hidden","Hiding":"Hiding","Showing":"Showing","Shown":"Shown","StartHiding":"StartHiding","StartShowing":"StartShowing"}}],"ImageLoadStatus":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ImageLoadStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Completed":"Completed","Failed":"Failed","Loading":"Loading","Unknown":"Unknown"}}],"InteractionState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/InteractionState","k":"enum","s":"enums","m":{"Auto":"Auto","DragPan":"DragPan","DragSelect":"DragSelect","DragZoom":"DragZoom","None":"None"}}],"InterpolationMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/InterpolationMode","k":"enum","s":"enums","m":{"HSV":"HSV","RGB":"RGB"}}],"JsonDictionaryValueType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/JsonDictionaryValueType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","NullValue":"NullValue","NumberValue":"NumberValue","StringValue":"StringValue"}}],"Key":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/Key","k":"enum","s":"enums","m":{"A":"A","Add":"Add","Alt":"Alt","B":"B","Back":"Back","C":"C","CapsLock":"CapsLock","Ctrl":"Ctrl","D":"D","D0":"D0","D1":"D1","D2":"D2","D3":"D3","D4":"D4","D5":"D5","D6":"D6","D7":"D7","D8":"D8","D9":"D9","Decimal":"Decimal","del":"del","Divide":"Divide","Down":"Down","E":"E","End":"End","Enter":"Enter","Escape":"Escape","F":"F","F1":"F1","F10":"F10","F11":"F11","F12":"F12","F2":"F2","F3":"F3","F4":"F4","F5":"F5","F6":"F6","F7":"F7","F8":"F8","F9":"F9","G":"G","H":"H","Home":"Home","I":"I","Insert":"Insert","J":"J","K":"K","L":"L","Left":"Left","M":"M","Multiply":"Multiply","N":"N","None":"None","NumPad0":"NumPad0","NumPad1":"NumPad1","NumPad2":"NumPad2","NumPad3":"NumPad3","NumPad4":"NumPad4","NumPad5":"NumPad5","NumPad6":"NumPad6","NumPad7":"NumPad7","NumPad8":"NumPad8","NumPad9":"NumPad9","O":"O","OemMinus":"OemMinus","OemPipe":"OemPipe","OemPlus":"OemPlus","OemQuestion":"OemQuestion","OemSemicolon":"OemSemicolon","OemTilde":"OemTilde","P":"P","PageDown":"PageDown","PageUp":"PageUp","Q":"Q","R":"R","Right":"Right","S":"S","Shift":"Shift","Space":"Space","Subtract":"Subtract","T":"T","Tab":"Tab","U":"U","Unknown":"Unknown","Up":"Up","V":"V","W":"W","X":"X","Y":"Y","Z":"Z"}}],"LegendEmptyValuesMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/LegendEmptyValuesMode","k":"enum","s":"enums","m":{"AlwaysHidden":"AlwaysHidden","AlwaysVisible":"AlwaysVisible","ShowWhenNoOthersCategory":"ShowWhenNoOthersCategory"}}],"LegendItemBadgeMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/LegendItemBadgeMode","k":"enum","s":"enums","m":{"MatchSeries":"MatchSeries","Simplified":"Simplified"}}],"LegendItemBadgeShape":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/LegendItemBadgeShape","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bar":"Bar","Circle":"Circle","Column":"Column","Hidden":"Hidden","Line":"Line","Marker":"Marker","Square":"Square"}}],"ListSortDirection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ListSortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"ModifierKeys":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ModifierKeys","k":"enum","s":"enums","m":{"Alt":"Alt","Apple":"Apple","Control":"Control","None":"None","Shift":"Shift","Windows":"Windows"}}],"MouseButton":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/MouseButton","k":"enum","s":"enums","m":{"Left":"Left","Middle":"Middle","Right":"Right","Unkown":"Unkown"}}],"NativeUIElementFactoryFlavor":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/NativeUIElementFactoryFlavor","k":"enum","s":"enums","m":{"NativePlatform":"NativePlatform","None":"None","XPlat":"XPlat"}}],"NeedleBeingDragged":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/NeedleBeingDragged","k":"enum","s":"enums","m":{"Highlight":"Highlight","Main":"Main","None":"None"}}],"NotifyCollectionChangedAction":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/NotifyCollectionChangedAction","k":"enum","s":"enums","m":{"Add":"Add","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"NumberStyles":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/NumberStyles","k":"enum","s":"enums","m":{"AllowCurrencySymbol":"AllowCurrencySymbol","AllowDecimalPoint":"AllowDecimalPoint","AllowExponent":"AllowExponent","AllowHexSpecifier":"AllowHexSpecifier","AllowLeadingSign":"AllowLeadingSign","AllowLeadingWhite":"AllowLeadingWhite","AllowParentheses":"AllowParentheses","AllowThousands":"AllowThousands","AllowTrailingSign":"AllowTrailingSign","AllowTrailingWhite":"AllowTrailingWhite","Any":"Any","Currency":"Currency","Float":"Float","HexNumber":"HexNumber","Integer":"Integer","None":"None","Number":"Number"}}],"OthersCategoryType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/OthersCategoryType","k":"enum","s":"enums","m":{"Number":"Number","Percent":"Percent"}}],"PathSegmentType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PathSegmentType","k":"enum","s":"enums","m":{"Arc":"Arc","Bezier":"Bezier","Line":"Line","PolyBezier":"PolyBezier","PolyLine":"PolyLine"}}],"PenLineCap":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PenLineCap","k":"enum","s":"enums","m":{"Flat":"Flat","Round":"Round","Square":"Square","Triangle":"Triangle"}}],"PenLineJoin":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PenLineJoin","k":"enum","s":"enums","m":{"Bevel":"Bevel","Miter":"Miter","Round":"Round"}}],"PermissionState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PermissionState","k":"enum","s":"enums","m":{"None":"None","Unrestricted":"Unrestricted"}}],"PopupAlignment":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PopupAlignment","k":"enum","s":"enums","m":{"Auto":"Auto","Far":"Far","Middle":"Middle","Near":"Near"}}],"PopupAnimationType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PopupAnimationType","k":"enum","s":"enums","m":{"FadeInOutSlide":"FadeInOutSlide","GrowShrink":"GrowShrink"}}],"PopupDirection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PopupDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"PopupPointerPosition":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/PopupPointerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"RadialLabelMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/RadialLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Label":"Label","LabelAndPercentage":"LabelAndPercentage","LabelAndValue":"LabelAndValue","LabelAndValueAndPercentage":"LabelAndValueAndPercentage","Normal":"Normal","Percentage":"Percentage","Value":"Value","ValueAndPercentage":"ValueAndPercentage"}}],"ReadState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ReadState","k":"enum","s":"enums","m":{"Closed":"Closed","EndOfFile":"EndOfFile","Error":"Error","Initial":"Initial","Interactive":"Interactive"}}],"RegexOptions":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/RegexOptions","k":"enum","s":"enums","m":{"Compiled":"Compiled","CultureInvariant":"CultureInvariant","ECMAScript":"ECMAScript","ExplicitCapture":"ExplicitCapture","IgnoreCase":"IgnoreCase","IgnorePatternWhitespace":"IgnorePatternWhitespace","Multiline":"Multiline","None":"None","RightToLeft":"RightToLeft","Singleline":"Singleline"}}],"ScrollbarStyle":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ScrollbarStyle","k":"enum","s":"enums","m":{"Default":"Default","Fading":"Fading","Hidden":"Hidden","Thin":"Thin"}}],"SecurityAction":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/SecurityAction","k":"enum","s":"enums","m":{"Assert":"Assert","Demand":"Demand","Deny":"Deny","InheritanceDemand":"InheritanceDemand","LinkDemand":"LinkDemand","PermitOnly":"PermitOnly","RequestMinimum":"RequestMinimum","RequestOptional":"RequestOptional","RequestRefuse":"RequestRefuse"}}],"SeekOrigin":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/SeekOrigin","k":"enum","s":"enums","m":{"Begin":"Begin","Current":"Current","End":"End"}}],"SeriesHighlightedValuesDisplayMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/SeriesHighlightedValuesDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"ShapeType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ShapeType","k":"enum","s":"enums","m":{"None":"None","Point":"Point","PointM":"PointM","PointZ":"PointZ","Polygon":"Polygon","PolygonM":"PolygonM","PolygonZ":"PolygonZ","PolyLine":"PolyLine","PolyLineM":"PolyLineM","PolyLineZ":"PolyLineZ","PolyPatch":"PolyPatch","PolyPoint":"PolyPoint","PolyPointM":"PolyPointM","PolyPointZ":"PolyPointZ"}}],"SmartPosition":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/SmartPosition","k":"enum","s":"enums","m":{"CenterBottom":"CenterBottom","CenterCenter":"CenterCenter","CenterTop":"CenterTop","LeftBottom":"LeftBottom","LeftCenter":"LeftCenter","LeftTop":"LeftTop","RightBottom":"RightBottom","RightCenter":"RightCenter","RightTop":"RightTop"}}],"Stretch":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/Stretch","k":"enum","s":"enums","m":{"Fill":"Fill","None":"None","Uniform":"Uniform","UniformToFill":"UniformToFill"}}],"StringComparison":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/StringComparison","k":"enum","s":"enums","m":{"CurrentCulture":"CurrentCulture","CurrentCultureIgnoreCase":"CurrentCultureIgnoreCase","InvariantCulture":"InvariantCulture","InvariantCultureIgnoreCase":"InvariantCultureIgnoreCase","Ordinal":"Ordinal","OrdinalIgnoreCase":"OrdinalIgnoreCase"}}],"StringSplitOptions":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/StringSplitOptions","k":"enum","s":"enums","m":{"None":"None","RemoveEmptyEntries":"RemoveEmptyEntries"}}],"SweepDirection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/SweepDirection","k":"enum","s":"enums","m":{"Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"TaskStatus":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TaskStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Created":"Created","Faulted":"Faulted","RanToCompletion":"RanToCompletion"}}],"ToolActionButtonInfoDisplayType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolActionButtonInfoDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionFieldSelectorInfoType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolActionFieldSelectorInfoType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolActionInfoDensity":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolActionInfoDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"ToolActionType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolActionType","k":"enum","s":"enums","m":{"Button":"Button","ButtonPair":"ButtonPair","Checkbox":"Checkbox","CheckboxList":"CheckboxList","ColorEditor":"ColorEditor","Combo":"Combo","FieldSelector":"FieldSelector","GroupHeader":"GroupHeader","IconButton":"IconButton","IconMenu":"IconMenu","Label":"Label","NumberInput":"NumberInput","Radio":"Radio","Separator":"Separator","SubPanel":"SubPanel","TextInput":"TextInput","Unknown":"Unknown"}}],"ToolCommandExecutionState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolCommandExecutionState","k":"enum","s":"enums","m":{"Completed":"Completed","Failed":"Failed","Pending":"Pending"}}],"ToolCommandStateType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolCommandStateType","k":"enum","s":"enums","m":{"IsDisabledChanged":"IsDisabledChanged","ValueChanged":"ValueChanged","VisibilityChanged":"VisibilityChanged"}}],"ToolContextBindingMode":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolContextBindingMode","k":"enum","s":"enums","m":{"OneWay":"OneWay","TwoWay":"TwoWay"}}],"ToolContextValueType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/ToolContextValueType","k":"enum","s":"enums","m":{"BoolValue":"BoolValue","Brush":"Brush","BrushCollection":"BrushCollection","Color":"Color","Data":"Data","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"TransactionEvent":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TransactionEvent","k":"enum","s":"enums","m":{"Add":"Add","Clear":"Clear","Commit":"Commit","End":"End","Redo":"Redo","Undo":"Undo"}}],"TransactionPendingState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TransactionPendingState","k":"enum","s":"enums","m":{"Accept":"Accept","Pending":"Pending","Reject":"Reject"}}],"TransactionType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TransactionType","k":"enum","s":"enums","m":{"Add":"Add","Delete":"Delete","Update":"Update"}}],"TrendLineType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TrendLineType","k":"enum","s":"enums","m":{"CubicFit":"CubicFit","CumulativeAverage":"CumulativeAverage","ExponentialAverage":"ExponentialAverage","ExponentialFit":"ExponentialFit","LinearFit":"LinearFit","LogarithmicFit":"LogarithmicFit","ModifiedAverage":"ModifiedAverage","None":"None","PowerLawFit":"PowerLawFit","QuadraticFit":"QuadraticFit","QuarticFit":"QuarticFit","QuinticFit":"QuinticFit","SimpleAverage":"SimpleAverage","WeightedAverage":"WeightedAverage"}}],"TypeDescriptionPlatform":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TypeDescriptionPlatform","k":"enum","s":"enums","m":{"Angular":"Angular","Blazor":"Blazor","JQuery":"JQuery","Kotlin":"Kotlin","React":"React","Swift":"Swift","Unknown":"Unknown","UWP":"UWP","WebComponents":"WebComponents","WindowsForms":"WindowsForms","WinUI":"WinUI","WPF":"WPF","XamarinAndroid":"XamarinAndroid","XamarinForms":"XamarinForms","XamariniOS":"XamariniOS"}}],"TypeDescriptionWellKnownType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/TypeDescriptionWellKnownType","k":"enum","s":"enums","m":{"Array":"Array","boolean1":"boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","DataTemplate":"DataTemplate","Date":"Date","DoubleCollection":"DoubleCollection","EventRef":"EventRef","ExportedType":"ExportedType","IList":"IList","MethodRef":"MethodRef","Number":"Number","Pixel":"Pixel","PixelPoint":"PixelPoint","PixelRect":"PixelRect","PixelSize":"PixelSize","Point":"Point","Rect":"Rect","Size":"Size","string1":"string1","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unknown":"Unknown","Void":"Void"}}],"UnknownValuePlotting":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/UnknownValuePlotting","k":"enum","s":"enums","m":{"DontPlot":"DontPlot","LinearInterpolate":"LinearInterpolate"}}],"UriKind":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/UriKind","k":"enum","s":"enums","m":{"Absolute":"Absolute","Relative":"Relative","RelativeOrAbsolute":"RelativeOrAbsolute"}}],"Visibility":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/Visibility","k":"enum","s":"enums","m":{"Collapsed":"Collapsed","Visible":"Visible"}}],"WhitespaceHandling":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/WhitespaceHandling","k":"enum","s":"enums","m":{"All":"All","None":"None","Significant":"Significant"}}],"WriteState":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/WriteState","k":"enum","s":"enums","m":{"Attribute":"Attribute","Closed":"Closed","Content":"Content","Element":"Element","Prolog":"Prolog","Start":"Start"}}],"XBaseDataType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/XBaseDataType","k":"enum","s":"enums","m":{"AutoIncrement":"AutoIncrement","Binary":"Binary","Character":"Character","Currency":"Currency","Date":"Date","DateTime":"DateTime","double1":"double1","FloatingPoint":"FloatingPoint","General":"General","Integer":"Integer","Logical":"Logical","Memo":"Memo","Number":"Number","Picture":"Picture","Timestamp":"Timestamp","Variant":"Variant","VariField":"VariField"}}],"XmlNodeType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/XmlNodeType","k":"enum","s":"enums","m":{"Attribute":"Attribute","CDATA":"CDATA","Comment":"Comment","Document":"Document","DocumentFragment":"DocumentFragment","DocumentType":"DocumentType","Element":"Element","EndElement":"EndElement","EndEntity":"EndEntity","Entity":"Entity","EntityReference":"EntityReference","None":"None","Notation":"Notation","ProcessingInstruction":"ProcessingInstruction","SignificantWhitespace":"SignificantWhitespace","Text":"Text","Whitespace":"Whitespace","XmlDeclaration":"XmlDeclaration"}}],"XmlSpace":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/enums/XmlSpace","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Preserve":"Preserve"}}],"InstanceConstructor":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/types/InstanceConstructor","k":"type","s":"types"}],"RenderFunction":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/types/RenderFunction","k":"type","s":"types"}],"a$":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/a-","k":"variable","s":"variables"}],"Array_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Array_-type","k":"variable","s":"variables"}],"b$":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/b-","k":"variable","s":"variables"}],"Boolean_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Boolean_-type","k":"variable","s":"variables"}],"boolToDecimal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToDecimal","k":"variable","s":"variables"}],"boolToDouble":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToDouble","k":"variable","s":"variables"}],"boolToInt32":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToInt32","k":"variable","s":"variables"}],"boolToInt64":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToInt64","k":"variable","s":"variables"}],"boolToSingle":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToSingle","k":"variable","s":"variables"}],"boolToUInt16":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToUInt16","k":"variable","s":"variables"}],"boolToUInt32":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToUInt32","k":"variable","s":"variables"}],"boolToUInt64":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/boolToUInt64","k":"variable","s":"variables"}],"CalendarWeekRule_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/CalendarWeekRule_-type","k":"variable","s":"variables"}],"d$":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/d-","k":"variable","s":"variables"}],"Date_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Date_-type","k":"variable","s":"variables"}],"DateTimeKind_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/DateTimeKind_-type","k":"variable","s":"variables"}],"DayOfWeek_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/DayOfWeek_-type","k":"variable","s":"variables"}],"Delegate_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Delegate_-type","k":"variable","s":"variables"}],"DomPortal_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/DomPortal_-type","k":"variable","s":"variables"}],"DomRenderer_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/DomRenderer_-type","k":"variable","s":"variables"}],"DomWrapper_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/DomWrapper_-type","k":"variable","s":"variables"}],"ICollection_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/ICollection_-type","k":"variable","s":"variables"}],"ICollection$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/ICollection-1_-type","k":"variable","s":"variables"}],"IComparable_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IComparable_-type","k":"variable","s":"variables"}],"IComparable$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IComparable-1_-type","k":"variable","s":"variables"}],"IConvertible_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IConvertible_-type","k":"variable","s":"variables"}],"IDictionary_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IDictionary_-type","k":"variable","s":"variables"}],"IDisposable_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IDisposable_-type","k":"variable","s":"variables"}],"IEnumerable_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEnumerable_-type","k":"variable","s":"variables"}],"IEnumerable$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEnumerable-1_-type","k":"variable","s":"variables"}],"IEnumerator_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEnumerator_-type","k":"variable","s":"variables"}],"IEnumerator$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEnumerator-1_-type","k":"variable","s":"variables"}],"IEqualityComparer_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEqualityComparer_-type","k":"variable","s":"variables"}],"IEqualityComparer$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEqualityComparer-1_-type","k":"variable","s":"variables"}],"IEquatable$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IEquatable-1_-type","k":"variable","s":"variables"}],"IFormatProvider_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IFormatProvider_-type","k":"variable","s":"variables"}],"IList_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IList_-type","k":"variable","s":"variables"}],"IList$1_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/IList-1_-type","k":"variable","s":"variables"}],"INotifyPropertyChanged_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/INotifyPropertyChanged_-type","k":"variable","s":"variables"}],"n$":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/n-","k":"variable","s":"variables"}],"Number_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Number_-type","k":"variable","s":"variables"}],"Point_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Point_-type","k":"variable","s":"variables"}],"s$":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/s-","k":"variable","s":"variables"}],"String_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/String_-type","k":"variable","s":"variables"}],"stringCompare":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/stringCompare","k":"variable","s":"variables"}],"toDecimal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/toDecimal","k":"variable","s":"variables"}],"v$":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/v-","k":"variable","s":"variables"}],"Void_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/Void_-type","k":"variable","s":"variables"}],"wellKnownColors":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/wellKnownColors","k":"variable","s":"variables"}],"XmlAttribute_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlAttribute_-type","k":"variable","s":"variables"}],"XmlDocument_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlDocument_-type","k":"variable","s":"variables"}],"XmlElement_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlElement_-type","k":"variable","s":"variables"}],"XmlLinkedNode_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlLinkedNode_-type","k":"variable","s":"variables"}],"XmlNamedNodeMap_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlNamedNodeMap_-type","k":"variable","s":"variables"}],"XmlNode_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlNode_-type","k":"variable","s":"variables"}],"XmlNodeList_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlNodeList_-type","k":"variable","s":"variables"}],"XmlNodeType_$type":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/variables/XmlNodeType_-type","k":"variable","s":"variables"}],"addBrushPaletteThemeEntry":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/addBrushPaletteThemeEntry","k":"function","s":"functions"}],"addPaletteThemeEntry":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/addPaletteThemeEntry","k":"function","s":"functions"}],"addTextThemeEntry":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/addTextThemeEntry","k":"function","s":"functions"}],"arrayClear":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayClear","k":"function","s":"functions"}],"arrayClear1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayClear1","k":"function","s":"functions"}],"arrayContains":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayContains","k":"function","s":"functions"}],"arrayCopy":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayCopy","k":"function","s":"functions"}],"arrayCopy1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayCopy1","k":"function","s":"functions"}],"arrayCopy2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayCopy2","k":"function","s":"functions"}],"arrayCopyTo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayCopyTo","k":"function","s":"functions"}],"arrayFindByName":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayFindByName","k":"function","s":"functions"}],"arrayGetLength":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayGetLength","k":"function","s":"functions"}],"arrayGetRank":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayGetRank","k":"function","s":"functions"}],"arrayGetValue":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayGetValue","k":"function","s":"functions"}],"arrayIndexOf1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayIndexOf1","k":"function","s":"functions"}],"arrayInsert":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayInsert","k":"function","s":"functions"}],"arrayInsertRange":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayInsertRange","k":"function","s":"functions"}],"arrayInsertRange1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayInsertRange1","k":"function","s":"functions"}],"arrayLast":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayLast","k":"function","s":"functions"}],"arrayListCreate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayListCreate","k":"function","s":"functions"}],"arrayRemoveAt":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayRemoveAt","k":"function","s":"functions"}],"arrayRemoveItem":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayRemoveItem","k":"function","s":"functions"}],"arrayResize":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayResize","k":"function","s":"functions"}],"arrayShallowClone":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/arrayShallowClone","k":"function","s":"functions"}],"b64toUint8Array":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/b64toUint8Array","k":"function","s":"functions"}],"boolCompare":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/boolCompare","k":"function","s":"functions"}],"boolToInt16":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/boolToInt16","k":"function","s":"functions"}],"boolToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/boolToString","k":"function","s":"functions"}],"boxArray$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/boxArray-1","k":"function","s":"functions"}],"brushCollectionToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/brushCollectionToString","k":"function","s":"functions"}],"brushToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/brushToString","k":"function","s":"functions"}],"callStaticConstructors":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/callStaticConstructors","k":"function","s":"functions"}],"ceil10":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/ceil10","k":"function","s":"functions"}],"charMaxValue":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/charMaxValue","k":"function","s":"functions"}],"charMinValue":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/charMinValue","k":"function","s":"functions"}],"colorCollectionToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/colorCollectionToString","k":"function","s":"functions"}],"colorToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/colorToString","k":"function","s":"functions"}],"compareTo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/compareTo","k":"function","s":"functions"}],"createGuid":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/createGuid","k":"function","s":"functions"}],"createMutationObserver":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/createMutationObserver","k":"function","s":"functions"}],"dateAdd":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAdd","k":"function","s":"functions"}],"dateAddDays":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAddDays","k":"function","s":"functions"}],"dateAddHours":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAddHours","k":"function","s":"functions"}],"dateAddMinutes":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAddMinutes","k":"function","s":"functions"}],"dateAddMonths":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAddMonths","k":"function","s":"functions"}],"dateAddSeconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAddSeconds","k":"function","s":"functions"}],"dateAddYears":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateAddYears","k":"function","s":"functions"}],"dateEquals":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateEquals","k":"function","s":"functions"}],"dateFromFileTime":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateFromFileTime","k":"function","s":"functions"}],"dateFromFileTimeUtc":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateFromFileTimeUtc","k":"function","s":"functions"}],"dateFromMilliseconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateFromMilliseconds","k":"function","s":"functions"}],"dateFromTicks":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateFromTicks","k":"function","s":"functions"}],"dateFromValues":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateFromValues","k":"function","s":"functions"}],"dateGetDate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateGetDate","k":"function","s":"functions"}],"dateGetMonth":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateGetMonth","k":"function","s":"functions"}],"dateGetTimeOfDay":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateGetTimeOfDay","k":"function","s":"functions"}],"dateIsDST":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateIsDST","k":"function","s":"functions"}],"dateIsLeapYear":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateIsLeapYear","k":"function","s":"functions"}],"dateKind":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateKind","k":"function","s":"functions"}],"dateMaxValue":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateMaxValue","k":"function","s":"functions"}],"dateMinValue":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateMinValue","k":"function","s":"functions"}],"dateNow":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateNow","k":"function","s":"functions"}],"dateParse":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateParse","k":"function","s":"functions"}],"dateParseExact":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateParseExact","k":"function","s":"functions"}],"dateStdTimezoneOffset":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateStdTimezoneOffset","k":"function","s":"functions"}],"dateSubtract":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateSubtract","k":"function","s":"functions"}],"dateToday":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateToday","k":"function","s":"functions"}],"dateToFileTime":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateToFileTime","k":"function","s":"functions"}],"dateToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateToString","k":"function","s":"functions"}],"dateToStringFormat":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateToStringFormat","k":"function","s":"functions"}],"dateTryParse":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/dateTryParse","k":"function","s":"functions"}],"daysInMonth":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/daysInMonth","k":"function","s":"functions"}],"decimalAdjust":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/decimalAdjust","k":"function","s":"functions"}],"defaultDVDateParse":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/defaultDVDateParse","k":"function","s":"functions"}],"delegateCombine":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/delegateCombine","k":"function","s":"functions"}],"delegateRemove":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/delegateRemove","k":"function","s":"functions"}],"doubleCollectionToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/doubleCollectionToString","k":"function","s":"functions"}],"endsWith1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/endsWith1","k":"function","s":"functions"}],"ensureBool":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/ensureBool","k":"function","s":"functions"}],"ensureEnum":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/ensureEnum","k":"function","s":"functions"}],"enumGetBox":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/enumGetBox","k":"function","s":"functions"}],"enumToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/enumToString","k":"function","s":"functions"}],"floor10":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/floor10","k":"function","s":"functions"}],"fromBrushCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromBrushCollection","k":"function","s":"functions"}],"fromColorCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromColorCollection","k":"function","s":"functions"}],"fromDict":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromDict","k":"function","s":"functions"}],"fromDoubleCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromDoubleCollection","k":"function","s":"functions"}],"fromEn":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromEn","k":"function","s":"functions"}],"fromEnum":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromEnum","k":"function","s":"functions"}],"fromOADate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromOADate","k":"function","s":"functions"}],"fromPoint":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromPoint","k":"function","s":"functions"}],"fromRect":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromRect","k":"function","s":"functions"}],"fromSize":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromSize","k":"function","s":"functions"}],"fromSpinal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/fromSpinal","k":"function","s":"functions"}],"getAllPropertyNames":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getAllPropertyNames","k":"function","s":"functions"}],"getBoxIfEnum":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getBoxIfEnum","k":"function","s":"functions"}],"getColorStringSafe":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getColorStringSafe","k":"function","s":"functions"}],"getEn":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getEn","k":"function","s":"functions"}],"getEnumerator":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getEnumerator","k":"function","s":"functions"}],"getEnumeratorObject":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getEnumeratorObject","k":"function","s":"functions"}],"getInstanceType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getInstanceType","k":"function","s":"functions"}],"getModifiedProps":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/getModifiedProps","k":"function","s":"functions"}],"ieeeRemainder":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/ieeeRemainder","k":"function","s":"functions"}],"indexOfAny":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/indexOfAny","k":"function","s":"functions"}],"initializePropertiesFromCss":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/initializePropertiesFromCss","k":"function","s":"functions"}],"intDivide":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/intDivide","k":"function","s":"functions"}],"interfaceToInternal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/interfaceToInternal","k":"function","s":"functions"}],"intSToU":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/intSToU","k":"function","s":"functions"}],"intToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/intToString","k":"function","s":"functions"}],"intToString1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/intToString1","k":"function","s":"functions"}],"isDigit":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isDigit","k":"function","s":"functions"}],"isDigit1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isDigit1","k":"function","s":"functions"}],"isInfinity":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isInfinity","k":"function","s":"functions"}],"isLetter":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isLetter","k":"function","s":"functions"}],"isLetterOrDigit":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isLetterOrDigit","k":"function","s":"functions"}],"isLower":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isLower","k":"function","s":"functions"}],"isNaN_":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isNaN_","k":"function","s":"functions"}],"isNegativeInfinity":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isNegativeInfinity","k":"function","s":"functions"}],"isNumber":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isNumber","k":"function","s":"functions"}],"isPoint":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isPoint","k":"function","s":"functions"}],"isPositiveInfinity":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isPositiveInfinity","k":"function","s":"functions"}],"isRect":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isRect","k":"function","s":"functions"}],"isSize":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isSize","k":"function","s":"functions"}],"isValidProp":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/isValidProp","k":"function","s":"functions"}],"lastIndexOfAny":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/lastIndexOfAny","k":"function","s":"functions"}],"log10":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/log10","k":"function","s":"functions"}],"logBase":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/logBase","k":"function","s":"functions"}],"markDep":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/markDep","k":"function","s":"functions"}],"markEnum":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/markEnum","k":"function","s":"functions"}],"markStruct":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/markStruct","k":"function","s":"functions"}],"markType":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/markType","k":"function","s":"functions"}],"netRegexToJS":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/netRegexToJS","k":"function","s":"functions"}],"nullableAdd":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableAdd","k":"function","s":"functions"}],"nullableConcat":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableConcat","k":"function","s":"functions"}],"nullableDivide":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableDivide","k":"function","s":"functions"}],"nullableEquals":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableEquals","k":"function","s":"functions"}],"nullableGreaterThan":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableGreaterThan","k":"function","s":"functions"}],"nullableGreaterThanOrEqual":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableGreaterThanOrEqual","k":"function","s":"functions"}],"nullableIsNull":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableIsNull","k":"function","s":"functions"}],"nullableLessThan":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableLessThan","k":"function","s":"functions"}],"nullableLessThanOrEqual":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableLessThanOrEqual","k":"function","s":"functions"}],"nullableModulus":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableModulus","k":"function","s":"functions"}],"nullableMultiply":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableMultiply","k":"function","s":"functions"}],"nullableNotEquals":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableNotEquals","k":"function","s":"functions"}],"nullableSubtract":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/nullableSubtract","k":"function","s":"functions"}],"numberToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/numberToString","k":"function","s":"functions"}],"numberToString1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/numberToString1","k":"function","s":"functions"}],"numberToString2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/numberToString2","k":"function","s":"functions"}],"padLeft":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/padLeft","k":"function","s":"functions"}],"padRight":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/padRight","k":"function","s":"functions"}],"parseBool":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseBool","k":"function","s":"functions"}],"parseInt16_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt16_1","k":"function","s":"functions"}],"parseInt16_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt16_2","k":"function","s":"functions"}],"parseInt32_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt32_1","k":"function","s":"functions"}],"parseInt32_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt32_2","k":"function","s":"functions"}],"parseInt64_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt64_1","k":"function","s":"functions"}],"parseInt64_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt64_2","k":"function","s":"functions"}],"parseInt8_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt8_1","k":"function","s":"functions"}],"parseInt8_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseInt8_2","k":"function","s":"functions"}],"parseIntCore":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseIntCore","k":"function","s":"functions"}],"parseNumber":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseNumber","k":"function","s":"functions"}],"parseNumber1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseNumber1","k":"function","s":"functions"}],"parseUInt16_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt16_1","k":"function","s":"functions"}],"parseUInt16_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt16_2","k":"function","s":"functions"}],"parseUInt32_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt32_1","k":"function","s":"functions"}],"parseUInt32_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt32_2","k":"function","s":"functions"}],"parseUInt64_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt64_1","k":"function","s":"functions"}],"parseUInt64_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt64_2","k":"function","s":"functions"}],"parseUInt8_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt8_1","k":"function","s":"functions"}],"parseUInt8_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/parseUInt8_2","k":"function","s":"functions"}],"pointFromLiteral":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/pointFromLiteral","k":"function","s":"functions"}],"pointToLiteral":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/pointToLiteral","k":"function","s":"functions"}],"pointToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/pointToString","k":"function","s":"functions"}],"rectFromLiteral":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/rectFromLiteral","k":"function","s":"functions"}],"rectToLiteral":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/rectToLiteral","k":"function","s":"functions"}],"rectToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/rectToString","k":"function","s":"functions"}],"reverse":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/reverse","k":"function","s":"functions"}],"rgbToHex":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/rgbToHex","k":"function","s":"functions"}],"round10":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/round10","k":"function","s":"functions"}],"round10N":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/round10N","k":"function","s":"functions"}],"runOn":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/runOn","k":"function","s":"functions"}],"sizeFromLiteral":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/sizeFromLiteral","k":"function","s":"functions"}],"sizeToLiteral":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/sizeToLiteral","k":"function","s":"functions"}],"sizeToString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/sizeToString","k":"function","s":"functions"}],"sleep":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/sleep","k":"function","s":"functions"}],"startsWith1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/startsWith1","k":"function","s":"functions"}],"stringCompare1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCompare1","k":"function","s":"functions"}],"stringCompare2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCompare2","k":"function","s":"functions"}],"stringCompare3":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCompare3","k":"function","s":"functions"}],"stringCompareOrdinal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCompareOrdinal","k":"function","s":"functions"}],"stringCompareTo":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCompareTo","k":"function","s":"functions"}],"stringConcat":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringConcat","k":"function","s":"functions"}],"stringContains":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringContains","k":"function","s":"functions"}],"stringCopyToCharArray":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCopyToCharArray","k":"function","s":"functions"}],"stringCreateFromChar":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCreateFromChar","k":"function","s":"functions"}],"stringCreateFromCharArray":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCreateFromCharArray","k":"function","s":"functions"}],"stringCreateFromCharArraySlice":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringCreateFromCharArraySlice","k":"function","s":"functions"}],"stringEmpty":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringEmpty","k":"function","s":"functions"}],"stringEndsWith":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringEndsWith","k":"function","s":"functions"}],"stringEquals":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringEquals","k":"function","s":"functions"}],"stringEquals1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringEquals1","k":"function","s":"functions"}],"stringEscapeRegExp":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringEscapeRegExp","k":"function","s":"functions"}],"stringFormat":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringFormat","k":"function","s":"functions"}],"stringFormat1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringFormat1","k":"function","s":"functions"}],"stringFormat2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringFormat2","k":"function","s":"functions"}],"stringInsert":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringInsert","k":"function","s":"functions"}],"stringIsDigit":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringIsDigit","k":"function","s":"functions"}],"stringIsNullOrEmpty":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringIsNullOrEmpty","k":"function","s":"functions"}],"stringIsNullOrWhiteSpace":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringIsNullOrWhiteSpace","k":"function","s":"functions"}],"stringJoin":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringJoin","k":"function","s":"functions"}],"stringJoin1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringJoin1","k":"function","s":"functions"}],"stringRemove":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringRemove","k":"function","s":"functions"}],"stringReplace":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringReplace","k":"function","s":"functions"}],"stringSplit":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringSplit","k":"function","s":"functions"}],"stringStartsWith":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringStartsWith","k":"function","s":"functions"}],"stringToBrush":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToBrush","k":"function","s":"functions"}],"stringToCharArray":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToCharArray","k":"function","s":"functions"}],"stringToColor":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToColor","k":"function","s":"functions"}],"stringToLocaleLower":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToLocaleLower","k":"function","s":"functions"}],"stringToLocaleUpper":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToLocaleUpper","k":"function","s":"functions"}],"stringToString$1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToString-1","k":"function","s":"functions"}],"stringToString1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/stringToString1","k":"function","s":"functions"}],"strToColor":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/strToColor","k":"function","s":"functions"}],"timeSpanDays":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanDays","k":"function","s":"functions"}],"timeSpanFromDays":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanFromDays","k":"function","s":"functions"}],"timeSpanFromHours":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanFromHours","k":"function","s":"functions"}],"timeSpanFromMilliseconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanFromMilliseconds","k":"function","s":"functions"}],"timeSpanFromMinutes":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanFromMinutes","k":"function","s":"functions"}],"timeSpanFromSeconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanFromSeconds","k":"function","s":"functions"}],"timeSpanFromTicks":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanFromTicks","k":"function","s":"functions"}],"timeSpanHours":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanHours","k":"function","s":"functions"}],"timeSpanInit1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanInit1","k":"function","s":"functions"}],"timeSpanInit2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanInit2","k":"function","s":"functions"}],"timeSpanInit3":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanInit3","k":"function","s":"functions"}],"timeSpanMilliseconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanMilliseconds","k":"function","s":"functions"}],"timeSpanMinutes":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanMinutes","k":"function","s":"functions"}],"timeSpanNegate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanNegate","k":"function","s":"functions"}],"timeSpanSeconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanSeconds","k":"function","s":"functions"}],"timeSpanTicks":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanTicks","k":"function","s":"functions"}],"timeSpanTotalDays":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanTotalDays","k":"function","s":"functions"}],"timeSpanTotalHours":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanTotalHours","k":"function","s":"functions"}],"timeSpanTotalMilliseconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanTotalMilliseconds","k":"function","s":"functions"}],"timeSpanTotalMinutes":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanTotalMinutes","k":"function","s":"functions"}],"timeSpanTotalSeconds":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/timeSpanTotalSeconds","k":"function","s":"functions"}],"toBoolean":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toBoolean","k":"function","s":"functions"}],"toBrushCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toBrushCollection","k":"function","s":"functions"}],"toColorCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toColorCollection","k":"function","s":"functions"}],"toDouble":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toDouble","k":"function","s":"functions"}],"toDoubleCollection":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toDoubleCollection","k":"function","s":"functions"}],"toEn":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toEn","k":"function","s":"functions"}],"toEnum":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toEnum","k":"function","s":"functions"}],"toLocalTime":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toLocalTime","k":"function","s":"functions"}],"toLongDateString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toLongDateString","k":"function","s":"functions"}],"toLongTimeString":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toLongTimeString","k":"function","s":"functions"}],"toNullable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toNullable","k":"function","s":"functions"}],"toOADate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toOADate","k":"function","s":"functions"}],"toPoint":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toPoint","k":"function","s":"functions"}],"toRect":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toRect","k":"function","s":"functions"}],"toSize":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toSize","k":"function","s":"functions"}],"toSpinal":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toSpinal","k":"function","s":"functions"}],"toString1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toString1","k":"function","s":"functions"}],"toUniversalTime":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/toUniversalTime","k":"function","s":"functions"}],"trim":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/trim","k":"function","s":"functions"}],"trimEnd":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/trimEnd","k":"function","s":"functions"}],"trimStart":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/trimStart","k":"function","s":"functions"}],"truncate":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/truncate","k":"function","s":"functions"}],"tryParseBool":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseBool","k":"function","s":"functions"}],"tryParseInt16_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt16_1","k":"function","s":"functions"}],"tryParseInt16_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt16_2","k":"function","s":"functions"}],"tryParseInt32_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt32_1","k":"function","s":"functions"}],"tryParseInt32_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt32_2","k":"function","s":"functions"}],"tryParseInt64_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt64_1","k":"function","s":"functions"}],"tryParseInt64_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt64_2","k":"function","s":"functions"}],"tryParseInt8_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt8_1","k":"function","s":"functions"}],"tryParseInt8_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseInt8_2","k":"function","s":"functions"}],"tryParseIntCore":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseIntCore","k":"function","s":"functions"}],"tryParseNumber":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseNumber","k":"function","s":"functions"}],"tryParseNumber1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseNumber1","k":"function","s":"functions"}],"tryParseUInt16_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt16_1","k":"function","s":"functions"}],"tryParseUInt16_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt16_2","k":"function","s":"functions"}],"tryParseUInt32_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt32_1","k":"function","s":"functions"}],"tryParseUInt32_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt32_2","k":"function","s":"functions"}],"tryParseUInt64_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt64_1","k":"function","s":"functions"}],"tryParseUInt64_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt64_2","k":"function","s":"functions"}],"tryParseUInt8_1":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt8_1","k":"function","s":"functions"}],"tryParseUInt8_2":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/tryParseUInt8_2","k":"function","s":"functions"}],"typeCast":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/typeCast","k":"function","s":"functions"}],"typeCastObjTo$t":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/typeCastObjTo-t","k":"function","s":"functions"}],"typeGetValue":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/typeGetValue","k":"function","s":"functions"}],"u32BitwiseAnd":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/u32BitwiseAnd","k":"function","s":"functions"}],"u32BitwiseOr":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/u32BitwiseOr","k":"function","s":"functions"}],"u32BitwiseXor":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/u32BitwiseXor","k":"function","s":"functions"}],"u32LS":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/u32LS","k":"function","s":"functions"}],"uint8ArraytoB64":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/uint8ArraytoB64","k":"function","s":"functions"}],"unboxArray":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/unboxArray","k":"function","s":"functions"}],"unicode_hack":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/unicode_hack","k":"function","s":"functions"}],"unwrapNullable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/unwrapNullable","k":"function","s":"functions"}],"wrapNullable":[{"p":"igniteui-react-core","u":"/api/react/igniteui-react-core/19.5.2/functions/wrapNullable","k":"function","s":"functions"}],"IgrDashboardTile":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTile","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualCustomizations":"actualCustomizations","actualOutlines":"actualOutlines","autoCalloutsVisible":"autoCalloutsVisible","backgroundColor":"backgroundColor","baseTheme":"baseTheme","brushes":"brushes","categoryAxisMajorStroke":"categoryAxisMajorStroke","changingContent":"changingContent","contentCustomizations":"contentCustomizations","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsDisplayMode":"crosshairsDisplayMode","customizations":"customizations","dataSource":"dataSource","density":"density","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVisTypeRadial":"isVisTypeRadial","isVisTypeStacked":"isVisTypeStacked","nativeElement":"nativeElement","outlines":"outlines","selectedSeriesItems":"selectedSeriesItems","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","tileTitle":"tileTitle","trendLineBrushes":"trendLineBrushes","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","validVisualizationTypePriorityThreshold":"validVisualizationTypePriorityThreshold","validVisualizationTypes":"validVisualizationTypes","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesGlobalAverageBrush":"valueLinesGlobalAverageBrush","valueLinesGlobalMaximumBrush":"valueLinesGlobalMaximumBrush","valueLinesGlobalMinimumBrush":"valueLinesGlobalMinimumBrush","visualizationType":"visualizationType","width":"width","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","cancelAnnotationFlow":"cancelAnnotationFlow","clearSettings":"clearSettings","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","getDesiredToolbarActions":"getDesiredToolbarActions","getSettingsValue":"getSettingsValue","hasModifiedSettings":"hasModifiedSettings","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","onUIReady":"onUIReady","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","removeSettingsValue":"removeSettingsValue","render":"render","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","shouldComponentUpdate":"shouldComponentUpdate","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","updateSettingsValue":"updateSettingsValue","updateStyle":"updateStyle","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgrDashboardTileChangingContentEventArgs":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileChangingContentEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contentJson":"contentJson","nativeElement":"nativeElement"}}],"IgrDashboardTileCustomization":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileCustomization","k":"class","s":"classes","m":{"constructor":"constructor","collectionIndex":"collectionIndex","isCollectionInsertionAtEnd":"isCollectionInsertionAtEnd","isCollectionInsertionAtIndex":"isCollectionInsertionAtIndex","isCollectionInsertionAtStart":"isCollectionInsertionAtStart","isCollectionRemovaltIndex":"isCollectionRemovaltIndex","matchParentIndex":"matchParentIndex","matchType":"matchType","nativeElement":"nativeElement","order":"order","propertyName":"propertyName","propertyValue":"propertyValue","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrDashboardTileCustomizationCollection":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileCustomizationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrDashboardTileFilterStringErrorsParsingEventArgs":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","errors":"errors","nativeElement":"nativeElement","propertyName":"propertyName"}}],"IgrDashboardTileGroupDescription":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","nativeElement":"nativeElement","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgrDashboardTileGroupDescriptionCollection":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgrDashboardTileSortDescription":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","nativeElement":"nativeElement","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgrDashboardTileSortDescriptionCollection":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgrDashboardTileSummaryDescription":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","nativeElement":"nativeElement","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgrDashboardTileSummaryDescriptionCollection":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/classes/IgrDashboardTileSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IIgrDashboardTileCustomizationProps":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/interfaces/IIgrDashboardTileCustomizationProps","k":"interface","s":"interfaces","m":{"children":"children","collectionIndex":"collectionIndex","isCollectionInsertionAtEnd":"isCollectionInsertionAtEnd","isCollectionInsertionAtIndex":"isCollectionInsertionAtIndex","isCollectionInsertionAtStart":"isCollectionInsertionAtStart","isCollectionRemovaltIndex":"isCollectionRemovaltIndex","matchParentIndex":"matchParentIndex","matchType":"matchType","order":"order","propertyName":"propertyName","propertyValue":"propertyValue"}}],"IIgrDashboardTileProps":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/interfaces/IIgrDashboardTileProps","k":"interface","s":"interfaces","m":{"actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","autoCalloutsVisible":"autoCalloutsVisible","backgroundColor":"backgroundColor","baseTheme":"baseTheme","brushes":"brushes","categoryAxisMajorStroke":"categoryAxisMajorStroke","changingContent":"changingContent","children":"children","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsDisplayMode":"crosshairsDisplayMode","dataSource":"dataSource","density":"density","excludedProperties":"excludedProperties","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","includedProperties":"includedProperties","initialFilter":"initialFilter","initialGroups":"initialGroups","initialHighlightFilter":"initialHighlightFilter","initialSorts":"initialSorts","initialSummaries":"initialSummaries","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","outlines":"outlines","selectedSeriesItems":"selectedSeriesItems","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","tileTitle":"tileTitle","trendLineBrushes":"trendLineBrushes","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","validVisualizationTypePriorityThreshold":"validVisualizationTypePriorityThreshold","validVisualizationTypes":"validVisualizationTypes","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesGlobalAverageBrush":"valueLinesGlobalAverageBrush","valueLinesGlobalMaximumBrush":"valueLinesGlobalMaximumBrush","valueLinesGlobalMinimumBrush":"valueLinesGlobalMinimumBrush","visualizationType":"visualizationType","width":"width"}}],"DashboardTileVisualizationType":[{"p":"igniteui-react-dashboards","u":"/api/react/igniteui-react-dashboards/19.5.2/enums/DashboardTileVisualizationType","k":"enum","s":"enums","m":{"AreaChart":"AreaChart","Auto":"Auto","BarChart":"BarChart","BubbleChart":"BubbleChart","BulletGraph":"BulletGraph","CandlestickChart":"CandlestickChart","ChoroplethMap":"ChoroplethMap","ColumnChart":"ColumnChart","DoughnutChart":"DoughnutChart","FunnelChart":"FunnelChart","Grid":"Grid","HeatmapMap":"HeatmapMap","HighDensityMap":"HighDensityMap","KPI":"KPI","LinearGauge":"LinearGauge","LineChart":"LineChart","Map":"Map","OHLCChart":"OHLCChart","PieChart":"PieChart","PolarChart":"PolarChart","RadialGauge":"RadialGauge","RadialLineChart":"RadialLineChart","ScatterChart":"ScatterChart","ScatterMap":"ScatterMap","SparklineChart":"SparklineChart","SplineAreaChart":"SplineAreaChart","SplineChart":"SplineChart","StackedAreaChart":"StackedAreaChart","StackedBarChart":"StackedBarChart","StackedColumnChart":"StackedColumnChart","StepAreaChart":"StepAreaChart","StepLineChart":"StepLineChart","TextGauge":"TextGauge","TextView":"TextView","TimeSeriesChart":"TimeSeriesChart","Treemap":"Treemap"}}],"Entity":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/Entity","k":"class","s":"classes","m":{"constructor":"constructor","name":"name","primaryKey":"primaryKey","properties":"properties"}}],"EntityProperty":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/EntityProperty","k":"class","s":"classes","m":{"constructor":"constructor","isNullable":"isNullable","name":"name","type":"type"}}],"EntitySet":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/EntitySet","k":"class","s":"classes","m":{"constructor":"constructor","entityName":"entityName","entityNamespace":"entityNamespace","entityType":"entityType","name":"name"}}],"LinkedList":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/LinkedList","k":"class","s":"classes","m":{"constructor":"constructor","first":"first","last":"last","addFirst":"addFirst","addLast":"addLast","clear":"clear","contains":"contains","remove":"remove","removeFirst":"removeFirst","removeValue":"removeValue"}}],"LinkedListNode":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/LinkedListNode","k":"class","s":"classes","m":{"constructor":"constructor","next":"next","prev":"prev","value":"value"}}],"ODataDataSourcePage":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataDataSourcePage","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","getGroupInformation":"getGroupInformation","getItemAtIndex":"getItemAtIndex","getItemValueAtIndex":"getItemValueAtIndex","getSummaryInformation":"getSummaryInformation","pageIndex":"pageIndex","schema":"schema"}}],"ODataSchemaProvider":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataSchemaProvider","k":"class","s":"classes","m":{"constructor":"constructor","nS":"nS","getODataDataSourceSchema":"getODataDataSourceSchema"}}],"ODataVirtualDataSource":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","isAggregationSupportedByServer":"isAggregationSupportedByServer","isFilteringSupportedOverride":"isFilteringSupportedOverride","isGroupingSupportedOverride":"isGroupingSupportedOverride","isSortingSupportedOverride":"isSortingSupportedOverride","timeoutMilliseconds":"timeoutMilliseconds","clone":"clone"}}],"ODataVirtualDataSourceDataProvider":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataVirtualDataSourceDataProvider","k":"class","s":"classes","m":{"constructor":"constructor","_autoRefreshQueued":"_autoRefreshQueued","_schemaFetchQueued":"_schemaFetchQueued","schemaChanged":"schemaChanged","$t":"$t","actualCount":"actualCount","actualSchema":"actualSchema","baseUri":"baseUri","batchCompleted":"batchCompleted","deferAutoRefresh":"deferAutoRefresh","enableJsonp":"enableJsonp","entitySet":"entitySet","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","isFilteringSupported":"isFilteringSupported","isGroupingSupported":"isGroupingSupported","isItemIndexLookupSupported":"isItemIndexLookupSupported","isKeyIndexLookupSupported":"isKeyIndexLookupSupported","isSortingSupported":"isSortingSupported","notifyUsingSourceIndexes":"notifyUsingSourceIndexes","pageLoaded":"pageLoaded","pageSizeRequested":"pageSizeRequested","propertiesRequested":"propertiesRequested","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope","timeoutMilliseconds":"timeoutMilliseconds","updateNotifier":"updateNotifier","addItem":"addItem","addPageRequest":"addPageRequest","close":"close","createBatchRequest":"createBatchRequest","doRefreshInternal":"doRefreshInternal","doSchemaFetchInternal":"doSchemaFetchInternal","flushAutoRefresh":"flushAutoRefresh","getItemValue":"getItemValue","indexOfItem":"indexOfItem","indexOfKey":"indexOfKey","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","queueAutoRefresh":"queueAutoRefresh","queueSchemaFetch":"queueSchemaFetch","refresh":"refresh","refreshInternal":"refreshInternal","removeAllPageRequests":"removeAllPageRequests","removeItem":"removeItem","removePageRequest":"removePageRequest","resolveSchemaPropertyType":"resolveSchemaPropertyType","schemaFetchInternal":"schemaFetchInternal","setItemValue":"setItemValue"}}],"ODataVirtualDataSourceDataProviderWorker":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataVirtualDataSourceDataProviderWorker","k":"class","s":"classes","m":{"constructor":"constructor","schemaRequestIndex":"schemaRequestIndex","createBatchRequest":"createBatchRequest"}}],"ODataVirtualDataSourceDataProviderWorkerSettings":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataVirtualDataSourceDataProviderWorkerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","propertiesRequested":"propertiesRequested","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope"}}],"ODataVirtualDataSourceProviderTaskDataHolder":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/ODataVirtualDataSourceProviderTaskDataHolder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"RestVirtualDataSource":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/RestVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","fixedFullCount":"fixedFullCount","isAggregationSupportedByServer":"isAggregationSupportedByServer","isFilteringSupportedByServer":"isFilteringSupportedByServer","isFilteringSupportedOverride":"isFilteringSupportedOverride","isGroupingSupportedOverride":"isGroupingSupportedOverride","isSortingSupportedOverride":"isSortingSupportedOverride","performFetch":"performFetch","provideAggregatedCount":"provideAggregatedCount","provideAggregationParameter":"provideAggregationParameter","provideDesiredPropertiesParameter":"provideDesiredPropertiesParameter","provideFilterParameter":"provideFilterParameter","provideFullCount":"provideFullCount","provideItems":"provideItems","provideOrderByParameter":"provideOrderByParameter","providePagingParameter":"providePagingParameter","provideUri":"provideUri","timeoutMilliseconds":"timeoutMilliseconds","clone":"clone"}}],"RestVirtualDataSourceDataProvider":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/RestVirtualDataSourceDataProvider","k":"class","s":"classes","m":{"constructor":"constructor","_autoRefreshQueued":"_autoRefreshQueued","_schemaFetchQueued":"_schemaFetchQueued","schemaChanged":"schemaChanged","$t":"$t","actualCount":"actualCount","actualSchema":"actualSchema","baseUri":"baseUri","batchCompleted":"batchCompleted","deferAutoRefresh":"deferAutoRefresh","enableJsonp":"enableJsonp","entitySet":"entitySet","executionContext":"executionContext","filterExpressions":"filterExpressions","fixedFullCount":"fixedFullCount","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","isFilteringSupported":"isFilteringSupported","isGroupingSupported":"isGroupingSupported","isItemIndexLookupSupported":"isItemIndexLookupSupported","isKeyIndexLookupSupported":"isKeyIndexLookupSupported","isSortingSupported":"isSortingSupported","notifyUsingSourceIndexes":"notifyUsingSourceIndexes","pageLoaded":"pageLoaded","pageSizeRequested":"pageSizeRequested","performFetch":"performFetch","propertiesRequested":"propertiesRequested","provideAggregatedCount":"provideAggregatedCount","provideAggregationParameter":"provideAggregationParameter","provideDesiredPropertiesParameter":"provideDesiredPropertiesParameter","provideFilterParameter":"provideFilterParameter","provideFullCount":"provideFullCount","provideItems":"provideItems","provideOrderByParameter":"provideOrderByParameter","providePagingParameter":"providePagingParameter","provideUri":"provideUri","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope","timeoutMilliseconds":"timeoutMilliseconds","updateNotifier":"updateNotifier","addItem":"addItem","addPageRequest":"addPageRequest","close":"close","createBatchRequest":"createBatchRequest","doRefreshInternal":"doRefreshInternal","doSchemaFetchInternal":"doSchemaFetchInternal","flushAutoRefresh":"flushAutoRefresh","getItemValue":"getItemValue","indexOfItem":"indexOfItem","indexOfKey":"indexOfKey","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","queueAutoRefresh":"queueAutoRefresh","queueSchemaFetch":"queueSchemaFetch","refresh":"refresh","refreshInternal":"refreshInternal","removeAllPageRequests":"removeAllPageRequests","removeItem":"removeItem","removePageRequest":"removePageRequest","resolveSchemaPropertyType":"resolveSchemaPropertyType","schemaFetchInternal":"schemaFetchInternal","setItemValue":"setItemValue"}}],"RestVirtualDataSourceDataProviderWorker":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/RestVirtualDataSourceDataProviderWorker","k":"class","s":"classes","m":{"constructor":"constructor","schemaRequestIndex":"schemaRequestIndex","createBatchRequest":"createBatchRequest"}}],"RestVirtualDataSourceDataProviderWorkerSettings":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/RestVirtualDataSourceDataProviderWorkerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","filterExpressions":"filterExpressions","fixedFullCount":"fixedFullCount","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","performFetch":"performFetch","propertiesRequested":"propertiesRequested","provideAggregatedCount":"provideAggregatedCount","provideAggregationParameter":"provideAggregationParameter","provideDesiredPropertiesParameter":"provideDesiredPropertiesParameter","provideFilterParameter":"provideFilterParameter","provideFullCount":"provideFullCount","provideItems":"provideItems","provideOrderByParameter":"provideOrderByParameter","providePagingParameter":"providePagingParameter","provideUri":"provideUri","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope"}}],"RestVirtualDataSourcePage":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/RestVirtualDataSourcePage","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","getGroupInformation":"getGroupInformation","getItemAtIndex":"getItemAtIndex","getItemValueAtIndex":"getItemValueAtIndex","getSummaryInformation":"getSummaryInformation","pageIndex":"pageIndex","schema":"schema"}}],"RestVirtualDataSourceProviderTaskDataHolder":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/RestVirtualDataSourceProviderTaskDataHolder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"Schema":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/classes/Schema","k":"class","s":"classes","m":{"constructor":"constructor","entities":"entities","entitySets":"entitySets","namespace":"namespace"}}],"first":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/functions/first","k":"function","s":"functions"}],"toArray":[{"p":"igniteui-react-datasources","u":"/api/react/igniteui-react-datasources/19.5.2/functions/toArray","k":"function","s":"functions"}],"AnyValueDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/AnyValueDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"ArgumentExceptionExtension":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ArgumentExceptionExtension","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArgumentOutOfRangeExceptionExtension":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ArgumentOutOfRangeExceptionExtension","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArithmeticException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ArithmeticException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArrayFormula":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ArrayFormula","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellRange":"cellRange","applyTo":"applyTo","clearCellRange":"clearCellRange","toString":"toString","areEqual":"areEqual","parse":"parse","staticInit":"staticInit"}}],"ArrayProxy":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ArrayProxy","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","_j":"_j","getEnumerator":"getEnumerator","getLength":"getLength","item":"item"}}],"AverageConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/AverageConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","aboveBelow":"aboveBelow","cellFormat":"cellFormat","conditionType":"conditionType","numericStandardDeviation":"numericStandardDeviation","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"AverageFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/AverageFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","average":"average","type":"type"}}],"Axis":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Axis","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisBetweenCategories":"axisBetweenCategories","axisGroup":"axisGroup","axisTitle":"axisTitle","baseUnit":"baseUnit","baseUnitIsAuto":"baseUnitIsAuto","categoryType":"categoryType","chart":"chart","crosses":"crosses","crossesAt":"crossesAt","displayUnit":"displayUnit","displayUnitCustom":"displayUnitCustom","displayUnitLabel":"displayUnitLabel","gapWidth":"gapWidth","logBase":"logBase","majorGridLines":"majorGridLines","majorTickMark":"majorTickMark","majorUnit":"majorUnit","majorUnitIsAuto":"majorUnitIsAuto","majorUnitScale":"majorUnitScale","maximumScale":"maximumScale","maximumScaleIsAuto":"maximumScaleIsAuto","minimumScale":"minimumScale","minimumScaleIsAuto":"minimumScaleIsAuto","minorGridLines":"minorGridLines","minorTickMark":"minorTickMark","minorUnit":"minorUnit","minorUnitIsAuto":"minorUnitIsAuto","minorUnitScale":"minorUnitScale","owner":"owner","position":"position","reversePlotOrder":"reversePlotOrder","scaleType":"scaleType","sheet":"sheet","tickLabelPosition":"tickLabelPosition","tickLabels":"tickLabels","tickLabelSpacing":"tickLabelSpacing","tickLabelSpacingIsAuto":"tickLabelSpacingIsAuto","tickLines":"tickLines","tickMarkSpacing":"tickMarkSpacing","type":"type","visible":"visible","workbook":"workbook","worksheet":"worksheet","setMajorMinorUnit":"setMajorMinorUnit"}}],"AxisCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/AxisCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","item":"item","remove":"remove","staticInit":"staticInit"}}],"BlanksConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/BlanksConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"BoxAndWhiskerSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/BoxAndWhiskerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","quartileCalculation":"quartileCalculation","showInnerPoints":"showInnerPoints","showMeanLine":"showMeanLine","showMeanMarkers":"showMeanMarkers","showOutlierPoints":"showOutlierPoints"}}],"CategoryAxisBinning":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CategoryAxisBinning","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","binWidth":"binWidth","numberOfBins":"numberOfBins","overflow":"overflow","overflowThreshold":"overflowThreshold","underflow":"underflow","underflowThreshold":"underflowThreshold"}}],"CellConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","dataBarInfo":"dataBarInfo","hasConditionFormatting":"hasConditionFormatting","iconInfo":"iconInfo"}}],"CellDataBarInfo":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellDataBarInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisColor":"axisColor","axisPosition":"axisPosition","barBorder":"barBorder","barColor":"barColor","barFillType":"barFillType","barPositionFrom":"barPositionFrom","barPositionTo":"barPositionTo","direction":"direction","isNegative":"isNegative","showValue":"showValue"}}],"CellFill":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","noColor":"noColor","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillGradient":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellFillGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","stops":"stops","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillGradientStop":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellFillGradientStop","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","offset":"offset","equals":"equals","getHashCode":"getHashCode"}}],"CellFillLinearGradient":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellFillLinearGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","angle":"angle","stops":"stops","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillPattern":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellFillPattern","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backgroundColorInfo":"backgroundColorInfo","patternColorInfo":"patternColorInfo","patternStyle":"patternStyle","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillRectangularGradient":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellFillRectangularGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottom":"bottom","left":"left","right":"right","stops":"stops","top":"top","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellIconInfo":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CellIconInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","icon":"icon","iconIndex":"iconIndex","iconSet":"iconSet","showValue":"showValue"}}],"ChartArea":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartArea","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","roundedCorners":"roundedCorners","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartAreaBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartAreaBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","roundedCorners":"roundedCorners","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartBorder":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartBorder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartDropLines":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartDropLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartEmptyFill":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartEmptyFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartFillBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartFillBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartGradientFill":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartGradientFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","angle":"angle","chart":"chart","gradientType":"gradientType","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","getStops":"getStops"}}],"ChartGridLines":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartGridLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","gridLineType":"gridLineType","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartHighLowLines":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartHighLowLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartLabelBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartLabelBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ChartLine":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartLine","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartLineBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartLineBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartObject":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartObject","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartPatternFill":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartPatternFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backgroundColor":"backgroundColor","chart":"chart","foregroundColor":"foregroundColor","owner":"owner","pattern":"pattern","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartSeriesLines":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartSeriesLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"Chartsheet":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Chartsheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","displayOptions":"displayOptions","hasProtectionPassword":"hasProtectionPassword","isProtected":"isProtected","name":"name","printOptions":"printOptions","protection":"protection","selected":"selected","sheetIndex":"sheetIndex","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","moveToSheetIndex":"moveToSheetIndex","protect":"protect","unprotect":"unprotect","staticInit":"staticInit"}}],"ChartsheetDisplayOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartsheetDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"ChartsheetDisplayOptionsBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartsheetDisplayOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"ChartsheetPrintOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartsheetPrintOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","paperSize":"paperSize","printErrors":"printErrors","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","resolution":"resolution","rightMargin":"rightMargin","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","reset":"reset"}}],"ChartsheetProtection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartsheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowEditContents":"allowEditContents","allowEditObjects":"allowEditObjects"}}],"ChartSolidFill":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartSolidFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","color":"color","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartTextAreaBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartTextAreaBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ChartTickLines":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartTickLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartTitle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ChartTitle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","overlay":"overlay","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ColorScaleConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ColorScaleConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorScaleType":"colorScaleType","conditionType":"conditionType","formula":"formula","maximumThreshold":"maximumThreshold","midpointThreshold":"midpointThreshold","minimumThreshold":"minimumThreshold","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ColorScaleCriterion":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ColorScaleCriterion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formatColor":"formatColor","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue","toString":"toString"}}],"ComboChartGroup":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ComboChartGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisGroup":"axisGroup","chart":"chart","chartType":"chartType","doughnutHoleSize":"doughnutHoleSize","firstSliceAngle":"firstSliceAngle","gapWidth":"gapWidth","owner":"owner","seriesOverlap":"seriesOverlap","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ComboChartGroupCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ComboChartGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","item":"item","remove":"remove","staticInit":"staticInit"}}],"ConditionalFormatBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ConditionalFormatBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ConditionalFormatCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ConditionalFormatCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","addAverageCondition":"addAverageCondition","addBlanksCondition":"addBlanksCondition","addColorScaleCondition":"addColorScaleCondition","addDataBarCondition":"addDataBarCondition","addDateTimeCondition":"addDateTimeCondition","addDuplicateCondition":"addDuplicateCondition","addErrorsCondition":"addErrorsCondition","addFormulaCondition":"addFormulaCondition","addIconSetCondition":"addIconSetCondition","addNoBlanksCondition":"addNoBlanksCondition","addNoErrorsCondition":"addNoErrorsCondition","addOperatorCondition":"addOperatorCondition","addRankCondition":"addRankCondition","addTextCondition":"addTextCondition","addUniqueCondition":"addUniqueCondition","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"ConditionBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ConditionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ConditionValue":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ConditionValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue","toString":"toString"}}],"CriterionBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CriterionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue"}}],"CustomDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","getFormula":"getFormula","isEquivalentTo":"isEquivalentTo","setFormula":"setFormula"}}],"CustomFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","condition1":"condition1","condition2":"condition2","conditionalOperator":"conditionalOperator"}}],"CustomFilterCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomFilterCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comparisonOperator":"comparisonOperator","value":"value","equals":"equals","getHashCode":"getHashCode"}}],"CustomListSortCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomListSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","list":"list","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"CustomTableStyleCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomTableStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"CustomView":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomView","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","name":"name","saveHiddenRowsAndColumns":"saveHiddenRowsAndColumns","savePrintOptions":"savePrintOptions","windowOptions":"windowOptions","apply":"apply","getDisplayOptions":"getDisplayOptions","getHiddenColumns":"getHiddenColumns","getHiddenRows":"getHiddenRows","getPrintOptions":"getPrintOptions","getSheetDisplayOptions":"getSheetDisplayOptions","getSheetPrintOptions":"getSheetPrintOptions"}}],"CustomViewChartDisplayOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomViewChartDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"CustomViewCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomViewCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"CustomViewDisplayOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomViewDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","magnificationInCurrentView":"magnificationInCurrentView","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showZeroValues":"showZeroValues","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"CustomViewWindowOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/CustomViewWindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","boundsInPixels":"boundsInPixels","maximized":"maximized","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","showFormulaBar":"showFormulaBar","showStatusBar":"showStatusBar","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"DataBarConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DataBarConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisColor":"axisColor","axisPosition":"axisPosition","barBorderColor":"barBorderColor","barColor":"barColor","barFillType":"barFillType","conditionType":"conditionType","direction":"direction","fillPercentMax":"fillPercentMax","fillPercentMin":"fillPercentMin","formula":"formula","maxPoint":"maxPoint","minPoint":"minPoint","negativeBarFormat":"negativeBarFormat","priority":"priority","regions":"regions","showBorder":"showBorder","showValue":"showValue","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DataLabel":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DataLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","height":"height","horizontalOverflow":"horizontalOverflow","isDeleted":"isDeleted","labelPosition":"labelPosition","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","separator":"separator","sheet":"sheet","showBubbleSize":"showBubbleSize","showCategoryName":"showCategoryName","showLegendKey":"showLegendKey","showPercentage":"showPercentage","showRange":"showRange","showSeriesName":"showSeriesName","showValue":"showValue","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","width":"width","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"DataPoint":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DataPoint","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyPicToEnd":"applyPicToEnd","applyPicToFront":"applyPicToFront","applyPicToSides":"applyPicToSides","border":"border","chart":"chart","dataLabel":"dataLabel","explosion":"explosion","fill":"fill","invertIfNegative":"invertIfNegative","markerBorder":"markerBorder","markerFill":"markerFill","markerSize":"markerSize","markerStyle":"markerStyle","owner":"owner","setAsTotal":"setAsTotal","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"DataPointCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DataPointCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item"}}],"DataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"DataValidationRuleCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DataValidationRuleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","findRule":"findRule","getAllReferences":"getAllReferences","item":"item","remove":"remove","removeItem":"removeItem","staticInit":"staticInit"}}],"DatePeriodFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DatePeriodFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","value":"value"}}],"DateRange":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DateRange","k":"class","s":"classes","m":{"constructor":"constructor","end":"end","start":"start","$t":"$t"}}],"DateRangeFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DateRangeFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start"}}],"DateTimeConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DateTimeConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","dateOperator":"dateOperator","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DiamondShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DiamondShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"DisplayOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showZeroValues":"showZeroValues","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"DisplayOptionsBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DisplayOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","visibility":"visibility","reset":"reset"}}],"DisplayUnitLabel":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DisplayUnitLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"DisplayValueCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DisplayValueCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"DivideByZeroException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DivideByZeroException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"DocumentEncryptedException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentEncryptedException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"DocumentProperties":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentProperties","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","author":"author","category":"category","comments":"comments","company":"company","keywords":"keywords","manager":"manager","status":"status","subject":"subject","title":"title"}}],"DocumentsCoreLocaleBg":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleCs":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleDa":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleDe":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleEn":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleEs":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleFr":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleHu":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleIt":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleJa":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleNb":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleNl":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocalePl":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocalePt":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleRo":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleRu":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleSv":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleTr":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleZhHans":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleZhHant":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DocumentsCoreLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DuplicateConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DuplicateConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DynamicValuesFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/DynamicValuesFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"EllipseShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/EllipseShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"EndOfStreamException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/EndOfStreamException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ErrorBars":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ErrorBars","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","direction":"direction","endStyle":"endStyle","errorValueType":"errorValueType","fill":"fill","owner":"owner","sheet":"sheet","value":"value","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet"}}],"ErrorsConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ErrorsConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ErrorValue":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ErrorValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","argumentOrFunctionNotAvailable":"argumentOrFunctionNotAvailable","circularity":"circularity","divisionByZero":"divisionByZero","emptyCellRangeIntersection":"emptyCellRangeIntersection","invalidCellReference":"invalidCellReference","valueRangeOverflow":"valueRangeOverflow","wrongFunctionName":"wrongFunctionName","wrongOperandType":"wrongOperandType","toString":"toString"}}],"ExcelCalcErrorValue":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelCalcErrorValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","code":"code","errorValue":"errorValue","message":"message","toString":"toString"}}],"ExcelCalcFunction":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelCalcFunction","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxArgs":"maxArgs","minArgs":"minArgs","name":"name","canParameterBeEnumerable":"canParameterBeEnumerable","doesParameterAllowIntermediateResultArray":"doesParameterAllowIntermediateResultArray","getArguments":"getArguments","performEvaluation":"performEvaluation"}}],"ExcelCalcNumberStack":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelCalcNumberStack","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","owningCell":"owningCell","clear":"clear","count":"count","peek":"peek","pop":"pop","push":"push","reset":"reset"}}],"ExcelCalcValue":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelCalcValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","isArray":"isArray","isArrayGroup":"isArrayGroup","isBoolean":"isBoolean","isDateTime":"isDateTime","isDBNull":"isDBNull","isError":"isError","isNull":"isNull","isReference":"isReference","isString":"isString","value":"value","compareTo":"compareTo","getResolvedValue":"getResolvedValue","isSameValue":"isSameValue","toArrayProxy":"toArrayProxy","toArrayProxyGroup":"toArrayProxyGroup","toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toErrorValue":"toErrorValue","toInt":"toInt","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toReference":"toReference","toSingle":"toSingle","toString":"toString","toString1":"toString1","areValuesEqual":"areValuesEqual","dateTimeToExcelDate":"dateTimeToExcelDate","excelDateToDateTime":"excelDateToDateTime"}}],"ExcelLocaleBg":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleCs":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleDa":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleDe":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleEn":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleEs":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleFr":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleHu":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleIt":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleJa":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","String":"String","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleNb":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleNl":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocalePl":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocalePt":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleRo":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleRu":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Axis_NoCrossAxis1":"LE_Axis_NoCrossAxis1","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartGradientFill_EmptyStops1":"LE_ChartGradientFill_EmptyStops1","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidConditionalFormatFormula1":"LE_FormulaParseException_InvalidConditionalFormatFormula1","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_GradientStop_InvalidPosition1":"LE_GradientStop_InvalidPosition1","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleSv":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleTr":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleZhHans":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleZhHant":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ExcelLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"FillFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FillFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fill":"fill"}}],"FillSortCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FillSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fill":"fill","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"Filter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Filter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"FixedDateGroup":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FixedDateGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start","type":"type","value":"value","equals":"equals","getHashCode":"getHashCode","getRange":"getRange"}}],"FixedDateGroupCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FixedDateGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"FixedValuesFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FixedValuesFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","calendarType":"calendarType","includeBlanks":"includeBlanks","dateGroups":"dateGroups","displayValues":"displayValues"}}],"FontColorFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FontColorFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fontColorInfo":"fontColorInfo"}}],"FontColorSortCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FontColorSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fontColorInfo":"fontColorInfo","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"FormattedFontBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedFontBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedString":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedString","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","unformattedString":"unformattedString","clone":"clone","equals":"equals","getFont":"getFont","getFormattingRuns":"getFormattingRuns","getHashCode":"getHashCode","toString":"toString"}}],"FormattedStringFont":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedStringFont","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","formattedString":"formattedString","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedText":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedText","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","verticalAlignment":"verticalAlignment","clone":"clone","getFont":"getFont","getFormattingRuns":"getFormattingRuns","paragraphs":"paragraphs","toString":"toString"}}],"FormattedTextFont":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedTextFont","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","formattedText":"formattedText","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedTextParagraph":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedTextParagraph","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignment":"alignment","formattedText":"formattedText","startIndex":"startIndex","unformattedString":"unformattedString"}}],"FormattedTextParagraphCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormattedTextParagraphCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"Formula":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Formula","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyTo":"applyTo","toString":"toString","areEqual":"areEqual","parse":"parse","staticInit":"staticInit"}}],"FormulaConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormulaConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","formula":"formula","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"FormulaParseException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FormulaParseException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","charIndexOfError":"charIndexOfError","formulaValue":"formulaValue","portionWithError":"portionWithError"}}],"FrozenPaneSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/FrozenPaneSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","frozenColumns":"frozenColumns","frozenRows":"frozenRows","reset":"reset","resetCore":"resetCore"}}],"GeographicMapColors":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/GeographicMapColors","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maximum":"maximum","midpoint":"midpoint","minimum":"minimum","seriesColor":"seriesColor"}}],"GeographicMapSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/GeographicMapSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","area":"area","attribution":"attribution","colors":"colors","cultureLanguage":"cultureLanguage","cultureRegion":"cultureRegion","labels":"labels","projection":"projection"}}],"GradientStop":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/GradientStop","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","position":"position"}}],"HeartShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/HeartShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"HiddenColumnCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/HiddenColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","worksheet":"worksheet","add_1":"add_1","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"HiddenRowCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/HiddenRowCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","worksheet":"worksheet","add_1":"add_1","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"HorizontalPageBreak":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/HorizontalPageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstRowOnPage":"firstRowOnPage","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"HorizontalPageBreakCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/HorizontalPageBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"IconCriterion":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IconCriterion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comparison":"comparison","formula":"formula","icon":"icon","iconSet":"iconSet","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue"}}],"IconFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IconFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","iconIndex":"iconIndex","iconSet":"iconSet"}}],"IconSetConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IconSetConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","formula":"formula","iconSet":"iconSet","isCustom":"isCustom","isReverseOrder":"isReverseOrder","priority":"priority","regions":"regions","showValue":"showValue","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","iconCriteria":"iconCriteria","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"IconSetCriterionCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IconSetCriterionCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","getEnumeratorObject":"getEnumeratorObject","item":"item"}}],"IconSortCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IconSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","iconIndex":"iconIndex","iconSet":"iconSet","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"InvalidCastException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/InvalidCastException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"InvalidEnumArgumentException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/InvalidEnumArgumentException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"IOException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IOException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"IrregularSeal1Shape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IrregularSeal1Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"IrregularSeal2Shape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/IrregularSeal2Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"KeyNotFoundException":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/KeyNotFoundException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"LeaderLines":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/LeaderLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"Legend":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Legend","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","defaultFontFill":"defaultFontFill","fill":"fill","height":"height","left":"left","overlay":"overlay","owner":"owner","position":"position","rotation":"rotation","sheet":"sheet","textDirection":"textDirection","top":"top","width":"width","workbook":"workbook","worksheet":"worksheet","legendEntries":"legendEntries"}}],"LegendEntries":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/LegendEntries","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item"}}],"LegendEntry":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/LegendEntry","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","font":"font","fontFill":"fontFill","isDeleted":"isDeleted","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","del":"del"}}],"LightningBoltShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/LightningBoltShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"LimitedValueDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/LimitedValueDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"LineShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/LineShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"ListDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ListDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showDropdown":"showDropdown","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","getValuesFormula":"getValuesFormula","isEquivalentTo":"isEquivalentTo","setValues":"setValues","setValuesFormula":"setValuesFormula"}}],"NamedReference":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/NamedReference","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","formula":"formula","isSimpleReferenceFormula":"isSimpleReferenceFormula","name":"name","referencedCell":"referencedCell","referencedRegion":"referencedRegion","referencedRegions":"referencedRegions","scope":"scope","setFormula":"setFormula","toString":"toString"}}],"NamedReferenceBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/NamedReferenceBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","name":"name","scope":"scope"}}],"NamedReferenceCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/NamedReferenceCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","workbook":"workbook","add":"add","clear":"clear","contains":"contains","find":"find","findAll":"findAll","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"NegativeBarFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/NegativeBarFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","barBorderColor":"barBorderColor","barBorderColorType":"barBorderColorType","barColor":"barColor","barColorType":"barColorType"}}],"NoBlanksConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/NoBlanksConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"NoErrorsConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/NoErrorsConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"OneConstraintDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/OneConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","validationOperator":"validationOperator","clone":"clone","getConstraintFormula":"getConstraintFormula","isEquivalentTo":"isEquivalentTo","setConstraint":"setConstraint","setConstraintFormula":"setConstraintFormula"}}],"OperatorConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/OperatorConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","operand1":"operand1","operand2":"operand2","operator":"operator","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setOperand1":"setOperand1","setOperand1Formula":"setOperand1Formula","setOperand2":"setOperand2","setOperand2Formula":"setOperand2Formula","setRegions":"setRegions","staticInit":"staticInit"}}],"OrderedSortCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/OrderedSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"PageBreak":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"PageBreakCollection$1":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PageBreakCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"PaneSettingsBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PaneSettingsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","reset":"reset","resetCore":"resetCore"}}],"PentagonShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PentagonShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"PlotArea":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PlotArea","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","height":"height","left":"left","owner":"owner","position":"position","roundedCorners":"roundedCorners","sheet":"sheet","top":"top","width":"width","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"PrintAreasCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PrintAreasCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"PrintOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PrintOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","centerHorizontally":"centerHorizontally","centerVertically":"centerVertically","columnsToRepeatAtLeft":"columnsToRepeatAtLeft","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","maxPagesHorizontally":"maxPagesHorizontally","maxPagesVertically":"maxPagesVertically","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","pageOrder":"pageOrder","paperSize":"paperSize","printErrors":"printErrors","printGridlines":"printGridlines","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","printRowAndColumnHeaders":"printRowAndColumnHeaders","resolution":"resolution","rightMargin":"rightMargin","rowsToRepeatAtTop":"rowsToRepeatAtTop","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","scalingFactor":"scalingFactor","scalingType":"scalingType","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","clearPageBreaks":"clearPageBreaks","horizontalPageBreaks":"horizontalPageBreaks","insertPageBreak":"insertPageBreak","printAreas":"printAreas","reset":"reset","verticalPageBreaks":"verticalPageBreaks"}}],"PrintOptionsBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/PrintOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","paperSize":"paperSize","printErrors":"printErrors","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","resolution":"resolution","rightMargin":"rightMargin","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","reset":"reset"}}],"RankConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RankConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","isPercent":"isPercent","priority":"priority","rank":"rank","regions":"regions","stopIfTrue":"stopIfTrue","topBottom":"topBottom","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"RectangleShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RectangleShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"RelativeDateRangeFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RelativeDateRangeFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","duration":"duration","end":"end","offset":"offset","start":"start"}}],"RelativeIndex":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RelativeIndex","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","index":"index","compareTo":"compareTo"}}],"RelativeIndexSortSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RelativeIndexSortSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","sortConditions":"sortConditions"}}],"RepeatTitleRange":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RepeatTitleRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","endIndex":"endIndex","startIndex":"startIndex","equals":"equals","getHashCode":"getHashCode","toString":"toString"}}],"RightTriangleShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RightTriangleShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"RowColumnBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RowColumnBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","worksheet":"worksheet","getResolvedCellFormat":"getResolvedCellFormat"}}],"RowColumnCollectionBase$1":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/RowColumnCollectionBase-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l"}}],"Series":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Series","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyPicToEnd":"applyPicToEnd","applyPicToFront":"applyPicToFront","applyPicToSides":"applyPicToSides","axisBinning":"axisBinning","axisGroup":"axisGroup","barShape":"barShape","barShapeResolved":"barShapeResolved","border":"border","boxAndWhiskerSettings":"boxAndWhiskerSettings","bubbleSizes":"bubbleSizes","chart":"chart","chartType":"chartType","dataLabels":"dataLabels","errorBars":"errorBars","explosion":"explosion","fill":"fill","geographicMapSettings":"geographicMapSettings","invertIfNegative":"invertIfNegative","leaderLines":"leaderLines","line":"line","markerBorder":"markerBorder","markerFill":"markerFill","markerSize":"markerSize","markerStyle":"markerStyle","name":"name","owner":"owner","owningSeries":"owningSeries","pictureType":"pictureType","pictureUnit":"pictureUnit","plotOrder":"plotOrder","sheet":"sheet","showDataLabels":"showDataLabels","showWaterfallConnectorLines":"showWaterfallConnectorLines","smooth":"smooth","type":"type","values":"values","workbook":"workbook","worksheet":"worksheet","xValues":"xValues","dataPointCollection":"dataPointCollection","trendlineCollection":"trendlineCollection"}}],"SeriesCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"SeriesDataLabels":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SeriesDataLabels","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","dataLabelsRange":"dataLabelsRange","defaultFont":"defaultFont","fill":"fill","formula":"formula","height":"height","horizontalOverflow":"horizontalOverflow","isDeleted":"isDeleted","labelPosition":"labelPosition","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","parentLabelLayout":"parentLabelLayout","position":"position","readingOrder":"readingOrder","rotation":"rotation","separator":"separator","sheet":"sheet","showBubbleSize":"showBubbleSize","showCategoryName":"showCategoryName","showLeaderLines":"showLeaderLines","showLegendKey":"showLegendKey","showPercentage":"showPercentage","showRange":"showRange","showSeriesName":"showSeriesName","showValue":"showValue","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","width":"width","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setDataLabelsRange":"setDataLabelsRange","setFormula":"setFormula","staticInit":"staticInit"}}],"SeriesName":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SeriesName","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","toString":"toString"}}],"SeriesValues":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SeriesValues","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"SeriesValuesBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SeriesValuesBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"ShapeFill":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ShapeFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeFillSolid":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ShapeFillSolid","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeOutline":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ShapeOutline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeOutlineSolid":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ShapeOutlineSolid","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"Sheet":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Sheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","hasProtectionPassword":"hasProtectionPassword","isProtected":"isProtected","name":"name","selected":"selected","sheetIndex":"sheetIndex","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","moveToSheetIndex":"moveToSheetIndex","unprotect":"unprotect","staticInit":"staticInit"}}],"SheetCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SheetCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"SheetProtection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SortCondition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"SortConditionCollection$1":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SortConditionCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","addItem":"addItem","addRange":"addRange","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","insertRange":"insertRange","item":"item","remove":"remove","removeAt":"removeAt","removeItem":"removeItem","replaceAll":"replaceAll"}}],"SortSettings$1":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SortSettings-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","sortConditions":"sortConditions"}}],"Sparkline":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Sparkline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","dataRegion":"dataRegion","dataRegionName":"dataRegionName","location":"location"}}],"SparklineCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SparklineCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"SparklineGroup":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SparklineGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorAxis":"colorAxis","colorFirstPoint":"colorFirstPoint","colorHighPoint":"colorHighPoint","colorLastPoint":"colorLastPoint","colorLowPoint":"colorLowPoint","colorMarkers":"colorMarkers","colorNegativePoints":"colorNegativePoints","colorSeries":"colorSeries","dateAxis":"dateAxis","dateRange":"dateRange","dateRangeFormula":"dateRangeFormula","displayBlanksAs":"displayBlanksAs","displayHidden":"displayHidden","displayXAxis":"displayXAxis","firstPoint":"firstPoint","guid":"guid","highPoint":"highPoint","lastPoint":"lastPoint","lineWeight":"lineWeight","lowPoint":"lowPoint","markers":"markers","negativePoints":"negativePoints","rightToLeft":"rightToLeft","type":"type","verticalAxisMax":"verticalAxisMax","verticalAxisMaxType":"verticalAxisMaxType","verticalAxisMin":"verticalAxisMin","verticalAxisMinType":"verticalAxisMinType","workbook":"workbook","worksheet":"worksheet","setDateRange":"setDateRange","sparklines":"sparklines","staticInit":"staticInit"}}],"SparklineGroupCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/SparklineGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","generateGuidsForGroups":"generateGuidsForGroups","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"StandardTableStyleCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/StandardTableStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","item":"item","staticInit":"staticInit"}}],"StraightConnector1Shape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/StraightConnector1Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"TextOperatorConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TextOperatorConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","text":"text","textFormula":"textFormula","textOperator":"textOperator","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","setTextFormula":"setTextFormula","staticInit":"staticInit"}}],"ThresholdConditionBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ThresholdConditionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","formula":"formula","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"TickLabels":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TickLabels","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignment":"alignment","chart":"chart","fill":"fill","font":"font","multiLevel":"multiLevel","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","offset":"offset","owner":"owner","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","textDirection":"textDirection","workbook":"workbook","worksheet":"worksheet"}}],"TopOrBottomFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TopOrBottomFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","value":"value"}}],"Trendline":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Trendline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backward":"backward","chart":"chart","forward":"forward","intercept":"intercept","label":"label","legendEntry":"legendEntry","line":"line","name":"name","order":"order","owner":"owner","period":"period","sheet":"sheet","trendlineType":"trendlineType","workbook":"workbook","worksheet":"worksheet"}}],"TrendlineCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TrendlineCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"TrendlineLabel":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TrendlineLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","displayEquation":"displayEquation","displayRSquared":"displayRSquared","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"TrendlineLine":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TrendlineLine","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"TwoConstraintDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/TwoConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","validationOperator":"validationOperator","clone":"clone","getLowerConstraintFormula":"getLowerConstraintFormula","getUpperConstraintFormula":"getUpperConstraintFormula","isEquivalentTo":"isEquivalentTo","setLowerConstraint":"setLowerConstraint","setLowerConstraintFormula":"setLowerConstraintFormula","setUpperConstraint":"setUpperConstraint","setUpperConstraintFormula":"setUpperConstraintFormula"}}],"UnfrozenPaneSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/UnfrozenPaneSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInLeftPane":"firstColumnInLeftPane","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","firstRowInTopPane":"firstRowInTopPane","leftPaneWidth":"leftPaneWidth","topPaneHeight":"topPaneHeight","reset":"reset","resetCore":"resetCore"}}],"UniqueConditionalFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/UniqueConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"UnknownShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/UnknownShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"UpDownBar":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/UpDownBar","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","barType":"barType","border":"border","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"UpDownBars":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/UpDownBars","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","downBar":"downBar","gapWidth":"gapWidth","owner":"owner","sheet":"sheet","upBar":"upBar","workbook":"workbook","worksheet":"worksheet"}}],"ValueConstraintDataValidationRule":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/ValueConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"VerticalPageBreak":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/VerticalPageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnOnPage":"firstColumnOnPage","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"VerticalPageBreakCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/VerticalPageBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"Wall":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Wall","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","thickness":"thickness","type":"type","workbook":"workbook","worksheet":"worksheet"}}],"WindowOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"Workbook":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Workbook","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxExcel2007CellFormatCount":"maxExcel2007CellFormatCount","maxExcel2007ColumnCount":"maxExcel2007ColumnCount","maxExcel2007RowCount":"maxExcel2007RowCount","maxExcelCellFormatCount":"maxExcelCellFormatCount","maxExcelColumnCount":"maxExcelColumnCount","maxExcelRowCount":"maxExcelRowCount","maxExcelWorkbookFonts":"maxExcelWorkbookFonts","calculationMode":"calculationMode","cellReferenceMode":"cellReferenceMode","culture":"culture","currentFormat":"currentFormat","dateSystem":"dateSystem","defaultTableStyle":"defaultTableStyle","documentProperties":"documentProperties","editingCulture":"editingCulture","hasProtectionPassword":"hasProtectionPassword","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isProtected":"isProtected","isSaving":"isSaving","iterativeCalculationsEnabled":"iterativeCalculationsEnabled","maxChangeInIteration":"maxChangeInIteration","maxColumnCount":"maxColumnCount","maxRecursionIterations":"maxRecursionIterations","maxRowCount":"maxRowCount","precision":"precision","protection":"protection","recalculateBeforeSave":"recalculateBeforeSave","saveExternalLinkedValues":"saveExternalLinkedValues","screenDpi":"screenDpi","shouldRemoveCarriageReturnsOnSave":"shouldRemoveCarriageReturnsOnSave","validateFormatStrings":"validateFormatStrings","windowOptions":"windowOptions","systemDpi":"systemDpi","_d9":"_d9","cancelAsyncCalculations":"cancelAsyncCalculations","characterWidth256thsToPixels":"characterWidth256thsToPixels","clearConnectionData":"clearConnectionData","clearPivotTableData":"clearPivotTableData","clearVbaData":"clearVbaData","createNewWorkbookFont":"createNewWorkbookFont","createNewWorksheetCellFormat":"createNewWorksheetCellFormat","customTableStyles":"customTableStyles","customViews":"customViews","getTable":"getTable","isValidFunctionName":"isValidFunctionName","namedReferences":"namedReferences","palette":"palette","pixelsToCharacterWidth256ths":"pixelsToCharacterWidth256ths","protect":"protect","recalculate":"recalculate","recalculateAsync":"recalculateAsync","registerUserDefinedFunction":"registerUserDefinedFunction","resumeCalculations":"resumeCalculations","save":"save","setCurrentFormat":"setCurrentFormat","sheets":"sheets","standardTableStyles":"standardTableStyles","styles":"styles","suspendCalculations":"suspendCalculations","unprotect":"unprotect","worksheets":"worksheets","getMaxColumnCount":"getMaxColumnCount","getMaxRowCount":"getMaxRowCount","getWorkbookFormat":"getWorkbookFormat","isWorkbookEncrypted":"isWorkbookEncrypted","load":"load","staticInit":"staticInit"}}],"WorkbookColorInfo":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookColorInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","isAutomatic":"isAutomatic","themeColorType":"themeColorType","tint":"tint","transform":"transform","automatic":"automatic","equals":"equals","getHashCode":"getHashCode","getResolvedColor":"getResolvedColor","toString":"toString"}}],"WorkbookColorPalette":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookColorPalette","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","isCustom":"isCustom","contains":"contains","getEnumerator":"getEnumerator","getIndexOfNearestColor":"getIndexOfNearestColor","item":"item","reset":"reset"}}],"WorkbookColorTransform":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookColorTransform","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alpha":"alpha","luminanceModulation":"luminanceModulation","luminanceOffset":"luminanceOffset","shade":"shade"}}],"WorkbookLoadOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookLoadOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","autoResumeCalculations":"autoResumeCalculations","culture":"culture","isDuplicateFormulaParsingOptimized":"isDuplicateFormulaParsingOptimized","screenDpi":"screenDpi","userDefinedFunctions":"userDefinedFunctions","staticInit":"staticInit"}}],"WorkbookOptionsBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","staticInit":"staticInit"}}],"WorkbookProtection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowEditStructure":"allowEditStructure","allowEditWindows":"allowEditWindows"}}],"WorkbookSaveOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookSaveOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","staticInit":"staticInit"}}],"WorkbookStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookStyle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","isBuiltIn":"isBuiltIn","name":"name","styleFormat":"styleFormat","reset":"reset","staticInit":"staticInit"}}],"WorkbookStyleCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","normalStyle":"normalStyle","_u":"_u","addUserDefinedStyle":"addUserDefinedStyle","clear":"clear","contains":"contains","item":"item","remove":"remove","removeAt":"removeAt","reset":"reset","staticInit":"staticInit"}}],"WorkbookWindowOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorkbookWindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","boundsInTwips":"boundsInTwips","firstVisibleTabIndex":"firstVisibleTabIndex","minimized":"minimized","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"Worksheet":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/Worksheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","defaultColumnWidth":"defaultColumnWidth","defaultRowHeight":"defaultRowHeight","displayOptions":"displayOptions","filterSettings":"filterSettings","hasProtectionPassword":"hasProtectionPassword","index":"index","isProtected":"isProtected","name":"name","printOptions":"printOptions","protection":"protection","selected":"selected","sheetIndex":"sheetIndex","sortSettings":"sortSettings","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","_ey":"_ey","clearConditionalFormattingData":"clearConditionalFormattingData","columns":"columns","conditionalFormats":"conditionalFormats","dataTables":"dataTables","dataValidationRules":"dataValidationRules","deleteCells":"deleteCells","getCell":"getCell","getCellConditionalFormat":"getCellConditionalFormat","getDefaultColumnWidth":"getDefaultColumnWidth","getRegion":"getRegion","getRegions":"getRegions","hideColumns":"hideColumns","hideRows":"hideRows","hyperlinks":"hyperlinks","insertCells":"insertCells","mergedCellsRegions":"mergedCellsRegions","moveToIndex":"moveToIndex","moveToSheetIndex":"moveToSheetIndex","protect":"protect","rows":"rows","setDefaultColumnWidth":"setDefaultColumnWidth","shapes":"shapes","sparklineGroups":"sparklineGroups","tables":"tables","unhideColumns":"unhideColumns","unhideRows":"unhideRows","unprotect":"unprotect","staticInit":"staticInit"}}],"WorksheetCell":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetCell","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","associatedDataTable":"associatedDataTable","associatedMergedCellsRegion":"associatedMergedCellsRegion","associatedTable":"associatedTable","cellFormat":"cellFormat","columnIndex":"columnIndex","comment":"comment","dataValidationRule":"dataValidationRule","formula":"formula","hasCellFormat":"hasCellFormat","hasComment":"hasComment","rowIndex":"rowIndex","value":"value","worksheet":"worksheet","applyFormula":"applyFormula","clearComment":"clearComment","equals":"equals","getBoundsInTwips":"getBoundsInTwips","getHashCode":"getHashCode","getHyperlink":"getHyperlink","getResolvedCellFormat":"getResolvedCellFormat","getText":"getText","toString":"toString","validateValue":"validateValue","getCellAddressString":"getCellAddressString","isCellTypeSupported":"isCellTypeSupported"}}],"WorksheetCellCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetCellCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","item":"item"}}],"WorksheetCellComment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetCellComment","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","author":"author","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","cell":"cell","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetChart":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetChart","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","autoScaling":"autoScaling","backWall":"backWall","barShape":"barShape","barShapeResolved":"barShapeResolved","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","chartArea":"chartArea","chartTitle":"chartTitle","chartType":"chartType","depthPercent":"depthPercent","displayBlanksAs":"displayBlanksAs","doughnutHoleSize":"doughnutHoleSize","dropLines":"dropLines","fill":"fill","firstSliceAngle":"firstSliceAngle","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","floor":"floor","gapDepth":"gapDepth","gapWidth":"gapWidth","heightPercent":"heightPercent","highLowLines":"highLowLines","legend":"legend","outline":"outline","perspective":"perspective","plotArea":"plotArea","plotVisibleOnly":"plotVisibleOnly","positioningMode":"positioningMode","rightAngleAxes":"rightAngleAxes","rotationX":"rotationX","rotationY":"rotationY","secondPlotSize":"secondPlotSize","seriesLines":"seriesLines","seriesOverlap":"seriesOverlap","sheet":"sheet","sideWall":"sideWall","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","upDownBars":"upDownBars","varyColors":"varyColors","visible":"visible","wallDefault":"wallDefault","worksheet":"worksheet","axisCollection":"axisCollection","clearUnknownData":"clearUnknownData","comboChartGroups":"comboChartGroups","getBoundsInTwips":"getBoundsInTwips","seriesCollection":"seriesCollection","setBoundsInTwips":"setBoundsInTwips","setComboChartSourceData":"setComboChartSourceData","setSourceData":"setSourceData","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"WorksheetColumn":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetColumn","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","width":"width","worksheet":"worksheet","autoFitWidth":"autoFitWidth","calculateAutoFitWidth":"calculateAutoFitWidth","getResolvedCellFormat":"getResolvedCellFormat","getWidth":"getWidth","setWidth":"setWidth"}}],"WorksheetColumnCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","insert":"insert","item":"item","remove":"remove","staticInit":"staticInit"}}],"WorksheetDataTable":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetDataTable","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellsInTable":"cellsInTable","columnInputCell":"columnInputCell","rowInputCell":"rowInputCell","worksheet":"worksheet"}}],"WorksheetDataTableCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetDataTableCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetDisplayOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","magnificationInNormalView":"magnificationInNormalView","magnificationInPageBreakView":"magnificationInPageBreakView","magnificationInPageLayoutView":"magnificationInPageLayoutView","orderColumnsRightToLeft":"orderColumnsRightToLeft","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showWhitespaceInPageLayoutView":"showWhitespaceInPageLayoutView","showZeroValues":"showZeroValues","tabColorInfo":"tabColorInfo","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"WorksheetFilterSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetFilterSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","region":"region","sortAndFilterAreaRegion":"sortAndFilterAreaRegion","sortSettings":"sortSettings","applyAverageFilter":"applyAverageFilter","applyCustomFilter":"applyCustomFilter","applyDatePeriodFilter":"applyDatePeriodFilter","applyFillFilter":"applyFillFilter","applyFixedValuesFilter":"applyFixedValuesFilter","applyFontColorFilter":"applyFontColorFilter","applyIconFilter":"applyIconFilter","applyRelativeDateRangeFilter":"applyRelativeDateRangeFilter","applyTopOrBottomFilter":"applyTopOrBottomFilter","applyYearToDateFilter":"applyYearToDateFilter","clearFilter":"clearFilter","clearFilters":"clearFilters","clearRegion":"clearRegion","getFilter":"getFilter","reapplyFilters":"reapplyFilters","reapplySortConditions":"reapplySortConditions","setRegion":"setRegion","staticInit":"staticInit"}}],"WorksheetHyperlink":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetHyperlink","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","displayText":"displayText","isSealed":"isSealed","sourceAddress":"sourceAddress","sourceCell":"sourceCell","sourceRegion":"sourceRegion","target":"target","targetAddress":"targetAddress","targetCell":"targetCell","targetNamedReference":"targetNamedReference","targetRegion":"targetRegion","toolTip":"toolTip","worksheet":"worksheet","toString":"toString"}}],"WorksheetHyperlinkCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetHyperlinkCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetImage":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetImage","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetItemCollection$1":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetItemCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l"}}],"WorksheetMergedCellsRegion":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetMergedCellsRegion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","comment":"comment","firstColumn":"firstColumn","firstRow":"firstRow","formula":"formula","lastColumn":"lastColumn","lastRow":"lastRow","value":"value","worksheet":"worksheet","applyArrayFormula":"applyArrayFormula","applyFormula":"applyFormula","equals":"equals","formatAsTable":"formatAsTable","getBoundsInTwips":"getBoundsInTwips","getEnumerator":"getEnumerator","getHashCode":"getHashCode","getResolvedCellFormat":"getResolvedCellFormat","toString":"toString"}}],"WorksheetMergedCellsRegionCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetMergedCellsRegionCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","isOverlappingWithMergedRegion":"isOverlappingWithMergedRegion","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetProtectedRange":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetProtectedRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","hasPassword":"hasPassword","isProtected":"isProtected","ranges":"ranges","title":"title","worksheet":"worksheet","unprotect":"unprotect"}}],"WorksheetProtectedRangeCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetProtectedRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"WorksheetProtection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowDeletingColumns":"allowDeletingColumns","allowDeletingRows":"allowDeletingRows","allowEditObjects":"allowEditObjects","allowEditScenarios":"allowEditScenarios","allowFiltering":"allowFiltering","allowFormattingCells":"allowFormattingCells","allowFormattingColumns":"allowFormattingColumns","allowFormattingRows":"allowFormattingRows","allowInsertingColumns":"allowInsertingColumns","allowInsertingHyperlinks":"allowInsertingHyperlinks","allowInsertingRows":"allowInsertingRows","allowSorting":"allowSorting","allowUsingPivotTables":"allowUsingPivotTables","selectionMode":"selectionMode","allowedEditRanges":"allowedEditRanges"}}],"WorksheetReferenceCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetReferenceCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellsCount":"cellsCount","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","remove":"remove","toString":"toString"}}],"WorksheetRegion":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetRegion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumn":"firstColumn","firstRow":"firstRow","lastColumn":"lastColumn","lastRow":"lastRow","worksheet":"worksheet","applyArrayFormula":"applyArrayFormula","applyFormula":"applyFormula","equals":"equals","formatAsTable":"formatAsTable","getBoundsInTwips":"getBoundsInTwips","getEnumerator":"getEnumerator","getHashCode":"getHashCode","toString":"toString"}}],"WorksheetRow":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetRow","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","height":"height","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","worksheet":"worksheet","_cm":"_cm","_co":"_co","_cp":"_cp","applyCellFormula":"applyCellFormula","cells":"cells","getCellAssociatedDataTable":"getCellAssociatedDataTable","getCellAssociatedMergedCellsRegion":"getCellAssociatedMergedCellsRegion","getCellAssociatedTable":"getCellAssociatedTable","getCellBoundsInTwips":"getCellBoundsInTwips","getCellComment":"getCellComment","getCellConditionalFormat":"getCellConditionalFormat","getCellFormat":"getCellFormat","getCellFormula":"getCellFormula","getCellHyperlink":"getCellHyperlink","getCellText":"getCellText","getCellValue":"getCellValue","getResolvedCellFormat":"getResolvedCellFormat","setCellComment":"setCellComment","setCellValue":"setCellValue","validateCellValue":"validateCellValue"}}],"WorksheetRowCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetRowCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","insert":"insert","item":"item","remove":"remove","staticInit":"staticInit"}}],"WorksheetShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetShapeCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","addChart":"addChart","clear":"clear","contains":"contains","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetShapeGroup":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetShapeGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeGroupBase":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetShapeGroupBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeWithText":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetShapeWithText","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetSortSettings":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetSortSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","region":"region","sortType":"sortType","clearRegion":"clearRegion","reapplySortConditions":"reapplySortConditions","setRegion":"setRegion","sortConditions":"sortConditions"}}],"WorksheetTable":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetTable","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","dataAreaRegion":"dataAreaRegion","displayBandedColumns":"displayBandedColumns","displayBandedRows":"displayBandedRows","displayFirstColumnFormatting":"displayFirstColumnFormatting","displayLastColumnFormatting":"displayLastColumnFormatting","headerRowRegion":"headerRowRegion","isFilterUIVisible":"isFilterUIVisible","isHeaderRowVisible":"isHeaderRowVisible","isTotalsRowVisible":"isTotalsRowVisible","name":"name","scope":"scope","sortSettings":"sortSettings","style":"style","totalsRowRegion":"totalsRowRegion","wholeTableRegion":"wholeTableRegion","worksheet":"worksheet","areaFormats":"areaFormats","clearFilters":"clearFilters","clearSortConditions":"clearSortConditions","columns":"columns","deleteColumns":"deleteColumns","deleteDataRows":"deleteDataRows","insertColumns":"insertColumns","insertDataRows":"insertDataRows","reapplyFilters":"reapplyFilters","reapplySortConditions":"reapplySortConditions","resize":"resize","toString":"toString","staticInit":"staticInit"}}],"WorksheetTableAreaFormatsCollection$1":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetTableAreaFormatsCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","getEnumerator":"getEnumerator","hasFormat":"hasFormat","item":"item"}}],"WorksheetTableCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetTableCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetTableColumn":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetTableColumn","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","columnFormula":"columnFormula","dataAreaRegion":"dataAreaRegion","filter":"filter","headerCell":"headerCell","index":"index","name":"name","sortCondition":"sortCondition","table":"table","totalCell":"totalCell","totalFormula":"totalFormula","totalLabel":"totalLabel","wholeColumnRegion":"wholeColumnRegion","applyAverageFilter":"applyAverageFilter","applyCustomFilter":"applyCustomFilter","applyDatePeriodFilter":"applyDatePeriodFilter","applyFillFilter":"applyFillFilter","applyFixedValuesFilter":"applyFixedValuesFilter","applyFontColorFilter":"applyFontColorFilter","applyIconFilter":"applyIconFilter","applyRelativeDateRangeFilter":"applyRelativeDateRangeFilter","applyTopOrBottomFilter":"applyTopOrBottomFilter","applyYearToDateFilter":"applyYearToDateFilter","areaFormats":"areaFormats","clearFilter":"clearFilter","setColumnFormula":"setColumnFormula"}}],"WorksheetTableColumnCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetTableColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","contains":"contains","indexOf":"indexOf","item":"item"}}],"WorksheetTableStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/WorksheetTableStyle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alternateColumnStripeWidth":"alternateColumnStripeWidth","alternateRowStripeHeight":"alternateRowStripeHeight","columnStripeWidth":"columnStripeWidth","isCustom":"isCustom","name":"name","rowStripeHeight":"rowStripeHeight","areaFormats":"areaFormats","clone":"clone"}}],"XValues":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/XValues","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"YearToDateFilter":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/classes/YearToDateFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start"}}],"IExcelCalcFormula":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/interfaces/IExcelCalcFormula","k":"interface","s":"interfaces","m":{"baseReference":"baseReference","dynamicReferences":"dynamicReferences","formulaString":"formulaString","hasAlwaysDirty":"hasAlwaysDirty","staticReferences":"staticReferences","addDynamicReferenceI":"addDynamicReferenceI","evaluate":"evaluate"}}],"IExcelCalcReference":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/interfaces/IExcelCalcReference","k":"interface","s":"interfaces","m":{"absoluteName":"absoluteName","context":"context","elementName":"elementName","formula":"formula","isEnumerable":"isEnumerable","normalizedAbsoluteName":"normalizedAbsoluteName","references":"references","value":"value","containsReference":"containsReference","createReference":"createReference","isSubsetReference":"isSubsetReference"}}],"IExcelCalcReferenceCollection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/interfaces/IExcelCalcReferenceCollection","k":"interface","s":"interfaces"}],"ISortable":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/interfaces/ISortable","k":"interface","s":"interfaces","m":{"index":"index"}}],"IWorkbookFont":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/interfaces/IWorkbookFont","k":"interface","s":"interfaces","m":{"_bold$i":"_bold$i","_italic$i":"_italic$i","_strikeout$i":"_strikeout$i","bold":"bold","colorInfo":"colorInfo","height":"height","italic":"italic","name":"name","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"IWorksheetCellFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/interfaces/IWorksheetCellFormat","k":"interface","s":"interfaces","m":{"_hidden$i":"_hidden$i","_locked$i":"_locked$i","_shrinkToFit$i":"_shrinkToFit$i","_wrapText$i":"_wrapText$i","alignment":"alignment","bottomBorderColorInfo":"bottomBorderColorInfo","bottomBorderStyle":"bottomBorderStyle","diagonalBorderColorInfo":"diagonalBorderColorInfo","diagonalBorders":"diagonalBorders","diagonalBorderStyle":"diagonalBorderStyle","fill":"fill","font":"font","formatOptions":"formatOptions","formatString":"formatString","hidden":"hidden","indent":"indent","leftBorderColorInfo":"leftBorderColorInfo","leftBorderStyle":"leftBorderStyle","locked":"locked","rightBorderColorInfo":"rightBorderColorInfo","rightBorderStyle":"rightBorderStyle","rotation":"rotation","shrinkToFit":"shrinkToFit","style":"style","topBorderColorInfo":"topBorderColorInfo","topBorderStyle":"topBorderStyle","verticalAlignment":"verticalAlignment","wrapText":"wrapText","setFormatting":"setFormatting"}}],"AverageFilterType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/AverageFilterType","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","BelowAverage":"BelowAverage"}}],"AxisCrosses":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/AxisCrosses","k":"enum","s":"enums","m":{"Automatic":"Automatic","Custom":"Custom","Maximum":"Maximum","Minimum":"Minimum"}}],"AxisGroup":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/AxisGroup","k":"enum","s":"enums","m":{"Primary":"Primary","Secondary":"Secondary"}}],"AxisPosition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/AxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"AxisType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/AxisType","k":"enum","s":"enums","m":{"Category":"Category","SeriesAxis":"SeriesAxis","Value":"Value"}}],"BarShape":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/BarShape","k":"enum","s":"enums","m":{"Box":"Box","ConeToMax":"ConeToMax","ConeToPoint":"ConeToPoint","Cylinder":"Cylinder","PyramidToMax":"PyramidToMax","PyramidToPoint":"PyramidToPoint"}}],"BorderLineStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/BorderLineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"CalculationMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/CalculationMode","k":"enum","s":"enums","m":{"Automatic":"Automatic","AutomaticExceptForDataTables":"AutomaticExceptForDataTables","Manual":"Manual"}}],"CalendarType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/CalendarType","k":"enum","s":"enums","m":{"Gregorian":"Gregorian","GregorianArabic":"GregorianArabic","GregorianMeFrench":"GregorianMeFrench","GregorianUs":"GregorianUs","GregorianXlitEnglish":"GregorianXlitEnglish","GregorianXlitFrench":"GregorianXlitFrench","Hebrew":"Hebrew","Hijri":"Hijri","Japan":"Japan","Korea":"Korea","None":"None","Saka":"Saka","Taiwan":"Taiwan","Thai":"Thai"}}],"CategoryType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/CategoryType","k":"enum","s":"enums","m":{"AutomaticScale":"AutomaticScale","CategoryScale":"CategoryScale","TimeScale":"TimeScale"}}],"CellBorderLineStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/CellBorderLineStyle","k":"enum","s":"enums","m":{"DashDot":"DashDot","DashDotDot":"DashDotDot","Dashed":"Dashed","Default":"Default","Dotted":"Dotted","double1":"double1","Hair":"Hair","Medium":"Medium","MediumDashDot":"MediumDashDot","MediumDashDotDot":"MediumDashDotDot","MediumDashed":"MediumDashed","None":"None","SlantedDashDot":"SlantedDashDot","Thick":"Thick","Thin":"Thin"}}],"CellReferenceMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/CellReferenceMode","k":"enum","s":"enums","m":{"A1":"A1","R1C1":"R1C1"}}],"ChartType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ChartType","k":"enum","s":"enums","m":{"Area":"Area","Area3D":"Area3D","Area3DStacked":"Area3DStacked","Area3DStacked100":"Area3DStacked100","AreaStacked":"AreaStacked","AreaStacked100":"AreaStacked100","Bar3DClustered":"Bar3DClustered","Bar3DStacked":"Bar3DStacked","Bar3DStacked100":"Bar3DStacked100","BarClustered":"BarClustered","BarOfPie":"BarOfPie","BarStacked":"BarStacked","BarStacked100":"BarStacked100","BoxAndWhisker":"BoxAndWhisker","Bubble":"Bubble","Bubble3DEffect":"Bubble3DEffect","Column3D":"Column3D","Column3DClustered":"Column3DClustered","Column3DStacked":"Column3DStacked","Column3DStacked100":"Column3DStacked100","ColumnClustered":"ColumnClustered","ColumnStacked":"ColumnStacked","ColumnStacked100":"ColumnStacked100","Combo":"Combo","ConeBarClustered":"ConeBarClustered","ConeBarStacked":"ConeBarStacked","ConeBarStacked100":"ConeBarStacked100","ConeCol":"ConeCol","ConeColClustered":"ConeColClustered","ConeColStacked":"ConeColStacked","ConeColStacked100":"ConeColStacked100","CylinderBarClustered":"CylinderBarClustered","CylinderBarStacked":"CylinderBarStacked","CylinderBarStacked100":"CylinderBarStacked100","CylinderCol":"CylinderCol","CylinderColClustered":"CylinderColClustered","CylinderColStacked":"CylinderColStacked","CylinderColStacked100":"CylinderColStacked100","Doughnut":"Doughnut","DoughnutExploded":"DoughnutExploded","Funnel":"Funnel","Histogram":"Histogram","Line":"Line","Line3D":"Line3D","LineMarkers":"LineMarkers","LineMarkersStacked":"LineMarkersStacked","LineMarkersStacked100":"LineMarkersStacked100","LineStacked":"LineStacked","LineStacked100":"LineStacked100","Pareto":"Pareto","Pie":"Pie","Pie3D":"Pie3D","Pie3DExploded":"Pie3DExploded","PieExploded":"PieExploded","PieOfPie":"PieOfPie","PyramidBarClustered":"PyramidBarClustered","PyramidBarStacked":"PyramidBarStacked","PyramidBarStacked100":"PyramidBarStacked100","PyramidCol":"PyramidCol","PyramidColClustered":"PyramidColClustered","PyramidColStacked":"PyramidColStacked","PyramidColStacked100":"PyramidColStacked100","Radar":"Radar","RadarFilled":"RadarFilled","RadarMarkers":"RadarMarkers","RegionMap":"RegionMap","StockHLC":"StockHLC","StockOHLC":"StockOHLC","StockVHLC":"StockVHLC","StockVOHLC":"StockVOHLC","Sunburst":"Sunburst","Surface":"Surface","SurfaceTopView":"SurfaceTopView","SurfaceTopViewWireframe":"SurfaceTopViewWireframe","SurfaceWireframe":"SurfaceWireframe","Treemap":"Treemap","Unknown":"Unknown","Waterfall":"Waterfall","XYScatter":"XYScatter","XYScatterLines":"XYScatterLines","XYScatterLinesNoMarkers":"XYScatterLinesNoMarkers","XYScatterSmooth":"XYScatterSmooth","XYScatterSmoothNoMarkers":"XYScatterSmoothNoMarkers"}}],"ColorScaleCriterionThreshold":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ColorScaleCriterionThreshold","k":"enum","s":"enums","m":{"Maximum":"Maximum","Midpoint":"Midpoint","Minimum":"Minimum"}}],"ColorScaleType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ColorScaleType","k":"enum","s":"enums","m":{"ThreeColor":"ThreeColor","TwoColor":"TwoColor"}}],"ConditionalOperator":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ConditionalOperator","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"DataBarAxisPosition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataBarAxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Midpoint":"Midpoint","None":"None"}}],"DataBarDirection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataBarDirection","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"DataBarFillType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataBarFillType","k":"enum","s":"enums","m":{"Gradient":"Gradient","SolidColor":"SolidColor"}}],"DataBarNegativeBarColorType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataBarNegativeBarColorType","k":"enum","s":"enums","m":{"Color":"Color","SameAsPositive":"SameAsPositive"}}],"DataLabelPosition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataLabelPosition","k":"enum","s":"enums","m":{"Above":"Above","Below":"Below","BestFit":"BestFit","Center":"Center","Custom":"Custom","Default":"Default","InsideBase":"InsideBase","InsideEnd":"InsideEnd","Left":"Left","OutsideEnd":"OutsideEnd","Right":"Right"}}],"DataValidationCriteria":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataValidationCriteria","k":"enum","s":"enums","m":{"Date":"Date","Decimal":"Decimal","TextLength":"TextLength","Time":"Time","WholeNumber":"WholeNumber"}}],"DataValidationErrorStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataValidationErrorStyle","k":"enum","s":"enums","m":{"Information":"Information","Stop":"Stop","Warning":"Warning"}}],"DataValidationImeMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DataValidationImeMode","k":"enum","s":"enums","m":{"Disabled":"Disabled","FullAlpha":"FullAlpha","FullHangul":"FullHangul","FullKatakana":"FullKatakana","HalfAlpha":"HalfAlpha","HalfHangul":"HalfHangul","HalfKatakana":"HalfKatakana","Hiragana":"Hiragana","NoControl":"NoControl","Off":"Off","On":"On"}}],"DatePeriodFilterType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DatePeriodFilterType","k":"enum","s":"enums","m":{"Month":"Month","Quarter":"Quarter"}}],"DateSystem":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DateSystem","k":"enum","s":"enums","m":{"From1900":"From1900","From1904":"From1904"}}],"DiagonalBorders":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DiagonalBorders","k":"enum","s":"enums","m":{"All":"All","Default":"Default","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","None":"None"}}],"DisplayBlanksAs":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DisplayBlanksAs","k":"enum","s":"enums","m":{"Interpolated":"Interpolated","NotPlotted":"NotPlotted","Zero":"Zero"}}],"DisplayUnit":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/DisplayUnit","k":"enum","s":"enums","m":{"Custom":"Custom","HundredMillions":"HundredMillions","Hundreds":"Hundreds","HundredThousands":"HundredThousands","MillionMillions":"MillionMillions","Millions":"Millions","None":"None","Percentage":"Percentage","TenMillions":"TenMillions","TenThousands":"TenThousands","ThousandMillions":"ThousandMillions","Thousands":"Thousands"}}],"ElementPosition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ElementPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Left":"Left","LeftBottom":"LeftBottom","LeftTop":"LeftTop","Right":"Right","RightBottom":"RightBottom","RightTop":"RightTop","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"EndStyleCap":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/EndStyleCap","k":"enum","s":"enums","m":{"Cap":"Cap","NoCap":"NoCap"}}],"ErrorBarDirection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ErrorBarDirection","k":"enum","s":"enums","m":{"Both":"Both","Minus":"Minus","Plus":"Plus"}}],"ErrorValueType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ErrorValueType","k":"enum","s":"enums","m":{"FixedValue":"FixedValue","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"ExcelCalcErrorCode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ExcelCalcErrorCode","k":"enum","s":"enums","m":{"Circularity":"Circularity","Div":"Div","NA":"NA","Name1":"Name1","Null":"Null","Num":"Num","Reference":"Reference","Value":"Value"}}],"ExcelComparisonOperator":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ExcelComparisonOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"FillPatternStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FillPatternStyle","k":"enum","s":"enums","m":{"Default":"Default","DiagonalCrosshatch":"DiagonalCrosshatch","DiagonalStripe":"DiagonalStripe","Gray12percent":"Gray12percent","Gray25percent":"Gray25percent","Gray50percent":"Gray50percent","Gray6percent":"Gray6percent","Gray75percent":"Gray75percent","HorizontalStripe":"HorizontalStripe","None":"None","ReverseDiagonalStripe":"ReverseDiagonalStripe","Solid":"Solid","ThickDiagonalCrosshatch":"ThickDiagonalCrosshatch","ThinDiagonalCrosshatch":"ThinDiagonalCrosshatch","ThinDiagonalStripe":"ThinDiagonalStripe","ThinHorizontalCrosshatch":"ThinHorizontalCrosshatch","ThinHorizontalStripe":"ThinHorizontalStripe","ThinReverseDiagonalStripe":"ThinReverseDiagonalStripe","ThinVerticalStripe":"ThinVerticalStripe","VerticalStripe":"VerticalStripe"}}],"FixedDateGroupType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FixedDateGroupType","k":"enum","s":"enums","m":{"Day":"Day","Hour":"Hour","Minute":"Minute","Month":"Month","Second":"Second","Year":"Year"}}],"FontSuperscriptSubscriptStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FontSuperscriptSubscriptStyle","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Subscript":"Subscript","Superscript":"Superscript"}}],"FontUnderlineStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FontUnderlineStyle","k":"enum","s":"enums","m":{"Default":"Default","double1":"double1","DoubleAccounting":"DoubleAccounting","None":"None","Single":"Single","SingleAccounting":"SingleAccounting"}}],"FormatConditionAboveBelow":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionAboveBelow","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","AboveStandardDeviation":"AboveStandardDeviation","BelowAverage":"BelowAverage","BelowStandardDeviation":"BelowStandardDeviation","EqualAboveAverage":"EqualAboveAverage","EqualBelowAverage":"EqualBelowAverage"}}],"FormatConditionIcon":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionIcon","k":"enum","s":"enums","m":{"BlackCircle":"BlackCircle","BlackCircleWithBorder":"BlackCircleWithBorder","CircleWithOneWhiteQuarter":"CircleWithOneWhiteQuarter","CircleWithThreeWhiteQuarters":"CircleWithThreeWhiteQuarters","CircleWithTwoWhiteQuarters":"CircleWithTwoWhiteQuarters","FourBars":"FourBars","FourFilledBoxes":"FourFilledBoxes","GoldStar":"GoldStar","GrayCircle":"GrayCircle","GrayDownArrow":"GrayDownArrow","GrayDownInclineArrow":"GrayDownInclineArrow","GraySideArrow":"GraySideArrow","GrayUpArrow":"GrayUpArrow","GrayUpInclineArrow":"GrayUpInclineArrow","GreenCheck":"GreenCheck","GreenCheckSymbol":"GreenCheckSymbol","GreenCircle":"GreenCircle","GreenFlag":"GreenFlag","GreenTrafficLight":"GreenTrafficLight","GreenUpArrow":"GreenUpArrow","GreenUpTriangle":"GreenUpTriangle","HalfGoldStar":"HalfGoldStar","NoCellIcon":"NoCellIcon","OneBar":"OneBar","OneFilledBox":"OneFilledBox","PinkCircle":"PinkCircle","RedCircle":"RedCircle","RedCircleWithBorder":"RedCircleWithBorder","RedCross":"RedCross","RedCrossSymbol":"RedCrossSymbol","RedDiamond":"RedDiamond","RedDownArrow":"RedDownArrow","RedDownTriangle":"RedDownTriangle","RedFlag":"RedFlag","RedTrafficLight":"RedTrafficLight","SilverStar":"SilverStar","ThreeBars":"ThreeBars","ThreeFilledBoxes":"ThreeFilledBoxes","TwoBars":"TwoBars","TwoFilledBoxes":"TwoFilledBoxes","WhiteCircleAllWhiteQuarters":"WhiteCircleAllWhiteQuarters","YellowCircle":"YellowCircle","YellowDash":"YellowDash","YellowDownInclineArrow":"YellowDownInclineArrow","YellowExclamation":"YellowExclamation","YellowExclamationSymbol":"YellowExclamationSymbol","YellowFlag":"YellowFlag","YellowSideArrow":"YellowSideArrow","YellowTrafficLight":"YellowTrafficLight","YellowTriangle":"YellowTriangle","YellowUpInclineArrow":"YellowUpInclineArrow","ZeroBars":"ZeroBars","ZeroFilledBoxes":"ZeroFilledBoxes"}}],"FormatConditionIconSet":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionIconSet","k":"enum","s":"enums","m":{"IconSet3Arrows":"IconSet3Arrows","IconSet3ArrowsGray":"IconSet3ArrowsGray","IconSet3Flags":"IconSet3Flags","IconSet3Signs":"IconSet3Signs","IconSet3Stars":"IconSet3Stars","IconSet3Symbols":"IconSet3Symbols","IconSet3Symbols2":"IconSet3Symbols2","IconSet3TrafficLights1":"IconSet3TrafficLights1","IconSet3TrafficLights2":"IconSet3TrafficLights2","IconSet3Triangles":"IconSet3Triangles","IconSet4Arrows":"IconSet4Arrows","IconSet4ArrowsGray":"IconSet4ArrowsGray","IconSet4Rating":"IconSet4Rating","IconSet4RedToBlack":"IconSet4RedToBlack","IconSet4TrafficLights":"IconSet4TrafficLights","IconSet5Arrows":"IconSet5Arrows","IconSet5ArrowsGray":"IconSet5ArrowsGray","IconSet5Boxes":"IconSet5Boxes","IconSet5Quarters":"IconSet5Quarters","IconSet5Rating":"IconSet5Rating","IconSetNoIcon":"IconSetNoIcon"}}],"FormatConditionOperator":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionOperator","k":"enum","s":"enums","m":{"Between":"Between","Equal":"Equal","Greater":"Greater","GreaterEqual":"GreaterEqual","Less":"Less","LessEqual":"LessEqual","NotBetween":"NotBetween","NotEqual":"NotEqual"}}],"FormatConditionTextOperator":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionTextOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotContain":"DoesNotContain","EndsWith":"EndsWith"}}],"FormatConditionTimePeriod":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionTimePeriod","k":"enum","s":"enums","m":{"LastMonth":"LastMonth","LastSevenDays":"LastSevenDays","LastWeek":"LastWeek","NextMonth":"NextMonth","NextWeek":"NextWeek","ThisMonth":"ThisMonth","ThisWeek":"ThisWeek","Today":"Today","Tomorrow":"Tomorrow","Yesterday":"Yesterday"}}],"FormatConditionTopBottom":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionTopBottom","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"FormatConditionType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionType","k":"enum","s":"enums","m":{"Average":"Average","Blanks":"Blanks","CellValue":"CellValue","ColorScale":"ColorScale","DataBar":"DataBar","DuplicateValues":"DuplicateValues","Errors":"Errors","Expression":"Expression","IconSets":"IconSets","NoBlanks":"NoBlanks","NoErrors":"NoErrors","Rank":"Rank","TextString":"TextString","TimePeriod":"TimePeriod","UniqueValues":"UniqueValues"}}],"FormatConditionValueType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/FormatConditionValueType","k":"enum","s":"enums","m":{"AutomaticMaximum":"AutomaticMaximum","AutomaticMinimum":"AutomaticMinimum","Formula":"Formula","HighestValue":"HighestValue","LowestValue":"LowestValue","Number":"Number","Percentage":"Percentage","Percentile":"Percentile"}}],"GeographicMapLabels":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/GeographicMapLabels","k":"enum","s":"enums","m":{"BestFit":"BestFit","None":"None","ShowAll":"ShowAll"}}],"GeographicMappingArea":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/GeographicMappingArea","k":"enum","s":"enums","m":{"CountryOrRegion":"CountryOrRegion","County":"County","DataOnly":"DataOnly","MultipleCountriesOrRegions":"MultipleCountriesOrRegions","PostalCode":"PostalCode","State":"State","World":"World"}}],"GeographicMapProjection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/GeographicMapProjection","k":"enum","s":"enums","m":{"Albers":"Albers","Mercator":"Mercator","Miller":"Miller","Robinson":"Robinson"}}],"GeographicMapSeriesColor":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/GeographicMapSeriesColor","k":"enum","s":"enums","m":{"Diverging":"Diverging","Sequential":"Sequential"}}],"GradientType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/GradientType","k":"enum","s":"enums","m":{"Linear":"Linear","Path":"Path","Radial":"Radial","Rectangular":"Rectangular"}}],"GridLineType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/GridLineType","k":"enum","s":"enums","m":{"Major":"Major","Minor":"Minor"}}],"HorizontalCellAlignment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/HorizontalCellAlignment","k":"enum","s":"enums","m":{"Center":"Center","CenterAcrossSelection":"CenterAcrossSelection","Default":"Default","Distributed":"Distributed","Fill":"Fill","General":"General","Justify":"Justify","Left":"Left","Right":"Right"}}],"HorizontalTextAlignment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/HorizontalTextAlignment","k":"enum","s":"enums","m":{"Center":"Center","Distributed":"Distributed","Justified":"Justified","JustifiedLow":"JustifiedLow","Left":"Left","Right":"Right","ThaiDistributed":"ThaiDistributed"}}],"LegendPosition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/LegendPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Default":"Default","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"LineStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/LineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"MarkerStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/MarkerStyle","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Dash":"Dash","Diamond":"Diamond","Dot":"Dot","None":"None","Picture":"Picture","Plus":"Plus","Square":"Square","Star":"Star","Triangle":"Triangle","X":"X"}}],"ObjectDisplayStyle":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ObjectDisplayStyle","k":"enum","s":"enums","m":{"HideAll":"HideAll","ShowAll":"ShowAll","ShowPlaceholders":"ShowPlaceholders"}}],"OneConstraintDataValidationOperator":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/OneConstraintDataValidationOperator","k":"enum","s":"enums","m":{"EqualTo":"EqualTo","GreaterThan":"GreaterThan","GreaterThanOrEqualTo":"GreaterThanOrEqualTo","LessThan":"LessThan","LessThanOrEqualTo":"LessThanOrEqualTo","NotEqualTo":"NotEqualTo"}}],"OpenPackagingNonConformanceReason":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/OpenPackagingNonConformanceReason","k":"enum","s":"enums","m":{"Conformant":"Conformant","ContentTypeHasComments":"ContentTypeHasComments","ContentTypeHasInvalidSyntax":"ContentTypeHasInvalidSyntax","ContentTypeHasInvalidWhitespace":"ContentTypeHasInvalidWhitespace","ContentTypeHasParameters":"ContentTypeHasParameters","ContentTypeMissing":"ContentTypeMissing","CouldNotGetPackagePart":"CouldNotGetPackagePart","DuplicateName":"DuplicateName","GrowthHintChanged":"GrowthHintChanged","NameDerivesFromExistingPartName":"NameDerivesFromExistingPartName","NameDoesNotStartWithForwardSlash":"NameDoesNotStartWithForwardSlash","NameEndsWithForwardSlash":"NameEndsWithForwardSlash","NameMissing":"NameMissing","RelationshipIdInvalid":"RelationshipIdInvalid","RelationshipNameInvalid":"RelationshipNameInvalid","RelationshipTargetInvalid":"RelationshipTargetInvalid","RelationshipTargetNotRelativeReference":"RelationshipTargetNotRelativeReference","RelationshipTargetsOtherRelationship":"RelationshipTargetsOtherRelationship","RelationshipTypeInvalid":"RelationshipTypeInvalid","SegmentEmpty":"SegmentEmpty","SegmentEndsWithDotCharacter":"SegmentEndsWithDotCharacter","SegmentHasNonPCharCharacters":"SegmentHasNonPCharCharacters","SegmentHasPercentEncodedSlashCharacters":"SegmentHasPercentEncodedSlashCharacters","SegmentHasPercentEncodedUnreservedCharacters":"SegmentHasPercentEncodedUnreservedCharacters","SegmentMissingNonDotCharacter":"SegmentMissingNonDotCharacter","XmlContentDrawsOnUndefinedNamespace":"XmlContentDrawsOnUndefinedNamespace","XmlContentInvalidForSchema":"XmlContentInvalidForSchema","XmlEncodingUnsupported":"XmlEncodingUnsupported"}}],"Orientation":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/Orientation","k":"enum","s":"enums","m":{"Default":"Default","Landscape":"Landscape","Portrait":"Portrait"}}],"PageNumbering":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PageNumbering","k":"enum","s":"enums","m":{"Automatic":"Automatic","UseStartPageNumber":"UseStartPageNumber"}}],"PageOrder":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PageOrder","k":"enum","s":"enums","m":{"DownThenOver":"DownThenOver","OverThenDown":"OverThenDown"}}],"PaperSize":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PaperSize","k":"enum","s":"enums","m":{"A2":"A2","A3":"A3","A3Extra":"A3Extra","A3ExtraTransverse":"A3ExtraTransverse","A3Rotated":"A3Rotated","A3Transverse":"A3Transverse","A4":"A4","A4Extra":"A4Extra","A4Plus":"A4Plus","A4Rotated":"A4Rotated","A4Small":"A4Small","A4Transverse":"A4Transverse","A5":"A5","A5Extra":"A5Extra","A5Rotated":"A5Rotated","A5Transverse":"A5Transverse","A6":"A6","A6Rotated":"A6Rotated","B4ISO_1":"B4ISO_1","B4ISO_2":"B4ISO_2","B4JIS":"B4JIS","B4JISRotated":"B4JISRotated","B5ISO":"B5ISO","B5ISOExtra":"B5ISOExtra","B5JIS":"B5JIS","B5JISRotated":"B5JISRotated","B5JISTransverse":"B5JISTransverse","B6ISO":"B6ISO","B6JIS":"B6JIS","B6JISRotated":"B6JISRotated","C":"C","D":"D","DblJapanesePostcard":"DblJapanesePostcard","DblJapanesePostcardRotated":"DblJapanesePostcardRotated","E":"E","Envelope10":"Envelope10","Envelope11":"Envelope11","Envelope12":"Envelope12","Envelope14":"Envelope14","Envelope9":"Envelope9","EnvelopeC3":"EnvelopeC3","EnvelopeC4":"EnvelopeC4","EnvelopeC5":"EnvelopeC5","EnvelopeC6":"EnvelopeC6","EnvelopeC6C5":"EnvelopeC6C5","EnvelopeDL":"EnvelopeDL","EnvelopeInvite":"EnvelopeInvite","EnvelopeItaly":"EnvelopeItaly","EnvelopeMonarch":"EnvelopeMonarch","Executive":"Executive","Folio":"Folio","GermanLegalFanfold":"GermanLegalFanfold","GermanStandardFanfold":"GermanStandardFanfold","JapanesePostcard":"JapanesePostcard","JapanesePostcardRotated":"JapanesePostcardRotated","Ledger":"Ledger","Legal":"Legal","LegalExtra":"LegalExtra","Letter":"Letter","LetterExtra":"LetterExtra","LetterExtraTransverse":"LetterExtraTransverse","LetterPlus":"LetterPlus","LetterRotated":"LetterRotated","LetterSmall":"LetterSmall","LetterTransverse":"LetterTransverse","Note":"Note","Quarto":"Quarto","Size10x11":"Size10x11","Size10x14":"Size10x14","Size11x17":"Size11x17","Size12x11":"Size12x11","Size15x11":"Size15x11","Size634Envelope":"Size634Envelope","Size9x11":"Size9x11","Statement":"Statement","SuperAA4":"SuperAA4","SuperBA3":"SuperBA3","Tabloid":"Tabloid","TabloidExtra":"TabloidExtra","Undefined":"Undefined","USStandardFanfold":"USStandardFanfold"}}],"ParentLabelLayout":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ParentLabelLayout","k":"enum","s":"enums","m":{"Banner":"Banner","None":"None","Overlapping":"Overlapping"}}],"PatternType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PatternType","k":"enum","s":"enums","m":{"Pattern10Percent":"Pattern10Percent","Pattern20Percent":"Pattern20Percent","Pattern25Percent":"Pattern25Percent","Pattern30Percent":"Pattern30Percent","Pattern40Percent":"Pattern40Percent","Pattern50Percent":"Pattern50Percent","Pattern5Percent":"Pattern5Percent","Pattern60Percent":"Pattern60Percent","Pattern70Percent":"Pattern70Percent","Pattern75Percent":"Pattern75Percent","Pattern80Percent":"Pattern80Percent","Pattern90Percent":"Pattern90Percent","PatternCross":"PatternCross","PatternDarkDownwardDiagonal":"PatternDarkDownwardDiagonal","PatternDarkHorizontal":"PatternDarkHorizontal","PatternDarkUpwardDiagonal":"PatternDarkUpwardDiagonal","PatternDarkVertical":"PatternDarkVertical","PatternDashedDownwardDiagonal":"PatternDashedDownwardDiagonal","PatternDashedHorizontal":"PatternDashedHorizontal","PatternDashedUpwardDiagonal":"PatternDashedUpwardDiagonal","PatternDashedVertical":"PatternDashedVertical","PatternDiagonalBrick":"PatternDiagonalBrick","PatternDiagonalCross":"PatternDiagonalCross","PatternDivot":"PatternDivot","PatternDottedDiamond":"PatternDottedDiamond","PatternDottedGrid":"PatternDottedGrid","PatternDownwardDiagonal":"PatternDownwardDiagonal","PatternHorizontal":"PatternHorizontal","PatternHorizontalBrick":"PatternHorizontalBrick","PatternLargeCheckerBoard":"PatternLargeCheckerBoard","PatternLargeConfetti":"PatternLargeConfetti","PatternLargeGrid":"PatternLargeGrid","PatternLightDownwardDiagonal":"PatternLightDownwardDiagonal","PatternLightHorizontal":"PatternLightHorizontal","PatternLightUpwardDiagonal":"PatternLightUpwardDiagonal","PatternLightVertical":"PatternLightVertical","PatternMixed":"PatternMixed","PatternNarrowHorizontal":"PatternNarrowHorizontal","PatternNarrowVertical":"PatternNarrowVertical","PatternOutlinedDiamond":"PatternOutlinedDiamond","PatternPlaid":"PatternPlaid","PatternShingle":"PatternShingle","PatternSmallCheckerBoard":"PatternSmallCheckerBoard","PatternSmallConfetti":"PatternSmallConfetti","PatternSmallGrid":"PatternSmallGrid","PatternSolidDiamond":"PatternSolidDiamond","PatternSphere":"PatternSphere","PatternTrellis":"PatternTrellis","PatternUpwardDiagonal":"PatternUpwardDiagonal","PatternVertical":"PatternVertical","PatternWave":"PatternWave","PatternWeave":"PatternWeave","PatternWideDownwardDiagonal":"PatternWideDownwardDiagonal","PatternWideUpwardDiagonal":"PatternWideUpwardDiagonal","PatternZigZag":"PatternZigZag"}}],"PictureType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PictureType","k":"enum","s":"enums","m":{"Scale":"Scale","Stack":"Stack","Stretch":"Stretch"}}],"PositioningOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PositioningOptions","k":"enum","s":"enums","m":{"None":"None","TreatAllRowsAndColumnsAsVisible":"TreatAllRowsAndColumnsAsVisible"}}],"Precision":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/Precision","k":"enum","s":"enums","m":{"UseDisplayValues":"UseDisplayValues","UseRealCellValues":"UseRealCellValues"}}],"PredefinedShapeType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PredefinedShapeType","k":"enum","s":"enums","m":{"Diamond":"Diamond","Ellipse":"Ellipse","Heart":"Heart","IrregularSeal1":"IrregularSeal1","IrregularSeal2":"IrregularSeal2","LightningBolt":"LightningBolt","Line":"Line","Pentagon":"Pentagon","Rectangle":"Rectangle","RightTriangle":"RightTriangle","StraightConnector1":"StraightConnector1"}}],"PrintErrors":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PrintErrors","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDashes":"PrintAsDashes","PrintAsDisplayed":"PrintAsDisplayed","PrintAsNA":"PrintAsNA"}}],"PrintNotes":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/PrintNotes","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDisplayed":"PrintAsDisplayed","PrintAtEndOfSheet":"PrintAtEndOfSheet"}}],"QuartileCalculation":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/QuartileCalculation","k":"enum","s":"enums","m":{"ExclusiveMedian":"ExclusiveMedian","InclusiveMedian":"InclusiveMedian"}}],"ReadingOrder":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ReadingOrder","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"RelativeDateRangeDuration":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/RelativeDateRangeDuration","k":"enum","s":"enums","m":{"Day":"Day","Month":"Month","Quarter":"Quarter","Week":"Week","Year":"Year"}}],"RelativeDateRangeOffset":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/RelativeDateRangeOffset","k":"enum","s":"enums","m":{"Current":"Current","Next":"Next","Previous":"Previous"}}],"ScaleType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ScaleType","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"ScalingType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ScalingType","k":"enum","s":"enums","m":{"FitToPages":"FitToPages","UseScalingFactor":"UseScalingFactor"}}],"ScrollBars":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ScrollBars","k":"enum","s":"enums","m":{"Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"SeriesType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","Bubble":"Bubble","Line":"Line","Pie":"Pie","Radar":"Radar","Scatter":"Scatter","Surface":"Surface"}}],"SeriesValuesColorBy":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SeriesValuesColorBy","k":"enum","s":"enums","m":{"NumericalValue":"NumericalValue","SecondaryCategory":"SecondaryCategory"}}],"ShapePositioningMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ShapePositioningMode","k":"enum","s":"enums","m":{"DontMoveOrSizeWithCells":"DontMoveOrSizeWithCells","MoveAndSizeWithCells":"MoveAndSizeWithCells","MoveWithCells":"MoveWithCells"}}],"SheetType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SheetType","k":"enum","s":"enums","m":{"Chartsheet":"Chartsheet","Worksheet":"Worksheet"}}],"SortDirection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"SparklineAxisMinMax":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SparklineAxisMinMax","k":"enum","s":"enums","m":{"Custom":"Custom","Group":"Group","Individual":"Individual"}}],"SparklineDisplayBlanksAs":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SparklineDisplayBlanksAs","k":"enum","s":"enums","m":{"Gap":"Gap","Span":"Span","Zero":"Zero"}}],"SparklineType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/SparklineType","k":"enum","s":"enums","m":{"Column":"Column","Line":"Line","Stacked":"Stacked","WinLoss":"WinLoss"}}],"TextDirection":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TextDirection","k":"enum","s":"enums","m":{"EastAsianVertical":"EastAsianVertical","Horizontal":"Horizontal","MongolianVertical":"MongolianVertical","Vertical":"Vertical","Vertical270":"Vertical270","WordArtVertical":"WordArtVertical","WordArtVerticalRtl":"WordArtVerticalRtl"}}],"TextFormatMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TextFormatMode","k":"enum","s":"enums","m":{"AsDisplayed":"AsDisplayed","IgnoreCellWidth":"IgnoreCellWidth"}}],"TextHorizontalOverflow":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TextHorizontalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Overflow":"Overflow"}}],"TextVerticalOverflow":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TextVerticalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Ellipsis":"Ellipsis","Overflow":"Overflow"}}],"ThresholdComparison":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/ThresholdComparison","k":"enum","s":"enums","m":{"Greater":"Greater","GreaterEqual":"GreaterEqual"}}],"TickLabelAlignment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TickLabelAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}}],"TickLabelPosition":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TickLabelPosition","k":"enum","s":"enums","m":{"High":"High","Low":"Low","NextToAxis":"NextToAxis","None":"None"}}],"TickMark":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TickMark","k":"enum","s":"enums","m":{"Cross":"Cross","Inside":"Inside","None":"None","Outside":"Outside"}}],"TimeUnit":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TimeUnit","k":"enum","s":"enums","m":{"Days":"Days","Months":"Months","Years":"Years"}}],"TopOrBottomFilterType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TopOrBottomFilterType","k":"enum","s":"enums","m":{"BottomPercentage":"BottomPercentage","BottomValues":"BottomValues","TopPercentage":"TopPercentage","TopValues":"TopValues"}}],"TrendlinePolynomialOrder":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TrendlinePolynomialOrder","k":"enum","s":"enums","m":{"Fifth":"Fifth","Fourth":"Fourth","Second":"Second","Sixth":"Sixth","Third":"Third"}}],"TrendlineType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TrendlineType","k":"enum","s":"enums","m":{"Exponential":"Exponential","Linear":"Linear","Logarithmic":"Logarithmic","MovingAverage":"MovingAverage","Polynomial":"Polynomial","Power":"Power"}}],"TwoConstraintDataValidationOperator":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/TwoConstraintDataValidationOperator","k":"enum","s":"enums","m":{"Between":"Between","NotBetween":"NotBetween"}}],"UpDownBarType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/UpDownBarType","k":"enum","s":"enums","m":{"Down":"Down","Up":"Up"}}],"VerticalCellAlignment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/VerticalCellAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Default":"Default","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"VerticalTextAlignment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/VerticalTextAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Top":"Top"}}],"VerticalTitleAlignment":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/VerticalTitleAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"WallType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WallType","k":"enum","s":"enums","m":{"All":"All","Back":"Back","Floor":"Floor","Side":"Side"}}],"WorkbookEncryptionMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorkbookEncryptionMode","k":"enum","s":"enums","m":{"Agile":"Agile","Standard":"Standard"}}],"WorkbookFormat":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorkbookFormat","k":"enum","s":"enums","m":{"Excel2007":"Excel2007","Excel2007MacroEnabled":"Excel2007MacroEnabled","Excel2007MacroEnabledTemplate":"Excel2007MacroEnabledTemplate","Excel2007Template":"Excel2007Template","Excel97To2003":"Excel97To2003","Excel97To2003Template":"Excel97To2003Template","StrictOpenXml":"StrictOpenXml"}}],"WorkbookThemeColorType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorkbookThemeColorType","k":"enum","s":"enums","m":{"Accent1":"Accent1","Accent2":"Accent2","Accent3":"Accent3","Accent4":"Accent4","Accent5":"Accent5","Accent6":"Accent6","Dark1":"Dark1","Dark2":"Dark2","FollowedHyperlink":"FollowedHyperlink","Hyperlink":"Hyperlink","Light1":"Light1","Light2":"Light2"}}],"WorksheetCellFormatOptions":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetCellFormatOptions","k":"enum","s":"enums","m":{"All":"All","ApplyAlignmentFormatting":"ApplyAlignmentFormatting","ApplyBorderFormatting":"ApplyBorderFormatting","ApplyFillFormatting":"ApplyFillFormatting","ApplyFontFormatting":"ApplyFontFormatting","ApplyNumberFormatting":"ApplyNumberFormatting","ApplyProtectionFormatting":"ApplyProtectionFormatting","None":"None"}}],"WorksheetColumnWidthUnit":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetColumnWidthUnit","k":"enum","s":"enums","m":{"Character":"Character","Character256th":"Character256th","CharacterPaddingExcluded":"CharacterPaddingExcluded","Pixel":"Pixel","Point":"Point","Twip":"Twip"}}],"WorksheetProtectedSelectionMode":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetProtectedSelectionMode","k":"enum","s":"enums","m":{"AllCells":"AllCells","NoCells":"NoCells","UnlockedCells":"UnlockedCells"}}],"WorksheetSortType":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetSortType","k":"enum","s":"enums","m":{"Columns":"Columns","Rows":"Rows"}}],"WorksheetTableArea":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetTableArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderRow":"HeaderRow","TotalsRow":"TotalsRow","WholeTable":"WholeTable"}}],"WorksheetTableColumnArea":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetTableColumnArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderCell":"HeaderCell","TotalCell":"TotalCell"}}],"WorksheetTableStyleArea":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetTableStyleArea","k":"enum","s":"enums","m":{"AlternateColumnStripe":"AlternateColumnStripe","AlternateRowStripe":"AlternateRowStripe","ColumnStripe":"ColumnStripe","FirstColumn":"FirstColumn","FirstHeaderCell":"FirstHeaderCell","FirstTotalCell":"FirstTotalCell","HeaderRow":"HeaderRow","LastColumn":"LastColumn","LastHeaderCell":"LastHeaderCell","LastTotalCell":"LastTotalCell","RowStripe":"RowStripe","TotalRow":"TotalRow","WholeTable":"WholeTable"}}],"WorksheetView":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetView","k":"enum","s":"enums","m":{"Normal":"Normal","PageBreakPreview":"PageBreakPreview","PageLayout":"PageLayout"}}],"WorksheetVisibility":[{"p":"igniteui-react-excel","u":"/api/react/igniteui-react-excel/19.5.2/enums/WorksheetVisibility","k":"enum","s":"enums","m":{"Hidden":"Hidden","StrongHidden":"StrongHidden","Visible":"Visible"}}],"Fdc3ContextType":[{"p":"igniteui-react-fdc3","u":"/api/react/igniteui-react-fdc3/19.5.2/enums/Fdc3ContextType","k":"enum","s":"enums","m":{"Contact":"Contact","ContactList":"ContactList","Instrument":"Instrument","InstrumentList":"InstrumentList","Organization":"Organization","OrganizationList":"OrganizationList","Portfolio":"Portfolio","Position":"Position","Unknown":"Unknown"}}],"Fdc3IntentType":[{"p":"igniteui-react-fdc3","u":"/api/react/igniteui-react-fdc3/19.5.2/enums/Fdc3IntentType","k":"enum","s":"enums","m":{"All":"All","None":"None","StartCall":"StartCall","StartChat":"StartChat","Unknown":"Unknown","ViewAnalysis":"ViewAnalysis","ViewChart":"ViewChart","ViewContact":"ViewContact","ViewInstrument":"ViewInstrument","ViewNews":"ViewNews","ViewQuote":"ViewQuote"}}],"IgrAlignLinearGraphLabelEventArgs":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrAlignLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","height":"height","i":"i","label":"label","offsetX":"offsetX","offsetY":"offsetY","value":"value","width":"width"}}],"IgrAlignRadialGaugeLabelEventArgs":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrAlignRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","angle":"angle","endAngle":"endAngle","height":"height","i":"i","label":"label","offsetX":"offsetX","offsetY":"offsetY","startAngle":"startAngle","value":"value","width":"width"}}],"IgrBulletGraph":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrBulletGraph","k":"class","s":"classes","m":{"constructor":"constructor","actualRanges":"actualRanges","contentRanges":"contentRanges","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","animating":"animating","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","nativeElement":"nativeElement","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBackgroundBrush":"scaleBackgroundBrush","scaleBackgroundOutline":"scaleBackgroundOutline","scaleBackgroundThickness":"scaleBackgroundThickness","scaleEndExtent":"scaleEndExtent","scaleStartExtent":"scaleStartExtent","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","targetValue":"targetValue","targetValueBreadth":"targetValueBreadth","targetValueBrush":"targetValueBrush","targetValueInnerExtent":"targetValueInnerExtent","targetValueName":"targetValueName","targetValueOuterExtent":"targetValueOuterExtent","targetValueOutline":"targetValueOutline","targetValueStrokeThickness":"targetValueStrokeThickness","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueBrush":"valueBrush","valueInnerExtent":"valueInnerExtent","valueName":"valueName","valueOuterExtent":"valueOuterExtent","valueOutline":"valueOutline","valueStrokeThickness":"valueStrokeThickness","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","containerResized":"containerResized","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getValueForPoint":"getValueForPoint","initializeContent":"initializeContent","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgrFormatLinearGraphLabelEventArgs":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrFormatLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","i":"i","label":"label","value":"value"}}],"IgrFormatRadialGaugeLabelEventArgs":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrFormatRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","angle":"angle","endAngle":"endAngle","i":"i","label":"label","startAngle":"startAngle","value":"value"}}],"IgrLinearGauge":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrLinearGauge","k":"class","s":"classes","m":{"constructor":"constructor","actualRanges":"actualRanges","contentRanges":"contentRanges","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","animating":"animating","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","nativeElement":"nativeElement","needleBreadth":"needleBreadth","needleBrush":"needleBrush","needleInnerBaseWidth":"needleInnerBaseWidth","needleInnerExtent":"needleInnerExtent","needleInnerPointExtent":"needleInnerPointExtent","needleInnerPointWidth":"needleInnerPointWidth","needleName":"needleName","needleOuterBaseWidth":"needleOuterBaseWidth","needleOuterExtent":"needleOuterExtent","needleOuterPointExtent":"needleOuterPointExtent","needleOuterPointWidth":"needleOuterPointWidth","needleOutline":"needleOutline","needleShape":"needleShape","needleStrokeThickness":"needleStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBrush":"scaleBrush","scaleEndExtent":"scaleEndExtent","scaleInnerExtent":"scaleInnerExtent","scaleOuterExtent":"scaleOuterExtent","scaleOutline":"scaleOutline","scaleStartExtent":"scaleStartExtent","scaleStrokeThickness":"scaleStrokeThickness","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","containerResized":"containerResized","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getValueForPoint":"getValueForPoint","highlightNeedleContainsPoint":"highlightNeedleContainsPoint","initializeContent":"initializeContent","needleContainsPoint":"needleContainsPoint","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgrLinearGraphRange":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrLinearGraphRange","k":"class","s":"classes","m":{"constructor":"constructor","brush":"brush","endValue":"endValue","i":"i","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","rangeInternal":"rangeInternal","startValue":"startValue","strokeThickness":"strokeThickness","componentDidMount":"componentDidMount","findByName":"findByName","ngOnInit":"ngOnInit","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrLinearGraphRangeCollection":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrLinearGraphRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrRadialGauge":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrRadialGauge","k":"class","s":"classes","m":{"constructor":"constructor","actualRanges":"actualRanges","contentRanges":"contentRanges","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignHighlightLabel":"alignHighlightLabel","alignLabel":"alignLabel","alignSubtitle":"alignSubtitle","alignTitle":"alignTitle","animating":"animating","backingBrush":"backingBrush","backingCornerRadius":"backingCornerRadius","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingOversweep":"backingOversweep","backingShape":"backingShape","backingStrokeThickness":"backingStrokeThickness","centerX":"centerX","centerY":"centerY","duplicateLabelOmissionStrategy":"duplicateLabelOmissionStrategy","font":"font","fontBrush":"fontBrush","formatHighlightLabel":"formatHighlightLabel","formatLabel":"formatLabel","formatSubtitle":"formatSubtitle","formatTitle":"formatTitle","height":"height","highlightLabelAngle":"highlightLabelAngle","highlightLabelBrush":"highlightLabelBrush","highlightLabelDisplaysValue":"highlightLabelDisplaysValue","highlightLabelExtent":"highlightLabelExtent","highlightLabelFormat":"highlightLabelFormat","highlightLabelFormatSpecifiers":"highlightLabelFormatSpecifiers","highlightLabelSnapsToNeedlePivot":"highlightLabelSnapsToNeedlePivot","highlightLabelText":"highlightLabelText","highlightLabelTextStyle":"highlightLabelTextStyle","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingConstrained":"isHighlightNeedleDraggingConstrained","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingConstrained":"isNeedleDraggingConstrained","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","maximumValue":"maximumValue","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","nativeElement":"nativeElement","needleBaseFeatureExtent":"needleBaseFeatureExtent","needleBaseFeatureWidthRatio":"needleBaseFeatureWidthRatio","needleBrush":"needleBrush","needleEndExtent":"needleEndExtent","needleEndWidthRatio":"needleEndWidthRatio","needleOutline":"needleOutline","needlePivotBrush":"needlePivotBrush","needlePivotInnerWidthRatio":"needlePivotInnerWidthRatio","needlePivotOutline":"needlePivotOutline","needlePivotShape":"needlePivotShape","needlePivotStrokeThickness":"needlePivotStrokeThickness","needlePivotWidthRatio":"needlePivotWidthRatio","needlePointFeatureExtent":"needlePointFeatureExtent","needlePointFeatureWidthRatio":"needlePointFeatureWidthRatio","needleShape":"needleShape","needleStartExtent":"needleStartExtent","needleStartWidthRatio":"needleStartWidthRatio","needleStrokeThickness":"needleStrokeThickness","opticalScalingEnabled":"opticalScalingEnabled","opticalScalingRatio":"opticalScalingRatio","opticalScalingSize":"opticalScalingSize","pixelScalingRatio":"pixelScalingRatio","radiusMultiplier":"radiusMultiplier","rangeBrushes":"rangeBrushes","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBrush":"scaleBrush","scaleEndAngle":"scaleEndAngle","scaleEndExtent":"scaleEndExtent","scaleOversweep":"scaleOversweep","scaleOversweepShape":"scaleOversweepShape","scaleStartAngle":"scaleStartAngle","scaleStartExtent":"scaleStartExtent","scaleSweepDirection":"scaleSweepDirection","subtitleAngle":"subtitleAngle","subtitleBrush":"subtitleBrush","subtitleDisplaysValue":"subtitleDisplaysValue","subtitleExtent":"subtitleExtent","subtitleFormat":"subtitleFormat","subtitleFormatSpecifiers":"subtitleFormatSpecifiers","subtitleSnapsToNeedlePivot":"subtitleSnapsToNeedlePivot","subtitleText":"subtitleText","subtitleTextStyle":"subtitleTextStyle","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","titleAngle":"titleAngle","titleBrush":"titleBrush","titleDisplaysValue":"titleDisplaysValue","titleExtent":"titleExtent","titleFormat":"titleFormat","titleFormatSpecifiers":"titleFormatSpecifiers","titleSnapsToNeedlePivot":"titleSnapsToNeedlePivot","titleText":"titleText","titleTextStyle":"titleTextStyle","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","containerResized":"containerResized","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getPointForValue":"getPointForValue","getValueForPoint":"getValueForPoint","highlightNeedleContainsPoint":"highlightNeedleContainsPoint","initializeContent":"initializeContent","needleContainsPoint":"needleContainsPoint","provideContainer":"provideContainer","render":"render","scaleValue":"scaleValue","shouldComponentUpdate":"shouldComponentUpdate","styleUpdated":"styleUpdated","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgrRadialGaugeRange":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrRadialGaugeRange","k":"class","s":"classes","m":{"constructor":"constructor","brush":"brush","endValue":"endValue","i":"i","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","rangeInternal":"rangeInternal","startValue":"startValue","strokeThickness":"strokeThickness","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrRadialGaugeRangeCollection":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/classes/IgrRadialGaugeRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IIgrBulletGraphProps":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/interfaces/IIgrBulletGraphProps","k":"interface","s":"interfaces","m":{"actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","children":"children","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","scaleBackgroundBrush":"scaleBackgroundBrush","scaleBackgroundOutline":"scaleBackgroundOutline","scaleBackgroundThickness":"scaleBackgroundThickness","scaleEndExtent":"scaleEndExtent","scaleStartExtent":"scaleStartExtent","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","targetValue":"targetValue","targetValueBreadth":"targetValueBreadth","targetValueBrush":"targetValueBrush","targetValueInnerExtent":"targetValueInnerExtent","targetValueName":"targetValueName","targetValueOuterExtent":"targetValueOuterExtent","targetValueOutline":"targetValueOutline","targetValueStrokeThickness":"targetValueStrokeThickness","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueBrush":"valueBrush","valueInnerExtent":"valueInnerExtent","valueName":"valueName","valueOuterExtent":"valueOuterExtent","valueOutline":"valueOutline","valueStrokeThickness":"valueStrokeThickness","width":"width"}}],"IIgrLinearGaugeProps":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/interfaces/IIgrLinearGaugeProps","k":"interface","s":"interfaces","m":{"actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","children":"children","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","needleBreadth":"needleBreadth","needleBrush":"needleBrush","needleInnerBaseWidth":"needleInnerBaseWidth","needleInnerExtent":"needleInnerExtent","needleInnerPointExtent":"needleInnerPointExtent","needleInnerPointWidth":"needleInnerPointWidth","needleName":"needleName","needleOuterBaseWidth":"needleOuterBaseWidth","needleOuterExtent":"needleOuterExtent","needleOuterPointExtent":"needleOuterPointExtent","needleOuterPointWidth":"needleOuterPointWidth","needleOutline":"needleOutline","needleShape":"needleShape","needleStrokeThickness":"needleStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","scaleBrush":"scaleBrush","scaleEndExtent":"scaleEndExtent","scaleInnerExtent":"scaleInnerExtent","scaleOuterExtent":"scaleOuterExtent","scaleOutline":"scaleOutline","scaleStartExtent":"scaleStartExtent","scaleStrokeThickness":"scaleStrokeThickness","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width"}}],"IIgrLinearGraphRangeProps":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/interfaces/IIgrLinearGraphRangeProps","k":"interface","s":"interfaces","m":{"brush":"brush","children":"children","endValue":"endValue","height":"height","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","startValue":"startValue","strokeThickness":"strokeThickness","width":"width"}}],"IIgrRadialGaugeProps":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/interfaces/IIgrRadialGaugeProps","k":"interface","s":"interfaces","m":{"actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","actualPixelScalingRatio":"actualPixelScalingRatio","alignHighlightLabel":"alignHighlightLabel","alignLabel":"alignLabel","alignSubtitle":"alignSubtitle","alignTitle":"alignTitle","backingBrush":"backingBrush","backingCornerRadius":"backingCornerRadius","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingOversweep":"backingOversweep","backingShape":"backingShape","backingStrokeThickness":"backingStrokeThickness","centerX":"centerX","centerY":"centerY","children":"children","duplicateLabelOmissionStrategy":"duplicateLabelOmissionStrategy","font":"font","fontBrush":"fontBrush","formatHighlightLabel":"formatHighlightLabel","formatLabel":"formatLabel","formatSubtitle":"formatSubtitle","formatTitle":"formatTitle","height":"height","highlightLabelAngle":"highlightLabelAngle","highlightLabelBrush":"highlightLabelBrush","highlightLabelDisplaysValue":"highlightLabelDisplaysValue","highlightLabelExtent":"highlightLabelExtent","highlightLabelFormat":"highlightLabelFormat","highlightLabelFormatSpecifiers":"highlightLabelFormatSpecifiers","highlightLabelSnapsToNeedlePivot":"highlightLabelSnapsToNeedlePivot","highlightLabelText":"highlightLabelText","highlightLabelTextStyle":"highlightLabelTextStyle","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingConstrained":"isHighlightNeedleDraggingConstrained","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingConstrained":"isNeedleDraggingConstrained","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","maximumValue":"maximumValue","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","needleBaseFeatureExtent":"needleBaseFeatureExtent","needleBaseFeatureWidthRatio":"needleBaseFeatureWidthRatio","needleBrush":"needleBrush","needleEndExtent":"needleEndExtent","needleEndWidthRatio":"needleEndWidthRatio","needleOutline":"needleOutline","needlePivotBrush":"needlePivotBrush","needlePivotInnerWidthRatio":"needlePivotInnerWidthRatio","needlePivotOutline":"needlePivotOutline","needlePivotShape":"needlePivotShape","needlePivotStrokeThickness":"needlePivotStrokeThickness","needlePivotWidthRatio":"needlePivotWidthRatio","needlePointFeatureExtent":"needlePointFeatureExtent","needlePointFeatureWidthRatio":"needlePointFeatureWidthRatio","needleShape":"needleShape","needleStartExtent":"needleStartExtent","needleStartWidthRatio":"needleStartWidthRatio","needleStrokeThickness":"needleStrokeThickness","opticalScalingEnabled":"opticalScalingEnabled","opticalScalingRatio":"opticalScalingRatio","opticalScalingSize":"opticalScalingSize","pixelScalingRatio":"pixelScalingRatio","radiusMultiplier":"radiusMultiplier","rangeBrushes":"rangeBrushes","rangeOutlines":"rangeOutlines","scaleBrush":"scaleBrush","scaleEndAngle":"scaleEndAngle","scaleEndExtent":"scaleEndExtent","scaleOversweep":"scaleOversweep","scaleOversweepShape":"scaleOversweepShape","scaleStartAngle":"scaleStartAngle","scaleStartExtent":"scaleStartExtent","scaleSweepDirection":"scaleSweepDirection","subtitleAngle":"subtitleAngle","subtitleBrush":"subtitleBrush","subtitleDisplaysValue":"subtitleDisplaysValue","subtitleExtent":"subtitleExtent","subtitleFormat":"subtitleFormat","subtitleFormatSpecifiers":"subtitleFormatSpecifiers","subtitleSnapsToNeedlePivot":"subtitleSnapsToNeedlePivot","subtitleText":"subtitleText","subtitleTextStyle":"subtitleTextStyle","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","titleAngle":"titleAngle","titleBrush":"titleBrush","titleDisplaysValue":"titleDisplaysValue","titleExtent":"titleExtent","titleFormat":"titleFormat","titleFormatSpecifiers":"titleFormatSpecifiers","titleSnapsToNeedlePivot":"titleSnapsToNeedlePivot","titleText":"titleText","titleTextStyle":"titleTextStyle","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width"}}],"IIgrRadialGaugeRangeProps":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/interfaces/IIgrRadialGaugeRangeProps","k":"interface","s":"interfaces","m":{"brush":"brush","endValue":"endValue","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","startValue":"startValue","strokeThickness":"strokeThickness"}}],"LinearGraphNeedleShape":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/LinearGraphNeedleShape","k":"enum","s":"enums","m":{"Custom":"Custom","Needle":"Needle","Rectangle":"Rectangle","Trapezoid":"Trapezoid","Triangle":"Triangle"}}],"LinearScaleOrientation":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/LinearScaleOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"RadialGaugeBackingShape":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/RadialGaugeBackingShape","k":"enum","s":"enums","m":{"Circular":"Circular","Fitted":"Fitted"}}],"RadialGaugeDuplicateLabelOmissionStrategy":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/RadialGaugeDuplicateLabelOmissionStrategy","k":"enum","s":"enums","m":{"OmitBoth":"OmitBoth","OmitFirst":"OmitFirst","OmitLast":"OmitLast","OmitNeither":"OmitNeither"}}],"RadialGaugeNeedleShape":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/RadialGaugeNeedleShape","k":"enum","s":"enums","m":{"Needle":"Needle","NeedleWithBulb":"NeedleWithBulb","None":"None","Rectangle":"Rectangle","RectangleWithBulb":"RectangleWithBulb","Trapezoid":"Trapezoid","TrapezoidWithBulb":"TrapezoidWithBulb","Triangle":"Triangle","TriangleWithBulb":"TriangleWithBulb"}}],"RadialGaugePivotShape":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/RadialGaugePivotShape","k":"enum","s":"enums","m":{"Circle":"Circle","CircleOverlay":"CircleOverlay","CircleOverlayWithHole":"CircleOverlayWithHole","CircleUnderlay":"CircleUnderlay","CircleUnderlayWithHole":"CircleUnderlayWithHole","CircleWithHole":"CircleWithHole","None":"None"}}],"RadialGaugeScaleOversweepShape":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/RadialGaugeScaleOversweepShape","k":"enum","s":"enums","m":{"Auto":"Auto","Circular":"Circular","Fitted":"Fitted"}}],"TitlesPosition":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/enums/TitlesPosition","k":"enum","s":"enums","m":{"ScaleEnd":"ScaleEnd","ScaleStart":"ScaleStart"}}],"BulletGraphStylingDefaults":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/variables/BulletGraphStylingDefaults","k":"variable","s":"variables"}],"LinearGaugeStylingDefaults":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/variables/LinearGaugeStylingDefaults","k":"variable","s":"variables"}],"RadialGaugeStylingDefaults":[{"p":"igniteui-react-gauges","u":"/api/react/igniteui-react-gauges/19.5.2/variables/RadialGaugeStylingDefaults","k":"variable","s":"variables"}],"IgrButtonClickEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrButtonClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrButtonGroupSelectionChangedEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrButtonGroupSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrColorEditor":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrColorEditor","k":"class","s":"classes","m":{"constructor":"constructor","allowTextInput":"allowTextInput","baseTheme":"baseTheme","density":"density","gotFocus":"gotFocus","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","nativeElement":"nativeElement","openAsChild":"openAsChild","openOnFocus":"openOnFocus","showClearButton":"showClearButton","textColor":"textColor","textStyle":"textStyle","useTopLayer":"useTopLayer","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","render":"render","select":"select","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgrColorEditorGotFocusEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrColorEditorGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrColorEditorLostFocusEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrColorEditorLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrColorEditorPanel":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrColorEditorPanel","k":"class","s":"classes","m":{"constructor":"constructor","actualPixelScalingRatio":"actualPixelScalingRatio","backgroundColor":"backgroundColor","baseTheme":"baseTheme","density":"density","focusColorBorderColor":"focusColorBorderColor","hoverBackgroundColor":"hoverBackgroundColor","nativeElement":"nativeElement","pixelScalingRatio":"pixelScalingRatio","selectedColorBorderColor":"selectedColorBorderColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","textColor":"textColor","textStyle":"textStyle","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","findByName":"findByName","initializeContent":"initializeContent","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgrColorEditorPanelClosedEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrColorEditorPanelClosedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrColorEditorPanelSelectedValueChangedEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrColorEditorPanelSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrGotFocusEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrInputChangeEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrInputChangeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","isCompositionInProgress":"isCompositionInProgress","nativeElement":"nativeElement","value":"value"}}],"IgrLostFocusEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrMultiSlider":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSlider","k":"class","s":"classes","m":{"constructor":"constructor","actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","calloutBrush":"calloutBrush","calloutOutline":"calloutOutline","calloutStrokeThickness":"calloutStrokeThickness","calloutTextColor":"calloutTextColor","endInset":"endInset","isCustomBarProvided":"isCustomBarProvided","isCustomRangeThumbProvided":"isCustomRangeThumbProvided","isCustomShadeProvided":"isCustomShadeProvided","isCustomThumbProvided":"isCustomThumbProvided","max":"max","min":"min","nativeElement":"nativeElement","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingToolTipValue":"resolvingToolTipValue","startInset":"startInset","step":"step","thumbBrush":"thumbBrush","thumbCalloutTextStyle":"thumbCalloutTextStyle","thumbHeight":"thumbHeight","thumbOutline":"thumbOutline","thumbRidgesBrush":"thumbRidgesBrush","thumbs":"thumbs","thumbStrokeThickness":"thumbStrokeThickness","thumbValueChanged":"thumbValueChanged","thumbValueChanging":"thumbValueChanging","thumbWidth":"thumbWidth","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","windowRect":"windowRect","yMax":"yMax","yMin":"yMin","yStep":"yStep","yTrackEndInset":"yTrackEndInset","yTrackStartInset":"yTrackStartInset","yValue":"yValue","yValueChanged":"yValueChanged","yValueChanging":"yValueChanging","componentDidMount":"componentDidMount","findByName":"findByName","flush":"flush","hide":"hide","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","provideContainer":"provideContainer","render":"render","shouldComponentUpdate":"shouldComponentUpdate","show":"show","trackDirty":"trackDirty","_createFromInternal":"_createFromInternal"}}],"IgrMultiSliderResolvingToolTipValueEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSliderResolvingToolTipValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","position":"position","value":"value"}}],"IgrMultiSliderThumb":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSliderThumb","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","propertyUpdated":"propertyUpdated","range":"range","rangePosition":"rangePosition","value":"value","findByName":"findByName","push":"push"}}],"IgrMultiSliderThumbCollection":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSliderThumbCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrMultiSliderThumbValueChangingEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSliderThumbValueChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","thumb":"thumb","value":"value"}}],"IgrMultiSliderTrackThumbRange":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSliderTrackThumbRange","k":"class","s":"classes","m":{"constructor":"constructor","higherThumb":"higherThumb","lowerThumb":"lowerThumb","maxWidth":"maxWidth","minWidth":"minWidth","nativeElement":"nativeElement","position":"position","width":"width","findByName":"findByName"}}],"IgrMultiSliderYValueChangingEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrMultiSliderYValueChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","value":"value"}}],"IgrSelectedValueChangedEventArgs":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrXButton":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXButton","k":"class","s":"classes","m":{"constructor":"constructor","actualAmbientShadowColor":"actualAmbientShadowColor","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualDisabledBackgroundColor":"actualDisabledBackgroundColor","actualDisabledBorderColor":"actualDisabledBorderColor","actualDisabledElevation":"actualDisabledElevation","actualDisabledTextColor":"actualDisabledTextColor","actualDisableRipple":"actualDisableRipple","actualElevationMode":"actualElevationMode","actualFocusBackgroundColor":"actualFocusBackgroundColor","actualFocusElevation":"actualFocusElevation","actualFocusTextColor":"actualFocusTextColor","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualHoverElevation":"actualHoverElevation","actualHoverTextColor":"actualHoverTextColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualRestingElevation":"actualRestingElevation","actualRippleColor":"actualRippleColor","actualTextColor":"actualTextColor","actualUmbraShadowColor":"actualUmbraShadowColor","alignItems":"alignItems","ariaLabel":"ariaLabel","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","clicked":"clicked","clickTunneling":"clickTunneling","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","disabledBackgroundColor":"disabledBackgroundColor","disabledBorderColor":"disabledBorderColor","disabledElevation":"disabledElevation","disabledTextColor":"disabledTextColor","disableHover":"disableHover","disablePointer":"disablePointer","disableRipple":"disableRipple","disableTransitions":"disableTransitions","display":"display","displayType":"displayType","elevationMode":"elevationMode","fabBackgroundColor":"fabBackgroundColor","fabBorderColor":"fabBorderColor","fabBorderWidth":"fabBorderWidth","fabCornerRadiusBottomLeft":"fabCornerRadiusBottomLeft","fabCornerRadiusBottomRight":"fabCornerRadiusBottomRight","fabCornerRadiusTopLeft":"fabCornerRadiusTopLeft","fabCornerRadiusTopRight":"fabCornerRadiusTopRight","fabDisabledBackgroundColor":"fabDisabledBackgroundColor","fabDisabledBorderColor":"fabDisabledBorderColor","fabDisabledElevation":"fabDisabledElevation","fabDisabledTextColor":"fabDisabledTextColor","fabFocusBackgroundColor":"fabFocusBackgroundColor","fabFocusElevation":"fabFocusElevation","fabFocusTextColor":"fabFocusTextColor","fabHoverBackgroundColor":"fabHoverBackgroundColor","fabHoverElevation":"fabHoverElevation","fabHoverTextColor":"fabHoverTextColor","fabRestingElevation":"fabRestingElevation","fabRippleColor":"fabRippleColor","fabTextColor":"fabTextColor","fillAvailableSpace":"fillAvailableSpace","flatBackgroundColor":"flatBackgroundColor","flatBorderColor":"flatBorderColor","flatBorderWidth":"flatBorderWidth","flatCornerRadiusBottomLeft":"flatCornerRadiusBottomLeft","flatCornerRadiusBottomRight":"flatCornerRadiusBottomRight","flatCornerRadiusTopLeft":"flatCornerRadiusTopLeft","flatCornerRadiusTopRight":"flatCornerRadiusTopRight","flatDisabledBackgroundColor":"flatDisabledBackgroundColor","flatDisabledBorderColor":"flatDisabledBorderColor","flatDisabledElevation":"flatDisabledElevation","flatDisabledTextColor":"flatDisabledTextColor","flatFocusBackgroundColor":"flatFocusBackgroundColor","flatFocusElevation":"flatFocusElevation","flatFocusTextColor":"flatFocusTextColor","flatHoverBackgroundColor":"flatHoverBackgroundColor","flatHoverElevation":"flatHoverElevation","flatHoverTextColor":"flatHoverTextColor","flatRestingElevation":"flatRestingElevation","flatRippleColor":"flatRippleColor","flatTextColor":"flatTextColor","flexDirection":"flexDirection","flexGrow":"flexGrow","focusBackgroundColor":"focusBackgroundColor","focused":"focused","focusElevation":"focusElevation","focusTextColor":"focusTextColor","gotFocus":"gotFocus","horizontalContentAlignment":"horizontalContentAlignment","hoverBackgroundColor":"hoverBackgroundColor","hoverElevation":"hoverElevation","hoverTextColor":"hoverTextColor","iconBackgroundColor":"iconBackgroundColor","iconBorderColor":"iconBorderColor","iconBorderWidth":"iconBorderWidth","iconCornerRadiusBottomLeft":"iconCornerRadiusBottomLeft","iconCornerRadiusBottomRight":"iconCornerRadiusBottomRight","iconCornerRadiusTopLeft":"iconCornerRadiusTopLeft","iconCornerRadiusTopRight":"iconCornerRadiusTopRight","iconDisabledBackgroundColor":"iconDisabledBackgroundColor","iconDisabledBorderColor":"iconDisabledBorderColor","iconDisabledElevation":"iconDisabledElevation","iconDisabledTextColor":"iconDisabledTextColor","iconFocusBackgroundColor":"iconFocusBackgroundColor","iconFocusElevation":"iconFocusElevation","iconFocusTextColor":"iconFocusTextColor","iconHoverBackgroundColor":"iconHoverBackgroundColor","iconHoverElevation":"iconHoverElevation","iconHoverTextColor":"iconHoverTextColor","iconRestingElevation":"iconRestingElevation","iconRippleColor":"iconRippleColor","iconTextColor":"iconTextColor","id":"id","inputId":"inputId","isFocusStyleEnabled":"isFocusStyleEnabled","isHover":"isHover","lostFocus":"lostFocus","minHeight":"minHeight","minWidth":"minWidth","name":"name","nativeElement":"nativeElement","outlinedBackgroundColor":"outlinedBackgroundColor","outlinedBorderColor":"outlinedBorderColor","outlinedBorderWidth":"outlinedBorderWidth","outlinedCornerRadiusBottomLeft":"outlinedCornerRadiusBottomLeft","outlinedCornerRadiusBottomRight":"outlinedCornerRadiusBottomRight","outlinedCornerRadiusTopLeft":"outlinedCornerRadiusTopLeft","outlinedCornerRadiusTopRight":"outlinedCornerRadiusTopRight","outlinedDisabledBackgroundColor":"outlinedDisabledBackgroundColor","outlinedDisabledBorderColor":"outlinedDisabledBorderColor","outlinedDisabledElevation":"outlinedDisabledElevation","outlinedDisabledTextColor":"outlinedDisabledTextColor","outlinedFocusBackgroundColor":"outlinedFocusBackgroundColor","outlinedFocusElevation":"outlinedFocusElevation","outlinedFocusTextColor":"outlinedFocusTextColor","outlinedHoverBackgroundColor":"outlinedHoverBackgroundColor","outlinedHoverElevation":"outlinedHoverElevation","outlinedHoverTextColor":"outlinedHoverTextColor","outlinedRestingElevation":"outlinedRestingElevation","outlinedRippleColor":"outlinedRippleColor","outlinedTextColor":"outlinedTextColor","raisedBackgroundColor":"raisedBackgroundColor","raisedBorderColor":"raisedBorderColor","raisedBorderWidth":"raisedBorderWidth","raisedCornerRadiusBottomLeft":"raisedCornerRadiusBottomLeft","raisedCornerRadiusBottomRight":"raisedCornerRadiusBottomRight","raisedCornerRadiusTopLeft":"raisedCornerRadiusTopLeft","raisedCornerRadiusTopRight":"raisedCornerRadiusTopRight","raisedDisabledBackgroundColor":"raisedDisabledBackgroundColor","raisedDisabledBorderColor":"raisedDisabledBorderColor","raisedDisabledElevation":"raisedDisabledElevation","raisedDisabledTextColor":"raisedDisabledTextColor","raisedFocusBackgroundColor":"raisedFocusBackgroundColor","raisedFocusElevation":"raisedFocusElevation","raisedFocusTextColor":"raisedFocusTextColor","raisedHoverBackgroundColor":"raisedHoverBackgroundColor","raisedHoverElevation":"raisedHoverElevation","raisedHoverTextColor":"raisedHoverTextColor","raisedRestingElevation":"raisedRestingElevation","raisedRippleColor":"raisedRippleColor","raisedTextColor":"raisedTextColor","restingElevation":"restingElevation","rippleColor":"rippleColor","stopPropagation":"stopPropagation","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","value":"value","verticalContentAlignment":"verticalContentAlignment","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureActualCornerRadius":"ensureActualCornerRadius","ensureCornerRadius":"ensureCornerRadius","ensureFabCornerRadius":"ensureFabCornerRadius","ensureFlatCornerRadius":"ensureFlatCornerRadius","ensureIconCornerRadius":"ensureIconCornerRadius","ensureOutlinedCornerRadius":"ensureOutlinedCornerRadius","ensureRaisedCornerRadius":"ensureRaisedCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgrXButtonGroup":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXButtonGroup","k":"class","s":"classes","m":{"constructor":"constructor","actualButtons":"actualButtons","contentButtons":"contentButtons","actualDensity":"actualDensity","actualItemBackgroundColor":"actualItemBackgroundColor","actualItemBorderColor":"actualItemBorderColor","actualItemBorderWidth":"actualItemBorderWidth","actualItemCornerRadius":"actualItemCornerRadius","actualItemDisabledBackgroundColor":"actualItemDisabledBackgroundColor","actualItemDisabledBorderColor":"actualItemDisabledBorderColor","actualItemDisabledTextColor":"actualItemDisabledTextColor","actualItemHoverBackgroundColor":"actualItemHoverBackgroundColor","actualItemHoverTextColor":"actualItemHoverTextColor","actualItemTextColor":"actualItemTextColor","actualSelectedItemBackgroundColor":"actualSelectedItemBackgroundColor","actualSelectedItemHoverBackgroundColor":"actualSelectedItemHoverBackgroundColor","actualSelectedItemHoverTextColor":"actualSelectedItemHoverTextColor","actualSelectedItemTextColor":"actualSelectedItemTextColor","baseTheme":"baseTheme","buttons":"buttons","density":"density","disabled":"disabled","displayType":"displayType","flatItemBackgroundColor":"flatItemBackgroundColor","flatItemBorderColor":"flatItemBorderColor","flatItemBorderWidth":"flatItemBorderWidth","flatItemCornerRadius":"flatItemCornerRadius","flatItemDisabledBackgroundColor":"flatItemDisabledBackgroundColor","flatItemDisabledBorderColor":"flatItemDisabledBorderColor","flatItemDisabledTextColor":"flatItemDisabledTextColor","flatItemHoverBackgroundColor":"flatItemHoverBackgroundColor","flatItemHoverTextColor":"flatItemHoverTextColor","flatItemTextColor":"flatItemTextColor","flatSelectedItemBackgroundColor":"flatSelectedItemBackgroundColor","flatSelectedItemHoverBackgroundColor":"flatSelectedItemHoverBackgroundColor","flatSelectedItemHoverTextColor":"flatSelectedItemHoverTextColor","flatSelectedItemTextColor":"flatSelectedItemTextColor","i":"i","id":"id","isMultiSelect":"isMultiSelect","itemBackgroundColor":"itemBackgroundColor","itemBorderColor":"itemBorderColor","itemBorderWidth":"itemBorderWidth","itemCornerRadius":"itemCornerRadius","itemDisabledBackgroundColor":"itemDisabledBackgroundColor","itemDisabledBorderColor":"itemDisabledBorderColor","itemDisabledTextColor":"itemDisabledTextColor","itemHoverBackgroundColor":"itemHoverBackgroundColor","itemHoverTextColor":"itemHoverTextColor","itemTextColor":"itemTextColor","orientation":"orientation","outlinedItemBackgroundColor":"outlinedItemBackgroundColor","outlinedItemBorderColor":"outlinedItemBorderColor","outlinedItemBorderWidth":"outlinedItemBorderWidth","outlinedItemCornerRadius":"outlinedItemCornerRadius","outlinedItemDisabledBackgroundColor":"outlinedItemDisabledBackgroundColor","outlinedItemDisabledBorderColor":"outlinedItemDisabledBorderColor","outlinedItemDisabledTextColor":"outlinedItemDisabledTextColor","outlinedItemHoverBackgroundColor":"outlinedItemHoverBackgroundColor","outlinedItemHoverTextColor":"outlinedItemHoverTextColor","outlinedItemTextColor":"outlinedItemTextColor","outlinedSelectedItemBackgroundColor":"outlinedSelectedItemBackgroundColor","outlinedSelectedItemHoverBackgroundColor":"outlinedSelectedItemHoverBackgroundColor","outlinedSelectedItemHoverTextColor":"outlinedSelectedItemHoverTextColor","outlinedSelectedItemTextColor":"outlinedSelectedItemTextColor","selectedIndices":"selectedIndices","selectedItemBackgroundColor":"selectedItemBackgroundColor","selectedItemHoverBackgroundColor":"selectedItemHoverBackgroundColor","selectedItemHoverTextColor":"selectedItemHoverTextColor","selectedItemTextColor":"selectedItemTextColor","selectionChanged":"selectionChanged","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXButtonGroupButtonCollection":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXButtonGroupButtonCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrXCalendar":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXCalendar","k":"class","s":"classes","m":{"constructor":"constructor","backgroundColor":"backgroundColor","baseTheme":"baseTheme","currentDateBorderColor":"currentDateBorderColor","currentDateTextColor":"currentDateTextColor","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","focusDateBackgroundColor":"focusDateBackgroundColor","focusDateTextColor":"focusDateTextColor","height":"height","hoverBackgroundColor":"hoverBackgroundColor","i":"i","maxDate":"maxDate","minDate":"minDate","selectedDateBackgroundColor":"selectedDateBackgroundColor","selectedDateTextColor":"selectedDateTextColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","selectedValueChanged":"selectedValueChanged","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","value":"value","valueChange":"valueChange","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","initializeContent":"initializeContent","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXCheckbox":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXCheckbox","k":"class","s":"classes","m":{"constructor":"constructor","actualBorderWidth":"actualBorderWidth","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualCornerRadius":"actualCornerRadius","actualTickColor":"actualTickColor","actualTickStrokeWidth":"actualTickStrokeWidth","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","ariaLabel":"ariaLabel","ariaLabelledBy":"ariaLabelledBy","baseTheme":"baseTheme","borderWidth":"borderWidth","change":"change","checked":"checked","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","cornerRadius":"cornerRadius","disabled":"disabled","disableRipple":"disableRipple","disableTransitions":"disableTransitions","focused":"focused","i":"i","id":"id","indeterminate":"indeterminate","inputId":"inputId","labelId":"labelId","labelPosition":"labelPosition","name":"name","required":"required","tabIndex":"tabIndex","tickColor":"tickColor","tickStrokeWidth":"tickStrokeWidth","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","value":"value","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXDatePicker":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXDatePicker","k":"class","s":"classes","m":{"constructor":"constructor","allowTextInput":"allowTextInput","baseTheme":"baseTheme","changing":"changing","dateFormat":"dateFormat","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","formatString":"formatString","gotFocus":"gotFocus","height":"height","i":"i","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","maxDate":"maxDate","minDate":"minDate","openAsChild":"openAsChild","openOnFocus":"openOnFocus","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","showClearButton":"showClearButton","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","useTopLayer":"useTopLayer","value":"value","valueChange":"valueChange","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","initializeContent":"initializeContent","render":"render","select":"select","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXIcon":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXIcon","k":"class","s":"classes","m":{"constructor":"constructor","actualFill":"actualFill","actualStroke":"actualStroke","actualStrokeWidth":"actualStrokeWidth","actualTextColor":"actualTextColor","actualViewBoxHeight":"actualViewBoxHeight","actualViewBoxLeft":"actualViewBoxLeft","actualViewBoxTop":"actualViewBoxTop","actualViewBoxWidth":"actualViewBoxWidth","ariaLabel":"ariaLabel","baseTheme":"baseTheme","dataURL":"dataURL","disabled":"disabled","fill":"fill","fillColors":"fillColors","height":"height","hoverFill":"hoverFill","hoverStroke":"hoverStroke","hoverStrokeThickness":"hoverStrokeThickness","hoverTextColor":"hoverTextColor","i":"i","id":"id","isHover":"isHover","opacity":"opacity","primaryFillColor":"primaryFillColor","primaryStrokeColor":"primaryStrokeColor","secondaryFillColor":"secondaryFillColor","secondaryStrokeColor":"secondaryStrokeColor","source":"source","stroke":"stroke","strokeColors":"strokeColors","strokeWidth":"strokeWidth","svg":"svg","svgPath":"svgPath","sVGPaths":"sVGPaths","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","viewBoxHeight":"viewBoxHeight","viewBoxLeft":"viewBoxLeft","viewBoxTop":"viewBoxTop","viewBoxWidth":"viewBoxWidth","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXInput":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXInput","k":"class","s":"classes","m":{"constructor":"constructor","actualDensity":"actualDensity","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","ariaLabel":"ariaLabel","baseTheme":"baseTheme","change":"change","changing":"changing","compositionEnd":"compositionEnd","density":"density","disabled":"disabled","for":"for","hasValue":"hasValue","hoverTextColor":"hoverTextColor","id":"id","includeLiterals":"includeLiterals","inputType":"inputType","isHover":"isHover","keyDown":"keyDown","keyPress":"keyPress","keyUp":"keyUp","mask":"mask","name":"name","nativeElement":"nativeElement","placeholder":"placeholder","promptChar":"promptChar","readonly":"readonly","selectionEnd":"selectionEnd","selectionStart":"selectionStart","showSpinner":"showSpinner","tabIndex":"tabIndex","textAlignment":"textAlignment","textColor":"textColor","textStyle":"textStyle","value":"value","blur":"blur","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","select":"select","setSelectionRange":"setSelectionRange","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgrXInputGroup":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXInputGroup","k":"class","s":"classes","m":{"constructor":"constructor","actualInputs":"actualInputs","contentInputs":"contentInputs","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualIsExpanded":"actualIsExpanded","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderTypeBackgroundColor":"borderTypeBackgroundColor","borderTypeBorderColor":"borderTypeBorderColor","borderTypeBorderWidth":"borderTypeBorderWidth","borderTypeContentPaddingBottom":"borderTypeContentPaddingBottom","borderTypeContentPaddingLeft":"borderTypeContentPaddingLeft","borderTypeContentPaddingRight":"borderTypeContentPaddingRight","borderTypeContentPaddingTop":"borderTypeContentPaddingTop","borderTypeCornerRadiusBottomLeft":"borderTypeCornerRadiusBottomLeft","borderTypeCornerRadiusBottomRight":"borderTypeCornerRadiusBottomRight","borderTypeCornerRadiusTopLeft":"borderTypeCornerRadiusTopLeft","borderTypeCornerRadiusTopRight":"borderTypeCornerRadiusTopRight","borderTypeFocusBorderColor":"borderTypeFocusBorderColor","borderTypeFocusBorderWidth":"borderTypeFocusBorderWidth","borderTypeFocusUnderlineColor":"borderTypeFocusUnderlineColor","borderTypeFocusUnderlineOpacity":"borderTypeFocusUnderlineOpacity","borderTypeFocusUnderlineRippleOpacity":"borderTypeFocusUnderlineRippleOpacity","borderTypeHoverUnderlineColor":"borderTypeHoverUnderlineColor","borderTypeHoverUnderlineOpacity":"borderTypeHoverUnderlineOpacity","borderTypeHoverUnderlineWidth":"borderTypeHoverUnderlineWidth","borderTypeUnderlineColor":"borderTypeUnderlineColor","borderTypeUnderlineOpacity":"borderTypeUnderlineOpacity","borderTypeUnderlineRippleColor":"borderTypeUnderlineRippleColor","borderTypeUnderlineRippleOpacity":"borderTypeUnderlineRippleOpacity","borderTypeUnderlineRippleWidth":"borderTypeUnderlineRippleWidth","borderTypeUnderlineWidth":"borderTypeUnderlineWidth","borderWidth":"borderWidth","boxTypeBackgroundColor":"boxTypeBackgroundColor","boxTypeBorderColor":"boxTypeBorderColor","boxTypeBorderWidth":"boxTypeBorderWidth","boxTypeContentPaddingBottom":"boxTypeContentPaddingBottom","boxTypeContentPaddingLeft":"boxTypeContentPaddingLeft","boxTypeContentPaddingRight":"boxTypeContentPaddingRight","boxTypeContentPaddingTop":"boxTypeContentPaddingTop","boxTypeCornerRadiusBottomLeft":"boxTypeCornerRadiusBottomLeft","boxTypeCornerRadiusBottomRight":"boxTypeCornerRadiusBottomRight","boxTypeCornerRadiusTopLeft":"boxTypeCornerRadiusTopLeft","boxTypeCornerRadiusTopRight":"boxTypeCornerRadiusTopRight","boxTypeFocusBorderColor":"boxTypeFocusBorderColor","boxTypeFocusBorderWidth":"boxTypeFocusBorderWidth","boxTypeFocusUnderlineColor":"boxTypeFocusUnderlineColor","boxTypeFocusUnderlineOpacity":"boxTypeFocusUnderlineOpacity","boxTypeFocusUnderlineRippleOpacity":"boxTypeFocusUnderlineRippleOpacity","boxTypeHoverUnderlineColor":"boxTypeHoverUnderlineColor","boxTypeHoverUnderlineOpacity":"boxTypeHoverUnderlineOpacity","boxTypeHoverUnderlineWidth":"boxTypeHoverUnderlineWidth","boxTypeUnderlineColor":"boxTypeUnderlineColor","boxTypeUnderlineOpacity":"boxTypeUnderlineOpacity","boxTypeUnderlineRippleColor":"boxTypeUnderlineRippleColor","boxTypeUnderlineRippleOpacity":"boxTypeUnderlineRippleOpacity","boxTypeUnderlineRippleWidth":"boxTypeUnderlineRippleWidth","boxTypeUnderlineWidth":"boxTypeUnderlineWidth","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","displayType":"displayType","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","i":"i","id":"id","inputHasValue":"inputHasValue","inputs":"inputs","isExpanded":"isExpanded","isFocused":"isFocused","isHovered":"isHovered","lineTypeBackgroundColor":"lineTypeBackgroundColor","lineTypeBorderColor":"lineTypeBorderColor","lineTypeBorderWidth":"lineTypeBorderWidth","lineTypeContentPaddingBottom":"lineTypeContentPaddingBottom","lineTypeContentPaddingLeft":"lineTypeContentPaddingLeft","lineTypeContentPaddingRight":"lineTypeContentPaddingRight","lineTypeContentPaddingTop":"lineTypeContentPaddingTop","lineTypeCornerRadiusBottomLeft":"lineTypeCornerRadiusBottomLeft","lineTypeCornerRadiusBottomRight":"lineTypeCornerRadiusBottomRight","lineTypeCornerRadiusTopLeft":"lineTypeCornerRadiusTopLeft","lineTypeCornerRadiusTopRight":"lineTypeCornerRadiusTopRight","lineTypeFocusBorderColor":"lineTypeFocusBorderColor","lineTypeFocusBorderWidth":"lineTypeFocusBorderWidth","lineTypeFocusUnderlineColor":"lineTypeFocusUnderlineColor","lineTypeFocusUnderlineOpacity":"lineTypeFocusUnderlineOpacity","lineTypeFocusUnderlineRippleOpacity":"lineTypeFocusUnderlineRippleOpacity","lineTypeHoverUnderlineColor":"lineTypeHoverUnderlineColor","lineTypeHoverUnderlineOpacity":"lineTypeHoverUnderlineOpacity","lineTypeHoverUnderlineWidth":"lineTypeHoverUnderlineWidth","lineTypeUnderlineColor":"lineTypeUnderlineColor","lineTypeUnderlineOpacity":"lineTypeUnderlineOpacity","lineTypeUnderlineRippleColor":"lineTypeUnderlineRippleColor","lineTypeUnderlineRippleOpacity":"lineTypeUnderlineRippleOpacity","lineTypeUnderlineRippleWidth":"lineTypeUnderlineRippleWidth","lineTypeUnderlineWidth":"lineTypeUnderlineWidth","searchTypeBackgroundColor":"searchTypeBackgroundColor","searchTypeBorderColor":"searchTypeBorderColor","searchTypeBorderWidth":"searchTypeBorderWidth","searchTypeContentPaddingBottom":"searchTypeContentPaddingBottom","searchTypeContentPaddingLeft":"searchTypeContentPaddingLeft","searchTypeContentPaddingRight":"searchTypeContentPaddingRight","searchTypeContentPaddingTop":"searchTypeContentPaddingTop","searchTypeCornerRadiusBottomLeft":"searchTypeCornerRadiusBottomLeft","searchTypeCornerRadiusBottomRight":"searchTypeCornerRadiusBottomRight","searchTypeCornerRadiusTopLeft":"searchTypeCornerRadiusTopLeft","searchTypeCornerRadiusTopRight":"searchTypeCornerRadiusTopRight","searchTypeFocusBorderColor":"searchTypeFocusBorderColor","searchTypeFocusBorderWidth":"searchTypeFocusBorderWidth","searchTypeFocusUnderlineColor":"searchTypeFocusUnderlineColor","searchTypeFocusUnderlineOpacity":"searchTypeFocusUnderlineOpacity","searchTypeFocusUnderlineRippleOpacity":"searchTypeFocusUnderlineRippleOpacity","searchTypeHoverUnderlineColor":"searchTypeHoverUnderlineColor","searchTypeHoverUnderlineOpacity":"searchTypeHoverUnderlineOpacity","searchTypeHoverUnderlineWidth":"searchTypeHoverUnderlineWidth","searchTypeUnderlineColor":"searchTypeUnderlineColor","searchTypeUnderlineOpacity":"searchTypeUnderlineOpacity","searchTypeUnderlineRippleColor":"searchTypeUnderlineRippleColor","searchTypeUnderlineRippleOpacity":"searchTypeUnderlineRippleOpacity","searchTypeUnderlineRippleWidth":"searchTypeUnderlineRippleWidth","searchTypeUnderlineWidth":"searchTypeUnderlineWidth","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","ensureActualContentPadding":"ensureActualContentPadding","ensureActualCornerRadius":"ensureActualCornerRadius","ensureBorderTypeContentPadding":"ensureBorderTypeContentPadding","ensureBorderTypeCornerRadius":"ensureBorderTypeCornerRadius","ensureBoxTypeContentPadding":"ensureBoxTypeContentPadding","ensureBoxTypeCornerRadius":"ensureBoxTypeCornerRadius","ensureContentPadding":"ensureContentPadding","ensureCornerRadius":"ensureCornerRadius","ensureLineTypeContentPadding":"ensureLineTypeContentPadding","ensureLineTypeCornerRadius":"ensureLineTypeCornerRadius","ensureSearchTypeContentPadding":"ensureSearchTypeContentPadding","ensureSearchTypeCornerRadius":"ensureSearchTypeCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXInputGroupInputCollection":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXInputGroupInputCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrXInputGroupItem":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXInputGroupItem","k":"class","s":"classes","m":{"constructor":"constructor","name":"name","nativeElement":"nativeElement","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrXLabel":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXLabel","k":"class","s":"classes","m":{"constructor":"constructor","actualDensity":"actualDensity","actualHighlightTextColor":"actualHighlightTextColor","actualHoverHighlightTextColor":"actualHoverHighlightTextColor","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","alignItems":"alignItems","alignSelf":"alignSelf","ariaLabel":"ariaLabel","baseTheme":"baseTheme","density":"density","disabled":"disabled","display":"display","flexDirection":"flexDirection","flexGrow":"flexGrow","for":"for","highlightTextColor":"highlightTextColor","hoverHighlightTextColor":"hoverHighlightTextColor","hoverTextColor":"hoverTextColor","id":"id","isHover":"isHover","name":"name","nativeElement":"nativeElement","tabIndex":"tabIndex","text":"text","textColor":"textColor","textStyle":"textStyle","value":"value","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgrXPrefix":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXPrefix","k":"class","s":"classes","m":{"constructor":"constructor","ariaLabel":"ariaLabel","disabled":"disabled","id":"id","isHover":"isHover","name":"name","nativeElement":"nativeElement","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"IgrXRipple":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXRipple","k":"class","s":"classes","m":{"constructor":"constructor","actualHoverColor":"actualHoverColor","actualRippleColor":"actualRippleColor","eventSource":"eventSource","height":"height","hoverColor":"hoverColor","i":"i","isCentered":"isCentered","isDisabled":"isDisabled","isHoverEnabled":"isHoverEnabled","left":"left","position":"position","rippleColor":"rippleColor","rippleDuration":"rippleDuration","top":"top","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrXSuffix":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/IgrXSuffix","k":"class","s":"classes","m":{"constructor":"constructor","ariaLabel":"ariaLabel","disabled":"disabled","id":"id","isHover":"isHover","name":"name","nativeElement":"nativeElement","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal"}}],"XCalendarLocaleEn":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/classes/XCalendarLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","April_Full":"April_Full","April_Short":"April_Short","August_Full":"August_Full","August_Short":"August_Short","December_Full":"December_Full","December_Short":"December_Short","February_Full":"February_Full","February_Short":"February_Short","Friday_Full":"Friday_Full","Friday_Short":"Friday_Short","Friday_Single":"Friday_Single","January_Full":"January_Full","January_Short":"January_Short","July_Full":"July_Full","July_Short":"July_Short","June_Full":"June_Full","June_Short":"June_Short","March_Full":"March_Full","March_Short":"March_Short","May_Full":"May_Full","May_Short":"May_Short","Monday_Full":"Monday_Full","Monday_Short":"Monday_Short","Monday_Single":"Monday_Single","November_Full":"November_Full","November_Short":"November_Short","October_Full":"October_Full","October_Short":"October_Short","Saturday_Full":"Saturday_Full","Saturday_Short":"Saturday_Short","Saturday_Single":"Saturday_Single","September_Full":"September_Full","September_Short":"September_Short","Sunday_Full":"Sunday_Full","Sunday_Short":"Sunday_Short","Sunday_Single":"Sunday_Single","Thursday_Full":"Thursday_Full","Thursday_Short":"Thursday_Short","Thursday_Single":"Thursday_Single","Today":"Today","Tuesday_Full":"Tuesday_Full","Tuesday_Short":"Tuesday_Short","Tuesday_Single":"Tuesday_Single","Wednesday_Full":"Wednesday_Full","Wednesday_Short":"Wednesday_Short","Wednesday_Single":"Wednesday_Single"}}],"IIgrColorEditorPanelProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrColorEditorPanelProps","k":"interface","s":"interfaces","m":{"actualPixelScalingRatio":"actualPixelScalingRatio","backgroundColor":"backgroundColor","baseTheme":"baseTheme","children":"children","density":"density","focusColorBorderColor":"focusColorBorderColor","hoverBackgroundColor":"hoverBackgroundColor","pixelScalingRatio":"pixelScalingRatio","selectedColorBorderColor":"selectedColorBorderColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","textColor":"textColor","textStyle":"textStyle","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging"}}],"IIgrColorEditorProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrColorEditorProps","k":"interface","s":"interfaces","m":{"allowTextInput":"allowTextInput","baseTheme":"baseTheme","children":"children","density":"density","gotFocus":"gotFocus","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","openAsChild":"openAsChild","openOnFocus":"openOnFocus","showClearButton":"showClearButton","textColor":"textColor","textStyle":"textStyle","useTopLayer":"useTopLayer","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging"}}],"IIgrMultiSliderProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrMultiSliderProps","k":"interface","s":"interfaces","m":{"actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","calloutBrush":"calloutBrush","calloutOutline":"calloutOutline","calloutStrokeThickness":"calloutStrokeThickness","calloutTextColor":"calloutTextColor","children":"children","endInset":"endInset","max":"max","min":"min","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingToolTipValue":"resolvingToolTipValue","startInset":"startInset","step":"step","thumbBrush":"thumbBrush","thumbCalloutTextStyle":"thumbCalloutTextStyle","thumbHeight":"thumbHeight","thumbOutline":"thumbOutline","thumbRidgesBrush":"thumbRidgesBrush","thumbStrokeThickness":"thumbStrokeThickness","thumbValueChanged":"thumbValueChanged","thumbValueChanging":"thumbValueChanging","thumbWidth":"thumbWidth","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","windowRect":"windowRect","yMax":"yMax","yMin":"yMin","yStep":"yStep","yTrackEndInset":"yTrackEndInset","yTrackStartInset":"yTrackStartInset","yValue":"yValue","yValueChanged":"yValueChanged","yValueChanging":"yValueChanging"}}],"IIgrXButtonGroupProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXButtonGroupProps","k":"interface","s":"interfaces","m":{"actualDensity":"actualDensity","actualItemBackgroundColor":"actualItemBackgroundColor","actualItemBorderColor":"actualItemBorderColor","actualItemBorderWidth":"actualItemBorderWidth","actualItemCornerRadius":"actualItemCornerRadius","actualItemDisabledBackgroundColor":"actualItemDisabledBackgroundColor","actualItemDisabledBorderColor":"actualItemDisabledBorderColor","actualItemDisabledTextColor":"actualItemDisabledTextColor","actualItemHoverBackgroundColor":"actualItemHoverBackgroundColor","actualItemHoverTextColor":"actualItemHoverTextColor","actualItemTextColor":"actualItemTextColor","actualSelectedItemBackgroundColor":"actualSelectedItemBackgroundColor","actualSelectedItemHoverBackgroundColor":"actualSelectedItemHoverBackgroundColor","actualSelectedItemHoverTextColor":"actualSelectedItemHoverTextColor","actualSelectedItemTextColor":"actualSelectedItemTextColor","baseTheme":"baseTheme","children":"children","density":"density","disabled":"disabled","displayType":"displayType","flatItemBackgroundColor":"flatItemBackgroundColor","flatItemBorderColor":"flatItemBorderColor","flatItemBorderWidth":"flatItemBorderWidth","flatItemCornerRadius":"flatItemCornerRadius","flatItemDisabledBackgroundColor":"flatItemDisabledBackgroundColor","flatItemDisabledBorderColor":"flatItemDisabledBorderColor","flatItemDisabledTextColor":"flatItemDisabledTextColor","flatItemHoverBackgroundColor":"flatItemHoverBackgroundColor","flatItemHoverTextColor":"flatItemHoverTextColor","flatItemTextColor":"flatItemTextColor","flatSelectedItemBackgroundColor":"flatSelectedItemBackgroundColor","flatSelectedItemHoverBackgroundColor":"flatSelectedItemHoverBackgroundColor","flatSelectedItemHoverTextColor":"flatSelectedItemHoverTextColor","flatSelectedItemTextColor":"flatSelectedItemTextColor","id":"id","isMultiSelect":"isMultiSelect","itemBackgroundColor":"itemBackgroundColor","itemBorderColor":"itemBorderColor","itemBorderWidth":"itemBorderWidth","itemCornerRadius":"itemCornerRadius","itemDisabledBackgroundColor":"itemDisabledBackgroundColor","itemDisabledBorderColor":"itemDisabledBorderColor","itemDisabledTextColor":"itemDisabledTextColor","itemHoverBackgroundColor":"itemHoverBackgroundColor","itemHoverTextColor":"itemHoverTextColor","itemTextColor":"itemTextColor","orientation":"orientation","outlinedItemBackgroundColor":"outlinedItemBackgroundColor","outlinedItemBorderColor":"outlinedItemBorderColor","outlinedItemBorderWidth":"outlinedItemBorderWidth","outlinedItemCornerRadius":"outlinedItemCornerRadius","outlinedItemDisabledBackgroundColor":"outlinedItemDisabledBackgroundColor","outlinedItemDisabledBorderColor":"outlinedItemDisabledBorderColor","outlinedItemDisabledTextColor":"outlinedItemDisabledTextColor","outlinedItemHoverBackgroundColor":"outlinedItemHoverBackgroundColor","outlinedItemHoverTextColor":"outlinedItemHoverTextColor","outlinedItemTextColor":"outlinedItemTextColor","outlinedSelectedItemBackgroundColor":"outlinedSelectedItemBackgroundColor","outlinedSelectedItemHoverBackgroundColor":"outlinedSelectedItemHoverBackgroundColor","outlinedSelectedItemHoverTextColor":"outlinedSelectedItemHoverTextColor","outlinedSelectedItemTextColor":"outlinedSelectedItemTextColor","selectedIndices":"selectedIndices","selectedItemBackgroundColor":"selectedItemBackgroundColor","selectedItemHoverBackgroundColor":"selectedItemHoverBackgroundColor","selectedItemHoverTextColor":"selectedItemHoverTextColor","selectedItemTextColor":"selectedItemTextColor","selectionChanged":"selectionChanged"}}],"IIgrXButtonProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXButtonProps","k":"interface","s":"interfaces","m":{"actualAmbientShadowColor":"actualAmbientShadowColor","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualDisabledBackgroundColor":"actualDisabledBackgroundColor","actualDisabledBorderColor":"actualDisabledBorderColor","actualDisabledElevation":"actualDisabledElevation","actualDisabledTextColor":"actualDisabledTextColor","actualDisableRipple":"actualDisableRipple","actualElevationMode":"actualElevationMode","actualFocusBackgroundColor":"actualFocusBackgroundColor","actualFocusElevation":"actualFocusElevation","actualFocusTextColor":"actualFocusTextColor","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualHoverElevation":"actualHoverElevation","actualHoverTextColor":"actualHoverTextColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualRestingElevation":"actualRestingElevation","actualRippleColor":"actualRippleColor","actualTextColor":"actualTextColor","actualUmbraShadowColor":"actualUmbraShadowColor","alignItems":"alignItems","ariaLabel":"ariaLabel","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","children":"children","clicked":"clicked","clickTunneling":"clickTunneling","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","disabledBackgroundColor":"disabledBackgroundColor","disabledBorderColor":"disabledBorderColor","disabledElevation":"disabledElevation","disabledTextColor":"disabledTextColor","disableHover":"disableHover","disablePointer":"disablePointer","disableRipple":"disableRipple","disableTransitions":"disableTransitions","display":"display","displayType":"displayType","elevationMode":"elevationMode","fabBackgroundColor":"fabBackgroundColor","fabBorderColor":"fabBorderColor","fabBorderWidth":"fabBorderWidth","fabCornerRadiusBottomLeft":"fabCornerRadiusBottomLeft","fabCornerRadiusBottomRight":"fabCornerRadiusBottomRight","fabCornerRadiusTopLeft":"fabCornerRadiusTopLeft","fabCornerRadiusTopRight":"fabCornerRadiusTopRight","fabDisabledBackgroundColor":"fabDisabledBackgroundColor","fabDisabledBorderColor":"fabDisabledBorderColor","fabDisabledElevation":"fabDisabledElevation","fabDisabledTextColor":"fabDisabledTextColor","fabFocusBackgroundColor":"fabFocusBackgroundColor","fabFocusElevation":"fabFocusElevation","fabFocusTextColor":"fabFocusTextColor","fabHoverBackgroundColor":"fabHoverBackgroundColor","fabHoverElevation":"fabHoverElevation","fabHoverTextColor":"fabHoverTextColor","fabRestingElevation":"fabRestingElevation","fabRippleColor":"fabRippleColor","fabTextColor":"fabTextColor","fillAvailableSpace":"fillAvailableSpace","flatBackgroundColor":"flatBackgroundColor","flatBorderColor":"flatBorderColor","flatBorderWidth":"flatBorderWidth","flatCornerRadiusBottomLeft":"flatCornerRadiusBottomLeft","flatCornerRadiusBottomRight":"flatCornerRadiusBottomRight","flatCornerRadiusTopLeft":"flatCornerRadiusTopLeft","flatCornerRadiusTopRight":"flatCornerRadiusTopRight","flatDisabledBackgroundColor":"flatDisabledBackgroundColor","flatDisabledBorderColor":"flatDisabledBorderColor","flatDisabledElevation":"flatDisabledElevation","flatDisabledTextColor":"flatDisabledTextColor","flatFocusBackgroundColor":"flatFocusBackgroundColor","flatFocusElevation":"flatFocusElevation","flatFocusTextColor":"flatFocusTextColor","flatHoverBackgroundColor":"flatHoverBackgroundColor","flatHoverElevation":"flatHoverElevation","flatHoverTextColor":"flatHoverTextColor","flatRestingElevation":"flatRestingElevation","flatRippleColor":"flatRippleColor","flatTextColor":"flatTextColor","flexDirection":"flexDirection","flexGrow":"flexGrow","focusBackgroundColor":"focusBackgroundColor","focused":"focused","focusElevation":"focusElevation","focusTextColor":"focusTextColor","gotFocus":"gotFocus","horizontalContentAlignment":"horizontalContentAlignment","hoverBackgroundColor":"hoverBackgroundColor","hoverElevation":"hoverElevation","hoverTextColor":"hoverTextColor","iconBackgroundColor":"iconBackgroundColor","iconBorderColor":"iconBorderColor","iconBorderWidth":"iconBorderWidth","iconCornerRadiusBottomLeft":"iconCornerRadiusBottomLeft","iconCornerRadiusBottomRight":"iconCornerRadiusBottomRight","iconCornerRadiusTopLeft":"iconCornerRadiusTopLeft","iconCornerRadiusTopRight":"iconCornerRadiusTopRight","iconDisabledBackgroundColor":"iconDisabledBackgroundColor","iconDisabledBorderColor":"iconDisabledBorderColor","iconDisabledElevation":"iconDisabledElevation","iconDisabledTextColor":"iconDisabledTextColor","iconFocusBackgroundColor":"iconFocusBackgroundColor","iconFocusElevation":"iconFocusElevation","iconFocusTextColor":"iconFocusTextColor","iconHoverBackgroundColor":"iconHoverBackgroundColor","iconHoverElevation":"iconHoverElevation","iconHoverTextColor":"iconHoverTextColor","iconRestingElevation":"iconRestingElevation","iconRippleColor":"iconRippleColor","iconTextColor":"iconTextColor","id":"id","inputId":"inputId","isFocusStyleEnabled":"isFocusStyleEnabled","isHover":"isHover","lostFocus":"lostFocus","minHeight":"minHeight","minWidth":"minWidth","name":"name","outlinedBackgroundColor":"outlinedBackgroundColor","outlinedBorderColor":"outlinedBorderColor","outlinedBorderWidth":"outlinedBorderWidth","outlinedCornerRadiusBottomLeft":"outlinedCornerRadiusBottomLeft","outlinedCornerRadiusBottomRight":"outlinedCornerRadiusBottomRight","outlinedCornerRadiusTopLeft":"outlinedCornerRadiusTopLeft","outlinedCornerRadiusTopRight":"outlinedCornerRadiusTopRight","outlinedDisabledBackgroundColor":"outlinedDisabledBackgroundColor","outlinedDisabledBorderColor":"outlinedDisabledBorderColor","outlinedDisabledElevation":"outlinedDisabledElevation","outlinedDisabledTextColor":"outlinedDisabledTextColor","outlinedFocusBackgroundColor":"outlinedFocusBackgroundColor","outlinedFocusElevation":"outlinedFocusElevation","outlinedFocusTextColor":"outlinedFocusTextColor","outlinedHoverBackgroundColor":"outlinedHoverBackgroundColor","outlinedHoverElevation":"outlinedHoverElevation","outlinedHoverTextColor":"outlinedHoverTextColor","outlinedRestingElevation":"outlinedRestingElevation","outlinedRippleColor":"outlinedRippleColor","outlinedTextColor":"outlinedTextColor","raisedBackgroundColor":"raisedBackgroundColor","raisedBorderColor":"raisedBorderColor","raisedBorderWidth":"raisedBorderWidth","raisedCornerRadiusBottomLeft":"raisedCornerRadiusBottomLeft","raisedCornerRadiusBottomRight":"raisedCornerRadiusBottomRight","raisedCornerRadiusTopLeft":"raisedCornerRadiusTopLeft","raisedCornerRadiusTopRight":"raisedCornerRadiusTopRight","raisedDisabledBackgroundColor":"raisedDisabledBackgroundColor","raisedDisabledBorderColor":"raisedDisabledBorderColor","raisedDisabledElevation":"raisedDisabledElevation","raisedDisabledTextColor":"raisedDisabledTextColor","raisedFocusBackgroundColor":"raisedFocusBackgroundColor","raisedFocusElevation":"raisedFocusElevation","raisedFocusTextColor":"raisedFocusTextColor","raisedHoverBackgroundColor":"raisedHoverBackgroundColor","raisedHoverElevation":"raisedHoverElevation","raisedHoverTextColor":"raisedHoverTextColor","raisedRestingElevation":"raisedRestingElevation","raisedRippleColor":"raisedRippleColor","raisedTextColor":"raisedTextColor","restingElevation":"restingElevation","rippleColor":"rippleColor","stopPropagation":"stopPropagation","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","value":"value","verticalContentAlignment":"verticalContentAlignment"}}],"IIgrXCalendarProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXCalendarProps","k":"interface","s":"interfaces","m":{"backgroundColor":"backgroundColor","baseTheme":"baseTheme","children":"children","currentDateBorderColor":"currentDateBorderColor","currentDateTextColor":"currentDateTextColor","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","focusDateBackgroundColor":"focusDateBackgroundColor","focusDateTextColor":"focusDateTextColor","height":"height","hoverBackgroundColor":"hoverBackgroundColor","maxDate":"maxDate","minDate":"minDate","selectedDateBackgroundColor":"selectedDateBackgroundColor","selectedDateTextColor":"selectedDateTextColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","selectedValueChanged":"selectedValueChanged","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","value":"value","width":"width"}}],"IIgrXCheckboxProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXCheckboxProps","k":"interface","s":"interfaces","m":{"actualBorderWidth":"actualBorderWidth","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualCornerRadius":"actualCornerRadius","actualTickColor":"actualTickColor","actualTickStrokeWidth":"actualTickStrokeWidth","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","ariaLabel":"ariaLabel","ariaLabelledBy":"ariaLabelledBy","baseTheme":"baseTheme","borderWidth":"borderWidth","change":"change","checked":"checked","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","children":"children","cornerRadius":"cornerRadius","disabled":"disabled","disableRipple":"disableRipple","disableTransitions":"disableTransitions","focused":"focused","id":"id","indeterminate":"indeterminate","inputId":"inputId","labelId":"labelId","labelPosition":"labelPosition","name":"name","required":"required","tabIndex":"tabIndex","tickColor":"tickColor","tickStrokeWidth":"tickStrokeWidth","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","value":"value"}}],"IIgrXDatePickerProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXDatePickerProps","k":"interface","s":"interfaces","m":{"allowTextInput":"allowTextInput","baseTheme":"baseTheme","changing":"changing","children":"children","dateFormat":"dateFormat","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","formatString":"formatString","gotFocus":"gotFocus","height":"height","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","maxDate":"maxDate","minDate":"minDate","openAsChild":"openAsChild","openOnFocus":"openOnFocus","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","showClearButton":"showClearButton","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","useTopLayer":"useTopLayer","value":"value","width":"width"}}],"IIgrXIconProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXIconProps","k":"interface","s":"interfaces","m":{"actualFill":"actualFill","actualStroke":"actualStroke","actualStrokeWidth":"actualStrokeWidth","actualTextColor":"actualTextColor","actualViewBoxHeight":"actualViewBoxHeight","actualViewBoxLeft":"actualViewBoxLeft","actualViewBoxTop":"actualViewBoxTop","actualViewBoxWidth":"actualViewBoxWidth","ariaLabel":"ariaLabel","baseTheme":"baseTheme","children":"children","dataURL":"dataURL","disabled":"disabled","fill":"fill","fillColors":"fillColors","height":"height","hoverFill":"hoverFill","hoverStroke":"hoverStroke","hoverStrokeThickness":"hoverStrokeThickness","hoverTextColor":"hoverTextColor","id":"id","isHover":"isHover","opacity":"opacity","primaryFillColor":"primaryFillColor","primaryStrokeColor":"primaryStrokeColor","secondaryFillColor":"secondaryFillColor","secondaryStrokeColor":"secondaryStrokeColor","source":"source","stroke":"stroke","strokeColors":"strokeColors","strokeWidth":"strokeWidth","svg":"svg","svgPath":"svgPath","sVGPaths":"sVGPaths","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","viewBoxHeight":"viewBoxHeight","viewBoxLeft":"viewBoxLeft","viewBoxTop":"viewBoxTop","viewBoxWidth":"viewBoxWidth","width":"width"}}],"IIgrXInputGroupItemProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXInputGroupItemProps","k":"interface","s":"interfaces","m":{"children":"children","name":"name"}}],"IIgrXInputGroupProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXInputGroupProps","k":"interface","s":"interfaces","m":{"actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualIsExpanded":"actualIsExpanded","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderTypeBackgroundColor":"borderTypeBackgroundColor","borderTypeBorderColor":"borderTypeBorderColor","borderTypeBorderWidth":"borderTypeBorderWidth","borderTypeContentPaddingBottom":"borderTypeContentPaddingBottom","borderTypeContentPaddingLeft":"borderTypeContentPaddingLeft","borderTypeContentPaddingRight":"borderTypeContentPaddingRight","borderTypeContentPaddingTop":"borderTypeContentPaddingTop","borderTypeCornerRadiusBottomLeft":"borderTypeCornerRadiusBottomLeft","borderTypeCornerRadiusBottomRight":"borderTypeCornerRadiusBottomRight","borderTypeCornerRadiusTopLeft":"borderTypeCornerRadiusTopLeft","borderTypeCornerRadiusTopRight":"borderTypeCornerRadiusTopRight","borderTypeFocusBorderColor":"borderTypeFocusBorderColor","borderTypeFocusBorderWidth":"borderTypeFocusBorderWidth","borderTypeFocusUnderlineColor":"borderTypeFocusUnderlineColor","borderTypeFocusUnderlineOpacity":"borderTypeFocusUnderlineOpacity","borderTypeFocusUnderlineRippleOpacity":"borderTypeFocusUnderlineRippleOpacity","borderTypeHoverUnderlineColor":"borderTypeHoverUnderlineColor","borderTypeHoverUnderlineOpacity":"borderTypeHoverUnderlineOpacity","borderTypeHoverUnderlineWidth":"borderTypeHoverUnderlineWidth","borderTypeUnderlineColor":"borderTypeUnderlineColor","borderTypeUnderlineOpacity":"borderTypeUnderlineOpacity","borderTypeUnderlineRippleColor":"borderTypeUnderlineRippleColor","borderTypeUnderlineRippleOpacity":"borderTypeUnderlineRippleOpacity","borderTypeUnderlineRippleWidth":"borderTypeUnderlineRippleWidth","borderTypeUnderlineWidth":"borderTypeUnderlineWidth","borderWidth":"borderWidth","boxTypeBackgroundColor":"boxTypeBackgroundColor","boxTypeBorderColor":"boxTypeBorderColor","boxTypeBorderWidth":"boxTypeBorderWidth","boxTypeContentPaddingBottom":"boxTypeContentPaddingBottom","boxTypeContentPaddingLeft":"boxTypeContentPaddingLeft","boxTypeContentPaddingRight":"boxTypeContentPaddingRight","boxTypeContentPaddingTop":"boxTypeContentPaddingTop","boxTypeCornerRadiusBottomLeft":"boxTypeCornerRadiusBottomLeft","boxTypeCornerRadiusBottomRight":"boxTypeCornerRadiusBottomRight","boxTypeCornerRadiusTopLeft":"boxTypeCornerRadiusTopLeft","boxTypeCornerRadiusTopRight":"boxTypeCornerRadiusTopRight","boxTypeFocusBorderColor":"boxTypeFocusBorderColor","boxTypeFocusBorderWidth":"boxTypeFocusBorderWidth","boxTypeFocusUnderlineColor":"boxTypeFocusUnderlineColor","boxTypeFocusUnderlineOpacity":"boxTypeFocusUnderlineOpacity","boxTypeFocusUnderlineRippleOpacity":"boxTypeFocusUnderlineRippleOpacity","boxTypeHoverUnderlineColor":"boxTypeHoverUnderlineColor","boxTypeHoverUnderlineOpacity":"boxTypeHoverUnderlineOpacity","boxTypeHoverUnderlineWidth":"boxTypeHoverUnderlineWidth","boxTypeUnderlineColor":"boxTypeUnderlineColor","boxTypeUnderlineOpacity":"boxTypeUnderlineOpacity","boxTypeUnderlineRippleColor":"boxTypeUnderlineRippleColor","boxTypeUnderlineRippleOpacity":"boxTypeUnderlineRippleOpacity","boxTypeUnderlineRippleWidth":"boxTypeUnderlineRippleWidth","boxTypeUnderlineWidth":"boxTypeUnderlineWidth","children":"children","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","displayType":"displayType","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","id":"id","isExpanded":"isExpanded","isFocused":"isFocused","isHovered":"isHovered","lineTypeBackgroundColor":"lineTypeBackgroundColor","lineTypeBorderColor":"lineTypeBorderColor","lineTypeBorderWidth":"lineTypeBorderWidth","lineTypeContentPaddingBottom":"lineTypeContentPaddingBottom","lineTypeContentPaddingLeft":"lineTypeContentPaddingLeft","lineTypeContentPaddingRight":"lineTypeContentPaddingRight","lineTypeContentPaddingTop":"lineTypeContentPaddingTop","lineTypeCornerRadiusBottomLeft":"lineTypeCornerRadiusBottomLeft","lineTypeCornerRadiusBottomRight":"lineTypeCornerRadiusBottomRight","lineTypeCornerRadiusTopLeft":"lineTypeCornerRadiusTopLeft","lineTypeCornerRadiusTopRight":"lineTypeCornerRadiusTopRight","lineTypeFocusBorderColor":"lineTypeFocusBorderColor","lineTypeFocusBorderWidth":"lineTypeFocusBorderWidth","lineTypeFocusUnderlineColor":"lineTypeFocusUnderlineColor","lineTypeFocusUnderlineOpacity":"lineTypeFocusUnderlineOpacity","lineTypeFocusUnderlineRippleOpacity":"lineTypeFocusUnderlineRippleOpacity","lineTypeHoverUnderlineColor":"lineTypeHoverUnderlineColor","lineTypeHoverUnderlineOpacity":"lineTypeHoverUnderlineOpacity","lineTypeHoverUnderlineWidth":"lineTypeHoverUnderlineWidth","lineTypeUnderlineColor":"lineTypeUnderlineColor","lineTypeUnderlineOpacity":"lineTypeUnderlineOpacity","lineTypeUnderlineRippleColor":"lineTypeUnderlineRippleColor","lineTypeUnderlineRippleOpacity":"lineTypeUnderlineRippleOpacity","lineTypeUnderlineRippleWidth":"lineTypeUnderlineRippleWidth","lineTypeUnderlineWidth":"lineTypeUnderlineWidth","searchTypeBackgroundColor":"searchTypeBackgroundColor","searchTypeBorderColor":"searchTypeBorderColor","searchTypeBorderWidth":"searchTypeBorderWidth","searchTypeContentPaddingBottom":"searchTypeContentPaddingBottom","searchTypeContentPaddingLeft":"searchTypeContentPaddingLeft","searchTypeContentPaddingRight":"searchTypeContentPaddingRight","searchTypeContentPaddingTop":"searchTypeContentPaddingTop","searchTypeCornerRadiusBottomLeft":"searchTypeCornerRadiusBottomLeft","searchTypeCornerRadiusBottomRight":"searchTypeCornerRadiusBottomRight","searchTypeCornerRadiusTopLeft":"searchTypeCornerRadiusTopLeft","searchTypeCornerRadiusTopRight":"searchTypeCornerRadiusTopRight","searchTypeFocusBorderColor":"searchTypeFocusBorderColor","searchTypeFocusBorderWidth":"searchTypeFocusBorderWidth","searchTypeFocusUnderlineColor":"searchTypeFocusUnderlineColor","searchTypeFocusUnderlineOpacity":"searchTypeFocusUnderlineOpacity","searchTypeFocusUnderlineRippleOpacity":"searchTypeFocusUnderlineRippleOpacity","searchTypeHoverUnderlineColor":"searchTypeHoverUnderlineColor","searchTypeHoverUnderlineOpacity":"searchTypeHoverUnderlineOpacity","searchTypeHoverUnderlineWidth":"searchTypeHoverUnderlineWidth","searchTypeUnderlineColor":"searchTypeUnderlineColor","searchTypeUnderlineOpacity":"searchTypeUnderlineOpacity","searchTypeUnderlineRippleColor":"searchTypeUnderlineRippleColor","searchTypeUnderlineRippleOpacity":"searchTypeUnderlineRippleOpacity","searchTypeUnderlineRippleWidth":"searchTypeUnderlineRippleWidth","searchTypeUnderlineWidth":"searchTypeUnderlineWidth","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth"}}],"IIgrXInputProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXInputProps","k":"interface","s":"interfaces","m":{"actualDensity":"actualDensity","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","ariaLabel":"ariaLabel","baseTheme":"baseTheme","change":"change","changing":"changing","children":"children","compositionEnd":"compositionEnd","density":"density","disabled":"disabled","for":"for","hoverTextColor":"hoverTextColor","id":"id","includeLiterals":"includeLiterals","inputType":"inputType","isHover":"isHover","keyDown":"keyDown","keyPress":"keyPress","keyUp":"keyUp","mask":"mask","name":"name","placeholder":"placeholder","promptChar":"promptChar","readonly":"readonly","selectionEnd":"selectionEnd","selectionStart":"selectionStart","showSpinner":"showSpinner","tabIndex":"tabIndex","textAlignment":"textAlignment","textColor":"textColor","textStyle":"textStyle","value":"value"}}],"IIgrXLabelProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXLabelProps","k":"interface","s":"interfaces","m":{"actualDensity":"actualDensity","actualHighlightTextColor":"actualHighlightTextColor","actualHoverHighlightTextColor":"actualHoverHighlightTextColor","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","alignItems":"alignItems","alignSelf":"alignSelf","ariaLabel":"ariaLabel","baseTheme":"baseTheme","children":"children","density":"density","disabled":"disabled","display":"display","flexDirection":"flexDirection","flexGrow":"flexGrow","for":"for","highlightTextColor":"highlightTextColor","hoverHighlightTextColor":"hoverHighlightTextColor","hoverTextColor":"hoverTextColor","id":"id","isHover":"isHover","name":"name","tabIndex":"tabIndex","text":"text","textColor":"textColor","textStyle":"textStyle","value":"value"}}],"IIgrXPrefixProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXPrefixProps","k":"interface","s":"interfaces","m":{"ariaLabel":"ariaLabel","children":"children","disabled":"disabled","id":"id","isHover":"isHover","name":"name"}}],"IIgrXRippleProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXRippleProps","k":"interface","s":"interfaces","m":{"actualHoverColor":"actualHoverColor","actualRippleColor":"actualRippleColor","children":"children","eventSource":"eventSource","hoverColor":"hoverColor","isCentered":"isCentered","isDisabled":"isDisabled","isHoverEnabled":"isHoverEnabled","rippleColor":"rippleColor","rippleDuration":"rippleDuration"}}],"IIgrXSuffixProps":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/interfaces/IIgrXSuffixProps","k":"interface","s":"interfaces","m":{"ariaLabel":"ariaLabel","children":"children","disabled":"disabled","id":"id","isHover":"isHover","name":"name"}}],"ButtonGroupOrientation":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/ButtonGroupOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"DateFormats":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/DateFormats","k":"enum","s":"enums","m":{"DateLong":"DateLong","DateShort":"DateShort"}}],"FirstWeek":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/FirstWeek","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"InputGroupDisplayType":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/InputGroupDisplayType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line","Search":"Search"}}],"InputShiftType":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/InputShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"LabelShiftType":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/LabelShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"MultiSliderOrientation":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/MultiSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","TwoDimensional":"TwoDimensional","Vertical":"Vertical"}}],"MultiSliderThumbRangePosition":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/MultiSliderThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"PrefixShiftType":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/PrefixShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"SuffixShiftType":[{"p":"igniteui-react-inputs","u":"/api/react/igniteui-react-inputs/19.5.2/enums/SuffixShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"IgrComboEditor":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrComboEditor","k":"class","s":"classes","m":{"constructor":"constructor","actualBackgroundColor":"actualBackgroundColor","actualBaseTheme":"actualBaseTheme","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDataSource":"actualDataSource","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualLabelTextColor":"actualLabelTextColor","actualLabelVisible":"actualLabelVisible","actualNoMatchesFoundLabel":"actualNoMatchesFoundLabel","actualNoMatchesFoundLabelBackgroundColor":"actualNoMatchesFoundLabelBackgroundColor","actualNoMatchesFoundLabelTextColor":"actualNoMatchesFoundLabelTextColor","actualTextColor":"actualTextColor","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","actualValueField":"actualValueField","allowFilter":"allowFilter","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","change":"change","changing":"changing","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","dataSource":"dataSource","dataSourceDesiredProperties":"dataSourceDesiredProperties","density":"density","dropDownButtonVisible":"dropDownButtonVisible","fields":"fields","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","gotFocus":"gotFocus","height":"height","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","i":"i","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","noMatchesFoundLabel":"noMatchesFoundLabel","noMatchesFoundLabelBackgroundColor":"noMatchesFoundLabelBackgroundColor","noMatchesFoundLabelTextColor":"noMatchesFoundLabelTextColor","noMatchesFoundLabelTextStyle":"noMatchesFoundLabelTextStyle","openAsChild":"openAsChild","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","text":"text","textChange":"textChange","textColor":"textColor","textField":"textField","textStyle":"textStyle","textValueChanged":"textValueChanged","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","useTopLayer":"useTopLayer","value":"value","valueChange":"valueChange","valueField":"valueField","width":"width","closeUp":"closeUp","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","dropDown":"dropDown","enableDisableFiltering":"enableDisableFiltering","ensureActualContentPadding":"ensureActualContentPadding","ensureActualCornerRadius":"ensureActualCornerRadius","ensureContentPadding":"ensureContentPadding","ensureCornerRadius":"ensureCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","initializeContent":"initializeContent","render":"render","select":"select","selectGridRow":"selectGridRow","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle","verifyDisplayText":"verifyDisplayText"}}],"IgrComboEditorGotFocusEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrComboEditorGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrComboEditorLostFocusEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrComboEditorLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrComboEditorTextChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrComboEditorTextChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newText":"newText","oldText":"oldText"}}],"IgrComboEditorValueChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrComboEditorValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrLayoutPrimaryKeyValue":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrLayoutPrimaryKeyValue","k":"class","s":"classes","m":{"constructor":"constructor","key":"key","nativeElement":"nativeElement","value":"value","equals":"equals","findByName":"findByName"}}],"IgrLayoutSelectedItemsCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrLayoutSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrLayoutSelectedKeysCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrLayoutSelectedKeysCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrListPanel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanel","k":"class","s":"classes","m":{"constructor":"constructor","activationBorder":"activationBorder","activationBorderBottomWidth":"activationBorderBottomWidth","activationBorderLeftWidth":"activationBorderLeftWidth","activationBorderRightWidth":"activationBorderRightWidth","activationBorderTopWidth":"activationBorderTopWidth","activationMode":"activationMode","activeRow":"activeRow","activeRowChanged":"activeRowChanged","actualPrimaryKey":"actualPrimaryKey","actualPrimaryKeyChange":"actualPrimaryKeyChange","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","contentRefreshed":"contentRefreshed","hasUnevenSizes":"hasUnevenSizes","height":"height","i":"i","isActiveRowStyleEnabled":"isActiveRowStyleEnabled","isCustomRowHeightEnabled":"isCustomRowHeightEnabled","itemClicked":"itemClicked","itemHeightRequested":"itemHeightRequested","itemRebind":"itemRebind","itemRecycled":"itemRecycled","itemSpacing":"itemSpacing","itemWidthRequested":"itemWidthRequested","normalBackground":"normalBackground","notifyOnAllSelectionChanges":"notifyOnAllSelectionChanges","orientation":"orientation","primaryKey":"primaryKey","rowHeight":"rowHeight","rowUpdating":"rowUpdating","schemaIncludedProperties":"schemaIncludedProperties","scrollbarBackground":"scrollbarBackground","scrollbarStyle":"scrollbarStyle","selectedBackground":"selectedBackground","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedKeys":"selectedKeys","selectedKeysChanged":"selectedKeysChanged","selectionBehavior":"selectionBehavior","selectionChanged":"selectionChanged","selectionMode":"selectionMode","textColor":"textColor","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","createLocalDataSource":"createLocalDataSource","dataIndexOfItem":"dataIndexOfItem","dataIndexOfPrimaryKey":"dataIndexOfPrimaryKey","deselectAllRows":"deselectAllRows","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","getFirstVisibleIndex":"getFirstVisibleIndex","getItemKey":"getItemKey","getLastVisibleIndex":"getLastVisibleIndex","getRowKey":"getRowKey","initializeContent":"initializeContent","invalidateVisibleItems":"invalidateVisibleItems","moveViewportTo":"moveViewportTo","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","notifySizeChanged":"notifySizeChanged","onContentSizeChanged":"onContentSizeChanged","onScroll":"onScroll","onScrollStart":"onScrollStart","onScrollStop":"onScrollStop","render":"render","scrollTo":"scrollTo","scrollToLastRowByIndex":"scrollToLastRowByIndex","scrollToRowByIndex":"scrollToRowByIndex","selectAllRows":"selectAllRows","setScrollbarColor":"setScrollbarColor","setScrollbarStyle":"setScrollbarStyle","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrListPanelActiveRowChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelActiveRowChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newActiveRow":"newActiveRow","oldActiveRow":"oldActiveRow"}}],"IgrListPanelContentRebindEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelContentRebindEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","rowObject":"rowObject"}}],"IgrListPanelContentRecycledEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelContentRecycledEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","rowObject":"rowObject"}}],"IgrListPanelContentRefreshedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrListPanelItemEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelItemEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","isDoubleClick":"isDoubleClick","isLeftButton":"isLeftButton","itemInfo":"itemInfo","listPanel":"listPanel","nativeElement":"nativeElement"}}],"IgrListPanelItemModel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelItemModel","k":"class","s":"classes","m":{"constructor":"constructor","dataRow":"dataRow","isActivated":"isActivated","isActivationSupported":"isActivationSupported","isModelDirty":"isModelDirty","isSelected":"isSelected","left":"left","nativeElement":"nativeElement","rowHeight":"rowHeight","rowObject":"rowObject","top":"top","findByName":"findByName"}}],"IgrListPanelPrimaryKeyValue":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelPrimaryKeyValue","k":"class","s":"classes","m":{"constructor":"constructor","key":"key","nativeElement":"nativeElement","value":"value","equals":"equals","findByName":"findByName"}}],"IgrListPanelSelectedItemsChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","addedItems":"addedItems","currentItems":"currentItems","nativeElement":"nativeElement","removedItems":"removedItems"}}],"IgrListPanelSelectedItemsCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrListPanelSelectedKeysChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelSelectedKeysChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","addedKeys":"addedKeys","currentKeys":"currentKeys","nativeElement":"nativeElement","removedKeys":"removedKeys"}}],"IgrListPanelSelectedKeysCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelSelectedKeysCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrListPanelSelectionChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrListPanelTemplateHeightRequestedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelTemplateHeightRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dataItem":"dataItem","dataRow":"dataRow","height":"height","nativeElement":"nativeElement"}}],"IgrListPanelTemplateItemUpdatingEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelTemplateItemUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","availableWidth":"availableWidth","content":"content","model":"model","nativeElement":"nativeElement"}}],"IgrListPanelTemplateWidthRequestedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrListPanelTemplateWidthRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dataItem":"dataItem","dataRow":"dataRow","nativeElement":"nativeElement","width":"width"}}],"IgrOnCollapsedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrOnCollapsedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrOnExpandedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrOnExpandedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrPropertyEditorDataSource":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorDataSource","k":"class","s":"classes","m":{"constructor":"constructor","context":"context","descriptionType":"descriptionType","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrPropertyEditorDescriptionObject":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorDescriptionObject","k":"class","s":"classes","m":{"constructor":"constructor","descriptionType":"descriptionType","nativeElement":"nativeElement","properties":"properties","findByName":"findByName"}}],"IgrPropertyEditorDescriptionObjectCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorDescriptionObjectCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrPropertyEditorPanel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPanel","k":"class","s":"classes","m":{"constructor":"constructor","actualProperties":"actualProperties","contentProperties":"contentProperties","actualDataSource":"actualDataSource","actualDescriptionContext":"actualDescriptionContext","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","componentRenderer":"componentRenderer","descriptionContext":"descriptionContext","descriptionType":"descriptionType","height":"height","i":"i","isHorizontal":"isHorizontal","isIndirectModeEnabled":"isIndirectModeEnabled","isWrappingEnabled":"isWrappingEnabled","properties":"properties","rowHeight":"rowHeight","target":"target","textColor":"textColor","updateMode":"updateMode","width":"width","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","findByName":"findByName","initializeContent":"initializeContent","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","render":"render","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrPropertyEditorPropertyDescription":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPropertyDescription","k":"class","s":"classes","m":{"constructor":"constructor","buttonClicked":"buttonClicked","changed":"changed","coercedComplexValue":"coercedComplexValue","coercedComplexValues":"coercedComplexValues","coercedPrimitiveValue":"coercedPrimitiveValue","coercedValueType":"coercedValueType","coercingValue":"coercingValue","complexValue":"complexValue","complexValues":"complexValues","dropDownNames":"dropDownNames","dropDownValues":"dropDownValues","editorWidth":"editorWidth","elementDescriptionType":"elementDescriptionType","label":"label","labelWidth":"labelWidth","max":"max","min":"min","name":"name","nativeElement":"nativeElement","primitiveValue":"primitiveValue","properties":"properties","propertyDescriptionType":"propertyDescriptionType","propertyPath":"propertyPath","shouldOverrideDefaultEditor":"shouldOverrideDefaultEditor","step":"step","subtitle":"subtitle","targetPropertyUpdating":"targetPropertyUpdating","useCoercedValue":"useCoercedValue","valueType":"valueType","componentDidMount":"componentDidMount","findByName":"findByName","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrPropertyEditorPropertyDescriptionButtonClickEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPropertyDescriptionButtonClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrPropertyEditorPropertyDescriptionChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPropertyDescriptionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue"}}],"IgrPropertyEditorPropertyDescriptionCoercingValueEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPropertyDescriptionCoercingValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","complexValue":"complexValue","complexValues":"complexValues","nativeElement":"nativeElement","value":"value"}}],"IgrPropertyEditorPropertyDescriptionCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPropertyDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","propertyPath":"propertyPath","target":"target","value":"value"}}],"IgrToolAction":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolAction","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionButton":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionButton","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionButtonPair":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionButtonPair","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualLeftIconFill":"actualLeftIconFill","actualLeftIconStroke":"actualLeftIconStroke","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualRightIconFill":"actualRightIconFill","actualRightIconStroke":"actualRightIconStroke","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","isToggleDisabled":"isToggleDisabled","leftCommandArgument":"leftCommandArgument","leftIconCollectionName":"leftIconCollectionName","leftIconFill":"leftIconFill","leftIconFillColors":"leftIconFillColors","leftIconName":"leftIconName","leftIconStroke":"leftIconStroke","leftIconStrokeColors":"leftIconStrokeColors","leftIconStrokeWidth":"leftIconStrokeWidth","leftIconViewBoxHeight":"leftIconViewBoxHeight","leftIconViewBoxLeft":"leftIconViewBoxLeft","leftIconViewBoxTop":"leftIconViewBoxTop","leftIconViewBoxWidth":"leftIconViewBoxWidth","leftIsDisabled":"leftIsDisabled","leftIsSelected":"leftIsSelected","leftTitle":"leftTitle","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","rightCommandArgument":"rightCommandArgument","rightIconCollectionName":"rightIconCollectionName","rightIconFill":"rightIconFill","rightIconFillColors":"rightIconFillColors","rightIconName":"rightIconName","rightIconStroke":"rightIconStroke","rightIconStrokeColors":"rightIconStrokeColors","rightIconStrokeWidth":"rightIconStrokeWidth","rightIconViewBoxHeight":"rightIconViewBoxHeight","rightIconViewBoxLeft":"rightIconViewBoxLeft","rightIconViewBoxTop":"rightIconViewBoxTop","rightIconViewBoxWidth":"rightIconViewBoxWidth","rightIsDisabled":"rightIsDisabled","rightIsSelected":"rightIsSelected","rightTitle":"rightTitle","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionCheckbox":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionCheckbox","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionCheckboxList":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionCheckboxList","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","dataMemberPath":"dataMemberPath","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","indexType":"indexType","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","primaryKey":"primaryKey","selectedKeys":"selectedKeys","selectedMemberPath":"selectedMemberPath","showSelectAll":"showSelectAll","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrToolActionColorEditor":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionColorEditor","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionCombo":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionCombo","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","displayMemberPath":"displayMemberPath","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedValues":"selectedValues","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","valueMemberPath":"valueMemberPath","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionEventDetail":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionEventDetail","k":"class","s":"classes","m":{"constructor":"constructor","actionId":"actionId","actionType":"actionType","boolValue":"boolValue","dateTimeValue":"dateTimeValue","isModified":"isModified","nativeElement":"nativeElement","numberValue":"numberValue","stringValue":"stringValue","untypedValue":"untypedValue","findByName":"findByName"}}],"IgrToolActionEventDetailCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionEventDetailCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrToolActionFieldSelector":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionFieldSelector","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","aggregations":"aggregations","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","fieldType":"fieldType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","legendTarget":"legendTarget","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedAggregations":"selectedAggregations","singleSelection":"singleSelection","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","updateDataSource":"updateDataSource","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionFieldSelectorAggregation":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionFieldSelectorAggregation","k":"class","s":"classes","m":{"constructor":"constructor","label":"label","name":"name","nativeElement":"nativeElement","operand":"operand","findByName":"findByName"}}],"IgrToolActionFieldSelectorAggregationsCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionFieldSelectorAggregationsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrToolActionFieldSelectorSelectedAggregation":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionFieldSelectorSelectedAggregation","k":"class","s":"classes","m":{"constructor":"constructor","aggregationName":"aggregationName","aggregationOperand":"aggregationOperand","field":"field","nativeElement":"nativeElement","findByName":"findByName"}}],"IgrToolActionFieldSelectorSelectedAggregationsCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionFieldSelectorSelectedAggregationsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrToolActionGroupHeader":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionGroupHeader","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualBackIconColor":"actualBackIconColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","backIconColor":"backIconColor","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionIconButton":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionIconButton","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionIconMenu":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionIconMenu","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualArrowStroke":"actualArrowStroke","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","arrowStroke":"arrowStroke","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","showArrowIcon":"showArrowIcon","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionLabel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionLabel","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionNumberInput":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionNumberInput","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionPerformedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionPerformedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","detail":"detail","detailCollection":"detailCollection","isAggregate":"isAggregate","nativeElement":"nativeElement"}}],"IgrToolActionPopupOpeningEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionPopupOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","nativeElement":"nativeElement","sourceAction":"sourceAction"}}],"IgrToolActionRadio":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionRadio","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","channel":"channel","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isManual":"isManual","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionSeparator":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionSeparator","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isGroupHeaderSeparator":"isGroupHeaderSeparator","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","size":"size","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionSubPanel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionSubPanel","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","itemSpacing":"itemSpacing","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolActionTextInput":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolActionTextInput","k":"class","s":"classes","m":{"constructor":"constructor","accentColor":"accentColor","actionId":"actionId","actions":"actions","actualAccentColor":"actualAccentColor","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","nativeElement":"nativeElement","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","closeSubmenu":"closeSubmenu","componentDidMount":"componentDidMount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","render":"render","shouldComponentUpdate":"shouldComponentUpdate","_createFromInternal":"_createFromInternal"}}],"IgrToolbar":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolbar","k":"class","s":"classes","m":{"constructor":"constructor","combinedActions":"combinedActions","contentActions":"contentActions","accentColor":"accentColor","actions":"actions","actualActions":"actualActions","autoGeneratedActions":"autoGeneratedActions","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","i":"i","iconFill":"iconFill","iconStroke":"iconStroke","menuArrowStroke":"menuArrowStroke","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subMenuClosing":"subMenuClosing","subMenuOpening":"subMenuOpening","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","target":"target","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width","closeSubmenus":"closeSubmenus","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushRefresh":"flushRefresh","getBoolContextItem":"getBoolContextItem","getBrushCollectionContextItem":"getBrushCollectionContextItem","getBrushContextItem":"getBrushContextItem","getColorContextItem":"getColorContextItem","getDataContextItem":"getDataContextItem","getDataURLFromCache":"getDataURLFromCache","getDesiredSize":"getDesiredSize","getDoubleContextItem":"getDoubleContextItem","getExternalDataContextItem":"getExternalDataContextItem","getExternalDoubleContextItem":"getExternalDoubleContextItem","getExternalIntContextItem":"getExternalIntContextItem","getIconFromCache":"getIconFromCache","getIconSource":"getIconSource","getIntContextItem":"getIntContextItem","getMultiPathSVGFromCache":"getMultiPathSVGFromCache","getStringContextItem":"getStringContextItem","initializeContent":"initializeContent","isOpen":"isOpen","onCommandStateChanged":"onCommandStateChanged","registerIconFromDataURL":"registerIconFromDataURL","registerIconFromText":"registerIconFromText","registerIconSource":"registerIconSource","registerMultiPathSVG":"registerMultiPathSVG","render":"render","setBoolContextItem":"setBoolContextItem","setBrushCollectionContextItem":"setBrushCollectionContextItem","setBrushContextItem":"setBrushContextItem","setColorContextItem":"setColorContextItem","setDataContextItem":"setDataContextItem","setDoubleContextItem":"setDoubleContextItem","setExternalDataContextItem":"setExternalDataContextItem","setExternalDoubleContextItem":"setExternalDoubleContextItem","setExternalIntContextItem":"setExternalIntContextItem","setIntContextItem":"setIntContextItem","setStringContextItem":"setStringContextItem","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrToolbarSubMenuClosingEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolbarSubMenuClosingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrToolbarSubMenuOpeningEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolbarSubMenuOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrToolCommandEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolCommandEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","closeOnExecute":"closeOnExecute","command":"command","nativeElement":"nativeElement"}}],"IgrToolContextBinding":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolContextBinding","k":"class","s":"classes","m":{"constructor":"constructor","bindingMode":"bindingMode","contextKey":"contextKey","nativeElement":"nativeElement","propertyName":"propertyName","propertyUpdated":"propertyUpdated","findByName":"findByName"}}],"IgrToolContextBindingCollection":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolContextBindingCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrToolPanel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolPanel","k":"class","s":"classes","m":{"constructor":"constructor","actualActions":"actualActions","contentActions":"contentActions","accentColor":"accentColor","actions":"actions","actualAccentColor":"actualAccentColor","actualBackgroundColor":"actualBackgroundColor","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualDropdownDelay":"actualDropdownDelay","actualGroupHeaderBackgroundColor":"actualGroupHeaderBackgroundColor","actualGroupHeaderSeparatorBackgroundColor":"actualGroupHeaderSeparatorBackgroundColor","actualGroupHeaderSubtitleTextColor":"actualGroupHeaderSubtitleTextColor","actualGroupHeaderTextColor":"actualGroupHeaderTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualIconFill":"actualIconFill","actualIconStroke":"actualIconStroke","actualMenuArrowStroke":"actualMenuArrowStroke","actualRowHeight":"actualRowHeight","actualSeparatorBackgroundColor":"actualSeparatorBackgroundColor","actualSeparatorHorizontalPaddingBottom":"actualSeparatorHorizontalPaddingBottom","actualSeparatorHorizontalPaddingLeft":"actualSeparatorHorizontalPaddingLeft","actualSeparatorHorizontalPaddingRight":"actualSeparatorHorizontalPaddingRight","actualSeparatorHorizontalPaddingTop":"actualSeparatorHorizontalPaddingTop","actualSeparatorVerticalPaddingBottom":"actualSeparatorVerticalPaddingBottom","actualSeparatorVerticalPaddingLeft":"actualSeparatorVerticalPaddingLeft","actualSeparatorVerticalPaddingRight":"actualSeparatorVerticalPaddingRight","actualSeparatorVerticalPaddingTop":"actualSeparatorVerticalPaddingTop","actualSubmenuBackgroundColor":"actualSubmenuBackgroundColor","actualSubtitleTextColor":"actualSubtitleTextColor","actualTextColor":"actualTextColor","actualToolTipBackgroundColor":"actualToolTipBackgroundColor","actualToolTipCornerRadius":"actualToolTipCornerRadius","actualToolTipElevation":"actualToolTipElevation","actualToolTipTextColor":"actualToolTipTextColor","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","contentRefreshed":"contentRefreshed","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSeparatorBackgroundColor":"groupHeaderSeparatorBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","i":"i","iconFill":"iconFill","iconStroke":"iconStroke","isOpen":"isOpen","itemSpacing":"itemSpacing","menuArrowStroke":"menuArrowStroke","nestedActionMode":"nestedActionMode","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width","closeSubmenus":"closeSubmenus","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushRefresh":"flushRefresh","getBoolContextItem":"getBoolContextItem","getBrushCollectionContextItem":"getBrushCollectionContextItem","getBrushContextItem":"getBrushContextItem","getColorContextItem":"getColorContextItem","getDataContextItem":"getDataContextItem","getDesiredSize":"getDesiredSize","getDoubleContextItem":"getDoubleContextItem","getIntContextItem":"getIntContextItem","getStringContextItem":"getStringContextItem","initializeContent":"initializeContent","refresh":"refresh","render":"render","setBoolContextItem":"setBoolContextItem","setBrushCollectionContextItem":"setBrushCollectionContextItem","setBrushContextItem":"setBrushContextItem","setColorContextItem":"setColorContextItem","setDataContextItem":"setDataContextItem","setDoubleContextItem":"setDoubleContextItem","setIntContextItem":"setIntContextItem","setStringContextItem":"setStringContextItem","shouldComponentUpdate":"shouldComponentUpdate","updateStyle":"updateStyle"}}],"IgrToolPanelContentRefreshedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrToolPanelContextChangedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolPanelContextChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contextKey":"contextKey","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrToolPanelContextSwappedEventArgs":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrToolPanelContextSwappedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrXExpansionPanel":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/classes/IgrXExpansionPanel","k":"class","s":"classes","m":{"constructor":"constructor","actualAmbientShadowColor":"actualAmbientShadowColor","actualCaptionTextColor":"actualCaptionTextColor","actualDescriptionTextColor":"actualDescriptionTextColor","actualElevation":"actualElevation","actualHeaderBackgroundColor":"actualHeaderBackgroundColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","caption":"caption","captionCollapsedTextColor":"captionCollapsedTextColor","captionExpandedTextColor":"captionExpandedTextColor","captionTextColor":"captionTextColor","descriptionCollapsedTextColor":"descriptionCollapsedTextColor","descriptionExpandedTextColor":"descriptionExpandedTextColor","descriptionText":"descriptionText","descriptionTextColor":"descriptionTextColor","elevation":"elevation","expanded":"expanded","headerBackgroundColor":"headerBackgroundColor","headerCollapsedBackgroundColor":"headerCollapsedBackgroundColor","headerExpandedBackgroundColor":"headerExpandedBackgroundColor","height":"height","i":"i","onCollapsed":"onCollapsed","onExpanded":"onExpanded","width":"width","collapse":"collapse","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","destroy":"destroy","expand":"expand","findByName":"findByName","initializeContent":"initializeContent","render":"render","shouldComponentUpdate":"shouldComponentUpdate","toggle":"toggle","updateStyle":"updateStyle"}}],"IIgrComboEditorProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrComboEditorProps","k":"interface","s":"interfaces","m":{"actualBackgroundColor":"actualBackgroundColor","actualBaseTheme":"actualBaseTheme","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualLabelTextColor":"actualLabelTextColor","actualLabelVisible":"actualLabelVisible","actualNoMatchesFoundLabel":"actualNoMatchesFoundLabel","actualNoMatchesFoundLabelBackgroundColor":"actualNoMatchesFoundLabelBackgroundColor","actualNoMatchesFoundLabelTextColor":"actualNoMatchesFoundLabelTextColor","actualTextColor":"actualTextColor","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","actualValueField":"actualValueField","allowFilter":"allowFilter","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","change":"change","changing":"changing","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","dataSource":"dataSource","dataSourceDesiredProperties":"dataSourceDesiredProperties","density":"density","dropDownButtonVisible":"dropDownButtonVisible","fields":"fields","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","gotFocus":"gotFocus","height":"height","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","noMatchesFoundLabel":"noMatchesFoundLabel","noMatchesFoundLabelBackgroundColor":"noMatchesFoundLabelBackgroundColor","noMatchesFoundLabelTextColor":"noMatchesFoundLabelTextColor","noMatchesFoundLabelTextStyle":"noMatchesFoundLabelTextStyle","openAsChild":"openAsChild","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","text":"text","textColor":"textColor","textField":"textField","textStyle":"textStyle","textValueChanged":"textValueChanged","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","useTopLayer":"useTopLayer","value":"value","valueField":"valueField","width":"width"}}],"IIgrListPanelProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrListPanelProps","k":"interface","s":"interfaces","m":{"activationBorder":"activationBorder","activationBorderBottomWidth":"activationBorderBottomWidth","activationBorderLeftWidth":"activationBorderLeftWidth","activationBorderRightWidth":"activationBorderRightWidth","activationBorderTopWidth":"activationBorderTopWidth","activationMode":"activationMode","activeRow":"activeRow","activeRowChanged":"activeRowChanged","actualPrimaryKey":"actualPrimaryKey","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","children":"children","contentRefreshed":"contentRefreshed","dataSource":"dataSource","height":"height","isActiveRowStyleEnabled":"isActiveRowStyleEnabled","isCustomRowHeightEnabled":"isCustomRowHeightEnabled","itemClicked":"itemClicked","itemHeightRequested":"itemHeightRequested","itemRebind":"itemRebind","itemRecycled":"itemRecycled","itemSpacing":"itemSpacing","itemWidthRequested":"itemWidthRequested","normalBackground":"normalBackground","notifyOnAllSelectionChanges":"notifyOnAllSelectionChanges","orientation":"orientation","primaryKey":"primaryKey","rowHeight":"rowHeight","rowUpdating":"rowUpdating","schemaIncludedProperties":"schemaIncludedProperties","scrollbarBackground":"scrollbarBackground","scrollbarStyle":"scrollbarStyle","selectedBackground":"selectedBackground","selectedItemsChanged":"selectedItemsChanged","selectedKeysChanged":"selectedKeysChanged","selectionBehavior":"selectionBehavior","selectionChanged":"selectionChanged","selectionMode":"selectionMode","textColor":"textColor","width":"width"}}],"IIgrPropertyEditorPanelProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrPropertyEditorPanelProps","k":"interface","s":"interfaces","m":{"actualDataSource":"actualDataSource","actualDescriptionContext":"actualDescriptionContext","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","children":"children","componentRenderer":"componentRenderer","descriptionContext":"descriptionContext","descriptionType":"descriptionType","height":"height","isHorizontal":"isHorizontal","isIndirectModeEnabled":"isIndirectModeEnabled","isWrappingEnabled":"isWrappingEnabled","rowHeight":"rowHeight","target":"target","textColor":"textColor","updateMode":"updateMode","width":"width"}}],"IIgrPropertyEditorPropertyDescriptionProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrPropertyEditorPropertyDescriptionProps","k":"interface","s":"interfaces","m":{"buttonClicked":"buttonClicked","changed":"changed","children":"children","coercedComplexValue":"coercedComplexValue","coercedComplexValues":"coercedComplexValues","coercedPrimitiveValue":"coercedPrimitiveValue","coercedValueType":"coercedValueType","coercingValue":"coercingValue","complexValue":"complexValue","complexValues":"complexValues","dropDownNames":"dropDownNames","dropDownValues":"dropDownValues","editorWidth":"editorWidth","elementDescriptionType":"elementDescriptionType","label":"label","labelWidth":"labelWidth","max":"max","min":"min","name":"name","primitiveValue":"primitiveValue","properties":"properties","propertyDescriptionType":"propertyDescriptionType","propertyPath":"propertyPath","shouldOverrideDefaultEditor":"shouldOverrideDefaultEditor","step":"step","subtitle":"subtitle","targetPropertyUpdating":"targetPropertyUpdating","useCoercedValue":"useCoercedValue","valueType":"valueType"}}],"IIgrToolActionButtonPairProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionButtonPairProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualLeftIconFill":"actualLeftIconFill","actualLeftIconStroke":"actualLeftIconStroke","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualRightIconFill":"actualRightIconFill","actualRightIconStroke":"actualRightIconStroke","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isToggleDisabled":"isToggleDisabled","leftCommandArgument":"leftCommandArgument","leftIconCollectionName":"leftIconCollectionName","leftIconFill":"leftIconFill","leftIconFillColors":"leftIconFillColors","leftIconName":"leftIconName","leftIconStroke":"leftIconStroke","leftIconStrokeColors":"leftIconStrokeColors","leftIconStrokeWidth":"leftIconStrokeWidth","leftIconViewBoxHeight":"leftIconViewBoxHeight","leftIconViewBoxLeft":"leftIconViewBoxLeft","leftIconViewBoxTop":"leftIconViewBoxTop","leftIconViewBoxWidth":"leftIconViewBoxWidth","leftIsDisabled":"leftIsDisabled","leftIsSelected":"leftIsSelected","leftTitle":"leftTitle","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","rightCommandArgument":"rightCommandArgument","rightIconCollectionName":"rightIconCollectionName","rightIconFill":"rightIconFill","rightIconFillColors":"rightIconFillColors","rightIconName":"rightIconName","rightIconStroke":"rightIconStroke","rightIconStrokeColors":"rightIconStrokeColors","rightIconStrokeWidth":"rightIconStrokeWidth","rightIconViewBoxHeight":"rightIconViewBoxHeight","rightIconViewBoxLeft":"rightIconViewBoxLeft","rightIconViewBoxTop":"rightIconViewBoxTop","rightIconViewBoxWidth":"rightIconViewBoxWidth","rightIsDisabled":"rightIsDisabled","rightIsSelected":"rightIsSelected","rightTitle":"rightTitle","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionButtonProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionButtonProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionCheckboxListProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionCheckboxListProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","dataMemberPath":"dataMemberPath","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","indexType":"indexType","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","primaryKey":"primaryKey","selectedKeys":"selectedKeys","selectedMemberPath":"selectedMemberPath","showSelectAll":"showSelectAll","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width"}}],"IIgrToolActionCheckboxProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionCheckboxProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width"}}],"IIgrToolActionColorEditorProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionColorEditorProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width"}}],"IIgrToolActionComboProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionComboProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","displayMemberPath":"displayMemberPath","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedValues":"selectedValues","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","valueMemberPath":"valueMemberPath","visibility":"visibility","width":"width"}}],"IIgrToolActionFieldSelectorProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionFieldSelectorProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","aggregations":"aggregations","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","fieldType":"fieldType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","legendTarget":"legendTarget","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedAggregations":"selectedAggregations","singleSelection":"singleSelection","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","updateDataSource":"updateDataSource","visibility":"visibility","width":"width"}}],"IIgrToolActionGroupHeaderProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionGroupHeaderProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualBackIconColor":"actualBackIconColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","backIconColor":"backIconColor","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionIconButtonProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionIconButtonProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width"}}],"IIgrToolActionIconMenuProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionIconMenuProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualArrowStroke":"actualArrowStroke","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","arrowStroke":"arrowStroke","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","showArrowIcon":"showArrowIcon","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width"}}],"IIgrToolActionLabelProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionLabelProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionNumberInputProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionNumberInputProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width"}}],"IIgrToolActionProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionRadioProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionRadioProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","channel":"channel","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isManual":"isManual","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width"}}],"IIgrToolActionSeparatorProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionSeparatorProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isGroupHeaderSeparator":"isGroupHeaderSeparator","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","size":"size","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionSubPanelProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionSubPanelProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","itemSpacing":"itemSpacing","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width"}}],"IIgrToolActionTextInputProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolActionTextInputProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actualAccentColor":"actualAccentColor","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","children":"children","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width"}}],"IIgrToolbarProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolbarProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actions":"actions","actualActions":"actualActions","autoGeneratedActions":"autoGeneratedActions","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","children":"children","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","iconFill":"iconFill","iconStroke":"iconStroke","menuArrowStroke":"menuArrowStroke","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subMenuClosing":"subMenuClosing","subMenuOpening":"subMenuOpening","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","target":"target","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width"}}],"IIgrToolPanelProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrToolPanelProps","k":"interface","s":"interfaces","m":{"accentColor":"accentColor","actions":"actions","actualAccentColor":"actualAccentColor","actualBackgroundColor":"actualBackgroundColor","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualDropdownDelay":"actualDropdownDelay","actualGroupHeaderBackgroundColor":"actualGroupHeaderBackgroundColor","actualGroupHeaderSeparatorBackgroundColor":"actualGroupHeaderSeparatorBackgroundColor","actualGroupHeaderSubtitleTextColor":"actualGroupHeaderSubtitleTextColor","actualGroupHeaderTextColor":"actualGroupHeaderTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualIconFill":"actualIconFill","actualIconStroke":"actualIconStroke","actualMenuArrowStroke":"actualMenuArrowStroke","actualSeparatorBackgroundColor":"actualSeparatorBackgroundColor","actualSeparatorHorizontalPaddingBottom":"actualSeparatorHorizontalPaddingBottom","actualSeparatorHorizontalPaddingLeft":"actualSeparatorHorizontalPaddingLeft","actualSeparatorHorizontalPaddingRight":"actualSeparatorHorizontalPaddingRight","actualSeparatorHorizontalPaddingTop":"actualSeparatorHorizontalPaddingTop","actualSeparatorVerticalPaddingBottom":"actualSeparatorVerticalPaddingBottom","actualSeparatorVerticalPaddingLeft":"actualSeparatorVerticalPaddingLeft","actualSeparatorVerticalPaddingRight":"actualSeparatorVerticalPaddingRight","actualSeparatorVerticalPaddingTop":"actualSeparatorVerticalPaddingTop","actualSubmenuBackgroundColor":"actualSubmenuBackgroundColor","actualSubtitleTextColor":"actualSubtitleTextColor","actualTextColor":"actualTextColor","actualToolTipBackgroundColor":"actualToolTipBackgroundColor","actualToolTipCornerRadius":"actualToolTipCornerRadius","actualToolTipElevation":"actualToolTipElevation","actualToolTipTextColor":"actualToolTipTextColor","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","children":"children","contentRefreshed":"contentRefreshed","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSeparatorBackgroundColor":"groupHeaderSeparatorBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","iconFill":"iconFill","iconStroke":"iconStroke","itemSpacing":"itemSpacing","menuArrowStroke":"menuArrowStroke","nestedActionMode":"nestedActionMode","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width"}}],"IIgrXExpansionPanelProps":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/interfaces/IIgrXExpansionPanelProps","k":"interface","s":"interfaces","m":{"actualAmbientShadowColor":"actualAmbientShadowColor","actualCaptionTextColor":"actualCaptionTextColor","actualDescriptionTextColor":"actualDescriptionTextColor","actualElevation":"actualElevation","actualHeaderBackgroundColor":"actualHeaderBackgroundColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","caption":"caption","captionCollapsedTextColor":"captionCollapsedTextColor","captionExpandedTextColor":"captionExpandedTextColor","captionTextColor":"captionTextColor","children":"children","descriptionCollapsedTextColor":"descriptionCollapsedTextColor","descriptionExpandedTextColor":"descriptionExpandedTextColor","descriptionText":"descriptionText","descriptionTextColor":"descriptionTextColor","elevation":"elevation","expanded":"expanded","headerBackgroundColor":"headerBackgroundColor","headerCollapsedBackgroundColor":"headerCollapsedBackgroundColor","headerExpandedBackgroundColor":"headerExpandedBackgroundColor","height":"height","onCollapsed":"onCollapsed","onExpanded":"onExpanded","width":"width"}}],"ComboEditorCloneDataSourceFilterOperation":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ComboEditorCloneDataSourceFilterOperation","k":"enum","s":"enums","m":{"None":"None","TextToValue":"TextToValue","ValueToText":"ValueToText"}}],"ComboEditorSelectedItemChangeType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ComboEditorSelectedItemChangeType","k":"enum","s":"enums","m":{"Row":"Row","Text":"Text","Value":"Value"}}],"ListPanelActivationMode":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ListPanelActivationMode","k":"enum","s":"enums","m":{"Cell":"Cell","None":"None"}}],"ListPanelOrientation":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ListPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ListPanelSelectionBehavior":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ListPanelSelectionBehavior","k":"enum","s":"enums","m":{"ModifierBased":"ModifierBased","Toggle":"Toggle"}}],"ListPanelSelectionMode":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ListPanelSelectionMode","k":"enum","s":"enums","m":{"MultipleRow":"MultipleRow","None":"None","SingleRow":"SingleRow"}}],"NestedActionMode":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/NestedActionMode","k":"enum","s":"enums","m":{"Replace":"Replace"}}],"PropertyEditorPanelUpdateMode":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/PropertyEditorPanelUpdateMode","k":"enum","s":"enums","m":{"Auto":"Auto","ComponentRendererOverlay":"ComponentRendererOverlay","DataSeriesToDescriptionCustomizations":"DataSeriesToDescriptionCustomizations"}}],"PropertyEditorValueType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/PropertyEditorValueType","k":"enum","s":"enums","m":{"Array":"Array","boolean1":"boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Button":"Button","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","Date":"Date","DoubleCollection":"DoubleCollection","EnumValue":"EnumValue","EventRef":"EventRef","Header":"Header","MethodRef":"MethodRef","Number":"Number","Point":"Point","Rect":"Rect","Separator":"Separator","Size":"Size","Slider":"Slider","StringValue":"StringValue","SubType":"SubType","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unhandled":"Unhandled"}}],"ToolActionButtonDisplayType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolActionButtonDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionButtonGroupDisplayType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolActionButtonGroupDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined"}}],"ToolActionCheckboxListIndexType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolActionCheckboxListIndexType","k":"enum","s":"enums","m":{"DeSelected":"DeSelected","Selected":"Selected"}}],"ToolActionFieldSelectorEventType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolActionFieldSelectorEventType","k":"enum","s":"enums","m":{"AggregationChange":"AggregationChange","Change":"Change"}}],"ToolActionFieldSelectorType":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolActionFieldSelectorType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolbarOrientation":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolbarOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ToolPanelOrientation":[{"p":"igniteui-react-layouts","u":"/api/react/igniteui-react-layouts/19.5.2/enums/ToolPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"IgrArcGISOnlineMapImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrArcGISOnlineMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","defaultTokenTimeout":"defaultTokenTimeout","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isMapPublic":"isMapPublic","mapServerUri":"mapServerUri","nativeElement":"nativeElement","opacity":"opacity","password":"password","referer":"referer","refererUri":"refererUri","tokenGenerationEndPoint":"tokenGenerationEndPoint","userAgent":"userAgent","userName":"userName","userToken":"userToken","windowRect":"windowRect","acquireNewToken":"acquireNewToken","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrAzureMapsImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrAzureMapsImagery","k":"class","s":"classes","m":{"constructor":"constructor","apiKey":"apiKey","apiVersion":"apiVersion","cancellingImage":"cancellingImage","cultureName":"cultureName","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imageryStyle":"imageryStyle","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","localizedView":"localizedView","nativeElement":"nativeElement","opacity":"opacity","referer":"referer","timestamp":"timestamp","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrBingMapsMapImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrBingMapsMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","actualBingImageryRestUri":"actualBingImageryRestUri","actualSubDomains":"actualSubDomains","actualTilePath":"actualTilePath","apiKey":"apiKey","bingImageryRestUri":"bingImageryRestUri","cancellingImage":"cancellingImage","cultureName":"cultureName","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imageryStyle":"imageryStyle","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isDeferredLoad":"isDeferredLoad","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isInitialized":"isInitialized","nativeElement":"nativeElement","opacity":"opacity","referer":"referer","subDomains":"subDomains","tilePath":"tilePath","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","requestMapSettings":"requestMapSettings","_createFromInternal":"_createFromInternal"}}],"IgrCustomMapImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrCustomMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","getTileImageUri":"getTileImageUri","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","nativeElement":"nativeElement","opacity":"opacity","referer":"referer","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrGeographicContourLineSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicContourLineSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualFillScale":"actualFillScale","coercionMethods":"coercionMethods","fillScale":"fillScale","hasMarkers":"hasMarkers","isGeographic":"isGeographic","isLineContour":"isLineContour","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicHighDensityScatterSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicHighDensityScatterSeries","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","isGeographic":"isGeographic","isPixel":"isPixel","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","mouseOverEnabled":"mouseOverEnabled","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","useBruteForce":"useBruteForce","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicMap":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicMap","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualWindowScale":"actualWindowScale","actualWorldRect":"actualWorldRect","backgroundContent":"backgroundContent","backgroundTilingMode":"backgroundTilingMode","dataSource":"dataSource","height":"height","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isMap":"isMap","legend":"legend","resizeBehavior":"resizeBehavior","series":"series","suppressZoomResetOnWorldRectChange":"suppressZoomResetOnWorldRectChange","useWorldRectForZoomBounds":"useWorldRectForZoomBounds","width":"width","windowScale":"windowScale","worldRect":"worldRect","xAxis":"xAxis","yAxis":"yAxis","zoomable":"zoomable","zoomIsReady":"zoomIsReady","bindData":"bindData","clearTileCache":"clearTileCache","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","convertGeographicToZoom":"convertGeographicToZoom","deferredRefresh":"deferredRefresh","destroy":"destroy","exportVisualData":"exportVisualData","findByName":"findByName","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getCurrentActualWorldRect":"getCurrentActualWorldRect","getGeographicFromZoom":"getGeographicFromZoom","getGeographicPoint":"getGeographicPoint","getPixelPoint":"getPixelPoint","getWindowPoint":"getWindowPoint","getZoomFromGeographicPoints":"getZoomFromGeographicPoints","getZoomFromGeographicRect":"getZoomFromGeographicRect","getZoomRectFromGeoRect":"getZoomRectFromGeoRect","initializeContent":"initializeContent","render":"render","styleUpdated":"styleUpdated","updateWorldRect":"updateWorldRect","updateZoomWindow":"updateZoomWindow","zoomToGeographic":"zoomToGeographic"}}],"IgrGeographicMapImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","nativeElement":"nativeElement","opacity":"opacity","referer":"referer","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrGeographicMapSeriesHost":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicMapSeriesHost","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicMarkerSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicMarkerSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicMarkerSeriesBase":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicMarkerSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicPolylineSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicPolylineSeries","k":"class","s":"classes","m":{"constructor":"constructor","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isPolyline":"isPolyline","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale","ensureShapeStyle":"ensureShapeStyle","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicProportionalSymbolSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicProportionalSymbolSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicProportionalSymbolSeriesBase":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicProportionalSymbolSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicScatterAreaSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicScatterAreaSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualColorScale":"actualColorScale","coercionMethods":"coercionMethods","colorMemberPath":"colorMemberPath","colorScale":"colorScale","hasMarkers":"hasMarkers","isArea":"isArea","isGeographic":"isGeographic","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","updateActualColorScale":"updateActualColorScale"}}],"IgrGeographicShapeSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicShapeSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isPolygon":"isPolygon","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale","ensureShapeStyle":"ensureShapeStyle","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicShapeSeriesBase":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicShapeSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","visibleFromScale":"visibleFromScale","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicShapeSeriesBaseBase":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicShapeSeriesBaseBase","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicSymbolSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicSymbolSeries","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicSymbolSeriesBase":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicSymbolSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicTileSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicTileSeries","k":"class","s":"classes","m":{"constructor":"constructor","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","imageTilesReady":"imageTilesReady","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isTile":"isTile","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","tileImagery":"tileImagery","visibleFromScale":"visibleFromScale","clearTileCache":"clearTileCache","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicXYTriangulatingSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicXYTriangulatingSeries","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrGeographicXYTriangulatingSeriesBase":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrGeographicXYTriangulatingSeriesBase","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgrImagesChangedEventArgs":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrImagesChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrImageTilesReadyEventArgs":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrImageTilesReadyEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"IgrOpenStreetMapImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrOpenStreetMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","nativeElement":"nativeElement","opacity":"opacity","referer":"referer","tilePath":"tilePath","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrSubDomainsCollection":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrSubDomainsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgrTileGeneratorMapImagery":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrTileGeneratorMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","nativeElement":"nativeElement","opacity":"opacity","referer":"referer","tileGenerator":"tileGenerator","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgrTileSeries":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/classes/IgrTileSeries","k":"class","s":"classes","m":{"constructor":"constructor","isTile":"isTile","tileImagery":"tileImagery","deferredRefresh":"deferredRefresh","findByName":"findByName"}}],"IIgrGeographicContourLineSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicContourLineSeriesProps","k":"interface","s":"interfaces","m":{"actualFillScale":"actualFillScale","coercionMethods":"coercionMethods","fillScale":"fillScale","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicHighDensityScatterSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicHighDensityScatterSeriesProps","k":"interface","s":"interfaces","m":{"coercionMethods":"coercionMethods","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","mouseOverEnabled":"mouseOverEnabled","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","useBruteForce":"useBruteForce","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicMapProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicMapProps","k":"interface","s":"interfaces","m":{"actualWindowScale":"actualWindowScale","actualWorldRect":"actualWorldRect","backgroundContent":"backgroundContent","backgroundTilingMode":"backgroundTilingMode","dataSource":"dataSource","height":"height","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","legend":"legend","resizeBehavior":"resizeBehavior","suppressZoomResetOnWorldRectChange":"suppressZoomResetOnWorldRectChange","useWorldRectForZoomBounds":"useWorldRectForZoomBounds","width":"width","windowScale":"windowScale","worldRect":"worldRect","xAxis":"xAxis","yAxis":"yAxis","zoomable":"zoomable"}}],"IIgrGeographicMapSeriesHostProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicMapSeriesHostProps","k":"interface","s":"interfaces","m":{"coercionMethods":"coercionMethods","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicMarkerSeriesBaseProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicMarkerSeriesBaseProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicMarkerSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicMarkerSeriesProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicPolylineSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicPolylineSeriesProps","k":"interface","s":"interfaces","m":{"assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicProportionalSymbolSeriesBaseProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicProportionalSymbolSeriesBaseProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicProportionalSymbolSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicProportionalSymbolSeriesProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicScatterAreaSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicScatterAreaSeriesProps","k":"interface","s":"interfaces","m":{"actualColorScale":"actualColorScale","coercionMethods":"coercionMethods","colorMemberPath":"colorMemberPath","colorScale":"colorScale","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicShapeSeriesBaseBaseProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicShapeSeriesBaseBaseProps","k":"interface","s":"interfaces","m":{"coercionMethods":"coercionMethods","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicShapeSeriesBaseProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicShapeSeriesBaseProps","k":"interface","s":"interfaces","m":{"assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicShapeSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicShapeSeriesProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicSymbolSeriesBaseProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicSymbolSeriesBaseProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicSymbolSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicSymbolSeriesProps","k":"interface","s":"interfaces","m":{"actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicTileSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicTileSeriesProps","k":"interface","s":"interfaces","m":{"assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","imageTilesReady":"imageTilesReady","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","tileImagery":"tileImagery","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicXYTriangulatingSeriesBaseProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicXYTriangulatingSeriesBaseProps","k":"interface","s":"interfaces","m":{"coercionMethods":"coercionMethods","visibleFromScale":"visibleFromScale"}}],"IIgrGeographicXYTriangulatingSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrGeographicXYTriangulatingSeriesProps","k":"interface","s":"interfaces","m":{"coercionMethods":"coercionMethods","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","visibleFromScale":"visibleFromScale"}}],"IIgrTileSeriesProps":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/interfaces/IIgrTileSeriesProps","k":"interface","s":"interfaces","m":{"tileImagery":"tileImagery"}}],"AzureMapsImageryStyle":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/enums/AzureMapsImageryStyle","k":"enum","s":"enums","m":{"DarkGrey":"DarkGrey","HybridDarkGreyOverlay":"HybridDarkGreyOverlay","HybridRoadOverlay":"HybridRoadOverlay","LabelsDarkGreyOverlay":"LabelsDarkGreyOverlay","LabelsRoadOverlay":"LabelsRoadOverlay","Road":"Road","Satellite":"Satellite","TerraOverlay":"TerraOverlay","TrafficAbsoluteOverlay":"TrafficAbsoluteOverlay","TrafficDelayOverlay":"TrafficDelayOverlay","TrafficReducedOverlay":"TrafficReducedOverlay","TrafficRelativeDarkOverlay":"TrafficRelativeDarkOverlay","TrafficRelativeOverlay":"TrafficRelativeOverlay","WeatherInfraredOverlay":"WeatherInfraredOverlay","WeatherRadarOverlay":"WeatherRadarOverlay"}}],"BingMapsImageryStyle":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/enums/BingMapsImageryStyle","k":"enum","s":"enums","m":{"Aerial":"Aerial","AerialWithLabels":"AerialWithLabels","CanvasDark":"CanvasDark","CanvasGray":"CanvasGray","CanvasLight":"CanvasLight","Road":"Road"}}],"MapBackgroundTilingMode":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/enums/MapBackgroundTilingMode","k":"enum","s":"enums","m":{"Auto":"Auto","NonWrapped":"NonWrapped","Wrapped":"Wrapped"}}],"MapResizeBehavior":[{"p":"igniteui-react-maps","u":"/api/react/igniteui-react-maps/19.5.2/enums/MapResizeBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","MaintainCenterPosition":"MaintainCenterPosition","MaintainTopLeftPosition":"MaintainTopLeftPosition"}}],"SpreadsheetChartAdapter":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetChartAdapterLocaleBg":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleCs":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleDa":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleDe":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleEn":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleEs":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleFr":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleHu":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleIt":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleJa":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleNb":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleNl":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocalePl":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocalePt":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleRo":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleRu":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleSv":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleTr":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleZhHans":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleZhHant":[{"p":"igniteui-react-spreadsheet-chart-adapter","u":"/api/react/igniteui-react-spreadsheet-chart-adapter/19.5.2/classes/SpreadsheetChartAdapterLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"ComboBoxListItem":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/ComboBoxListItem","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","dataValue":"dataValue","displayText":"displayText","tag":"tag","toString":"toString"}}],"EnumWrapper$1":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/EnumWrapper-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","enumValue":"enumValue","enumValueNameLocalized":"enumValueNameLocalized","toString":"toString"}}],"IgrSpreadsheet":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheet","k":"class","s":"classes","m":{"constructor":"constructor","ActionExecuted":"ActionExecuted","ActionExecuting":"ActionExecuting","activeCell":"activeCell","activeCellChanged":"activeCellChanged","activePane":"activePane","activePaneChanged":"activePaneChanged","activeSelection":"activeSelection","activeSelectionCellRangeFormat":"activeSelectionCellRangeFormat","activeTable":"activeTable","activeTableChanged":"activeTableChanged","activeWorksheet":"activeWorksheet","activeWorksheetChanged":"activeWorksheetChanged","allowAddWorksheet":"allowAddWorksheet","allowAsyncCalculations":"allowAsyncCalculations","allowDeleteWorksheet":"allowDeleteWorksheet","areGridlinesVisible":"areGridlinesVisible","areHeadersVisible":"areHeadersVisible","cellEditMode":"cellEditMode","chartAdapter":"chartAdapter","contextMenuOpening":"contextMenuOpening","editModeEntered":"editModeEntered","editModeEntering":"editModeEntering","editModeExited":"editModeExited","editModeExiting":"editModeExiting","editModeValidationError":"editModeValidationError","editRangePasswordNeeded":"editRangePasswordNeeded","enterKeyNavigationDirection":"enterKeyNavigationDirection","fixedDecimalPlaceCount":"fixedDecimalPlaceCount","height":"height","hyperlinkExecuting":"hyperlinkExecuting","isEnterKeyNavigationEnabled":"isEnterKeyNavigationEnabled","isFixedDecimalEnabled":"isFixedDecimalEnabled","isFormulaBarVisible":"isFormulaBarVisible","isInEditMode":"isInEditMode","isInEndMode":"isInEndMode","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isRenamingWorksheet":"isRenamingWorksheet","isScrollLocked":"isScrollLocked","isUndoEnabled":"isUndoEnabled","nameBoxWidth":"nameBoxWidth","nativeElement":"nativeElement","panes":"panes","selectedWorksheets":"selectedWorksheets","selectionChanged":"selectionChanged","selectionMode":"selectionMode","undoManager":"undoManager","userPromptDisplaying":"userPromptDisplaying","validationInputMessagePosition":"validationInputMessagePosition","width":"width","workbook":"workbook","workbookDirtied":"workbookDirtied","zoomLevel":"zoomLevel","componentDidMount":"componentDidMount","componentWillUnmount":"componentWillUnmount","containerResized":"containerResized","destroy":"destroy","executeAction":"executeAction","exportVisualData":"exportVisualData","findByName":"findByName","flush":"flush","initializeContent":"initializeContent","render":"render","shouldComponentUpdate":"shouldComponentUpdate","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgrSpreadsheetActionExecutedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetActionExecutedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","command":"command","commandParameter":"commandParameter","nativeElement":"nativeElement"}}],"IgrSpreadsheetActionExecutingEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetActionExecutingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","command":"command","commandParameter":"commandParameter"}}],"IgrSpreadsheetActiveCellChangedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetActiveCellChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrSpreadsheetActivePaneChangedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetActivePaneChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrSpreadsheetActiveTableChangedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetActiveTableChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrSpreadsheetActiveWorksheetChangedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetActiveWorksheetChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","newValue":"newValue","oldValue":"oldValue"}}],"IgrSpreadsheetContextMenuOpeningEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetContextMenuOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","menuArea":"menuArea"}}],"IgrSpreadsheetEditModeEnteredEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetEditModeEnteredEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell","nativeElement":"nativeElement"}}],"IgrSpreadsheetEditModeEnteringEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetEditModeEnteringEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgrSpreadsheetEditModeExitedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetEditModeExitedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell","nativeElement":"nativeElement"}}],"IgrSpreadsheetEditModeExitingEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetEditModeExitingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","acceptChanges":"acceptChanges","canCancel":"canCancel","cell":"cell","editText":"editText"}}],"IgrSpreadsheetEditModeValidationErrorEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetEditModeValidationErrorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","action":"action","canStayInEditMode":"canStayInEditMode","cell":"cell","nativeElement":"nativeElement","validationRule":"validationRule"}}],"IgrSpreadsheetEditRangePasswordNeededEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetEditRangePasswordNeededEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ranges":"ranges","unprotect":"unprotect"}}],"IgrSpreadsheetHyperlinkExecutingEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetHyperlinkExecutingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","hyperlink":"hyperlink","workingDirectory":"workingDirectory"}}],"IgrSpreadsheetSelectionChangedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement","pane":"pane"}}],"IgrSpreadsheetUserPromptDisplayingEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetUserPromptDisplayingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","canCancel":"canCancel","cancel":"cancel","caption":"caption","displayMessage":"displayMessage","exception":"exception","message":"message","nativeElement":"nativeElement","trigger":"trigger"}}],"IgrSpreadsheetWorkbookDirtiedEventArgs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/IgrSpreadsheetWorkbookDirtiedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","nativeElement":"nativeElement"}}],"PaletteEntry":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/PaletteEntry","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","colorInfo":"colorInfo"}}],"SpreadsheetCell":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetCell","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","column":"column","row":"row","equals":"equals","equals1":"equals1","getHashCode":"getHashCode","toString":"toString","staticInit":"staticInit"}}],"SpreadsheetCellAreaVisualData":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetCellAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","columns":"columns","relativeBounds":"relativeBounds","rows":"rows","shapes":"shapes","serialize":"serialize"}}],"SpreadsheetCellAreaVisualDataList":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetCellAreaVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetCellRange":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetCellRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","empty":"empty","firstColumn":"firstColumn","firstRow":"firstRow","isEmpty":"isEmpty","isSingleCell":"isSingleCell","lastColumn":"lastColumn","lastRow":"lastRow","contains":"contains","equals":"equals","equals1":"equals1","getHashCode":"getHashCode","intersect":"intersect","intersectsWith":"intersectsWith","toString":"toString","union":"union","staticInit":"staticInit"}}],"SpreadsheetCellRangeFormat":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetCellRangeFormat","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","alignment":"alignment","fill":"fill","font":"font","formatString":"formatString","hidden":"hidden","indent":"indent","locked":"locked","rotation":"rotation","shrinkToFit":"shrinkToFit","style":"style","verticalAlignment":"verticalAlignment","wrapText":"wrapText","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","setBorders":"setBorders"}}],"SpreadsheetChartAdapterBase":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetChartAdapterBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetColumnScrollRegion":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetColumnScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetCss":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetCss","k":"class","s":"classes","m":{"constructor":"constructor","activateNextHiddenTabButton":"activateNextHiddenTabButton","activatePreviousHiddenTabButton":"activatePreviousHiddenTabButton","addNewWorksheetButton":"addNewWorksheetButton","automaticGridline":"automaticGridline","cellSelection":"cellSelection","cellSelectionHandle":"cellSelectionHandle","columnHeader":"columnHeader","columnHeaderArea":"columnHeaderArea","columnHeaderHover":"columnHeaderHover","columnHeaderSelected":"columnHeaderSelected","columnHeaderSelectedCells":"columnHeaderSelectedCells","columnSplitter":"columnSplitter","columnSplitterPreview":"columnSplitterPreview","dropDownButton":"dropDownButton","dropDownButtonOpen":"dropDownButtonOpen","filterDialog":"filterDialog","filterDialogButtons":"filterDialogButtons","filterDialogColumnName":"filterDialogColumnName","filterDialogCondition1":"filterDialogCondition1","filterDialogCondition2":"filterDialogCondition2","filterDialogConditionalOperator":"filterDialogConditionalOperator","filterDialogHintText":"filterDialogHintText","filterDialogShowRowsWhere":"filterDialogShowRowsWhere","formatCellsDialog":"formatCellsDialog","formatCellsDialogButtons":"formatCellsDialogButtons","formatCellsDialogColorPickerDropdownButton":"formatCellsDialogColorPickerDropdownButton","formatCellsDialogNumericSpinner":"formatCellsDialogNumericSpinner","formatCellsDialogTab":"formatCellsDialogTab","formatCellsDialogTable":"formatCellsDialogTable","formatCellsDialogTabs":"formatCellsDialogTabs","formulaBar":"formulaBar","formulaBarButtonContainer":"formulaBarButtonContainer","formulaBarCancelButton":"formulaBarCancelButton","formulaBarEnterButton":"formulaBarEnterButton","formulaBarExpandButton":"formulaBarExpandButton","formulaBarExpandButtonOpen":"formulaBarExpandButtonOpen","formulaBarTextAreaContainer":"formulaBarTextAreaContainer","formulaBarTextAreaSplitter":"formulaBarTextAreaSplitter","headerResizeLine":"headerResizeLine","inputMessage":"inputMessage","inputMessageContent":"inputMessageContent","inputMessageTitle":"inputMessageTitle","invalidData":"invalidData","nameBoxContainer":"nameBoxContainer","nameBoxSplitter":"nameBoxSplitter","paneArea":"paneArea","rowHeader":"rowHeader","rowHeaderArea":"rowHeaderArea","rowHeaderHover":"rowHeaderHover","rowHeaderSelected":"rowHeaderSelected","rowHeaderSelectedCells":"rowHeaderSelectedCells","rowSplitter":"rowSplitter","rowSplitterPreview":"rowSplitterPreview","scrollBarArrowDown":"scrollBarArrowDown","scrollBarArrowLeft":"scrollBarArrowLeft","scrollBarArrowRight":"scrollBarArrowRight","scrollBarArrowUp":"scrollBarArrowUp","scrollBarHorizontal":"scrollBarHorizontal","scrollBarThumbHorizontal":"scrollBarThumbHorizontal","scrollBarThumbVertical":"scrollBarThumbVertical","scrollBarTrackDown":"scrollBarTrackDown","scrollBarTrackLeft":"scrollBarTrackLeft","scrollBarTrackRight":"scrollBarTrackRight","scrollBarTrackUp":"scrollBarTrackUp","scrollBarVertical":"scrollBarVertical","scrollFirstTabButton":"scrollFirstTabButton","scrollLastTabButton":"scrollLastTabButton","scrollNextTabButton":"scrollNextTabButton","scrollPreviousTabButton":"scrollPreviousTabButton","selectAll":"selectAll","sortDialog":"sortDialog","sortDialogAddLevelButton":"sortDialogAddLevelButton","sortDialogCopyLevelButton":"sortDialogCopyLevelButton","sortDialogDeleteLevelButton":"sortDialogDeleteLevelButton","sortDialogMoveDownButton":"sortDialogMoveDownButton","sortDialogMoveUpButton":"sortDialogMoveUpButton","sortDialogMyDataHasHeaderCheckBox":"sortDialogMyDataHasHeaderCheckBox","sortDialogOkCancelButtonsArea":"sortDialogOkCancelButtonsArea","sortDialogOptionsButton":"sortDialogOptionsButton","sortDialogSortConditionActiveRow":"sortDialogSortConditionActiveRow","sortDialogSortConditionRow":"sortDialogSortConditionRow","sortDialogSortConditionsGridArea":"sortDialogSortConditionsGridArea","sortDialogSortConditionsGridHeader":"sortDialogSortConditionsGridHeader","sortDialogTopButtonsArea":"sortDialogTopButtonsArea","sortOptionsDialogCaseSensitiveCheckboxArea":"sortOptionsDialogCaseSensitiveCheckboxArea","sortOptionsDialogOkCancelButtonsArea":"sortOptionsDialogOkCancelButtonsArea","sortOptionsDialogOrientationArea":"sortOptionsDialogOrientationArea","splitterIntersection":"splitterIntersection","spreadsheet":"spreadsheet","tabAreaBackground":"tabAreaBackground","tabAreaBorder":"tabAreaBorder","tabAreaSplitter":"tabAreaSplitter","tabDropIndicator":"tabDropIndicator","tabItem":"tabItem","tabItemActive":"tabItemActive","tabItemArea":"tabItemArea","tabItemContent":"tabItemContent","tabItemDark":"tabItemDark","tabItemLight":"tabItemLight","tabItemProtected":"tabItemProtected","tabItemSelected":"tabItemSelected","tooltip":"tooltip","tooltipBody":"tooltipBody","tooltipTitle":"tooltipTitle","topOrBottomDialog":"topOrBottomDialog","topOrBottomDialogButtons":"topOrBottomDialogButtons","topOrBottomDialogInputArea":"topOrBottomDialogInputArea","topOrBottomDialogShow":"topOrBottomDialogShow"}}],"SpreadsheetHeaderAreaVisualData":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetHeaderAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","items":"items","relativeBounds":"relativeBounds","shapes":"shapes","serialize":"serialize"}}],"SpreadsheetHeaderAreaVisualDataList":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetHeaderAreaVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetLocaleBg":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_Text_SelectedColor":"SpreadsheetFontControl_Text_SelectedColor","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleCs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleDa":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleDe":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleEn":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleEs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleFr":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleHu":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleIt":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleJa":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_IntersectsMergedCells_Message1":"PasteError_IntersectsMergedCells_Message1","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Bold_Description":"Undo_Bold_Description","Undo_Bold_Title":"Undo_Bold_Title","Undo_Borders":"Undo_Borders","Undo_Borders_Description":"Undo_Borders_Description","Undo_Borders_Title":"Undo_Borders_Title","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_BottomAlignment_Description":"Undo_BottomAlignment_Description","Undo_BottomAlignment_Title":"Undo_BottomAlignment_Title","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_CenterAlignment_Description":"Undo_CenterAlignment_Description","Undo_CenterAlignment_Title":"Undo_CenterAlignment_Title","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellContents_Description":"Undo_ClearCellContents_Description","Undo_ClearCellContents_Title":"Undo_ClearCellContents_Title","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateNamedReference_Title":"Undo_CreateNamedReference_Title","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_Delete_Description":"Undo_Delete_Description","Undo_Delete_Title":"Undo_Delete_Title","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_EditCell_Description":"Undo_EditCell_Description","Undo_EditCell_Title":"Undo_EditCell_Title","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_Font_Description":"Undo_Font_Description","Undo_Font_Title":"Undo_Font_Title","Undo_FontSize":"Undo_FontSize","Undo_FontSize_Description":"Undo_FontSize_Description","Undo_FontSize_Title":"Undo_FontSize_Title","Undo_FormatCells":"Undo_FormatCells","Undo_FormatCells_Description":"Undo_FormatCells_Description","Undo_FormatCells_Title":"Undo_FormatCells_Title","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertCells_Description":"Undo_InsertCells_Description","Undo_InsertCells_Title":"Undo_InsertCells_Title","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertColumns_Description":"Undo_InsertColumns_Description","Undo_InsertColumns_Title":"Undo_InsertColumns_Title","Undo_InsertRows":"Undo_InsertRows","Undo_InsertRows_Description":"Undo_InsertRows_Description","Undo_InsertRows_Title":"Undo_InsertRows_Title","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_Italic_Description":"Undo_Italic_Description","Undo_Italic_Title":"Undo_Italic_Title","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_JustifyAlignment_Description":"Undo_JustifyAlignment_Description","Undo_JustifyAlignment_Title":"Undo_JustifyAlignment_Title","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_LeftAlignment_Description":"Undo_LeftAlignment_Description","Undo_LeftAlignment_Title":"Undo_LeftAlignment_Title","Undo_MergeCells":"Undo_MergeCells","Undo_MergeCells_Description":"Undo_MergeCells_Description","Undo_MergeCells_Title":"Undo_MergeCells_Title","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_MiddleAlignment_Description":"Undo_MiddleAlignment_Description","Undo_MiddleAlignment_Title":"Undo_MiddleAlignment_Title","Undo_Paste":"Undo_Paste","Undo_Paste_Description":"Undo_Paste_Description","Undo_Paste_Title":"Undo_Paste_Title","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeColumn_Description":"Undo_ResizeColumn_Description","Undo_ResizeColumn_Title":"Undo_ResizeColumn_Title","Undo_ResizeRow":"Undo_ResizeRow","Undo_ResizeRow_Description":"Undo_ResizeRow_Description","Undo_ResizeRow_Title":"Undo_ResizeRow_Title","Undo_RightAlignment":"Undo_RightAlignment","Undo_RightAlignment_Description":"Undo_RightAlignment_Description","Undo_RightAlignment_Title":"Undo_RightAlignment_Title","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Strikethrough_Description":"Undo_Strikethrough_Description","Undo_Strikethrough_Title":"Undo_Strikethrough_Title","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_TopAlignment_Description":"Undo_TopAlignment_Description","Undo_TopAlignment_Title":"Undo_TopAlignment_Title","Undo_Underline":"Undo_Underline","Undo_Underline_Description":"Undo_Underline_Description","Undo_Underline_Title":"Undo_Underline_Title","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_WrapText_Description":"Undo_WrapText_Description","Undo_WrapText_Title":"Undo_WrapText_Title","Undo_Zoom":"Undo_Zoom","Undo_Zoom_Description":"Undo_Zoom_Description","Undo_Zoom_Title":"Undo_Zoom_Title","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleNb":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleNl":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocalePl":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocalePt":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleRo":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleRu":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_Text_SelectedColor":"SpreadsheetFontControl_Text_SelectedColor","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleSv":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleTr":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleZhHans":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleZhHant":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetPane":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetPane","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","columnScrollRegion":"columnScrollRegion","rowScrollRegion":"rowScrollRegion","selection":"selection","visibleRange":"visibleRange","addListener":"addListener","d":"d","e":"e","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","scrollCellIntoView":"scrollCellIntoView","scrollColumnIntoView":"scrollColumnIntoView","scrollRangeIntoView":"scrollRangeIntoView","scrollRowIntoView":"scrollRowIntoView"}}],"SpreadsheetRowColumnVisualData":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetRowColumnVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","extent":"extent","index":"index","offset":"offset","serialize":"serialize"}}],"SpreadsheetRowColumnVisualDataList":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetRowColumnVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetRowScrollRegion":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetRowScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetScrollRegion":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetSelection":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetSelection","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","activeCell":"activeCell","activeCellRangeIndex":"activeCellRangeIndex","cellRanges":"cellRanges","cellRangesAddress":"cellRangesAddress","addActiveCellRange":"addActiveCellRange","addCellRange":"addCellRange","addListener":"addListener","clearCellRanges":"clearCellRanges","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","replaceActiveCellRange":"replaceActiveCellRange","resetSelection":"resetSelection","setActiveCell":"setActiveCell","unselectRange":"unselectRange"}}],"SpreadsheetTabItemAreaVisualData":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetTabItemAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","relativeBounds":"relativeBounds","tabs":"tabs","serialize":"serialize"}}],"SpreadsheetTabVisualData":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetTabVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","isActive":"isActive","isEditing":"isEditing","isProtected":"isProtected","isSelected":"isSelected","relativeBounds":"relativeBounds","sheetIndex":"sheetIndex","serialize":"serialize"}}],"SpreadsheetTabVisualDataList":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetTabVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetVisualData":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellAreas":"cellAreas","columnHeaderAreas":"columnHeaderAreas","rowHeaderAreas":"rowHeaderAreas","tabArea":"tabArea","serialize":"serialize"}}],"SpreadsheetVisualDataBase":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/SpreadsheetVisualDataBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","serialize":"serialize"}}],"UndoLocaleBg":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleCs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleDa":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleDe":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleEn":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleEs":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleFr":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleHu":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleIt":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleJa":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleNb":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleNl":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocalePl":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocalePt":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleRo":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleRu":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleSv":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleTr":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleZhHans":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleZhHant":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/classes/UndoLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"IIgrSpreadsheetProps":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/interfaces/IIgrSpreadsheetProps","k":"interface","s":"interfaces","m":{"ActionExecuted":"ActionExecuted","ActionExecuting":"ActionExecuting","activeCell":"activeCell","activeCellChanged":"activeCellChanged","activePane":"activePane","activePaneChanged":"activePaneChanged","activeSelection":"activeSelection","activeTable":"activeTable","activeTableChanged":"activeTableChanged","activeWorksheet":"activeWorksheet","activeWorksheetChanged":"activeWorksheetChanged","allowAddWorksheet":"allowAddWorksheet","allowAsyncCalculations":"allowAsyncCalculations","allowDeleteWorksheet":"allowDeleteWorksheet","areGridlinesVisible":"areGridlinesVisible","areHeadersVisible":"areHeadersVisible","cellEditMode":"cellEditMode","chartAdapter":"chartAdapter","children":"children","contextMenuOpening":"contextMenuOpening","editModeEntered":"editModeEntered","editModeEntering":"editModeEntering","editModeExited":"editModeExited","editModeExiting":"editModeExiting","editModeValidationError":"editModeValidationError","editRangePasswordNeeded":"editRangePasswordNeeded","enterKeyNavigationDirection":"enterKeyNavigationDirection","fixedDecimalPlaceCount":"fixedDecimalPlaceCount","height":"height","hyperlinkExecuting":"hyperlinkExecuting","isEnterKeyNavigationEnabled":"isEnterKeyNavigationEnabled","isFixedDecimalEnabled":"isFixedDecimalEnabled","isFormulaBarVisible":"isFormulaBarVisible","isInEditMode":"isInEditMode","isInEndMode":"isInEndMode","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isRenamingWorksheet":"isRenamingWorksheet","isScrollLocked":"isScrollLocked","isUndoEnabled":"isUndoEnabled","nameBoxWidth":"nameBoxWidth","selectedWorksheets":"selectedWorksheets","selectionChanged":"selectionChanged","selectionMode":"selectionMode","undoManager":"undoManager","userPromptDisplaying":"userPromptDisplaying","validationInputMessagePosition":"validationInputMessagePosition","width":"width","workbook":"workbook","workbookDirtied":"workbookDirtied","zoomLevel":"zoomLevel"}}],"SpreadsheetAction":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetAction","k":"enum","s":"enums","m":{"ActivateAndSelectNextWorksheet":"ActivateAndSelectNextWorksheet","ActivateAndSelectPreviousWorksheet":"ActivateAndSelectPreviousWorksheet","ActivateNextOutOfViewWorksheet":"ActivateNextOutOfViewWorksheet","ActivateNextPane":"ActivateNextPane","ActivateNextWorksheet":"ActivateNextWorksheet","ActivatePreviousOutOfViewWorksheet":"ActivatePreviousOutOfViewWorksheet","ActivatePreviousPane":"ActivatePreviousPane","ActivatePreviousWorksheet":"ActivatePreviousWorksheet","AddNewWorksheet":"AddNewWorksheet","AddTableColumn":"AddTableColumn","AddTableRow":"AddTableRow","AlignHorizontalCenter":"AlignHorizontalCenter","AlignHorizontalJustify":"AlignHorizontalJustify","AlignHorizontalLeft":"AlignHorizontalLeft","AlignHorizontalRight":"AlignHorizontalRight","AlignVerticalBottom":"AlignVerticalBottom","AlignVerticalMiddle":"AlignVerticalMiddle","AlignVerticalTop":"AlignVerticalTop","AutoFitColumnWidth":"AutoFitColumnWidth","AutoFitRowHeight":"AutoFitRowHeight","CancelRenameWorksheet":"CancelRenameWorksheet","CellAbove":"CellAbove","CellBelow":"CellBelow","CellInNextSelectionRange":"CellInNextSelectionRange","CellInPreviousSelectionRange":"CellInPreviousSelectionRange","CellInSelectionAbove":"CellInSelectionAbove","CellInSelectionBelow":"CellInSelectionBelow","CellInSelectionLeft":"CellInSelectionLeft","CellInSelectionRight":"CellInSelectionRight","CellInTableLeft":"CellInTableLeft","CellInTableRight":"CellInTableRight","CellLeft":"CellLeft","CellPageAbove":"CellPageAbove","CellPageBelow":"CellPageBelow","CellPageLeft":"CellPageLeft","CellPageRight":"CellPageRight","CellRight":"CellRight","CellWithDataAbove":"CellWithDataAbove","CellWithDataBelow":"CellWithDataBelow","CellWithDataLeft":"CellWithDataLeft","CellWithDataRight":"CellWithDataRight","CircleInvalidData":"CircleInvalidData","ClearAllFilterAndSort":"ClearAllFilterAndSort","ClearContents":"ClearContents","ClearFilter":"ClearFilter","ClearFormats":"ClearFormats","ClearHyperlinks":"ClearHyperlinks","ClearValidationCircles":"ClearValidationCircles","CommitRenameWorksheet":"CommitRenameWorksheet","ConvertTableToRange":"ConvertTableToRange","Copy":"Copy","Cut":"Cut","DecreaseFontSize":"DecreaseFontSize","DecreaseIndentation":"DecreaseIndentation","DeleteCells":"DeleteCells","DeleteCellsShiftLeft":"DeleteCellsShiftLeft","DeleteCellsShiftUp":"DeleteCellsShiftUp","DeleteColumns":"DeleteColumns","DeleteRows":"DeleteRows","DeleteTableColumns":"DeleteTableColumns","DeleteTableRows":"DeleteTableRows","DeleteWorksheets":"DeleteWorksheets","EdgeCellWithDataAbove":"EdgeCellWithDataAbove","EdgeCellWithDataBelow":"EdgeCellWithDataBelow","EdgeCellWithDataLeft":"EdgeCellWithDataLeft","EdgeCellWithDataRight":"EdgeCellWithDataRight","EnterEditMode":"EnterEditMode","EnterEditModeAndClearValue":"EnterEditModeAndClearValue","EnterEndMode":"EnterEndMode","EnterKeyNavigation":"EnterKeyNavigation","ExitEditModeAndCreateArrayFormula":"ExitEditModeAndCreateArrayFormula","ExitEditModeAndDiscardChanges":"ExitEditModeAndDiscardChanges","ExitEditModeAndUpdateActiveCell":"ExitEditModeAndUpdateActiveCell","ExitEditModeAndUpdateSelectedCells":"ExitEditModeAndUpdateSelectedCells","ExitEndMode":"ExitEndMode","FilterByCellColor":"FilterByCellColor","FilterByCellFontColor":"FilterByCellFontColor","FilterByCellIcon":"FilterByCellIcon","FilterByCellValue":"FilterByCellValue","FirstCellInRow":"FirstCellInRow","FirstCellInView":"FirstCellInView","FirstCellInViewWithinSelection":"FirstCellInViewWithinSelection","FirstCellInWorksheet":"FirstCellInWorksheet","FirstScrollableCellInRow":"FirstScrollableCellInRow","FirstScrollableCellInWorksheet":"FirstScrollableCellInWorksheet","FirstUnlockedCell":"FirstUnlockedCell","FreezeFirstColumn":"FreezeFirstColumn","FreezeFirstRow":"FreezeFirstRow","HideColumns":"HideColumns","HideRows":"HideRows","IncreaseFontSize":"IncreaseFontSize","IncreaseIndentation":"IncreaseIndentation","InsertCells":"InsertCells","InsertCellsShiftDown":"InsertCellsShiftDown","InsertCellsShiftRight":"InsertCellsShiftRight","InsertColumns":"InsertColumns","InsertNewWorksheets":"InsertNewWorksheets","InsertRows":"InsertRows","InsertTableColumns":"InsertTableColumns","InsertTableRows":"InsertTableRows","LastCellInView":"LastCellInView","LastCellInViewWithinSelection":"LastCellInViewWithinSelection","LastUnlockedCell":"LastUnlockedCell","LastUsedCell":"LastUsedCell","LastUsedCellInRow":"LastUsedCellInRow","MergeCells":"MergeCells","MergeCellsAcross":"MergeCellsAcross","MergeCellsAndCenter":"MergeCellsAndCenter","OpenHyperlink":"OpenHyperlink","Paste":"Paste","PickFromDropDownList":"PickFromDropDownList","ReapplyFilterAndSort":"ReapplyFilterAndSort","Redo":"Redo","RemoveColumnScrollRegionSplit":"RemoveColumnScrollRegionSplit","RemoveHyperlinks":"RemoveHyperlinks","RemoveRowScrollRegionSplit":"RemoveRowScrollRegionSplit","RemoveScrollRegionSplits":"RemoveScrollRegionSplits","RenameWorksheet":"RenameWorksheet","ResetNameBoxWidth":"ResetNameBoxWidth","ScrollDown":"ScrollDown","ScrollLeft":"ScrollLeft","ScrollNextWorksheet":"ScrollNextWorksheet","ScrollPageAbove":"ScrollPageAbove","ScrollPageBelow":"ScrollPageBelow","ScrollPageLeft":"ScrollPageLeft","ScrollPageRight":"ScrollPageRight","ScrollPreviousWorksheet":"ScrollPreviousWorksheet","ScrollRight":"ScrollRight","ScrollToFirstWorksheet":"ScrollToFirstWorksheet","ScrollToLastWorksheet":"ScrollToLastWorksheet","ScrollUp":"ScrollUp","SelectActiveCellOnly":"SelectActiveCellOnly","SelectAllCells":"SelectAllCells","SelectAllWorksheets":"SelectAllWorksheets","SelectCellAbove":"SelectCellAbove","SelectCellBelow":"SelectCellBelow","SelectCellLeft":"SelectCellLeft","SelectCellPageAbove":"SelectCellPageAbove","SelectCellPageBelow":"SelectCellPageBelow","SelectCellPageLeft":"SelectCellPageLeft","SelectCellPageRight":"SelectCellPageRight","SelectCellRight":"SelectCellRight","SelectCellWithDataAbove":"SelectCellWithDataAbove","SelectCellWithDataBelow":"SelectCellWithDataBelow","SelectCellWithDataLeft":"SelectCellWithDataLeft","SelectCellWithDataRight":"SelectCellWithDataRight","SelectColumns":"SelectColumns","SelectCurrentArray":"SelectCurrentArray","SelectCurrentRegion":"SelectCurrentRegion","SelectEdgeCellWithDataAbove":"SelectEdgeCellWithDataAbove","SelectEdgeCellWithDataBelow":"SelectEdgeCellWithDataBelow","SelectEdgeCellWithDataLeft":"SelectEdgeCellWithDataLeft","SelectEdgeCellWithDataRight":"SelectEdgeCellWithDataRight","SelectEntireTableColumn":"SelectEntireTableColumn","SelectFirstCellInRow":"SelectFirstCellInRow","SelectFirstCellInView":"SelectFirstCellInView","SelectFirstCellInWorksheet":"SelectFirstCellInWorksheet","SelectFirstScrollableCellInRow":"SelectFirstScrollableCellInRow","SelectFirstScrollableCellInWorksheet":"SelectFirstScrollableCellInWorksheet","SelectLastCellInView":"SelectLastCellInView","SelectLastUsedCell":"SelectLastUsedCell","SelectLastUsedCellInRow":"SelectLastUsedCellInRow","SelectRows":"SelectRows","SelectTableColumnData":"SelectTableColumnData","SelectTableRow":"SelectTableRow","SelectVisibleCellsOnly":"SelectVisibleCellsOnly","ShiftEnterKeyNavigation":"ShiftEnterKeyNavigation","ShowCellDropDown":"ShowCellDropDown","ShowCustomSortDialog":"ShowCustomSortDialog","ShowFormatCellsDialog":"ShowFormatCellsDialog","SnapColumnScrollRegionSplit":"SnapColumnScrollRegionSplit","SnapRowScrollRegionSplit":"SnapRowScrollRegionSplit","SnapScrollRegionSplits":"SnapScrollRegionSplits","SortAscending":"SortAscending","SortByCellColor":"SortByCellColor","SortByCellFontColor":"SortByCellFontColor","SortByCellIcon":"SortByCellIcon","SortDescending":"SortDescending","SwitchToAddToSelectionMode":"SwitchToAddToSelectionMode","SwitchToExtendSelectionMode":"SwitchToExtendSelectionMode","SwitchToNormalSelectionMode":"SwitchToNormalSelectionMode","ToggleBold":"ToggleBold","ToggleCellEditMode":"ToggleCellEditMode","ToggleDoubleUnderline":"ToggleDoubleUnderline","ToggleFilter":"ToggleFilter","ToggleFreezePanes":"ToggleFreezePanes","ToggleItalic":"ToggleItalic","ToggleShowFormulasInCells":"ToggleShowFormulasInCells","ToggleSplitPanes":"ToggleSplitPanes","ToggleStrikeThrough":"ToggleStrikeThrough","ToggleSubscript":"ToggleSubscript","ToggleSuperscript":"ToggleSuperscript","ToggleTableTotalRow":"ToggleTableTotalRow","ToggleUnderline":"ToggleUnderline","ToggleWrapText":"ToggleWrapText","Undo":"Undo","UnhideColumns":"UnhideColumns","UnhideRows":"UnhideRows","UnmergeCells":"UnmergeCells","UnselectWorksheets":"UnselectWorksheets","ZoomIn":"ZoomIn","ZoomOut":"ZoomOut","ZoomTo100":"ZoomTo100","ZoomToSelection":"ZoomToSelection"}}],"SpreadsheetCellEditMode":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetCellEditMode","k":"enum","s":"enums","m":{"ArrowKeysNavigateBetweenCells":"ArrowKeysNavigateBetweenCells","ArrowKeysNavigateInCell":"ArrowKeysNavigateInCell","NotInEditMode":"NotInEditMode"}}],"SpreadsheetCellRangeBorders":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetCellRangeBorders","k":"enum","s":"enums","m":{"AllBorder":"AllBorder","BottomBorder":"BottomBorder","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","InsideBorder":"InsideBorder","InsideHorizontal":"InsideHorizontal","InsideVertical":"InsideVertical","LeftBorder":"LeftBorder","OutsideBorder":"OutsideBorder","RightBorder":"RightBorder","TopBorder":"TopBorder"}}],"SpreadsheetCellSelectionMode":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetCellSelectionMode","k":"enum","s":"enums","m":{"AddToSelection":"AddToSelection","ExtendSelection":"ExtendSelection","Normal":"Normal"}}],"SpreadsheetContextMenuArea":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetContextMenuArea","k":"enum","s":"enums","m":{"Cell":"Cell","Column":"Column","FormulaBarEditor":"FormulaBarEditor","InPlaceEditor":"InPlaceEditor","Row":"Row","SelectAllButton":"SelectAllButton","Tab":"Tab","TableCell":"TableCell"}}],"SpreadsheetEditModeValidationErrorAction":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetEditModeValidationErrorAction","k":"enum","s":"enums","m":{"AcceptChange":"AcceptChange","RevertChange":"RevertChange","ShowPrompt":"ShowPrompt","StayInEditMode":"StayInEditMode"}}],"SpreadsheetEnterKeyNavigationDirection":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetEnterKeyNavigationDirection","k":"enum","s":"enums","m":{"Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"SpreadsheetFilterDialogOption":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetFilterDialogOption","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Between":"Between","Contains":"Contains","Custom":"Custom","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"SpreadsheetResourceId":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetResourceId","k":"enum","s":"enums","m":{"AddSheetButtonDisabledForeground":"AddSheetButtonDisabledForeground","AddSheetButtonForeground":"AddSheetButtonForeground","AddSheetButtonHotTrackForeground":"AddSheetButtonHotTrackForeground","AutomaticGridline":"AutomaticGridline","CellSelectionDragBorder":"CellSelectionDragBorder","CellSelectionDragBorderInHeader":"CellSelectionDragBorderInHeader","CellSelectionFill":"CellSelectionFill","CellSelectionHandleBorder":"CellSelectionHandleBorder","CellSelectionHandleFill":"CellSelectionHandleFill","CellSelectionInnerBorder":"CellSelectionInnerBorder","CellSelectionOuterBorder":"CellSelectionOuterBorder","ColumnHeaderBackground":"ColumnHeaderBackground","ColumnHeaderBorder":"ColumnHeaderBorder","ColumnHeaderForeground":"ColumnHeaderForeground","ColumnHeaderHotTrackBackground":"ColumnHeaderHotTrackBackground","ColumnHeaderHotTrackBorder":"ColumnHeaderHotTrackBorder","ColumnHeaderHotTrackForeground":"ColumnHeaderHotTrackForeground","ColumnHeaderHotTrackSelectedForeground":"ColumnHeaderHotTrackSelectedForeground","ColumnHeaderSelectedBackground":"ColumnHeaderSelectedBackground","ColumnHeaderSelectedBorder":"ColumnHeaderSelectedBorder","ColumnHeaderSelectedForeground":"ColumnHeaderSelectedForeground","ColumnHeaderWithSelectedCellsBackground":"ColumnHeaderWithSelectedCellsBackground","ColumnHeaderWithSelectedCellsBorder":"ColumnHeaderWithSelectedCellsBorder","ColumnHeaderWithSelectedCellsForeground":"ColumnHeaderWithSelectedCellsForeground","DropDownButtonBackground":"DropDownButtonBackground","DropDownButtonBorder":"DropDownButtonBorder","DropDownButtonForeground":"DropDownButtonForeground","DropDownButtonOpenBackground":"DropDownButtonOpenBackground","DropDownButtonOpenBorder":"DropDownButtonOpenBorder","DropDownButtonOpenForeground":"DropDownButtonOpenForeground","InputMessageBackground":"InputMessageBackground","InputMessageBorder":"InputMessageBorder","InputMessageForeground":"InputMessageForeground","InvalidDataBorder":"InvalidDataBorder","MultiSelectActiveCellBorder":"MultiSelectActiveCellBorder","ResizeColumnLine":"ResizeColumnLine","ResizeRowLine":"ResizeRowLine","RowHeaderBackground":"RowHeaderBackground","RowHeaderBorder":"RowHeaderBorder","RowHeaderForeground":"RowHeaderForeground","RowHeaderHotTrackBackground":"RowHeaderHotTrackBackground","RowHeaderHotTrackBorder":"RowHeaderHotTrackBorder","RowHeaderHotTrackForeground":"RowHeaderHotTrackForeground","RowHeaderHotTrackSelectedForeground":"RowHeaderHotTrackSelectedForeground","RowHeaderSelectedBackground":"RowHeaderSelectedBackground","RowHeaderSelectedBorder":"RowHeaderSelectedBorder","RowHeaderSelectedForeground":"RowHeaderSelectedForeground","RowHeaderWithSelectedCellsBackground":"RowHeaderWithSelectedCellsBackground","RowHeaderWithSelectedCellsBorder":"RowHeaderWithSelectedCellsBorder","RowHeaderWithSelectedCellsForeground":"RowHeaderWithSelectedCellsForeground","SelectAllBackground":"SelectAllBackground","SelectAllTriangleFill":"SelectAllTriangleFill","SelectAllTriangleHotTrackFill":"SelectAllTriangleHotTrackFill","SelectAllTriangleSelectedFill":"SelectAllTriangleSelectedFill","SelectedTabHighlight":"SelectedTabHighlight","SheetPaneSplitterBackground":"SheetPaneSplitterBackground","SheetPaneSplitterPreview":"SheetPaneSplitterPreview","TabAreaBackground":"TabAreaBackground","TabAreaBorder":"TabAreaBorder","TabAreaSplitterForeground":"TabAreaSplitterForeground","TabItemActiveBackground":"TabItemActiveBackground","TabItemActiveForeground":"TabItemActiveForeground","TabItemBackground":"TabItemBackground","TabItemForeground":"TabItemForeground","TabItemHotTrackBackground":"TabItemHotTrackBackground","TabItemHotTrackForeground":"TabItemHotTrackForeground","TabItemSelectedBackground":"TabItemSelectedBackground","TabItemSelectedForeground":"TabItemSelectedForeground","TabScrollButtonDisabledForeground":"TabScrollButtonDisabledForeground","TabScrollButtonForeground":"TabScrollButtonForeground","TabScrollButtonHotTrackForeground":"TabScrollButtonHotTrackForeground","UnselectCellsBorder":"UnselectCellsBorder","UnselectCellsFill":"UnselectCellsFill"}}],"SpreadsheetUserPromptTrigger":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/SpreadsheetUserPromptTrigger","k":"enum","s":"enums","m":{"ChangePartOfDataTable":"ChangePartOfDataTable","ClearCellContentError":"ClearCellContentError","ConflictingWorksheetName":"ConflictingWorksheetName","CopyError":"CopyError","CopyInvalidRanges":"CopyInvalidRanges","DeletingLockedColumnCells":"DeletingLockedColumnCells","DeletingLockedRowCells":"DeletingLockedRowCells","DeletingWorksheets":"DeletingWorksheets","EditError":"EditError","FormulaParseError":"FormulaParseError","General":"General","IntersectsMergedCells":"IntersectsMergedCells","InvalidArrayFormulaLockedState":"InvalidArrayFormulaLockedState","InvalidCommandForMixedCellSelections":"InvalidCommandForMixedCellSelections","InvalidCommandForMultipleSelections":"InvalidCommandForMultipleSelections","InvalidCommandForOverlappingSelections":"InvalidCommandForOverlappingSelections","InvalidHyperlinkAddress":"InvalidHyperlinkAddress","InvalidHyperlinkReference":"InvalidHyperlinkReference","InvalidNameBoxValue":"InvalidNameBoxValue","InvalidProtectedWorksheetChange":"InvalidProtectedWorksheetChange","InvalidSortOrFilterRange":"InvalidSortOrFilterRange","InvalidWorksheetName":"InvalidWorksheetName","LargeCopyOperation":"LargeCopyOperation","LargePasteOperation":"LargePasteOperation","NoSingleAllowedEditRange":"NoSingleAllowedEditRange","PasteCellRangeSize":"PasteCellRangeSize","PasteError":"PasteError","PasteIntersectsMergedCells":"PasteIntersectsMergedCells","PasteInvalidSheetCount":"PasteInvalidSheetCount","PasteInvalidSourceRanges":"PasteInvalidSourceRanges","PasteMultipleSheetsTables":"PasteMultipleSheetsTables","PasteMultipleSourceAndTargetRanges":"PasteMultipleSourceAndTargetRanges","TableChangeWithMultipleSelectedSheets":"TableChangeWithMultipleSelectedSheets"}}],"UndoExecuteReason":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/UndoExecuteReason","k":"enum","s":"enums","m":{"Redo":"Redo","Rollback":"Rollback","Undo":"Undo"}}],"UndoHistoryItemType":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/UndoHistoryItemType","k":"enum","s":"enums","m":{"Redo":"Redo","Undo":"Undo"}}],"UndoMergeAction":[{"p":"igniteui-react-spreadsheet","u":"/api/react/igniteui-react-spreadsheet/19.5.2/enums/UndoMergeAction","k":"enum","s":"enums","m":{"Merged":"Merged","MergedRemoveUnit":"MergedRemoveUnit","NotMerged":"NotMerged"}}]}} \ No newline at end of file diff --git a/src/data/api-link-index/webcomponents/staging-latest.json b/src/data/api-link-index/webcomponents/staging-latest.json new file mode 100644 index 0000000000..d0d3b85375 --- /dev/null +++ b/src/data/api-link-index/webcomponents/staging-latest.json @@ -0,0 +1 @@ +{"platform":"wc","version":"latest","generatedAt":"2026-06-02T12:10:23.316Z","packages":["igniteui-dockmanager","igniteui-grid-lite","igniteui-webcomponents","igniteui-webcomponents-charts","igniteui-webcomponents-core","igniteui-webcomponents-dashboards","igniteui-webcomponents-datasources","igniteui-webcomponents-excel","igniteui-webcomponents-fdc3","igniteui-webcomponents-gauges","igniteui-webcomponents-grids","igniteui-webcomponents-inputs","igniteui-webcomponents-layouts","igniteui-webcomponents-maps","igniteui-webcomponents-spreadsheet","igniteui-webcomponents-spreadsheet-chart-adapter"],"symbols":{"IgcAccordionComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcAccordionComponent","k":"class","s":"classes","m":{"singleExpand":"singleExpand","styles":"styles","panels":"panels","hideAll":"hideAll","showAll":"showAll"}}],"IgcAvatarComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcAvatarComponent","k":"class","s":"classes","m":{"alt":"alt","initials":"initials","shape":"shape","src":"src","styles":"styles"}}],"IgcBadgeComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcBadgeComponent","k":"class","s":"classes","m":{"dot":"dot","outlined":"outlined","shape":"shape","variant":"variant","styles":"styles"}}],"IgcBannerComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcBannerComponent","k":"class","s":"classes","m":{"open":"open","tagName":"tagName","hide":"hide","show":"show","toggle":"toggle"}}],"IgcButtonComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcButtonComponent","k":"class","s":"classes","m":{"download":"download","href":"href","rel":"rel","target":"target","type":"type","variant":"variant","disabled":"disabled","form":"form","blur":"blur","click":"click","focus":"focus"}}],"IgcButtonGroupComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcButtonGroupComponent","k":"class","s":"classes","m":{"alignment":"alignment","disabled":"disabled","selection":"selection","tagName":"tagName","selectedItems":"selectedItems"}}],"IgcCalendarComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCalendarComponent","k":"class","s":"classes","m":{"activeView":"activeView","formatOptions":"formatOptions","headerOrientation":"headerOrientation","hideHeader":"hideHeader","hideOutsideDays":"hideOutsideDays","orientation":"orientation","selection":"selection","showWeekNumbers":"showWeekNumbers","visibleMonths":"visibleMonths","weekStart":"weekStart","tagName":"tagName","activeDate":"activeDate","disabledDates":"disabledDates","locale":"locale","resourceStrings":"resourceStrings","specialDates":"specialDates","value":"value","values":"values"}}],"IgcCardActionsComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCardActionsComponent","k":"class","s":"classes","m":{"orientation":"orientation","styles":"styles"}}],"IgcCardComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCardComponent","k":"class","s":"classes","m":{"elevated":"elevated","styles":"styles"}}],"IgcCardContentComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCardContentComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcCardHeaderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCardHeaderComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcCardMediaComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCardMediaComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcCarouselComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCarouselComponent","k":"class","s":"classes","m":{"animationType":"animationType","disableLoop":"disableLoop","disablePauseOnInteraction":"disablePauseOnInteraction","hideIndicators":"hideIndicators","hideNavigation":"hideNavigation","indicatorsOrientation":"indicatorsOrientation","interval":"interval","maximumIndicatorsCount":"maximumIndicatorsCount","vertical":"vertical","tagName":"tagName","current":"current","indicatorsLabelFormat":"indicatorsLabelFormat","isPaused":"isPaused","isPlaying":"isPlaying","locale":"locale","resourceStrings":"resourceStrings","slides":"slides","slidesLabelFormat":"slidesLabelFormat","total":"total","next":"next","pause":"pause","play":"play","prev":"prev","select":"select"}}],"IgcCarouselIndicatorComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCarouselIndicatorComponent","k":"class","s":"classes","m":{"styles":"styles","connectedCallback":"connectedCallback"}}],"IgcCarouselSlideComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCarouselSlideComponent","k":"class","s":"classes","m":{"active":"active","styles":"styles","connectedCallback":"connectedCallback"}}],"IgcChatComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcChatComponent","k":"class","s":"classes","m":{"resourceStrings":"resourceStrings","tagName":"tagName","draftMessage":"draftMessage","messages":"messages","options":"options","scrollToMessage":"scrollToMessage","igcAttachmentAdded":"igcAttachmentAdded","igcAttachmentClick":"igcAttachmentClick","igcAttachmentDrag":"igcAttachmentDrag","igcAttachmentDrop":"igcAttachmentDrop","igcAttachmentRemoved":"igcAttachmentRemoved","igcInputBlur":"igcInputBlur","igcInputChange":"igcInputChange","igcInputFocus":"igcInputFocus","igcMessageCreated":"igcMessageCreated","igcMessageReact":"igcMessageReact","igcTypingChange":"igcTypingChange"}}],"IgcCheckboxComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCheckboxComponent","k":"class","s":"classes","m":{"disabled":"disabled","indeterminate":"indeterminate","invalid":"invalid","labelPosition":"labelPosition","name":"name","checked":"checked","defaultChecked":"defaultChecked","form":"form","required":"required","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","click":"click","focus":"focus","reportValidity":"reportValidity","setCustomValidity":"setCustomValidity"}}],"IgcChipComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcChipComponent","k":"class","s":"classes","m":{"disabled":"disabled","removable":"removable","selectable":"selectable","selected":"selected","variant":"variant","tagName":"tagName","locale":"locale","resourceStrings":"resourceStrings"}}],"IgcCircularGradientComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCircularGradientComponent","k":"class","s":"classes","m":{"color":"color","offset":"offset","opacity":"opacity"}}],"IgcCircularProgressComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcCircularProgressComponent","k":"class","s":"classes","m":{"animationDuration":"animationDuration","hideLabel":"hideLabel","indeterminate":"indeterminate","labelFormat":"labelFormat","max":"max","value":"value","variant":"variant","styles":"styles"}}],"IgcComboComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcComboComponent","k":"class","s":"classes","m":{"autofocus":"autofocus","autofocusList":"autofocusList","caseSensitiveIcon":"caseSensitiveIcon","disableClear":"disableClear","disabled":"disabled","groupHeaderTemplate":"groupHeaderTemplate","invalid":"invalid","itemTemplate":"itemTemplate","label":"label","name":"name","open":"open","outlined":"outlined","placeholder":"placeholder","tagName":"tagName","data":"data","defaultValue":"defaultValue","disableFiltering":"disableFiltering","displayKey":"displayKey","filteringOptions":"filteringOptions","form":"form","groupKey":"groupKey","groupSorting":"groupSorting","locale":"locale","placeholderSearch":"placeholderSearch","required":"required","resourceStrings":"resourceStrings","selection":"selection","singleSelect":"singleSelect","validationMessage":"validationMessage","validity":"validity","value":"value","valueKey":"valueKey","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","deselect":"deselect","focus":"focus","hide":"hide","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","show":"show","toggle":"toggle"}}],"IgcDatePickerComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDatePickerComponent","k":"class","s":"classes","m":{"disabled":"disabled","headerOrientation":"headerOrientation","hideHeader":"hideHeader","hideOutsideDays":"hideOutsideDays","invalid":"invalid","keepOpenOnOutsideClick":"keepOpenOnOutsideClick","keepOpenOnSelect":"keepOpenOnSelect","label":"label","mode":"mode","name":"name","nonEditable":"nonEditable","open":"open","orientation":"orientation","outlined":"outlined","placeholder":"placeholder","prompt":"prompt","readOnly":"readOnly","showWeekNumbers":"showWeekNumbers","specialDates":"specialDates","visibleMonths":"visibleMonths","weekStart":"weekStart","tagName":"tagName","activeDate":"activeDate","defaultValue":"defaultValue","disabledDates":"disabledDates","displayFormat":"displayFormat","form":"form","inputFormat":"inputFormat","locale":"locale","max":"max","min":"min","required":"required","resourceStrings":"resourceStrings","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","checkValidity":"checkValidity","clear":"clear","hide":"hide","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","setSelectionRange":"setSelectionRange","show":"show","stepDown":"stepDown","stepUp":"stepUp","toggle":"toggle"}}],"IgcDateRangePickerComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDateRangePickerComponent","k":"class","s":"classes","m":{"customRanges":"customRanges","disabled":"disabled","headerOrientation":"headerOrientation","hideHeader":"hideHeader","hideOutsideDays":"hideOutsideDays","invalid":"invalid","keepOpenOnOutsideClick":"keepOpenOnOutsideClick","keepOpenOnSelect":"keepOpenOnSelect","label":"label","labelEnd":"labelEnd","labelStart":"labelStart","mode":"mode","name":"name","nonEditable":"nonEditable","open":"open","orientation":"orientation","outlined":"outlined","placeholderEnd":"placeholderEnd","placeholderStart":"placeholderStart","prompt":"prompt","readOnly":"readOnly","showWeekNumbers":"showWeekNumbers","specialDates":"specialDates","usePredefinedRanges":"usePredefinedRanges","useTwoInputs":"useTwoInputs","weekStart":"weekStart","tagName":"tagName","activeDate":"activeDate","defaultValue":"defaultValue","disabledDates":"disabledDates","displayFormat":"displayFormat","form":"form","inputFormat":"inputFormat","locale":"locale","max":"max","min":"min","placeholder":"placeholder","required":"required","resourceStrings":"resourceStrings","validationMessage":"validationMessage","validity":"validity","value":"value","visibleMonths":"visibleMonths","willValidate":"willValidate","checkValidity":"checkValidity","clear":"clear","hide":"hide","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","show":"show","toggle":"toggle"}}],"IgcDateTimeInputComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDateTimeInputComponent","k":"class","s":"classes","m":{"disabled":"disabled","invalid":"invalid","label":"label","name":"name","outlined":"outlined","placeholder":"placeholder","readOnly":"readOnly","spinDelta":"spinDelta","spinLoop":"spinLoop","tagName":"tagName","defaultValue":"defaultValue","displayFormat":"displayFormat","form":"form","inputFormat":"inputFormat","locale":"locale","mask":"mask","max":"max","min":"min","prompt":"prompt","required":"required","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","clear":"clear","focus":"focus","hasDateParts":"hasDateParts","hasTimeParts":"hasTimeParts","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","setRangeText":"setRangeText","setSelectionRange":"setSelectionRange","stepDown":"stepDown","stepUp":"stepUp"}}],"IgcDialogComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDialogComponent","k":"class","s":"classes","m":{"closeOnOutsideClick":"closeOnOutsideClick","hideDefaultAction":"hideDefaultAction","keepOpenOnEscape":"keepOpenOnEscape","open":"open","returnValue":"returnValue","title":"title","tagName":"tagName","hide":"hide","show":"show","toggle":"toggle"}}],"IgcDividerComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDividerComponent","k":"class","s":"classes","m":{"middle":"middle","type":"type","styles":"styles","vertical":"vertical"}}],"IgcDropdownComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDropdownComponent","k":"class","s":"classes","m":{"distance":"distance","flip":"flip","keepOpenOnOutsideClick":"keepOpenOnOutsideClick","keepOpenOnSelect":"keepOpenOnSelect","open":"open","placement":"placement","sameWidth":"sameWidth","scrollStrategy":"scrollStrategy","tagName":"tagName","groups":"groups","items":"items","selectedItem":"selectedItem","clearSelection":"clearSelection","disconnectedCallback":"disconnectedCallback","hide":"hide","navigateTo":"navigateTo","select":"select","show":"show","toggle":"toggle"}}],"IgcDropdownGroupComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDropdownGroupComponent","k":"class","s":"classes","m":{"items":"items","styles":"styles"}}],"IgcDropdownHeaderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDropdownHeaderComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcDropdownItemComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcDropdownItemComponent","k":"class","s":"classes","m":{"styles":"styles","active":"active","disabled":"disabled","selected":"selected","value":"value","connectedCallback":"connectedCallback"}}],"IgcExpansionPanelComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcExpansionPanelComponent","k":"class","s":"classes","m":{"disabled":"disabled","indicatorPosition":"indicatorPosition","open":"open","tagName":"tagName","connectedCallback":"connectedCallback","hide":"hide","show":"show","toggle":"toggle"}}],"IgcFileInputComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcFileInputComponent","k":"class","s":"classes","m":{"accept":"accept","autofocus":"autofocus","disabled":"disabled","invalid":"invalid","label":"label","multiple":"multiple","name":"name","outlined":"outlined","placeholder":"placeholder","tagName":"tagName","defaultValue":"defaultValue","files":"files","form":"form","locale":"locale","required":"required","resourceStrings":"resourceStrings","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","focus":"focus","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity"}}],"IgcHighlightComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcHighlightComponent","k":"class","s":"classes","m":{"styles":"styles","caseSensitive":"caseSensitive","current":"current","searchText":"searchText","size":"size","next":"next","previous":"previous","search":"search","setActive":"setActive"}}],"IgcIconButtonComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcIconButtonComponent","k":"class","s":"classes","m":{"collection":"collection","download":"download","href":"href","mirrored":"mirrored","name":"name","rel":"rel","target":"target","type":"type","variant":"variant","disabled":"disabled","form":"form","blur":"blur","click":"click","focus":"focus"}}],"IgcIconComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcIconComponent","k":"class","s":"classes","m":{"collection":"collection","mirrored":"mirrored","name":"name","styles":"styles","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback"}}],"IgcInputComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcInputComponent","k":"class","s":"classes","m":{"autocomplete":"autocomplete","autofocus":"autofocus","disabled":"disabled","inputMode":"inputMode","invalid":"invalid","label":"label","name":"name","outlined":"outlined","placeholder":"placeholder","readOnly":"readOnly","type":"type","validateOnly":"validateOnly","defaultValue":"defaultValue","form":"form","max":"max","maxLength":"maxLength","min":"min","minLength":"minLength","pattern":"pattern","required":"required","step":"step","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","focus":"focus","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","setRangeText":"setRangeText","setSelectionRange":"setSelectionRange","stepDown":"stepDown","stepUp":"stepUp"}}],"IgcLinearProgressComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcLinearProgressComponent","k":"class","s":"classes","m":{"animationDuration":"animationDuration","hideLabel":"hideLabel","indeterminate":"indeterminate","labelAlign":"labelAlign","labelFormat":"labelFormat","max":"max","striped":"striped","value":"value","variant":"variant","styles":"styles"}}],"IgcListComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcListComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcListHeaderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcListHeaderComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcListItemComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcListItemComponent","k":"class","s":"classes","m":{"selected":"selected","styles":"styles"}}],"IgcMaskInputComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcMaskInputComponent","k":"class","s":"classes","m":{"disabled":"disabled","invalid":"invalid","label":"label","name":"name","outlined":"outlined","placeholder":"placeholder","readOnly":"readOnly","valueMode":"valueMode","defaultValue":"defaultValue","form":"form","mask":"mask","prompt":"prompt","required":"required","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","focus":"focus","isValidMaskPattern":"isValidMaskPattern","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","setRangeText":"setRangeText","setSelectionRange":"setSelectionRange"}}],"IgcNavbarComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcNavbarComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcNavDrawerComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcNavDrawerComponent","k":"class","s":"classes","m":{"open":"open","position":"position","styles":"styles","hide":"hide","show":"show","toggle":"toggle"}}],"IgcNavDrawerHeaderItemComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcNavDrawerHeaderItemComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcNavDrawerItemComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcNavDrawerItemComponent","k":"class","s":"classes","m":{"active":"active","disabled":"disabled","styles":"styles"}}],"IgcRadioComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcRadioComponent","k":"class","s":"classes","m":{"disabled":"disabled","invalid":"invalid","labelPosition":"labelPosition","name":"name","tagName":"tagName","checked":"checked","defaultChecked":"defaultChecked","form":"form","required":"required","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","click":"click","focus":"focus","reportValidity":"reportValidity","setCustomValidity":"setCustomValidity"}}],"IgcRadioGroupComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcRadioGroupComponent","k":"class","s":"classes","m":{"alignment":"alignment","styles":"styles","name":"name","value":"value"}}],"IgcRangeSliderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcRangeSliderComponent","k":"class","s":"classes","m":{"disabled":"disabled","discreteTrack":"discreteTrack","hidePrimaryLabels":"hidePrimaryLabels","hideSecondaryLabels":"hideSecondaryLabels","hideTooltip":"hideTooltip","locale":"locale","primaryTicks":"primaryTicks","secondaryTicks":"secondaryTicks","thumbLabelLower":"thumbLabelLower","thumbLabelUpper":"thumbLabelUpper","tickLabelRotation":"tickLabelRotation","tickOrientation":"tickOrientation","valueFormat":"valueFormat","valueFormatOptions":"valueFormatOptions","tagName":"tagName","lower":"lower","lowerBound":"lowerBound","max":"max","min":"min","step":"step","upper":"upper","upperBound":"upperBound"}}],"IgcRatingComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcRatingComponent","k":"class","s":"classes","m":{"allowReset":"allowReset","disabled":"disabled","hoverPreview":"hoverPreview","invalid":"invalid","label":"label","name":"name","readOnly":"readOnly","valueFormat":"valueFormat","tagName":"tagName","defaultValue":"defaultValue","form":"form","max":"max","single":"single","step":"step","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","checkValidity":"checkValidity","reportValidity":"reportValidity","setCustomValidity":"setCustomValidity","stepDown":"stepDown","stepUp":"stepUp"}}],"IgcRatingSymbolComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcRatingSymbolComponent","k":"class","s":"classes","m":{"styles":"styles","connectedCallback":"connectedCallback"}}],"IgcRippleComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcRippleComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcSelectComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSelectComponent","k":"class","s":"classes","m":{"autofocus":"autofocus","disabled":"disabled","distance":"distance","invalid":"invalid","keepOpenOnOutsideClick":"keepOpenOnOutsideClick","keepOpenOnSelect":"keepOpenOnSelect","label":"label","name":"name","open":"open","outlined":"outlined","placeholder":"placeholder","placement":"placement","scrollStrategy":"scrollStrategy","tagName":"tagName","defaultValue":"defaultValue","form":"form","groups":"groups","items":"items","required":"required","selectedItem":"selectedItem","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","clearSelection":"clearSelection","focus":"focus","hide":"hide","navigateTo":"navigateTo","reportValidity":"reportValidity","select":"select","setCustomValidity":"setCustomValidity","show":"show","toggle":"toggle"}}],"IgcSelectGroupComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSelectGroupComponent","k":"class","s":"classes","m":{"disabled":"disabled","items":"items","styles":"styles"}}],"IgcSelectHeaderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSelectHeaderComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcSelectItemComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSelectItemComponent","k":"class","s":"classes","m":{"styles":"styles","active":"active","disabled":"disabled","selected":"selected","value":"value","connectedCallback":"connectedCallback"}}],"IgcSliderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSliderComponent","k":"class","s":"classes","m":{"disabled":"disabled","discreteTrack":"discreteTrack","hidePrimaryLabels":"hidePrimaryLabels","hideSecondaryLabels":"hideSecondaryLabels","hideTooltip":"hideTooltip","invalid":"invalid","locale":"locale","name":"name","primaryTicks":"primaryTicks","secondaryTicks":"secondaryTicks","tickLabelRotation":"tickLabelRotation","tickOrientation":"tickOrientation","valueFormat":"valueFormat","valueFormatOptions":"valueFormatOptions","tagName":"tagName","defaultValue":"defaultValue","form":"form","lowerBound":"lowerBound","max":"max","min":"min","step":"step","upperBound":"upperBound","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","checkValidity":"checkValidity","reportValidity":"reportValidity","setCustomValidity":"setCustomValidity","stepDown":"stepDown","stepUp":"stepUp"}}],"IgcSliderLabelComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSliderLabelComponent","k":"class","s":"classes","m":{"styles":"styles"}}],"IgcSnackbarComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSnackbarComponent","k":"class","s":"classes","m":{"actionText":"actionText","displayTime":"displayTime","keepOpen":"keepOpen","open":"open","position":"position","tagName":"tagName","hide":"hide","show":"show","toggle":"toggle"}}],"IgcSplitterComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSplitterComponent","k":"class","s":"classes","m":{"disableCollapse":"disableCollapse","disableResize":"disableResize","hideCollapseButtons":"hideCollapseButtons","hideDragHandle":"hideDragHandle","orientation":"orientation","tagName":"tagName","endMaxSize":"endMaxSize","endMinSize":"endMinSize","endSize":"endSize","startMaxSize":"startMaxSize","startMinSize":"startMinSize","startSize":"startSize","toggle":"toggle"}}],"IgcStepComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcStepComponent","k":"class","s":"classes","m":{"active":"active","complete":"complete","disabled":"disabled","invalid":"invalid","optional":"optional","styles":"styles"}}],"IgcStepperComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcStepperComponent","k":"class","s":"classes","m":{"animationDuration":"animationDuration","contentTop":"contentTop","horizontalAnimation":"horizontalAnimation","linear":"linear","orientation":"orientation","stepType":"stepType","titlePosition":"titlePosition","verticalAnimation":"verticalAnimation","tagName":"tagName","steps":"steps","navigateTo":"navigateTo","next":"next","prev":"prev","reset":"reset"}}],"IgcSwitchComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcSwitchComponent","k":"class","s":"classes","m":{"disabled":"disabled","invalid":"invalid","labelPosition":"labelPosition","name":"name","checked":"checked","defaultChecked":"defaultChecked","form":"form","required":"required","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","blur":"blur","checkValidity":"checkValidity","click":"click","focus":"focus","reportValidity":"reportValidity","setCustomValidity":"setCustomValidity"}}],"IgcTabComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTabComponent","k":"class","s":"classes","m":{"disabled":"disabled","label":"label","selected":"selected","styles":"styles","connectedCallback":"connectedCallback"}}],"IgcTabsComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTabsComponent","k":"class","s":"classes","m":{"activation":"activation","alignment":"alignment","tagName":"tagName","selected":"selected","tabs":"tabs","connectedCallback":"connectedCallback","select":"select"}}],"IgcTextareaComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTextareaComponent","k":"class","s":"classes","m":{"autocapitalize":"autocapitalize","autocomplete":"autocomplete","disabled":"disabled","inputMode":"inputMode","invalid":"invalid","label":"label","maxLength":"maxLength","minLength":"minLength","name":"name","outlined":"outlined","placeholder":"placeholder","readOnly":"readOnly","resize":"resize","rows":"rows","spellcheck":"spellcheck","validateOnly":"validateOnly","wrap":"wrap","tagName":"tagName","defaultValue":"defaultValue","form":"form","required":"required","validationMessage":"validationMessage","validity":"validity","value":"value","willValidate":"willValidate","checkValidity":"checkValidity","reportValidity":"reportValidity","scrollTo":"scrollTo","select":"select","setCustomValidity":"setCustomValidity","setRangeText":"setRangeText","setSelectionRange":"setSelectionRange"}}],"IgcThemeProviderComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcThemeProviderComponent","k":"class","s":"classes","m":{"theme":"theme","variant":"variant","styles":"styles"}}],"IgcTileComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTileComponent","k":"class","s":"classes","m":{"disableFullscreen":"disableFullscreen","disableMaximize":"disableMaximize","disableResize":"disableResize","tagName":"tagName","colSpan":"colSpan","colStart":"colStart","fullscreen":"fullscreen","maximized":"maximized","position":"position","rowSpan":"rowSpan","rowStart":"rowStart","connectedCallback":"connectedCallback"}}],"IgcTileManagerComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTileManagerComponent","k":"class","s":"classes","m":{"styles":"styles","columnCount":"columnCount","dragMode":"dragMode","gap":"gap","minColumnWidth":"minColumnWidth","minRowHeight":"minRowHeight","resizeMode":"resizeMode","tiles":"tiles","loadLayout":"loadLayout","saveLayout":"saveLayout"}}],"IgcToastComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcToastComponent","k":"class","s":"classes","m":{"displayTime":"displayTime","keepOpen":"keepOpen","open":"open","position":"position","styles":"styles","hide":"hide","show":"show","toggle":"toggle"}}],"IgcToggleButtonComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcToggleButtonComponent","k":"class","s":"classes","m":{"disabled":"disabled","selected":"selected","value":"value","styles":"styles","blur":"blur","click":"click","focus":"focus"}}],"IgcTooltipComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTooltipComponent","k":"class","s":"classes","m":{"anchor":"anchor","message":"message","offset":"offset","placement":"placement","sticky":"sticky","withArrow":"withArrow","tagName":"tagName","hideDelay":"hideDelay","hideTriggers":"hideTriggers","open":"open","showDelay":"showDelay","showTriggers":"showTriggers","hide":"hide","show":"show","toggle":"toggle"}}],"IgcTreeComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTreeComponent","k":"class","s":"classes","m":{"selection":"selection","singleBranchExpand":"singleBranchExpand","toggleNodeOnClick":"toggleNodeOnClick","tagName":"tagName","items":"items","locale":"locale","resourceStrings":"resourceStrings","collapse":"collapse","connectedCallback":"connectedCallback","deselect":"deselect","expand":"expand","select":"select"}}],"IgcTreeItemComponent":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/classes/IgcTreeItemComponent","k":"class","s":"classes","m":{"active":"active","disabled":"disabled","expanded":"expanded","label":"label","level":"level","loading":"loading","parent":"parent","selected":"selected","tree":"tree","value":"value","styles":"styles","path":"path","collapse":"collapse","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","expand":"expand","getChildren":"getChildren","toggle":"toggle"}}],"ChatAttachmentRenderContext":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/ChatAttachmentRenderContext","k":"interface","s":"interfaces","m":{"attachment":"attachment","instance":"instance","message":"message"}}],"ChatInputRenderContext":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/ChatInputRenderContext","k":"interface","s":"interfaces","m":{"attachments":"attachments","instance":"instance","value":"value"}}],"ChatMessageRenderContext":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/ChatMessageRenderContext","k":"interface","s":"interfaces","m":{"instance":"instance","message":"message"}}],"ChatRenderContext":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/ChatRenderContext","k":"interface","s":"interfaces","m":{"instance":"instance"}}],"ChatRenderers":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/ChatRenderers","k":"interface","s":"interfaces","m":{"attachment":"attachment","attachmentContent":"attachmentContent","attachmentHeader":"attachmentHeader","fileUploadButton":"fileUploadButton","input":"input","inputActions":"inputActions","inputActionsEnd":"inputActionsEnd","inputActionsStart":"inputActionsStart","inputAttachments":"inputAttachments","message":"message","messageActions":"messageActions","messageAttachments":"messageAttachments","messageContent":"messageContent","messageHeader":"messageHeader","sendButton":"sendButton","suggestionPrefix":"suggestionPrefix"}}],"IgcChatComponentEventMap":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/IgcChatComponentEventMap","k":"interface","s":"interfaces","m":{"igcAttachmentAdded":"igcAttachmentAdded","igcAttachmentClick":"igcAttachmentClick","igcAttachmentDrag":"igcAttachmentDrag","igcAttachmentDrop":"igcAttachmentDrop","igcAttachmentRemoved":"igcAttachmentRemoved","igcInputBlur":"igcInputBlur","igcInputChange":"igcInputChange","igcInputFocus":"igcInputFocus","igcMessageCreated":"igcMessageCreated","igcMessageReact":"igcMessageReact","igcTypingChange":"igcTypingChange"}}],"IgcChatMessage":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/IgcChatMessage","k":"interface","s":"interfaces","m":{"attachments":"attachments","id":"id","reactions":"reactions","sender":"sender","text":"text","timestamp":"timestamp"}}],"IgcChatMessageAttachment":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/IgcChatMessageAttachment","k":"interface","s":"interfaces","m":{"file":"file","id":"id","name":"name","thumbnail":"thumbnail","type":"type","url":"url"}}],"IgcChatMessageReaction":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/interfaces/IgcChatMessageReaction","k":"interface","s":"interfaces","m":{"message":"message","reaction":"reaction"}}],"DatePart":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/enums/DatePart","k":"enum","s":"enums","m":{"AmPm":"AmPm","Date":"Date","Hours":"Hours","Minutes":"Minutes","Month":"Month","Seconds":"Seconds","Year":"Year"}}],"ChatSuggestionsPosition":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/types/ChatSuggestionsPosition","k":"type","s":"types"}],"ChatTemplateRenderer":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/types/ChatTemplateRenderer","k":"type","s":"types"}],"IgcChatOptions":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/types/IgcChatOptions","k":"type","s":"types","m":{"acceptedFiles":"acceptedFiles","adoptRootStyles":"adoptRootStyles","currentUserId":"currentUserId","disableAutoScroll":"disableAutoScroll","disableInputAttachments":"disableInputAttachments","headerText":"headerText","inputPlaceholder":"inputPlaceholder","isTyping":"isTyping","renderers":"renderers","stopTypingDelay":"stopTypingDelay","suggestions":"suggestions","suggestionsPosition":"suggestionsPosition"}}],"PopoverPlacement":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/types/PopoverPlacement","k":"type","s":"types"}],"configureTheme":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/functions/configureTheme","k":"function","s":"functions"}],"registerIcon":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/functions/registerIcon","k":"function","s":"functions"}],"registerIconFromText":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/functions/registerIconFromText","k":"function","s":"functions"}],"setIconRef":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/functions/setIconRef","k":"function","s":"functions"}],"θaddAdoptedStylesController":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/functions/-addAdoptedStylesController","k":"function","s":"functions"}],"θaddThemingController":[{"p":"igniteui-webcomponents","u":"/api/webcomponents/igniteui-webcomponents/7.1.0/functions/-addThemingController","k":"function","s":"functions"}],"IgcActionStripComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcActionStripComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","actionButtons":"actionButtons","hidden":"hidden","resourceStrings":"resourceStrings","hide":"hide","show":"show","register":"register"}}],"IgcBooleanFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcBooleanFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgcByLevelTreeGridMergeStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcByLevelTreeGridMergeStrategy","k":"class","s":"classes","m":{"constructor":"constructor","comparer":"comparer","merge":"merge","instance":"instance"}}],"IgcColumnComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcColumnComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","additionalTemplateContext":"additionalTemplateContext","autosizeHeader":"autosizeHeader","bodyTemplate":"bodyTemplate","cellClasses":"cellClasses","cellStyles":"cellStyles","childColumns":"childColumns","colEnd":"colEnd","colStart":"colStart","columnGroup":"columnGroup","columnLayout":"columnLayout","columnLayoutChild":"columnLayoutChild","dataType":"dataType","disabledSummaries":"disabledSummaries","disableHiding":"disableHiding","disablePinning":"disablePinning","editable":"editable","editorOptions":"editorOptions","errorTemplate":"errorTemplate","field":"field","filterable":"filterable","filterCellTemplate":"filterCellTemplate","filteringExpressionsTree":"filteringExpressionsTree","filteringIgnoreCase":"filteringIgnoreCase","filters":"filters","formatter":"formatter","groupable":"groupable","hasSummary":"hasSummary","header":"header","headerClasses":"headerClasses","headerGroupClasses":"headerGroupClasses","headerGroupStyles":"headerGroupStyles","headerStyles":"headerStyles","headerTemplate":"headerTemplate","hidden":"hidden","index":"index","inlineEditorTemplate":"inlineEditorTemplate","level":"level","maxWidth":"maxWidth","merge":"merge","minWidth":"minWidth","parent":"parent","pinned":"pinned","pinningPosition":"pinningPosition","pipeArgs":"pipeArgs","resizable":"resizable","rowEnd":"rowEnd","rowStart":"rowStart","searchable":"searchable","selectable":"selectable","selected":"selected","sortable":"sortable","sortingIgnoreCase":"sortingIgnoreCase","sortStrategy":"sortStrategy","summaries":"summaries","summaryFormatter":"summaryFormatter","summaryTemplate":"summaryTemplate","title":"title","topLevelParent":"topLevelParent","visibleIndex":"visibleIndex","visibleWhenCollapsed":"visibleWhenCollapsed","width":"width","addEventListener":"addEventListener","autosize":"autosize","move":"move","pin":"pin","removeEventListener":"removeEventListener","unpin":"unpin","register":"register","expandedChange":"expandedChange","hiddenChange":"hiddenChange","pinnedChange":"pinnedChange","widthChange":"widthChange"}}],"IgcColumnGroupComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcColumnGroupComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","additionalTemplateContext":"additionalTemplateContext","autosizeHeader":"autosizeHeader","bodyTemplate":"bodyTemplate","cellClasses":"cellClasses","cellStyles":"cellStyles","childColumns":"childColumns","children":"children","colEnd":"colEnd","collapsible":"collapsible","collapsibleIndicatorTemplate":"collapsibleIndicatorTemplate","colStart":"colStart","columnGroup":"columnGroup","columnLayout":"columnLayout","columnLayoutChild":"columnLayoutChild","dataType":"dataType","disabledSummaries":"disabledSummaries","disableHiding":"disableHiding","disablePinning":"disablePinning","editable":"editable","editorOptions":"editorOptions","errorTemplate":"errorTemplate","expanded":"expanded","field":"field","filterable":"filterable","filterCellTemplate":"filterCellTemplate","filteringExpressionsTree":"filteringExpressionsTree","filteringIgnoreCase":"filteringIgnoreCase","filters":"filters","formatter":"formatter","groupable":"groupable","hasSummary":"hasSummary","header":"header","headerClasses":"headerClasses","headerGroupClasses":"headerGroupClasses","headerGroupStyles":"headerGroupStyles","headerStyles":"headerStyles","headerTemplate":"headerTemplate","hidden":"hidden","index":"index","inlineEditorTemplate":"inlineEditorTemplate","level":"level","maxWidth":"maxWidth","merge":"merge","minWidth":"minWidth","parent":"parent","pinned":"pinned","pinningPosition":"pinningPosition","pipeArgs":"pipeArgs","resizable":"resizable","rowEnd":"rowEnd","rowStart":"rowStart","searchable":"searchable","selectable":"selectable","selected":"selected","sortable":"sortable","sortingIgnoreCase":"sortingIgnoreCase","sortStrategy":"sortStrategy","summaries":"summaries","summaryFormatter":"summaryFormatter","summaryTemplate":"summaryTemplate","title":"title","topLevelParent":"topLevelParent","visibleIndex":"visibleIndex","visibleWhenCollapsed":"visibleWhenCollapsed","width":"width","addEventListener":"addEventListener","autosize":"autosize","move":"move","pin":"pin","removeEventListener":"removeEventListener","unpin":"unpin","register":"register"}}],"IgcColumnLayoutComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcColumnLayoutComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","additionalTemplateContext":"additionalTemplateContext","autosizeHeader":"autosizeHeader","bodyTemplate":"bodyTemplate","cellClasses":"cellClasses","cellStyles":"cellStyles","childColumns":"childColumns","children":"children","colEnd":"colEnd","collapsible":"collapsible","collapsibleIndicatorTemplate":"collapsibleIndicatorTemplate","colStart":"colStart","columnGroup":"columnGroup","columnLayout":"columnLayout","columnLayoutChild":"columnLayoutChild","dataType":"dataType","disabledSummaries":"disabledSummaries","disableHiding":"disableHiding","disablePinning":"disablePinning","editable":"editable","editorOptions":"editorOptions","errorTemplate":"errorTemplate","expanded":"expanded","field":"field","filterable":"filterable","filterCellTemplate":"filterCellTemplate","filteringExpressionsTree":"filteringExpressionsTree","filteringIgnoreCase":"filteringIgnoreCase","filters":"filters","formatter":"formatter","groupable":"groupable","hasSummary":"hasSummary","header":"header","headerClasses":"headerClasses","headerGroupClasses":"headerGroupClasses","headerGroupStyles":"headerGroupStyles","headerStyles":"headerStyles","headerTemplate":"headerTemplate","hidden":"hidden","index":"index","inlineEditorTemplate":"inlineEditorTemplate","level":"level","maxWidth":"maxWidth","merge":"merge","minWidth":"minWidth","parent":"parent","pinned":"pinned","pinningPosition":"pinningPosition","pipeArgs":"pipeArgs","resizable":"resizable","rowEnd":"rowEnd","rowStart":"rowStart","searchable":"searchable","selectable":"selectable","selected":"selected","sortable":"sortable","sortingIgnoreCase":"sortingIgnoreCase","sortStrategy":"sortStrategy","summaries":"summaries","summaryFormatter":"summaryFormatter","summaryTemplate":"summaryTemplate","title":"title","topLevelParent":"topLevelParent","visibleIndex":"visibleIndex","visibleWhenCollapsed":"visibleWhenCollapsed","width":"width","addEventListener":"addEventListener","autosize":"autosize","move":"move","pin":"pin","removeEventListener":"removeEventListener","unpin":"unpin","register":"register"}}],"IgcCsvExporterOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcCsvExporterOptions","k":"class","s":"classes","m":{"constructor":"constructor","alwaysExportHeaders":"alwaysExportHeaders","exportSummaries":"exportSummaries","fileName":"fileName","fileType":"fileType","freezeHeaders":"freezeHeaders","ignoreColumnsOrder":"ignoreColumnsOrder","ignoreColumnsVisibility":"ignoreColumnsVisibility","ignoreFiltering":"ignoreFiltering","ignoreGrouping":"ignoreGrouping","ignoreMultiColumnHeaders":"ignoreMultiColumnHeaders","ignoreSorting":"ignoreSorting","valueDelimiter":"valueDelimiter"}}],"IgcCsvExporterService":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcCsvExporterService","k":"class","s":"classes","m":{"constructor":"constructor","addEventListener":"addEventListener","export":"export","exportData":"exportData","removeEventListener":"removeEventListener","columnExporting":"columnExporting","exportEnded":"exportEnded","rowExporting":"rowExporting"}}],"IgcDateFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcDateFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgcDateSummaryOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcDateSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","count":"count","earliest":"earliest","latest":"latest"}}],"IgcDateTimeFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcDateTimeFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgcDefaultMergeStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcDefaultMergeStrategy","k":"class","s":"classes","m":{"constructor":"constructor","comparer":"comparer","merge":"merge","instance":"instance"}}],"IgcDefaultTreeGridMergeStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcDefaultTreeGridMergeStrategy","k":"class","s":"classes","m":{"constructor":"constructor","comparer":"comparer","merge":"merge","instance":"instance"}}],"IgcExcelExporterOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcExcelExporterOptions","k":"class","s":"classes","m":{"constructor":"constructor","alwaysExportHeaders":"alwaysExportHeaders","columnWidth":"columnWidth","exportAsTable":"exportAsTable","exportSummaries":"exportSummaries","fileName":"fileName","freezeHeaders":"freezeHeaders","ignoreColumnsOrder":"ignoreColumnsOrder","ignoreColumnsVisibility":"ignoreColumnsVisibility","ignoreFiltering":"ignoreFiltering","ignoreGrouping":"ignoreGrouping","ignoreMultiColumnHeaders":"ignoreMultiColumnHeaders","ignorePinning":"ignorePinning","ignoreSorting":"ignoreSorting","rowHeight":"rowHeight","worksheetName":"worksheetName"}}],"IgcExcelExporterService":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcExcelExporterService","k":"class","s":"classes","m":{"constructor":"constructor","addEventListener":"addEventListener","export":"export","exportData":"exportData","removeEventListener":"removeEventListener","columnExporting":"columnExporting","exportEnded":"exportEnded","rowExporting":"rowExporting"}}],"IgcFilteringExpressionsTree":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcFilteringExpressionsTree","k":"class","s":"classes","m":{"constructor":"constructor","entity":"entity","fieldName":"fieldName","owner":"owner","returnFields":"returnFields","type":"type","filteringOperands":"filteringOperands","operator":"operator"}}],"IgcFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgcGridComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","data":"data","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","detailTemplate":"detailTemplate","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","dropAreaMessage":"dropAreaMessage","dropAreaTemplate":"dropAreaTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","groupByRowSelectorTemplate":"groupByRowSelectorTemplate","groupingExpansionState":"groupingExpansionState","groupingExpressions":"groupingExpressions","groupRowTemplate":"groupRowTemplate","groupsExpanded":"groupsExpanded","groupsRecords":"groupsRecords","groupStrategy":"groupStrategy","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideGroupedColumns":"hideGroupedColumns","hideRowSelectors":"hideRowSelectors","id":"id","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedCells":"selectedCells","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showGroupArea":"showGroupArea","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalItemCount":"totalItemCount","totalRecords":"totalRecords","transactions":"transactions","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addEventListener":"addEventListener","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearGrouping":"clearGrouping","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","deselectRowsInGroup":"deselectRowsInGroup","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","fullyExpandGroup":"fullyExpandGroup","getCellByColumn":"getCellByColumn","getCellByKey":"getCellByKey","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowByIndex":"getRowByIndex","getRowByKey":"getRowByKey","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","groupBy":"groupBy","isExpandedGroup":"isExpandedGroup","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","removeEventListener":"removeEventListener","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","selectRowsInGroup":"selectRowsInGroup","sort":"sort","toggleAllGroupRows":"toggleAllGroupRows","toggleColumnVisibility":"toggleColumnVisibility","toggleGroup":"toggleGroup","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow","register":"register","activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dataPreLoad":"dataPreLoad","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridKeydown":"gridKeydown","gridScroll":"gridScroll","groupingDone":"groupingDone","groupingExpansionStateChange":"groupingExpansionStateChange","groupingExpressionsChange":"groupingExpressionsChange","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange"}}],"IgcGridEditingActionsComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridEditingActionsComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","addChild":"addChild","addRow":"addRow","asMenuItems":"asMenuItems","deleteRow":"deleteRow","editRow":"editRow","hasChildren":"hasChildren","startEdit":"startEdit","register":"register"}}],"IgcGridPinningActionsComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridPinningActionsComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","asMenuItems":"asMenuItems","pin":"pin","scrollToRow":"scrollToRow","unpin":"unpin","register":"register"}}],"IgcGridStateComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridStateComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","options":"options","addEventListener":"addEventListener","applyState":"applyState","applyStateFromString":"applyStateFromString","getState":"getState","getStateAsString":"getStateAsString","removeEventListener":"removeEventListener","register":"register","stateParsed":"stateParsed"}}],"IgcGridToolbarActionsComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarActionsComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","register":"register"}}],"IgcGridToolbarAdvancedFilteringComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarAdvancedFilteringComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","overlaySettings":"overlaySettings","register":"register"}}],"IgcGridToolbarComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","grid":"grid","showProgress":"showProgress","register":"register"}}],"IgcGridToolbarExporterComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarExporterComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","columnListHeight":"columnListHeight","exportCSV":"exportCSV","exportExcel":"exportExcel","exportPDF":"exportPDF","filename":"filename","overlaySettings":"overlaySettings","prompt":"prompt","title":"title","addEventListener":"addEventListener","export":"export","removeEventListener":"removeEventListener","register":"register","closed":"closed","closing":"closing","columnToggle":"columnToggle","exportEnded":"exportEnded","exportStarted":"exportStarted","opened":"opened","opening":"opening"}}],"IgcGridToolbarHidingComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarHidingComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","columnListHeight":"columnListHeight","overlaySettings":"overlaySettings","prompt":"prompt","title":"title","addEventListener":"addEventListener","removeEventListener":"removeEventListener","register":"register"}}],"IgcGridToolbarPinningComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarPinningComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","columnListHeight":"columnListHeight","overlaySettings":"overlaySettings","prompt":"prompt","title":"title","addEventListener":"addEventListener","removeEventListener":"removeEventListener","register":"register"}}],"IgcGridToolbarTitleComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcGridToolbarTitleComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","register":"register"}}],"IgcHierarchicalGridComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcHierarchicalGridComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","childLayoutList":"childLayoutList","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","data":"data","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expandChildren":"expandChildren","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","foreignKey":"foreignKey","hasChildrenKey":"hasChildrenKey","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","id":"id","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rootGrid":"rootGrid","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedCells":"selectedCells","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showExpandAll":"showExpandAll","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalItemCount":"totalItemCount","totalRecords":"totalRecords","transactions":"transactions","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addEventListener":"addEventListener","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getCellByColumn":"getCellByColumn","getCellByKey":"getCellByKey","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getDefaultExpandState":"getDefaultExpandState","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowByIndex":"getRowByIndex","getRowByKey":"getRowByKey","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","removeEventListener":"removeEventListener","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow","register":"register"}}],"IgcNoopFilteringStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcNoopFilteringStrategy","k":"class","s":"classes","m":{"constructor":"constructor","filter":"filter","findMatchByExpression":"findMatchByExpression","getFilterItems":"getFilterItems","matchRecord":"matchRecord","instance":"instance"}}],"IgcNoopPivotDimensionsStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcNoopPivotDimensionsStrategy","k":"class","s":"classes","m":{"constructor":"constructor","process":"process","instance":"instance"}}],"IgcNoopSortingStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcNoopSortingStrategy","k":"class","s":"classes","m":{"constructor":"constructor","sort":"sort","instance":"instance"}}],"IgcNumberFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcNumberFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgcNumberSummaryOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcNumberSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","average":"average","count":"count","max":"max","min":"min","sum":"sum"}}],"IgcPaginatorComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcPaginatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","isFirstPage":"isFirstPage","isLastPage":"isLastPage","overlaySettings":"overlaySettings","page":"page","perPage":"perPage","resourceStrings":"resourceStrings","selectOptions":"selectOptions","totalPages":"totalPages","totalRecords":"totalRecords","addEventListener":"addEventListener","nextPage":"nextPage","paginate":"paginate","previousPage":"previousPage","removeEventListener":"removeEventListener","register":"register","pageChange":"pageChange","paging":"paging","pagingDone":"pagingDone","perPageChange":"perPageChange"}}],"IgcPivotDataSelectorComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcPivotDataSelectorComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","columnsExpanded":"columnsExpanded","filtersExpanded":"filtersExpanded","grid":"grid","rowsExpanded":"rowsExpanded","valuesExpanded":"valuesExpanded","addEventListener":"addEventListener","removeEventListener":"removeEventListener","register":"register","columnsExpandedChange":"columnsExpandedChange","filtersExpandedChange":"filtersExpandedChange","rowsExpandedChange":"rowsExpandedChange","valuesExpandedChange":"valuesExpandedChange"}}],"IgcPivotDateDimension":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcPivotDateDimension","k":"class","s":"classes","m":{"constructor":"constructor","childLevel":"childLevel","dataType":"dataType","displayName":"displayName","filter":"filter","horizontalSummary":"horizontalSummary","level":"level","memberFunction":"memberFunction","sortable":"sortable","sortDirection":"sortDirection","width":"width","baseDimension":"baseDimension","enabled":"enabled","memberName":"memberName","options":"options","resourceStrings":"resourceStrings"}}],"IgcPivotGridComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcPivotGridComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allDimensions":"allDimensions","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateConfig":"autoGenerateConfig","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","data":"data","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultExpandState":"defaultExpandState","defaultRowHeight":"defaultRowHeight","dimensionsSortingExpressions":"dimensionsSortingExpressions","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","emptyPivotGridTemplate":"emptyPivotGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","pivotConfiguration":"pivotConfiguration","pivotUI":"pivotUI","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDimensionHeaderTemplate":"rowDimensionHeaderTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","superCompactMode":"superCompactMode","toolbar":"toolbar","totalRecords":"totalRecords","transactions":"transactions","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","valueChipTemplate":"valueChipTemplate","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addEventListener":"addEventListener","addRow":"addRow","autoSizeRowDimension":"autoSizeRowDimension","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterDimension":"filterDimension","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getColumnGroupExpandState":"getColumnGroupExpandState","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","insertDimensionAt":"insertDimensionAt","insertValueAt":"insertValueAt","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","moveDimension":"moveDimension","moveValue":"moveValue","navigateTo":"navigateTo","notifyDimensionChange":"notifyDimensionChange","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","removeDimension":"removeDimension","removeEventListener":"removeEventListener","removeValue":"removeValue","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","sortDimension":"sortDimension","toggleColumn":"toggleColumn","toggleColumnVisibility":"toggleColumnVisibility","toggleDimension":"toggleDimension","toggleRow":"toggleRow","toggleRowGroup":"toggleRowGroup","toggleValue":"toggleValue","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow","register":"register","activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dimensionInit":"dimensionInit","dimensionsChange":"dimensionsChange","dimensionsSortingExpressionsChange":"dimensionsSortingExpressionsChange","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridKeydown":"gridKeydown","gridScroll":"gridScroll","pivotConfigurationChange":"pivotConfigurationChange","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange","valueInit":"valueInit","valuesChange":"valuesChange"}}],"IgcQueryBuilderComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcQueryBuilderComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","disableEntityChange":"disableEntityChange","disableReturnFieldsChange":"disableReturnFieldsChange","entities":"entities","expressionTree":"expressionTree","locale":"locale","queryBuilderHeaderCollection":"queryBuilderHeaderCollection","resourceStrings":"resourceStrings","searchValueTemplate":"searchValueTemplate","showEntityChangeDialog":"showEntityChangeDialog","addEventListener":"addEventListener","canCommit":"canCommit","commit":"commit","discard":"discard","removeEventListener":"removeEventListener","register":"register","expressionTreeChange":"expressionTreeChange"}}],"IgcQueryBuilderHeaderComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcQueryBuilderHeaderComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","resourceStrings":"resourceStrings","showLegend":"showLegend","title":"title","register":"register"}}],"IgcRowIslandComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcRowIslandComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","childDataKey":"childDataKey","childLayoutList":"childLayoutList","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expandChildren":"expandChildren","expansionStates":"expansionStates","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","hasChildrenKey":"hasChildrenKey","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hideRowSelectors":"hideRowSelectors","isLoading":"isLoading","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","paginationComponents":"paginationComponents","paginatorTemplate":"paginatorTemplate","pagingMode":"pagingMode","pinnedRows":"pinnedRows","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showExpandAll":"showExpandAll","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","toolbarTemplate":"toolbarTemplate","totalRecords":"totalRecords","transactions":"transactions","validationTrigger":"validationTrigger","width":"width","addEventListener":"addEventListener","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","refreshSearch":"refreshSearch","removeEventListener":"removeEventListener","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow","register":"register","activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dataPreLoad":"dataPreLoad","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridCreated":"gridCreated","gridInitialized":"gridInitialized","gridKeydown":"gridKeydown","gridScroll":"gridScroll","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange"}}],"IgcStringFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcStringFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","applyIgnoreCase":"applyIgnoreCase","instance":"instance"}}],"IgcSummaryOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","count":"count"}}],"IgcTimeFilteringOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcTimeFilteringOperand","k":"class","s":"classes","m":{"constructor":"constructor","operations":"operations","append":"append","condition":"condition","conditionList":"conditionList","instance":"instance"}}],"IgcTimeSummaryOperand":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcTimeSummaryOperand","k":"class","s":"classes","m":{"constructor":"constructor","operate":"operate","count":"count","earliestTime":"earliestTime","latestTime":"latestTime"}}],"IgcTreeGridComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/classes/IgcTreeGridComponent","k":"class","s":"classes","m":{"constructor":"constructor","tagName":"tagName","actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cascadeOnDelete":"cascadeOnDelete","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","childDataKey":"childDataKey","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","data":"data","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionDepth":"expansionDepth","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","foreignKey":"foreignKey","hasChildrenKey":"hasChildrenKey","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","id":"id","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadChildrenOnDemand":"loadChildrenOnDemand","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","processedRootRecords":"processedRootRecords","resourceStrings":"resourceStrings","rootRecords":"rootRecords","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowLoadingIndicatorTemplate":"rowLoadingIndicatorTemplate","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedCells":"selectedCells","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalRecords":"totalRecords","transactions":"transactions","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addEventListener":"addEventListener","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getCellByColumn":"getCellByColumn","getCellByKey":"getCellByKey","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getDefaultExpandState":"getDefaultExpandState","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowByIndex":"getRowByIndex","getRowByKey":"getRowByKey","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","removeEventListener":"removeEventListener","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow","register":"register"}}],"IgcActionStripResourceStrings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcActionStripResourceStrings","k":"interface","s":"interfaces","m":{"igx_action_strip_button_more_title":"igx_action_strip_button_more_title"}}],"IgcActiveNodeChangeEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcActiveNodeChangeEventArgs","k":"interface","s":"interfaces","m":{"column":"column","level":"level","owner":"owner","row":"row","tag":"tag"}}],"IgcBaseEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcBaseEventArgs","k":"interface","s":"interfaces","m":{"owner":"owner"}}],"IgcBaseExporter":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcBaseExporter","k":"interface","s":"interfaces","m":{"addEventListener":"addEventListener","export":"export","exportData":"exportData","removeEventListener":"removeEventListener"}}],"IgcBaseExporterEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcBaseExporterEventMap","k":"interface","s":"interfaces","m":{"columnExporting":"columnExporting","exportEnded":"exportEnded","rowExporting":"rowExporting"}}],"IgcBaseFilteringStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcBaseFilteringStrategy","k":"interface","s":"interfaces","m":{"filter":"filter","findMatchByExpression":"findMatchByExpression","getFilterItems":"getFilterItems","matchRecord":"matchRecord"}}],"IgcBaseSearchInfo":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcBaseSearchInfo","k":"interface","s":"interfaces","m":{"caseSensitive":"caseSensitive","content":"content","exactMatch":"exactMatch","matchCount":"matchCount","searchText":"searchText"}}],"IgcBaseToolbarDirectiveEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcBaseToolbarDirectiveEventMap","k":"interface","s":"interfaces","m":{"closed":"closed","closing":"closing","columnToggle":"columnToggle","opened":"opened","opening":"opening"}}],"IgcCancelableBrowserEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCancelableBrowserEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel"}}],"IgcCancelableEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCancelableEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel"}}],"IgcCellPosition":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCellPosition","k":"interface","s":"interfaces","m":{"rowIndex":"rowIndex","visibleColumnIndex":"visibleColumnIndex"}}],"IgcCellTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCellTemplateContext","k":"interface","s":"interfaces","m":{"additionalTemplateContext":"additionalTemplateContext","cell":"cell","implicit":"implicit"}}],"IgcCellType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCellType","k":"interface","s":"interfaces","m":{"cellID":"cellID","id":"id","readonly":"readonly","title":"title","validation":"validation","visibleColumnIndex":"visibleColumnIndex","active":"active","column":"column","editable":"editable","editMode":"editMode","editValue":"editValue","grid":"grid","row":"row","selected":"selected","value":"value","width":"width","calculateSizeToFit":"calculateSizeToFit","setEditMode":"setEditMode","update":"update"}}],"IgcClipboardOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcClipboardOptions","k":"interface","s":"interfaces","m":{"copyFormatters":"copyFormatters","copyHeaders":"copyHeaders","enabled":"enabled","separator":"separator"}}],"IgcColumnComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnComponentEventMap","k":"interface","s":"interfaces","m":{"expandedChange":"expandedChange","hiddenChange":"hiddenChange","pinnedChange":"pinnedChange","widthChange":"widthChange"}}],"IgcColumnEditorOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnEditorOptions","k":"interface","s":"interfaces","m":{"dateTimeFormat":"dateTimeFormat"}}],"IgcColumnExportingEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnExportingEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","columnIndex":"columnIndex","field":"field","grid":"grid","header":"header","owner":"owner","skipFormatter":"skipFormatter"}}],"IgcColumnMovingEndEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnMovingEndEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","owner":"owner","source":"source","target":"target"}}],"IgcColumnMovingEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnMovingEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","owner":"owner","source":"source"}}],"IgcColumnMovingStartEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnMovingStartEventArgs","k":"interface","s":"interfaces","m":{"owner":"owner","source":"source"}}],"IgcColumnPipeArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnPipeArgs","k":"interface","s":"interfaces","m":{"currencyCode":"currencyCode","digitsInfo":"digitsInfo","display":"display","format":"format","timezone":"timezone","weekStart":"weekStart"}}],"IgcColumnResizeEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnResizeEventArgs","k":"interface","s":"interfaces","m":{"column":"column","newWidth":"newWidth","owner":"owner","prevWidth":"prevWidth"}}],"IgcColumnSelectionEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnSelectionEventArgs","k":"interface","s":"interfaces","m":{"added":"added","cancel":"cancel","newSelection":"newSelection","oldSelection":"oldSelection","owner":"owner","removed":"removed"}}],"IgcColumnState":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnState","k":"interface","s":"interfaces","m":{"colEnd":"colEnd","collapsible":"collapsible","colStart":"colStart","columnLayout":"columnLayout","expanded":"expanded","parent":"parent","rowEnd":"rowEnd","rowStart":"rowStart","visibleWhenCollapsed":"visibleWhenCollapsed","columnGroup":"columnGroup","dataType":"dataType","disableHiding":"disableHiding","disablePinning":"disablePinning","editable":"editable","field":"field","filterable":"filterable","filteringIgnoreCase":"filteringIgnoreCase","groupable":"groupable","hasSummary":"hasSummary","header":"header","headerClasses":"headerClasses","headerGroupClasses":"headerGroupClasses","hidden":"hidden","key":"key","maxWidth":"maxWidth","parentKey":"parentKey","pinned":"pinned","resizable":"resizable","searchable":"searchable","sortable":"sortable","sortingIgnoreCase":"sortingIgnoreCase","width":"width"}}],"IgcColumnTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnTemplateContext","k":"interface","s":"interfaces","m":{"column":"column","implicit":"implicit"}}],"IgcColumnToggledEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnToggledEventArgs","k":"interface","s":"interfaces","m":{"checked":"checked","column":"column","owner":"owner"}}],"IgcColumnVisibilityChangedEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnVisibilityChangedEventArgs","k":"interface","s":"interfaces","m":{"column":"column","newValue":"newValue","owner":"owner"}}],"IgcColumnVisibilityChangingEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcColumnVisibilityChangingEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","column":"column","newValue":"newValue"}}],"IgcCsvExportEndedEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCsvExportEndedEventArgs","k":"interface","s":"interfaces","m":{"csvData":"csvData","owner":"owner"}}],"IgcCsvExporterServiceEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcCsvExporterServiceEventMap","k":"interface","s":"interfaces","m":{"columnExporting":"columnExporting","exportEnded":"exportEnded","rowExporting":"rowExporting"}}],"IgcDataCloneStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcDataCloneStrategy","k":"interface","s":"interfaces","m":{"clone":"clone"}}],"IgcDimensionsChange":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcDimensionsChange","k":"interface","s":"interfaces","m":{"dimensionCollectionType":"dimensionCollectionType","dimensions":"dimensions"}}],"IgcEntityType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcEntityType","k":"interface","s":"interfaces","m":{"childEntities":"childEntities","fields":"fields","name":"name"}}],"IgcExcelExportEndedEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcExcelExportEndedEventArgs","k":"interface","s":"interfaces","m":{"owner":"owner","xlsx":"xlsx"}}],"IgcExcelExporterServiceEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcExcelExporterServiceEventMap","k":"interface","s":"interfaces","m":{"columnExporting":"columnExporting","exportEnded":"exportEnded","rowExporting":"rowExporting"}}],"IgcExporterEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcExporterEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","exporter":"exporter","grid":"grid","options":"options"}}],"IgcExporterOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcExporterOptions","k":"interface","s":"interfaces"}],"IgcExporterOptionsBase":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcExporterOptionsBase","k":"interface","s":"interfaces","m":{"alwaysExportHeaders":"alwaysExportHeaders","exportSummaries":"exportSummaries","fileName":"fileName","freezeHeaders":"freezeHeaders","ignoreColumnsOrder":"ignoreColumnsOrder","ignoreColumnsVisibility":"ignoreColumnsVisibility","ignoreFiltering":"ignoreFiltering","ignoreGrouping":"ignoreGrouping","ignoreMultiColumnHeaders":"ignoreMultiColumnHeaders","ignoreSorting":"ignoreSorting"}}],"IgcExpressionTree":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcExpressionTree","k":"interface","s":"interfaces","m":{"entity":"entity","fieldName":"fieldName","returnFields":"returnFields","filteringOperands":"filteringOperands","operator":"operator"}}],"IgcFieldEditorOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFieldEditorOptions","k":"interface","s":"interfaces","m":{"dateTimeFormat":"dateTimeFormat"}}],"IgcFieldPipeArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFieldPipeArgs","k":"interface","s":"interfaces","m":{"currencyCode":"currencyCode","digitsInfo":"digitsInfo","display":"display","format":"format","timezone":"timezone","weekStart":"weekStart"}}],"IgcFieldType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFieldType","k":"interface","s":"interfaces","m":{"defaultDateTimeFormat":"defaultDateTimeFormat","defaultTimeFormat":"defaultTimeFormat","editorOptions":"editorOptions","filters":"filters","header":"header","label":"label","pipeArgs":"pipeArgs","dataType":"dataType","field":"field","formatter":"formatter"}}],"IgcFilteringEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFilteringEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","filteringExpressions":"filteringExpressions","owner":"owner"}}],"IgcFilteringExpression":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFilteringExpression","k":"interface","s":"interfaces","m":{"condition":"condition","conditionName":"conditionName","ignoreCase":"ignoreCase","searchTree":"searchTree","searchVal":"searchVal","fieldName":"fieldName"}}],"IgcFilteringOperation":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFilteringOperation","k":"interface","s":"interfaces","m":{"hidden":"hidden","isNestedQuery":"isNestedQuery","logic":"logic","iconName":"iconName","isUnary":"isUnary","name":"name"}}],"IgcFilteringStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFilteringStrategy","k":"interface","s":"interfaces","m":{"filter":"filter","getFilterItems":"getFilterItems"}}],"IgcFilterItem":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcFilterItem","k":"interface","s":"interfaces","m":{"children":"children","label":"label","value":"value"}}],"IgcForOfDataChangeEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcForOfDataChangeEventArgs","k":"interface","s":"interfaces","m":{"containerSize":"containerSize","owner":"owner","state":"state"}}],"IgcForOfDataChangingEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcForOfDataChangingEventArgs","k":"interface","s":"interfaces","m":{"containerSize":"containerSize","owner":"owner","state":"state"}}],"IgcForOfState":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcForOfState","k":"interface","s":"interfaces","m":{"chunkSize":"chunkSize","owner":"owner","startIndex":"startIndex"}}],"IgcGridActionsBaseDirective":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridActionsBaseDirective","k":"interface","s":"interfaces","m":{"asMenuItems":"asMenuItems"}}],"IgcGridBaseDirective":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridBaseDirective","k":"interface","s":"interfaces","m":{"actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalRecords":"totalRecords","transactions":"transactions","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addEventListener":"addEventListener","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","removeEventListener":"removeEventListener","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow"}}],"IgcGridBaseDirectiveEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridBaseDirectiveEventMap","k":"interface","s":"interfaces","m":{"activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridKeydown":"gridKeydown","gridScroll":"gridScroll","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange"}}],"IgcGridCellEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridCellEventArgs","k":"interface","s":"interfaces","m":{"cell":"cell","event":"event","owner":"owner"}}],"IgcGridClipboardEvent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridClipboardEvent","k":"interface","s":"interfaces","m":{"cancel":"cancel","data":"data"}}],"IgcGridComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridComponentEventMap","k":"interface","s":"interfaces","m":{"activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dataPreLoad":"dataPreLoad","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridKeydown":"gridKeydown","gridScroll":"gridScroll","groupingDone":"groupingDone","groupingExpansionStateChange":"groupingExpansionStateChange","groupingExpressionsChange":"groupingExpressionsChange","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange"}}],"IgcGridContextMenuEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridContextMenuEventArgs","k":"interface","s":"interfaces","m":{"cell":"cell","event":"event","row":"row"}}],"IgcGridCreatedEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridCreatedEventArgs","k":"interface","s":"interfaces","m":{"grid":"grid","owner":"owner","parentID":"parentID","parentRowData":"parentRowData"}}],"IgcGridEditDoneEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridEditDoneEventArgs","k":"interface","s":"interfaces","m":{"cellID":"cellID","column":"column","isAddRow":"isAddRow","newValue":"newValue","oldValue":"oldValue","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowID":"rowID","rowKey":"rowKey","valid":"valid"}}],"IgcGridEditEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridEditEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","cellID":"cellID","column":"column","isAddRow":"isAddRow","newValue":"newValue","oldValue":"oldValue","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowID":"rowID","rowKey":"rowKey","valid":"valid"}}],"IgcGridEmptyTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridEmptyTemplateContext","k":"interface","s":"interfaces"}],"IgcGridFormGroupCreatedEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridFormGroupCreatedEventArgs","k":"interface","s":"interfaces","m":{"owner":"owner"}}],"IgcGridGroupingStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridGroupingStrategy","k":"interface","s":"interfaces","m":{"groupBy":"groupBy","sort":"sort"}}],"IgcGridHeaderTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridHeaderTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridKeydownEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridKeydownEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","event":"event","owner":"owner","target":"target","targetType":"targetType"}}],"IgcGridMasterDetailContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridMasterDetailContext","k":"interface","s":"interfaces","m":{"implicit":"implicit","index":"index"}}],"IgcGridMergeStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridMergeStrategy","k":"interface","s":"interfaces","m":{"comparer":"comparer","merge":"merge"}}],"IgcGridPaginatorTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridPaginatorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridResourceStrings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridResourceStrings","k":"interface","s":"interfaces","m":{"igx_grid_actions_add_child_label":"igx_grid_actions_add_child_label","igx_grid_actions_add_label":"igx_grid_actions_add_label","igx_grid_actions_delete_label":"igx_grid_actions_delete_label","igx_grid_actions_edit_label":"igx_grid_actions_edit_label","igx_grid_actions_jumpDown_label":"igx_grid_actions_jumpDown_label","igx_grid_actions_jumpUp_label":"igx_grid_actions_jumpUp_label","igx_grid_actions_pin_label":"igx_grid_actions_pin_label","igx_grid_actions_unpin_label":"igx_grid_actions_unpin_label","igx_grid_add_row_label":"igx_grid_add_row_label","igx_grid_advanced_filter_add_condition":"igx_grid_advanced_filter_add_condition","igx_grid_advanced_filter_add_condition_root":"igx_grid_advanced_filter_add_condition_root","igx_grid_advanced_filter_add_group":"igx_grid_advanced_filter_add_group","igx_grid_advanced_filter_add_group_root":"igx_grid_advanced_filter_add_group_root","igx_grid_advanced_filter_and_group":"igx_grid_advanced_filter_and_group","igx_grid_advanced_filter_and_label":"igx_grid_advanced_filter_and_label","igx_grid_advanced_filter_column_placeholder":"igx_grid_advanced_filter_column_placeholder","igx_grid_advanced_filter_create_and_group":"igx_grid_advanced_filter_create_and_group","igx_grid_advanced_filter_create_or_group":"igx_grid_advanced_filter_create_or_group","igx_grid_advanced_filter_delete":"igx_grid_advanced_filter_delete","igx_grid_advanced_filter_delete_filters":"igx_grid_advanced_filter_delete_filters","igx_grid_advanced_filter_dialog_checkbox_text":"igx_grid_advanced_filter_dialog_checkbox_text","igx_grid_advanced_filter_dialog_message":"igx_grid_advanced_filter_dialog_message","igx_grid_advanced_filter_dialog_title":"igx_grid_advanced_filter_dialog_title","igx_grid_advanced_filter_drop_ghost_text":"igx_grid_advanced_filter_drop_ghost_text","igx_grid_advanced_filter_end_group":"igx_grid_advanced_filter_end_group","igx_grid_advanced_filter_from_label":"igx_grid_advanced_filter_from_label","igx_grid_advanced_filter_initial_text":"igx_grid_advanced_filter_initial_text","igx_grid_advanced_filter_or_group":"igx_grid_advanced_filter_or_group","igx_grid_advanced_filter_or_label":"igx_grid_advanced_filter_or_label","igx_grid_advanced_filter_query_value_placeholder":"igx_grid_advanced_filter_query_value_placeholder","igx_grid_advanced_filter_select_entity":"igx_grid_advanced_filter_select_entity","igx_grid_advanced_filter_select_return_field_single":"igx_grid_advanced_filter_select_return_field_single","igx_grid_advanced_filter_switch_group":"igx_grid_advanced_filter_switch_group","igx_grid_advanced_filter_title":"igx_grid_advanced_filter_title","igx_grid_advanced_filter_ungroup":"igx_grid_advanced_filter_ungroup","igx_grid_advanced_filter_value_placeholder":"igx_grid_advanced_filter_value_placeholder","igx_grid_complex_filter":"igx_grid_complex_filter","igx_grid_disabled_date_validation_error":"igx_grid_disabled_date_validation_error","igx_grid_email_validation_error":"igx_grid_email_validation_error","igx_grid_emptyFilteredGrid_message":"igx_grid_emptyFilteredGrid_message","igx_grid_emptyGrid_message":"igx_grid_emptyGrid_message","igx_grid_excel_add_to_filter":"igx_grid_excel_add_to_filter","igx_grid_excel_apply":"igx_grid_excel_apply","igx_grid_excel_blanks":"igx_grid_excel_blanks","igx_grid_excel_boolean_filter":"igx_grid_excel_boolean_filter","igx_grid_excel_cancel":"igx_grid_excel_cancel","igx_grid_excel_currency_filter":"igx_grid_excel_currency_filter","igx_grid_excel_custom_dialog_add":"igx_grid_excel_custom_dialog_add","igx_grid_excel_custom_dialog_clear":"igx_grid_excel_custom_dialog_clear","igx_grid_excel_custom_dialog_header":"igx_grid_excel_custom_dialog_header","igx_grid_excel_custom_filter":"igx_grid_excel_custom_filter","igx_grid_excel_date_filter":"igx_grid_excel_date_filter","igx_grid_excel_deselect":"igx_grid_excel_deselect","igx_grid_excel_filter_clear":"igx_grid_excel_filter_clear","igx_grid_excel_filter_moving_header":"igx_grid_excel_filter_moving_header","igx_grid_excel_filter_moving_left":"igx_grid_excel_filter_moving_left","igx_grid_excel_filter_moving_left_short":"igx_grid_excel_filter_moving_left_short","igx_grid_excel_filter_moving_right":"igx_grid_excel_filter_moving_right","igx_grid_excel_filter_moving_right_short":"igx_grid_excel_filter_moving_right_short","igx_grid_excel_filter_sorting_asc":"igx_grid_excel_filter_sorting_asc","igx_grid_excel_filter_sorting_asc_short":"igx_grid_excel_filter_sorting_asc_short","igx_grid_excel_filter_sorting_desc":"igx_grid_excel_filter_sorting_desc","igx_grid_excel_filter_sorting_desc_short":"igx_grid_excel_filter_sorting_desc_short","igx_grid_excel_filter_sorting_header":"igx_grid_excel_filter_sorting_header","igx_grid_excel_hide":"igx_grid_excel_hide","igx_grid_excel_matches_count":"igx_grid_excel_matches_count","igx_grid_excel_no_matches":"igx_grid_excel_no_matches","igx_grid_excel_number_filter":"igx_grid_excel_number_filter","igx_grid_excel_pin":"igx_grid_excel_pin","igx_grid_excel_search_placeholder":"igx_grid_excel_search_placeholder","igx_grid_excel_select":"igx_grid_excel_select","igx_grid_excel_select_all":"igx_grid_excel_select_all","igx_grid_excel_select_all_search_results":"igx_grid_excel_select_all_search_results","igx_grid_excel_show":"igx_grid_excel_show","igx_grid_excel_text_filter":"igx_grid_excel_text_filter","igx_grid_excel_unpin":"igx_grid_excel_unpin","igx_grid_filter":"igx_grid_filter","igx_grid_filter_after":"igx_grid_filter_after","igx_grid_filter_all":"igx_grid_filter_all","igx_grid_filter_at":"igx_grid_filter_at","igx_grid_filter_at_after":"igx_grid_filter_at_after","igx_grid_filter_at_before":"igx_grid_filter_at_before","igx_grid_filter_before":"igx_grid_filter_before","igx_grid_filter_condition_placeholder":"igx_grid_filter_condition_placeholder","igx_grid_filter_contains":"igx_grid_filter_contains","igx_grid_filter_doesNotContain":"igx_grid_filter_doesNotContain","igx_grid_filter_doesNotEqual":"igx_grid_filter_doesNotEqual","igx_grid_filter_empty":"igx_grid_filter_empty","igx_grid_filter_endsWith":"igx_grid_filter_endsWith","igx_grid_filter_equals":"igx_grid_filter_equals","igx_grid_filter_false":"igx_grid_filter_false","igx_grid_filter_greaterThan":"igx_grid_filter_greaterThan","igx_grid_filter_greaterThanOrEqualTo":"igx_grid_filter_greaterThanOrEqualTo","igx_grid_filter_in":"igx_grid_filter_in","igx_grid_filter_lastMonth":"igx_grid_filter_lastMonth","igx_grid_filter_lastYear":"igx_grid_filter_lastYear","igx_grid_filter_lessThan":"igx_grid_filter_lessThan","igx_grid_filter_lessThanOrEqualTo":"igx_grid_filter_lessThanOrEqualTo","igx_grid_filter_nextMonth":"igx_grid_filter_nextMonth","igx_grid_filter_nextYear":"igx_grid_filter_nextYear","igx_grid_filter_not_at":"igx_grid_filter_not_at","igx_grid_filter_notEmpty":"igx_grid_filter_notEmpty","igx_grid_filter_notIn":"igx_grid_filter_notIn","igx_grid_filter_notNull":"igx_grid_filter_notNull","igx_grid_filter_null":"igx_grid_filter_null","igx_grid_filter_operator_and":"igx_grid_filter_operator_and","igx_grid_filter_operator_or":"igx_grid_filter_operator_or","igx_grid_filter_row_boolean_placeholder":"igx_grid_filter_row_boolean_placeholder","igx_grid_filter_row_close":"igx_grid_filter_row_close","igx_grid_filter_row_date_placeholder":"igx_grid_filter_row_date_placeholder","igx_grid_filter_row_placeholder":"igx_grid_filter_row_placeholder","igx_grid_filter_row_reset":"igx_grid_filter_row_reset","igx_grid_filter_row_time_placeholder":"igx_grid_filter_row_time_placeholder","igx_grid_filter_startsWith":"igx_grid_filter_startsWith","igx_grid_filter_thisMonth":"igx_grid_filter_thisMonth","igx_grid_filter_thisYear":"igx_grid_filter_thisYear","igx_grid_filter_today":"igx_grid_filter_today","igx_grid_filter_true":"igx_grid_filter_true","igx_grid_filter_yesterday":"igx_grid_filter_yesterday","igx_grid_groupByArea_deselect_message":"igx_grid_groupByArea_deselect_message","igx_grid_groupByArea_message":"igx_grid_groupByArea_message","igx_grid_groupByArea_select_message":"igx_grid_groupByArea_select_message","igx_grid_hiding_check_all_label":"igx_grid_hiding_check_all_label","igx_grid_hiding_uncheck_all_label":"igx_grid_hiding_uncheck_all_label","igx_grid_mask_validation_error":"igx_grid_mask_validation_error","igx_grid_max_length_validation_error":"igx_grid_max_length_validation_error","igx_grid_max_validation_error":"igx_grid_max_validation_error","igx_grid_min_length_validation_error":"igx_grid_min_length_validation_error","igx_grid_min_validation_error":"igx_grid_min_validation_error","igx_grid_pattern_validation_error":"igx_grid_pattern_validation_error","igx_grid_pinned_row_indicator":"igx_grid_pinned_row_indicator","igx_grid_pinning_check_all_label":"igx_grid_pinning_check_all_label","igx_grid_pinning_uncheck_all_label":"igx_grid_pinning_uncheck_all_label","igx_grid_pivot_aggregate_avg":"igx_grid_pivot_aggregate_avg","igx_grid_pivot_aggregate_count":"igx_grid_pivot_aggregate_count","igx_grid_pivot_aggregate_date_earliest":"igx_grid_pivot_aggregate_date_earliest","igx_grid_pivot_aggregate_date_latest":"igx_grid_pivot_aggregate_date_latest","igx_grid_pivot_aggregate_max":"igx_grid_pivot_aggregate_max","igx_grid_pivot_aggregate_min":"igx_grid_pivot_aggregate_min","igx_grid_pivot_aggregate_sum":"igx_grid_pivot_aggregate_sum","igx_grid_pivot_aggregate_time_earliest":"igx_grid_pivot_aggregate_time_earliest","igx_grid_pivot_aggregate_time_latest":"igx_grid_pivot_aggregate_time_latest","igx_grid_pivot_column_drop_chip":"igx_grid_pivot_column_drop_chip","igx_grid_pivot_date_dimension_total":"igx_grid_pivot_date_dimension_total","igx_grid_pivot_empty_column_drop_area":"igx_grid_pivot_empty_column_drop_area","igx_grid_pivot_empty_filter_drop_area":"igx_grid_pivot_empty_filter_drop_area","igx_grid_pivot_empty_message":"igx_grid_pivot_empty_message","igx_grid_pivot_empty_row_drop_area":"igx_grid_pivot_empty_row_drop_area","igx_grid_pivot_empty_value_drop_area":"igx_grid_pivot_empty_value_drop_area","igx_grid_pivot_filter_drop_chip":"igx_grid_pivot_filter_drop_chip","igx_grid_pivot_row_drop_chip":"igx_grid_pivot_row_drop_chip","igx_grid_pivot_selector_columns":"igx_grid_pivot_selector_columns","igx_grid_pivot_selector_filters":"igx_grid_pivot_selector_filters","igx_grid_pivot_selector_panel_empty":"igx_grid_pivot_selector_panel_empty","igx_grid_pivot_selector_rows":"igx_grid_pivot_selector_rows","igx_grid_pivot_selector_values":"igx_grid_pivot_selector_values","igx_grid_pivot_value_drop_chip":"igx_grid_pivot_value_drop_chip","igx_grid_required_validation_error":"igx_grid_required_validation_error","igx_grid_row_edit_btn_cancel":"igx_grid_row_edit_btn_cancel","igx_grid_row_edit_btn_done":"igx_grid_row_edit_btn_done","igx_grid_row_edit_text":"igx_grid_row_edit_text","igx_grid_snackbar_addrow_actiontext":"igx_grid_snackbar_addrow_actiontext","igx_grid_snackbar_addrow_label":"igx_grid_snackbar_addrow_label","igx_grid_summary_average":"igx_grid_summary_average","igx_grid_summary_count":"igx_grid_summary_count","igx_grid_summary_earliest":"igx_grid_summary_earliest","igx_grid_summary_latest":"igx_grid_summary_latest","igx_grid_summary_max":"igx_grid_summary_max","igx_grid_summary_min":"igx_grid_summary_min","igx_grid_summary_sum":"igx_grid_summary_sum","igx_grid_toolbar_actions_filter_prompt":"igx_grid_toolbar_actions_filter_prompt","igx_grid_toolbar_advanced_filtering_button_label":"igx_grid_toolbar_advanced_filtering_button_label","igx_grid_toolbar_advanced_filtering_button_tooltip":"igx_grid_toolbar_advanced_filtering_button_tooltip","igx_grid_toolbar_exporter_button_label":"igx_grid_toolbar_exporter_button_label","igx_grid_toolbar_exporter_button_tooltip":"igx_grid_toolbar_exporter_button_tooltip","igx_grid_toolbar_exporter_csv_entry_text":"igx_grid_toolbar_exporter_csv_entry_text","igx_grid_toolbar_exporter_excel_entry_text":"igx_grid_toolbar_exporter_excel_entry_text","igx_grid_toolbar_exporter_pdf_entry_text":"igx_grid_toolbar_exporter_pdf_entry_text","igx_grid_toolbar_hiding_button_tooltip":"igx_grid_toolbar_hiding_button_tooltip","igx_grid_toolbar_hiding_title":"igx_grid_toolbar_hiding_title","igx_grid_toolbar_pinning_button_tooltip":"igx_grid_toolbar_pinning_button_tooltip","igx_grid_toolbar_pinning_title":"igx_grid_toolbar_pinning_title","igx_grid_url_validation_error":"igx_grid_url_validation_error"}}],"IgcGridRowComponent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridRowComponent","k":"interface","s":"interfaces","m":{"addRowUI":"addRowUI","cells":"cells","data":"data","dataRowIndex":"dataRowIndex","disabled":"disabled","expanded":"expanded","hasMergedCells":"hasMergedCells","index":"index","inEditMode":"inEditMode","key":"key","pinned":"pinned","rowHeight":"rowHeight","beginAddRow":"beginAddRow","delete":"delete","getContext":"getContext","getContextMRL":"getContextMRL","isCellActive":"isCellActive","pin":"pin","unpin":"unpin","update":"update"}}],"IgcGridRowDragGhostContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridRowDragGhostContext","k":"interface","s":"interfaces","m":{"data":"data","grid":"grid","implicit":"implicit"}}],"IgcGridRowEditActionsTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridRowEditActionsTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridRowEditTextTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridRowEditTextTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridRowEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridRowEventArgs","k":"interface","s":"interfaces","m":{"event":"event","owner":"owner","row":"row"}}],"IgcGridRowTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridRowTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridScrollEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridScrollEventArgs","k":"interface","s":"interfaces","m":{"direction":"direction","event":"event","owner":"owner","scrollPosition":"scrollPosition"}}],"IgcGridSelectionRange":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridSelectionRange","k":"interface","s":"interfaces","m":{"columnEnd":"columnEnd","columnStart":"columnStart","rowEnd":"rowEnd","rowStart":"rowStart"}}],"IgcGridSortingStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridSortingStrategy","k":"interface","s":"interfaces","m":{"sort":"sort"}}],"IgcGridStateBaseDirective":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridStateBaseDirective","k":"interface","s":"interfaces","m":{"options":"options"}}],"IgcGridStateCollection":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridStateCollection","k":"interface","s":"interfaces","m":{"id":"id","parentRowID":"parentRowID","state":"state"}}],"IgcGridStateComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridStateComponentEventMap","k":"interface","s":"interfaces","m":{"stateParsed":"stateParsed"}}],"IgcGridStateInfo":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridStateInfo","k":"interface","s":"interfaces","m":{"advancedFiltering":"advancedFiltering","cellSelection":"cellSelection","columns":"columns","columnSelection":"columnSelection","expansion":"expansion","filtering":"filtering","groupBy":"groupBy","id":"id","moving":"moving","paging":"paging","pinningConfig":"pinningConfig","pivotConfiguration":"pivotConfiguration","rowIslands":"rowIslands","rowPinning":"rowPinning","rowSelection":"rowSelection","sorting":"sorting"}}],"IgcGridStateOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridStateOptions","k":"interface","s":"interfaces","m":{"advancedFiltering":"advancedFiltering","cellSelection":"cellSelection","columns":"columns","columnSelection":"columnSelection","expansion":"expansion","filtering":"filtering","groupBy":"groupBy","moving":"moving","paging":"paging","pinningConfig":"pinningConfig","pivotConfiguration":"pivotConfiguration","rowIslands":"rowIslands","rowPinning":"rowPinning","rowSelection":"rowSelection","sorting":"sorting"}}],"IgcGridTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridToolbarExporterComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridToolbarExporterComponentEventMap","k":"interface","s":"interfaces","m":{"closed":"closed","closing":"closing","columnToggle":"columnToggle","exportEnded":"exportEnded","exportStarted":"exportStarted","opened":"opened","opening":"opening"}}],"IgcGridToolbarExportEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridToolbarExportEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","exporter":"exporter","grid":"grid","options":"options","owner":"owner"}}],"IgcGridToolbarTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridToolbarTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGridValidationState":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridValidationState","k":"interface","s":"interfaces","m":{"errors":"errors","status":"status"}}],"IgcGridValidationStatusEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGridValidationStatusEventArgs","k":"interface","s":"interfaces","m":{"owner":"owner","status":"status"}}],"IgcGroupByExpandState":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByExpandState","k":"interface","s":"interfaces","m":{"expanded":"expanded","hierarchy":"hierarchy"}}],"IgcGroupByKey":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByKey","k":"interface","s":"interfaces","m":{"fieldName":"fieldName","value":"value"}}],"IgcGroupByRecord":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByRecord","k":"interface","s":"interfaces","m":{"column":"column","groups":"groups","expression":"expression","groupParent":"groupParent","height":"height","level":"level","records":"records","value":"value"}}],"IgcGroupByResult":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByResult","k":"interface","s":"interfaces","m":{"data":"data","metadata":"metadata"}}],"IgcGroupByRowSelectorTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByRowSelectorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGroupByRowSelectorTemplateDetails":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByRowSelectorTemplateDetails","k":"interface","s":"interfaces","m":{"groupRow":"groupRow","selectedCount":"selectedCount","totalCount":"totalCount"}}],"IgcGroupByRowTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupByRowTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcGroupingDoneEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupingDoneEventArgs","k":"interface","s":"interfaces","m":{"expressions":"expressions","groupedColumns":"groupedColumns","owner":"owner","ungroupedColumns":"ungroupedColumns"}}],"IgcGroupingExpression":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupingExpression","k":"interface","s":"interfaces","m":{"ignoreCase":"ignoreCase","owner":"owner","strategy":"strategy","dir":"dir","fieldName":"fieldName","groupingComparer":"groupingComparer"}}],"IgcGroupingState":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcGroupingState","k":"interface","s":"interfaces","m":{"defaultExpanded":"defaultExpanded","expansion":"expansion","expressions":"expressions"}}],"IgcHeaderType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcHeaderType","k":"interface","s":"interfaces","m":{"column":"column","selectable":"selectable","selected":"selected","sortDirection":"sortDirection","sorted":"sorted","title":"title"}}],"IgcHeadSelectorTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcHeadSelectorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcHeadSelectorTemplateDetails":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcHeadSelectorTemplateDetails","k":"interface","s":"interfaces","m":{"selectedCount":"selectedCount","totalCount":"totalCount","deselectAll":"deselectAll","selectAll":"selectAll"}}],"IgcHierarchicalGridBaseDirective":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcHierarchicalGridBaseDirective","k":"interface","s":"interfaces","m":{"actionStripComponents":"actionStripComponents","addRowEmptyTemplate":"addRowEmptyTemplate","advancedFilteringExpressionsTree":"advancedFilteringExpressionsTree","allowAdvancedFiltering":"allowAdvancedFiltering","allowFiltering":"allowFiltering","autoGenerate":"autoGenerate","autoGenerateExclude":"autoGenerateExclude","batchEditing":"batchEditing","cellMergeMode":"cellMergeMode","cellSelection":"cellSelection","clipboardOptions":"clipboardOptions","columnList":"columnList","columns":"columns","columnSelection":"columnSelection","columnWidth":"columnWidth","dataCloneStrategy":"dataCloneStrategy","dataRowList":"dataRowList","dataView":"dataView","defaultRowHeight":"defaultRowHeight","dragGhostCustomTemplate":"dragGhostCustomTemplate","dragIndicatorIconTemplate":"dragIndicatorIconTemplate","emptyFilteredGridMessage":"emptyFilteredGridMessage","emptyGridMessage":"emptyGridMessage","emptyGridTemplate":"emptyGridTemplate","excelStyleHeaderIconTemplate":"excelStyleHeaderIconTemplate","expansionStates":"expansionStates","filteredData":"filteredData","filteredSortedData":"filteredSortedData","filteringExpressionsTree":"filteringExpressionsTree","filteringLogic":"filteringLogic","filterMode":"filterMode","filterStrategy":"filterStrategy","hasChildrenKey":"hasChildrenKey","headerCollapsedIndicatorTemplate":"headerCollapsedIndicatorTemplate","headerExpandedIndicatorTemplate":"headerExpandedIndicatorTemplate","headSelectorTemplate":"headSelectorTemplate","height":"height","hiddenColumnsCount":"hiddenColumnsCount","hideRowSelectors":"hideRowSelectors","isLoading":"isLoading","lastSearchInfo":"lastSearchInfo","loadingGridTemplate":"loadingGridTemplate","locale":"locale","mergeStrategy":"mergeStrategy","moving":"moving","outlet":"outlet","paginationComponents":"paginationComponents","pagingMode":"pagingMode","pinnedColumns":"pinnedColumns","pinnedColumnsCount":"pinnedColumnsCount","pinnedEndColumns":"pinnedEndColumns","pinnedRows":"pinnedRows","pinnedStartColumns":"pinnedStartColumns","pinning":"pinning","primaryKey":"primaryKey","resourceStrings":"resourceStrings","rootGrid":"rootGrid","rowAddTextTemplate":"rowAddTextTemplate","rowClasses":"rowClasses","rowCollapsedIndicatorTemplate":"rowCollapsedIndicatorTemplate","rowDraggable":"rowDraggable","rowEditable":"rowEditable","rowEditActionsTemplate":"rowEditActionsTemplate","rowEditTextTemplate":"rowEditTextTemplate","rowExpandedIndicatorTemplate":"rowExpandedIndicatorTemplate","rowHeight":"rowHeight","rowList":"rowList","rowSelection":"rowSelection","rowSelectorTemplate":"rowSelectorTemplate","rowStyles":"rowStyles","selectedRows":"selectedRows","selectRowOnClick":"selectRowOnClick","shouldGenerate":"shouldGenerate","showExpandAll":"showExpandAll","showSummaryOnCollapse":"showSummaryOnCollapse","snackbarDisplayTime":"snackbarDisplayTime","sortAscendingHeaderIconTemplate":"sortAscendingHeaderIconTemplate","sortDescendingHeaderIconTemplate":"sortDescendingHeaderIconTemplate","sortHeaderIconTemplate":"sortHeaderIconTemplate","sortingExpressions":"sortingExpressions","sortingOptions":"sortingOptions","sortStrategy":"sortStrategy","summaryCalculationMode":"summaryCalculationMode","summaryPosition":"summaryPosition","summaryRowHeight":"summaryRowHeight","toolbar":"toolbar","totalRecords":"totalRecords","transactions":"transactions","unpinnedColumns":"unpinnedColumns","validationTrigger":"validationTrigger","virtualizationState":"virtualizationState","visibleColumns":"visibleColumns","width":"width","addEventListener":"addEventListener","addRow":"addRow","beginAddRowById":"beginAddRowById","beginAddRowByIndex":"beginAddRowByIndex","clearCellSelection":"clearCellSelection","clearFilter":"clearFilter","clearSearch":"clearSearch","clearSort":"clearSort","closeAdvancedFilteringDialog":"closeAdvancedFilteringDialog","collapseAll":"collapseAll","collapseRow":"collapseRow","deleteRow":"deleteRow","deselectAllColumns":"deselectAllColumns","deselectAllRows":"deselectAllRows","deselectColumns":"deselectColumns","deselectRows":"deselectRows","disableSummaries":"disableSummaries","enableSummaries":"enableSummaries","endEdit":"endEdit","expandAll":"expandAll","expandRow":"expandRow","filter":"filter","filterGlobal":"filterGlobal","findNext":"findNext","findPrev":"findPrev","getColumnByName":"getColumnByName","getColumnByVisibleIndex":"getColumnByVisibleIndex","getHeaderGroupWidth":"getHeaderGroupWidth","getNextCell":"getNextCell","getPinnedEndWidth":"getPinnedEndWidth","getPinnedStartWidth":"getPinnedStartWidth","getPreviousCell":"getPreviousCell","getRowData":"getRowData","getSelectedColumnsData":"getSelectedColumnsData","getSelectedData":"getSelectedData","getSelectedRanges":"getSelectedRanges","isRecordPinnedByIndex":"isRecordPinnedByIndex","markForCheck":"markForCheck","moveColumn":"moveColumn","navigateTo":"navigateTo","openAdvancedFilteringDialog":"openAdvancedFilteringDialog","pinColumn":"pinColumn","pinRow":"pinRow","recalculateAutoSizes":"recalculateAutoSizes","reflow":"reflow","refreshSearch":"refreshSearch","removeEventListener":"removeEventListener","selectAllColumns":"selectAllColumns","selectAllRows":"selectAllRows","selectColumns":"selectColumns","selectedColumns":"selectedColumns","selectRange":"selectRange","selectRows":"selectRows","sort":"sort","toggleColumnVisibility":"toggleColumnVisibility","toggleRow":"toggleRow","unpinColumn":"unpinColumn","unpinRow":"unpinRow","updateCell":"updateCell","updateRow":"updateRow"}}],"IgcHierarchicalGridBaseDirectiveEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcHierarchicalGridBaseDirectiveEventMap","k":"interface","s":"interfaces","m":{"activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dataPreLoad":"dataPreLoad","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridKeydown":"gridKeydown","gridScroll":"gridScroll","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange"}}],"IgcOverlayOutletDirective":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcOverlayOutletDirective","k":"interface","s":"interfaces"}],"IgcOverlaySettings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcOverlaySettings","k":"interface","s":"interfaces","m":{"closeOnEscape":"closeOnEscape","closeOnOutsideClick":"closeOnOutsideClick","modal":"modal","positionStrategy":"positionStrategy","scrollStrategy":"scrollStrategy","target":"target"}}],"IgcPageCancellableEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPageCancellableEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","current":"current","next":"next"}}],"IgcPageEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPageEventArgs","k":"interface","s":"interfaces","m":{"current":"current","owner":"owner","previous":"previous"}}],"IgcPaginatorComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPaginatorComponentEventMap","k":"interface","s":"interfaces","m":{"pageChange":"pageChange","paging":"paging","pagingDone":"pagingDone","perPageChange":"perPageChange"}}],"IgcPaginatorResourceStrings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPaginatorResourceStrings","k":"interface","s":"interfaces","m":{"igx_paginator_first_page_button_text":"igx_paginator_first_page_button_text","igx_paginator_label":"igx_paginator_label","igx_paginator_last_page_button_text":"igx_paginator_last_page_button_text","igx_paginator_next_page_button_text":"igx_paginator_next_page_button_text","igx_paginator_pager_text":"igx_paginator_pager_text","igx_paginator_previous_page_button_text":"igx_paginator_previous_page_button_text"}}],"IgcPagingState":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPagingState","k":"interface","s":"interfaces","m":{"index":"index","recordsPerPage":"recordsPerPage"}}],"IgcPinColumnCancellableEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPinColumnCancellableEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","column":"column","insertAtIndex":"insertAtIndex","isPinned":"isPinned"}}],"IgcPinColumnEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPinColumnEventArgs","k":"interface","s":"interfaces","m":{"column":"column","insertAtIndex":"insertAtIndex","isPinned":"isPinned","owner":"owner"}}],"IgcPinningConfig":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPinningConfig","k":"interface","s":"interfaces","m":{"columns":"columns","rows":"rows"}}],"IgcPinRowEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPinRowEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","insertAtIndex":"insertAtIndex","isPinned":"isPinned","owner":"owner","row":"row","rowID":"rowID","rowKey":"rowKey"}}],"IgcPivotAggregator":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotAggregator","k":"interface","s":"interfaces","m":{"aggregator":"aggregator","aggregatorName":"aggregatorName","key":"key","label":"label"}}],"IgcPivotConfiguration":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotConfiguration","k":"interface","s":"interfaces","m":{"columnStrategy":"columnStrategy","filters":"filters","pivotKeys":"pivotKeys","rowStrategy":"rowStrategy","columns":"columns","rows":"rows","values":"values"}}],"IgcPivotConfigurationChangedEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotConfigurationChangedEventArgs","k":"interface","s":"interfaces","m":{"pivotConfiguration":"pivotConfiguration"}}],"IgcPivotDataSelectorComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotDataSelectorComponentEventMap","k":"interface","s":"interfaces","m":{"columnsExpandedChange":"columnsExpandedChange","filtersExpandedChange":"filtersExpandedChange","rowsExpandedChange":"rowsExpandedChange","valuesExpandedChange":"valuesExpandedChange"}}],"IgcPivotDateDimensionOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotDateDimensionOptions","k":"interface","s":"interfaces","m":{"fullDate":"fullDate","months":"months","quarters":"quarters","total":"total","years":"years"}}],"IgcPivotDimension":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotDimension","k":"interface","s":"interfaces","m":{"childLevel":"childLevel","dataType":"dataType","displayName":"displayName","filter":"filter","horizontalSummary":"horizontalSummary","level":"level","memberFunction":"memberFunction","sortable":"sortable","sortDirection":"sortDirection","width":"width","enabled":"enabled","memberName":"memberName"}}],"IgcPivotDimensionStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotDimensionStrategy","k":"interface","s":"interfaces","m":{"process":"process"}}],"IgcPivotGridColumn":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotGridColumn","k":"interface","s":"interfaces","m":{"dimensions":"dimensions","field":"field","value":"value"}}],"IgcPivotGridComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotGridComponentEventMap","k":"interface","s":"interfaces","m":{"activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dimensionInit":"dimensionInit","dimensionsChange":"dimensionsChange","dimensionsSortingExpressionsChange":"dimensionsSortingExpressionsChange","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridKeydown":"gridKeydown","gridScroll":"gridScroll","pivotConfigurationChange":"pivotConfigurationChange","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange","valueInit":"valueInit","valuesChange":"valuesChange"}}],"IgcPivotGridRecord":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotGridRecord","k":"interface","s":"interfaces","m":{"dataIndex":"dataIndex","level":"level","records":"records","totalRecordDimensionName":"totalRecordDimensionName","dimensions":"dimensions"}}],"IgcPivotGridValueTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotGridValueTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcPivotKeys":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotKeys","k":"interface","s":"interfaces","m":{"aggregations":"aggregations","children":"children","columnDimensionSeparator":"columnDimensionSeparator","level":"level","records":"records","rowDimensionSeparator":"rowDimensionSeparator"}}],"IgcPivotUISettings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotUISettings","k":"interface","s":"interfaces","m":{"horizontalSummariesPosition":"horizontalSummariesPosition","rowLayout":"rowLayout","showConfiguration":"showConfiguration","showRowHeaders":"showRowHeaders"}}],"IgcPivotValue":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPivotValue","k":"interface","s":"interfaces","m":{"aggregateList":"aggregateList","dataType":"dataType","displayName":"displayName","formatter":"formatter","styles":"styles","aggregate":"aggregate","enabled":"enabled","member":"member"}}],"IgcPositionSettings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPositionSettings","k":"interface","s":"interfaces","m":{"horizontalDirection":"horizontalDirection","horizontalStartPoint":"horizontalStartPoint","minSize":"minSize","offset":"offset","verticalDirection":"verticalDirection","verticalStartPoint":"verticalStartPoint"}}],"IgcPositionStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcPositionStrategy","k":"interface","s":"interfaces","m":{"settings":"settings","clone":"clone"}}],"IgcQueryBuilderComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcQueryBuilderComponentEventMap","k":"interface","s":"interfaces","m":{"expressionTreeChange":"expressionTreeChange"}}],"IgcQueryBuilderResourceStrings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcQueryBuilderResourceStrings","k":"interface","s":"interfaces","m":{"igx_query_builder_add_condition":"igx_query_builder_add_condition","igx_query_builder_add_condition_root":"igx_query_builder_add_condition_root","igx_query_builder_add_group":"igx_query_builder_add_group","igx_query_builder_add_group_root":"igx_query_builder_add_group_root","igx_query_builder_all_fields":"igx_query_builder_all_fields","igx_query_builder_and_group":"igx_query_builder_and_group","igx_query_builder_and_label":"igx_query_builder_and_label","igx_query_builder_column_placeholder":"igx_query_builder_column_placeholder","igx_query_builder_condition_placeholder":"igx_query_builder_condition_placeholder","igx_query_builder_date_placeholder":"igx_query_builder_date_placeholder","igx_query_builder_datetime_placeholder":"igx_query_builder_datetime_placeholder","igx_query_builder_delete":"igx_query_builder_delete","igx_query_builder_delete_filters":"igx_query_builder_delete_filters","igx_query_builder_details":"igx_query_builder_details","igx_query_builder_dialog_cancel":"igx_query_builder_dialog_cancel","igx_query_builder_dialog_checkbox_text":"igx_query_builder_dialog_checkbox_text","igx_query_builder_dialog_confirm":"igx_query_builder_dialog_confirm","igx_query_builder_dialog_message":"igx_query_builder_dialog_message","igx_query_builder_dialog_title":"igx_query_builder_dialog_title","igx_query_builder_drop_ghost_text":"igx_query_builder_drop_ghost_text","igx_query_builder_end_group":"igx_query_builder_end_group","igx_query_builder_filter_after":"igx_query_builder_filter_after","igx_query_builder_filter_all":"igx_query_builder_filter_all","igx_query_builder_filter_at":"igx_query_builder_filter_at","igx_query_builder_filter_at_after":"igx_query_builder_filter_at_after","igx_query_builder_filter_at_before":"igx_query_builder_filter_at_before","igx_query_builder_filter_before":"igx_query_builder_filter_before","igx_query_builder_filter_contains":"igx_query_builder_filter_contains","igx_query_builder_filter_doesNotContain":"igx_query_builder_filter_doesNotContain","igx_query_builder_filter_doesNotEqual":"igx_query_builder_filter_doesNotEqual","igx_query_builder_filter_empty":"igx_query_builder_filter_empty","igx_query_builder_filter_endsWith":"igx_query_builder_filter_endsWith","igx_query_builder_filter_equals":"igx_query_builder_filter_equals","igx_query_builder_filter_false":"igx_query_builder_filter_false","igx_query_builder_filter_greaterThan":"igx_query_builder_filter_greaterThan","igx_query_builder_filter_greaterThanOrEqualTo":"igx_query_builder_filter_greaterThanOrEqualTo","igx_query_builder_filter_in":"igx_query_builder_filter_in","igx_query_builder_filter_lastMonth":"igx_query_builder_filter_lastMonth","igx_query_builder_filter_lastYear":"igx_query_builder_filter_lastYear","igx_query_builder_filter_lessThan":"igx_query_builder_filter_lessThan","igx_query_builder_filter_lessThanOrEqualTo":"igx_query_builder_filter_lessThanOrEqualTo","igx_query_builder_filter_nextMonth":"igx_query_builder_filter_nextMonth","igx_query_builder_filter_nextYear":"igx_query_builder_filter_nextYear","igx_query_builder_filter_not_at":"igx_query_builder_filter_not_at","igx_query_builder_filter_notEmpty":"igx_query_builder_filter_notEmpty","igx_query_builder_filter_notIn":"igx_query_builder_filter_notIn","igx_query_builder_filter_notNull":"igx_query_builder_filter_notNull","igx_query_builder_filter_null":"igx_query_builder_filter_null","igx_query_builder_filter_operator_and":"igx_query_builder_filter_operator_and","igx_query_builder_filter_operator_or":"igx_query_builder_filter_operator_or","igx_query_builder_filter_startsWith":"igx_query_builder_filter_startsWith","igx_query_builder_filter_thisMonth":"igx_query_builder_filter_thisMonth","igx_query_builder_filter_thisYear":"igx_query_builder_filter_thisYear","igx_query_builder_filter_today":"igx_query_builder_filter_today","igx_query_builder_filter_true":"igx_query_builder_filter_true","igx_query_builder_filter_yesterday":"igx_query_builder_filter_yesterday","igx_query_builder_from_label":"igx_query_builder_from_label","igx_query_builder_initial_text":"igx_query_builder_initial_text","igx_query_builder_or_group":"igx_query_builder_or_group","igx_query_builder_or_label":"igx_query_builder_or_label","igx_query_builder_query_value_placeholder":"igx_query_builder_query_value_placeholder","igx_query_builder_search":"igx_query_builder_search","igx_query_builder_select_all":"igx_query_builder_select_all","igx_query_builder_select_entity":"igx_query_builder_select_entity","igx_query_builder_select_label":"igx_query_builder_select_label","igx_query_builder_select_return_field_single":"igx_query_builder_select_return_field_single","igx_query_builder_select_return_fields":"igx_query_builder_select_return_fields","igx_query_builder_switch_group":"igx_query_builder_switch_group","igx_query_builder_time_placeholder":"igx_query_builder_time_placeholder","igx_query_builder_ungroup":"igx_query_builder_ungroup","igx_query_builder_value_placeholder":"igx_query_builder_value_placeholder","igx_query_builder_where_label":"igx_query_builder_where_label"}}],"IgcQueryBuilderSearchValueContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcQueryBuilderSearchValueContext","k":"interface","s":"interfaces","m":{"implicit":"implicit","selectedCondition":"selectedCondition","selectedField":"selectedField"}}],"IgcRowDataCancelableEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowDataCancelableEventArgs","k":"interface","s":"interfaces","m":{"cellID":"cellID","data":"data","isAddRow":"isAddRow","newValue":"newValue","oldValue":"oldValue","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowKey":"rowKey"}}],"IgcRowDataEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowDataEventArgs","k":"interface","s":"interfaces","m":{"data":"data","owner":"owner","primaryKey":"primaryKey","rowData":"rowData","rowKey":"rowKey"}}],"IgcRowDirective":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowDirective","k":"interface","s":"interfaces","m":{"addRowUI":"addRowUI","cells":"cells","data":"data","dataRowIndex":"dataRowIndex","disabled":"disabled","expanded":"expanded","hasMergedCells":"hasMergedCells","index":"index","inEditMode":"inEditMode","key":"key","pinned":"pinned","rowHeight":"rowHeight","beginAddRow":"beginAddRow","delete":"delete","isCellActive":"isCellActive","pin":"pin","unpin":"unpin","update":"update"}}],"IgcRowDragEndEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowDragEndEventArgs","k":"interface","s":"interfaces","m":{"animation":"animation","dragData":"dragData","dragDirective":"dragDirective","owner":"owner"}}],"IgcRowDragStartEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowDragStartEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","dragData":"dragData","dragDirective":"dragDirective","owner":"owner"}}],"IgcRowExportingEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowExportingEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","owner":"owner","rowData":"rowData","rowIndex":"rowIndex"}}],"IgcRowIslandComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowIslandComponentEventMap","k":"interface","s":"interfaces","m":{"activeNodeChange":"activeNodeChange","advancedFilteringExpressionsTreeChange":"advancedFilteringExpressionsTreeChange","cellClick":"cellClick","cellEdit":"cellEdit","cellEditDone":"cellEditDone","cellEditEnter":"cellEditEnter","cellEditExit":"cellEditExit","childrenResolved":"childrenResolved","columnInit":"columnInit","columnMoving":"columnMoving","columnMovingEnd":"columnMovingEnd","columnMovingStart":"columnMovingStart","columnPin":"columnPin","columnPinned":"columnPinned","columnResized":"columnResized","columnSelectionChanging":"columnSelectionChanging","columnVisibilityChanged":"columnVisibilityChanged","columnVisibilityChanging":"columnVisibilityChanging","contextMenu":"contextMenu","dataChanged":"dataChanged","dataChanging":"dataChanging","dataPreLoad":"dataPreLoad","doubleClick":"doubleClick","expansionStatesChange":"expansionStatesChange","filtering":"filtering","filteringDone":"filteringDone","filteringExpressionsTreeChange":"filteringExpressionsTreeChange","formGroupCreated":"formGroupCreated","gridCopy":"gridCopy","gridCreated":"gridCreated","gridInitialized":"gridInitialized","gridKeydown":"gridKeydown","gridScroll":"gridScroll","rangeSelected":"rangeSelected","rendered":"rendered","rowAdd":"rowAdd","rowAdded":"rowAdded","rowClick":"rowClick","rowDelete":"rowDelete","rowDeleted":"rowDeleted","rowDragEnd":"rowDragEnd","rowDragStart":"rowDragStart","rowEdit":"rowEdit","rowEditDone":"rowEditDone","rowEditEnter":"rowEditEnter","rowEditExit":"rowEditExit","rowPinned":"rowPinned","rowPinning":"rowPinning","rowSelectionChanging":"rowSelectionChanging","rowToggle":"rowToggle","selected":"selected","selectedRowsChange":"selectedRowsChange","sorting":"sorting","sortingDone":"sortingDone","sortingExpressionsChange":"sortingExpressionsChange","toolbarExporting":"toolbarExporting","validationStatusChange":"validationStatusChange"}}],"IgcRowSelectionEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowSelectionEventArgs","k":"interface","s":"interfaces","m":{"added":"added","allRowsSelected":"allRowsSelected","cancel":"cancel","newSelection":"newSelection","oldSelection":"oldSelection","owner":"owner","removed":"removed"}}],"IgcRowSelectorTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowSelectorTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcRowSelectorTemplateDetails":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowSelectorTemplateDetails","k":"interface","s":"interfaces","m":{"index":"index","key":"key","rowID":"rowID","selected":"selected","deselect":"deselect","select":"select"}}],"IgcRowToggleEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowToggleEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","expanded":"expanded","owner":"owner","rowID":"rowID","rowKey":"rowKey"}}],"IgcRowType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcRowType","k":"interface","s":"interfaces","m":{"addRowUI":"addRowUI","cells":"cells","children":"children","data":"data","deleted":"deleted","disabled":"disabled","expanded":"expanded","focused":"focused","groupRow":"groupRow","hasChildren":"hasChildren","inEditMode":"inEditMode","isGroupByRow":"isGroupByRow","isSummaryRow":"isSummaryRow","key":"key","parent":"parent","pinned":"pinned","selected":"selected","treeRow":"treeRow","validation":"validation","grid":"grid","index":"index","viewIndex":"viewIndex","delete":"delete","pin":"pin","unpin":"unpin","update":"update"}}],"IgcScrollStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcScrollStrategy","k":"interface","s":"interfaces","m":{"attach":"attach","detach":"detach"}}],"IgcSearchInfo":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSearchInfo","k":"interface","s":"interfaces","m":{"activeMatchIndex":"activeMatchIndex","caseSensitive":"caseSensitive","content":"content","exactMatch":"exactMatch","matchCount":"matchCount","matchInfoCache":"matchInfoCache","searchText":"searchText"}}],"IgcSize":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSize","k":"interface","s":"interfaces","m":{"height":"height","width":"width"}}],"IgcSortingEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSortingEventArgs","k":"interface","s":"interfaces","m":{"cancel":"cancel","groupingExpressions":"groupingExpressions","owner":"owner","sortingExpressions":"sortingExpressions"}}],"IgcSortingExpression":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSortingExpression","k":"interface","s":"interfaces","m":{"ignoreCase":"ignoreCase","owner":"owner","strategy":"strategy","dir":"dir","fieldName":"fieldName"}}],"IgcSortingOptions":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSortingOptions","k":"interface","s":"interfaces","m":{"mode":"mode"}}],"IgcSortingStrategy":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSortingStrategy","k":"interface","s":"interfaces"}],"IgcSummaryExpression":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSummaryExpression","k":"interface","s":"interfaces","m":{"customSummary":"customSummary","fieldName":"fieldName"}}],"IgcSummaryResult":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSummaryResult","k":"interface","s":"interfaces","m":{"defaultFormatting":"defaultFormatting","key":"key","label":"label","summaryResult":"summaryResult"}}],"IgcSummaryTemplateContext":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcSummaryTemplateContext","k":"interface","s":"interfaces","m":{"implicit":"implicit"}}],"IgcToggleViewCancelableEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcToggleViewCancelableEventArgs","k":"interface","s":"interfaces","m":{"id":"id"}}],"IgcToggleViewEventArgs":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcToggleViewEventArgs","k":"interface","s":"interfaces","m":{"id":"id","owner":"owner"}}],"IgcTreeGridRecord":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcTreeGridRecord","k":"interface","s":"interfaces","m":{"children":"children","expanded":"expanded","isFilteredOutParent":"isFilteredOutParent","level":"level","parent":"parent","data":"data","key":"key"}}],"IgcValidationErrors":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcValidationErrors","k":"interface","s":"interfaces"}],"IgcValidationResourceStrings":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcValidationResourceStrings","k":"interface","s":"interfaces","m":{"igx_grid_disabled_date_validation_error":"igx_grid_disabled_date_validation_error","igx_grid_email_validation_error":"igx_grid_email_validation_error","igx_grid_mask_validation_error":"igx_grid_mask_validation_error","igx_grid_max_length_validation_error":"igx_grid_max_length_validation_error","igx_grid_max_validation_error":"igx_grid_max_validation_error","igx_grid_min_length_validation_error":"igx_grid_min_length_validation_error","igx_grid_min_validation_error":"igx_grid_min_validation_error","igx_grid_pattern_validation_error":"igx_grid_pattern_validation_error","igx_grid_required_validation_error":"igx_grid_required_validation_error","igx_grid_url_validation_error":"igx_grid_url_validation_error"}}],"IgcValuesChange":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/IgcValuesChange","k":"interface","s":"interfaces","m":{"values":"values"}}],"Point":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/Point","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}},{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/Point","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"TemplateContent":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/interfaces/TemplateContent","k":"interface","s":"interfaces"}],"ColumnPinningPosition":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/ColumnPinningPosition","k":"enum","s":"enums","m":{"End":"End","Start":"Start"}}],"CsvFileTypes":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/CsvFileTypes","k":"enum","s":"enums","m":{"CSV":"CSV","TAB":"TAB","TSV":"TSV"}}],"DropPosition":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/DropPosition","k":"enum","s":"enums","m":{"AfterDropTarget":"AfterDropTarget","BeforeDropTarget":"BeforeDropTarget"}}],"FilteringExpressionsTreeType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/FilteringExpressionsTreeType","k":"enum","s":"enums","m":{"Advanced":"Advanced","Regular":"Regular"}}],"FilteringLogic":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/FilteringLogic","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"HorizontalAlignment":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/HorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}},{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/HorizontalAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right","Stretch":"Stretch"}}],"PivotDimensionType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/PivotDimensionType","k":"enum","s":"enums","m":{"Column":"Column","Filter":"Filter","Row":"Row"}}],"RowPinningPosition":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/RowPinningPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"SortingDirection":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/SortingDirection","k":"enum","s":"enums","m":{"Asc":"Asc","Desc":"Desc","None":"None"}},{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/SortingDirection","k":"type","s":"types"}],"VerticalAlignment":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/enums/VerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Middle":"Middle","Top":"Top"}},{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/VerticalAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Stretch":"Stretch","Top":"Top"}}],"FilterMode":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/FilterMode","k":"type","s":"types"}],"GridCellMergeMode":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridCellMergeMode","k":"type","s":"types"}],"GridColumnDataType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridColumnDataType","k":"type","s":"types"}],"GridKeydownTargetType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridKeydownTargetType","k":"type","s":"types"}],"GridPagingMode":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridPagingMode","k":"type","s":"types"}],"GridSelectionMode":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridSelectionMode","k":"type","s":"types"}],"GridSummaryCalculationMode":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridSummaryCalculationMode","k":"type","s":"types"}],"GridSummaryPosition":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridSummaryPosition","k":"type","s":"types"}],"GridToolbarExporterType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridToolbarExporterType","k":"type","s":"types"}],"GridValidationTrigger":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/GridValidationTrigger","k":"type","s":"types"}],"IgcBaseToolbarColumnActionsDirectiveEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcBaseToolbarColumnActionsDirectiveEventMap","k":"type","s":"types"}],"IgcColumnGroupComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcColumnGroupComponentEventMap","k":"type","s":"types"}],"IgcColumnLayoutComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcColumnLayoutComponentEventMap","k":"type","s":"types"}],"IgcGridToolbarHidingComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcGridToolbarHidingComponentEventMap","k":"type","s":"types"}],"IgcGridToolbarPinningComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcGridToolbarPinningComponentEventMap","k":"type","s":"types"}],"IgcHierarchicalGridComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcHierarchicalGridComponentEventMap","k":"type","s":"types"}],"IgcRenderFunction":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcRenderFunction","k":"type","s":"types"}],"IgcTreeGridComponentEventMap":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/IgcTreeGridComponentEventMap","k":"type","s":"types"}],"PivotAggregationType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/PivotAggregationType","k":"type","s":"types"}],"PivotRowLayoutType":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/PivotRowLayoutType","k":"type","s":"types"}],"PivotSummaryPosition":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/PivotSummaryPosition","k":"type","s":"types"}],"SortingOptionsMode":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/SortingOptionsMode","k":"type","s":"types"}],"ValidationStatus":[{"p":"igniteui-webcomponents-grids","u":"/api/webcomponents/igniteui-webcomponents-grids/7.1.0/types/ValidationStatus","k":"type","s":"types"}],"IgcGridLite":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/classes/IgcGridLite","k":"class","s":"classes","m":{"autoGenerate":"autoGenerate","data":"data","dataPipelineConfiguration":"dataPipelineConfiguration","sortingOptions":"sortingOptions","styles":"styles","dataView":"dataView","filterExpressions":"filterExpressions","rows":"rows","sortingExpressions":"sortingExpressions","totalItems":"totalItems","clearFilter":"clearFilter","clearSort":"clearSort","filter":"filter","getColumn":"getColumn","navigateTo":"navigateTo","sort":"sort","filtered":"filtered","filtering":"filtering","sorted":"sorted","sorting":"sorting"}}],"IgcGridLiteColumn":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/classes/IgcGridLiteColumn","k":"class","s":"classes","m":{"cellTemplate":"cellTemplate","dataType":"dataType","field":"field","filterable":"filterable","filteringCaseSensitive":"filteringCaseSensitive","header":"header","headerTemplate":"headerTemplate","hidden":"hidden","resizable":"resizable","sortable":"sortable","sortConfiguration":"sortConfiguration","sortingCaseSensitive":"sortingCaseSensitive","width":"width","styles":"styles"}}],"BaseColumnConfiguration":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/BaseColumnConfiguration","k":"interface","s":"interfaces","m":{"cellTemplate":"cellTemplate","dataType":"dataType","field":"field","filterable":"filterable","filteringCaseSensitive":"filteringCaseSensitive","header":"header","headerTemplate":"headerTemplate","hidden":"hidden","resizable":"resizable","sortable":"sortable","sortConfiguration":"sortConfiguration","sortingCaseSensitive":"sortingCaseSensitive","width":"width"}}],"BaseColumnSortConfiguration":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/BaseColumnSortConfiguration","k":"interface","s":"interfaces","m":{"comparer":"comparer"}}],"BaseFilterExpression":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/BaseFilterExpression","k":"interface","s":"interfaces","m":{"caseSensitive":"caseSensitive","condition":"condition","criteria":"criteria","key":"key","searchTerm":"searchTerm"}}],"BaseIgcCellContext":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/BaseIgcCellContext","k":"interface","s":"interfaces","m":{"column":"column","parent":"parent","row":"row","value":"value"}}],"BaseSortingExpression":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/BaseSortingExpression","k":"interface","s":"interfaces","m":{"caseSensitive":"caseSensitive","comparer":"comparer","direction":"direction","key":"key"}}],"DataPipelineConfiguration":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/DataPipelineConfiguration","k":"interface","s":"interfaces","m":{"filter":"filter","sort":"sort"}}],"GridLiteSortingOptions":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/GridLiteSortingOptions","k":"interface","s":"interfaces","m":{"mode":"mode"}}],"IgcFilteredEvent":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/IgcFilteredEvent","k":"interface","s":"interfaces","m":{"key":"key","state":"state"}}],"IgcFilteringEvent":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/IgcFilteringEvent","k":"interface","s":"interfaces","m":{"expressions":"expressions","key":"key","type":"type"}}],"IgcGridLiteEventMap":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/IgcGridLiteEventMap","k":"interface","s":"interfaces","m":{"filtered":"filtered","filtering":"filtering","sorted":"sorted","sorting":"sorting"}}],"IgcHeaderContext":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/interfaces/IgcHeaderContext","k":"interface","s":"interfaces","m":{"column":"column","parent":"parent"}}],"BaseSortComparer":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/BaseSortComparer","k":"type","s":"types"}],"ColumnConfiguration":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/ColumnConfiguration","k":"type","s":"types"}],"ColumnSortConfiguration":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/ColumnSortConfiguration","k":"type","s":"types"}],"DataPipelineHook":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/DataPipelineHook","k":"type","s":"types"}],"DataPipelineParams":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/DataPipelineParams","k":"type","s":"types","m":{"data":"data","grid":"grid","type":"type"}}],"DataType":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/DataType","k":"type","s":"types"}],"FilterCriteria":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/FilterCriteria","k":"type","s":"types"}],"FilterExpression":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/FilterExpression","k":"type","s":"types"}],"IgcCellContext":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/IgcCellContext","k":"type","s":"types"}],"Keys":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/Keys","k":"type","s":"types"}],"PropertyType":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/PropertyType","k":"type","s":"types"}],"SortComparer":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/SortComparer","k":"type","s":"types"}],"SortingExpression":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/SortingExpression","k":"type","s":"types"}],"SortState":[{"p":"igniteui-grid-lite","u":"/api/webcomponents/igniteui-grid-lite/0.7.0/types/SortState","k":"type","s":"types"}],"IgcDockManagerComponent":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/classes/IgcDockManagerComponent","k":"class","s":"classes","m":{"constructor":"constructor","activePane":"activePane","allowFloatingPanesResize":"allowFloatingPanesResize","allowInnerDock":"allowInnerDock","allowMaximize":"allowMaximize","allowRootDock":"allowRootDock","allowSplitterDock":"allowSplitterDock","autoScrollConfig":"autoScrollConfig","closeBehavior":"closeBehavior","containedInBoundaries":"containedInBoundaries","contextMenuMeta":"contextMenuMeta","contextMenuPosition":"contextMenuPosition","disableKeyboardNavigation":"disableKeyboardNavigation","draggedPane":"draggedPane","draggedPaneElement":"draggedPaneElement","dropPosition":"dropPosition","dropShadowRect":"dropShadowRect","dropTargetPaneInfo":"dropTargetPaneInfo","enableDragCursor":"enableDragCursor","floatingPaneZIndicesMap":"floatingPaneZIndicesMap","flyoutPane":"flyoutPane","hasCustomMaximizeButton":"hasCustomMaximizeButton","hasCustomMinimizeButton":"hasCustomMinimizeButton","hoveredPane":"hoveredPane","layout":"layout","maximizedPane":"maximizedPane","navigationPaneMeta":"navigationPaneMeta","proximityDock":"proximityDock","resourceStrings":"resourceStrings","showHeaderIconOnHover":"showHeaderIconOnHover","showPaneHeaders":"showPaneHeaders","templates":"templates","unpinBehavior":"unpinBehavior","useFixedSizeOnDock":"useFixedSizeOnDock","styles":"styles","tagName":"tagName","direction":"direction","isValidDrop":"isValidDrop","addEventListener":"addEventListener","createAndDispatchEvent":"createAndDispatchEvent","dropPane":"dropPane","emitEvent":"emitEvent","focusPane":"focusPane","paneFlyoutToggle":"paneFlyoutToggle","removeEventListener":"removeEventListener","removePane":"removePane","register":"register","activePaneChanged":"activePaneChanged","floatingPaneResizeEnd":"floatingPaneResizeEnd","floatingPaneResizeMove":"floatingPaneResizeMove","floatingPaneResizeStart":"floatingPaneResizeStart","layoutChange":"layoutChange","paneClose":"paneClose","paneDragEnd":"paneDragEnd","paneDragOver":"paneDragOver","paneDragStart":"paneDragStart","paneHeaderConnected":"paneHeaderConnected","paneHeaderDisconnected":"paneHeaderDisconnected","panePinnedToggle":"panePinnedToggle","paneScroll":"paneScroll","splitterResizeEnd":"splitterResizeEnd","splitterResizeStart":"splitterResizeStart","tabHeaderConnected":"tabHeaderConnected","tabHeaderDisconnected":"tabHeaderDisconnected"}}],"IgcActivePaneEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcActivePaneEventArgs","k":"interface","s":"interfaces","m":{"newPane":"newPane","oldPane":"oldPane"}}],"IgcContentPane":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcContentPane","k":"interface","s":"interfaces","m":{"acceptsInnerDock":"acceptsInnerDock","allowClose":"allowClose","allowDocking":"allowDocking","allowFloating":"allowFloating","allowMaximize":"allowMaximize","allowPinning":"allowPinning","contentId":"contentId","disabled":"disabled","documentOnly":"documentOnly","floatingHeaderId":"floatingHeaderId","header":"header","headerId":"headerId","hidden":"hidden","id":"id","isMaximized":"isMaximized","isPinned":"isPinned","minResizeHeight":"minResizeHeight","minResizeWidth":"minResizeWidth","size":"size","tabHeaderId":"tabHeaderId","type":"type","unpinnedHeaderId":"unpinnedHeaderId","unpinnedLocation":"unpinnedLocation","unpinnedSize":"unpinnedSize"}}],"IgcDockingIndicator":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDockingIndicator","k":"interface","s":"interfaces","m":{"direction":"direction","isRoot":"isRoot","position":"position"}}],"IgcDockManagerEventMap":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDockManagerEventMap","k":"interface","s":"interfaces","m":{"activePaneChanged":"activePaneChanged","floatingPaneResizeEnd":"floatingPaneResizeEnd","floatingPaneResizeMove":"floatingPaneResizeMove","floatingPaneResizeStart":"floatingPaneResizeStart","layoutChange":"layoutChange","paneClose":"paneClose","paneDragEnd":"paneDragEnd","paneDragOver":"paneDragOver","paneDragStart":"paneDragStart","paneFlyoutToggle":"paneFlyoutToggle","paneHeaderConnected":"paneHeaderConnected","paneHeaderDisconnected":"paneHeaderDisconnected","panePinnedToggle":"panePinnedToggle","paneScroll":"paneScroll","splitterResizeEnd":"splitterResizeEnd","splitterResizeStart":"splitterResizeStart","tabHeaderConnected":"tabHeaderConnected","tabHeaderDisconnected":"tabHeaderDisconnected"}}],"IgcDockManagerLayout":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDockManagerLayout","k":"interface","s":"interfaces","m":{"floatingPanes":"floatingPanes","rootPane":"rootPane"}}],"IgcDockManagerPoint":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDockManagerPoint","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"IgcDockManagerResourceStrings":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDockManagerResourceStrings","k":"interface","s":"interfaces","m":{"close":"close","documents":"documents","maximize":"maximize","minimize":"minimize","moreOptions":"moreOptions","moreTabs":"moreTabs","panes":"panes","pin":"pin","unpin":"unpin"}}],"IgcDockPaneAction":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDockPaneAction","k":"interface","s":"interfaces","m":{"dockingIndicator":"dockingIndicator","targetPane":"targetPane","type":"type"}}],"IgcDocumentHost":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcDocumentHost","k":"interface","s":"interfaces","m":{"id":"id","rootPane":"rootPane","size":"size","type":"type"}}],"IgcFloatingPaneResizeEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcFloatingPaneResizeEventArgs","k":"interface","s":"interfaces","m":{"resizerLocation":"resizerLocation","sourcePane":"sourcePane"}}],"IgcFloatingPaneResizeMoveEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcFloatingPaneResizeMoveEventArgs","k":"interface","s":"interfaces","m":{"newHeight":"newHeight","newLocation":"newLocation","newWidth":"newWidth","oldHeight":"oldHeight","oldLocation":"oldLocation","oldWidth":"oldWidth","resizerLocation":"resizerLocation","sourcePane":"sourcePane"}}],"IgcFloatPaneAction":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcFloatPaneAction","k":"interface","s":"interfaces","m":{"height":"height","location":"location","type":"type","width":"width"}}],"IgcMoveFloatingPaneAction":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcMoveFloatingPaneAction","k":"interface","s":"interfaces","m":{"newLocation":"newLocation","oldLocation":"oldLocation","type":"type"}}],"IgcMoveTabAction":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcMoveTabAction","k":"interface","s":"interfaces","m":{"newIndex":"newIndex","oldIndex":"oldIndex","type":"type"}}],"IgcPaneCloseEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneCloseEventArgs","k":"interface","s":"interfaces","m":{"panes":"panes","sourcePane":"sourcePane"}}],"IgcPaneDragEndEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneDragEndEventArgs","k":"interface","s":"interfaces","m":{"panes":"panes","sourcePane":"sourcePane"}}],"IgcPaneDragOverEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneDragOverEventArgs","k":"interface","s":"interfaces","m":{"action":"action","isValid":"isValid","panes":"panes","sourcePane":"sourcePane"}}],"IgcPaneDragStartEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneDragStartEventArgs","k":"interface","s":"interfaces","m":{"panes":"panes","sourcePane":"sourcePane"}}],"IgcPaneHeaderConnectionEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneHeaderConnectionEventArgs","k":"interface","s":"interfaces","m":{"element":"element","pane":"pane"}}],"IgcPaneHeaderElement":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneHeaderElement","k":"interface","s":"interfaces","m":{"dragService":"dragService"}}],"IgcPanePinnedEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPanePinnedEventArgs","k":"interface","s":"interfaces","m":{"location":"location","newValue":"newValue","panes":"panes","sourcePane":"sourcePane"}}],"IgcPaneScrollEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcPaneScrollEventArgs","k":"interface","s":"interfaces","m":{"contentElement":"contentElement","pane":"pane"}}],"IgcSplitPane":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcSplitPane","k":"interface","s":"interfaces","m":{"allowEmpty":"allowEmpty","floatingHeight":"floatingHeight","floatingLocation":"floatingLocation","floatingResizable":"floatingResizable","floatingWidth":"floatingWidth","id":"id","isMaximized":"isMaximized","minResizeHeight":"minResizeHeight","minResizeWidth":"minResizeWidth","orientation":"orientation","panes":"panes","size":"size","type":"type","useFixedSize":"useFixedSize"}}],"IgcSplitterResizeEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcSplitterResizeEventArgs","k":"interface","s":"interfaces","m":{"orientation":"orientation","pane":"pane","paneHeight":"paneHeight","paneWidth":"paneWidth"}}],"IgcTabGroupPane":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcTabGroupPane","k":"interface","s":"interfaces","m":{"allowEmpty":"allowEmpty","id":"id","isMaximized":"isMaximized","minResizeHeight":"minResizeHeight","minResizeWidth":"minResizeWidth","panes":"panes","selectedIndex":"selectedIndex","size":"size","type":"type"}}],"IgcTabHeaderConnectionEventArgs":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcTabHeaderConnectionEventArgs","k":"interface","s":"interfaces","m":{"element":"element","pane":"pane"}}],"IgcTabHeaderElement":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/interfaces/IgcTabHeaderElement","k":"interface","s":"interfaces","m":{"dragService":"dragService"}}],"DockingIndicatorPosition":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/DockingIndicatorPosition","k":"variable","s":"variables"}],"DockManagerPaneType":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/DockManagerPaneType","k":"variable","s":"variables"}],"IgcDockManagerPane":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/types/IgcDockManagerPane","k":"type","s":"types"}],"IgcPaneDragAction":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/types/IgcPaneDragAction","k":"type","s":"types"}],"PaneActionBehavior":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/PaneActionBehavior","k":"variable","s":"variables"}],"PaneDragActionType":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/PaneDragActionType","k":"variable","s":"variables"}],"ResizerLocation":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/ResizerLocation","k":"variable","s":"variables"}],"SplitPaneOrientation":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/SplitPaneOrientation","k":"variable","s":"variables"}],"UnpinnedLocation":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/variables/UnpinnedLocation","k":"variable","s":"variables"}],"addResourceStrings":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/functions/addResourceStrings","k":"function","s":"functions"}],"defineAllComponents":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/functions/defineAllComponents","k":"function","s":"functions"}],"defineComponents":[{"p":"igniteui-dockmanager","u":"/api/webcomponents/igniteui-dockmanager/2.1.0/functions/defineComponents","k":"function","s":"functions"}],"IgcAbsoluteVolumeOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAbsoluteVolumeOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcAccumulationDistributionIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAccumulationDistributionIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcAnchoredCategorySeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAnchoredCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcAnchoredRadialSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAnchoredRadialSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcAnnotationLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAnnotationLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcAreaFragmentComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAreaFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcAssigningCategoryMarkerStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningCategoryMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningCategoryStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningCategoryStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningCategoryStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningCategoryStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningPolarMarkerStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningPolarMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningPolarStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningPolarStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningPolarStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningPolarStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningRadialMarkerStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningRadialMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningRadialStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningRadialStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningRadialStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningRadialStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningScatterMarkerStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningScatterMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningScatterStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningScatterStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningScatterStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningScatterStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningSeriesShapeStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningSeriesShapeStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningSeriesStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningSeriesStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningShapeMarkerStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningShapeMarkerStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningShapeStyleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningShapeStyleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","radiusX":"radiusX","radiusY":"radiusY","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAssigningShapeStyleEventArgsBase":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAssigningShapeStyleEventArgsBase","k":"class","s":"classes","m":{"constructor":"constructor","endDate":"endDate","endIndex":"endIndex","fadeOpacity":"fadeOpacity","fill":"fill","focusHighlightingInfo":"focusHighlightingInfo","getItems":"getItems","hasDateRange":"hasDateRange","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isNegativeShape":"isNegativeShape","isThumbnail":"isThumbnail","maxAllSeriesFocusHighlightingProgress":"maxAllSeriesFocusHighlightingProgress","maxAllSeriesHighlightingProgress":"maxAllSeriesHighlightingProgress","maxAllSeriesSelectionHighlightingProgress":"maxAllSeriesSelectionHighlightingProgress","opacity":"opacity","selectionHighlightingInfo":"selectionHighlightingInfo","startDate":"startDate","startIndex":"startIndex","stroke":"stroke","sumAllSeriesFocusHighlightingProgress":"sumAllSeriesFocusHighlightingProgress","sumAllSeriesHighlightingProgress":"sumAllSeriesHighlightingProgress","sumAllSeriesSelectionHighlightingProgress":"sumAllSeriesSelectionHighlightingProgress","totalAllSeriesFocusHighlightingProgress":"totalAllSeriesFocusHighlightingProgress","totalAllSeriesFocusHighWaterMark":"totalAllSeriesFocusHighWaterMark","totalAllSeriesHighlightingProgress":"totalAllSeriesHighlightingProgress","totalAllSeriesHighWaterMark":"totalAllSeriesHighWaterMark","totalAllSeriesSelectionHighlightingProgress":"totalAllSeriesSelectionHighlightingProgress","totalAllSeriesSelectionHighWaterMark":"totalAllSeriesSelectionHighWaterMark","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAverageDirectionalIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAverageDirectionalIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcAverageTrueRangeIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAverageTrueRangeIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcAxisAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundCornerRadius":"backgroundCornerRadius","backgroundPaddingBottom":"backgroundPaddingBottom","backgroundPaddingLeft":"backgroundPaddingLeft","backgroundPaddingRight":"backgroundPaddingRight","backgroundPaddingTop":"backgroundPaddingTop","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeOutlineThickness":"badgeOutlineThickness","badgeSize":"badgeSize","formatLabel":"formatLabel","isBadgeEnabled":"isBadgeEnabled","isPillShaped":"isPillShaped","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","outline":"outline","strokeThickness":"strokeThickness","text":"text","textColor":"textColor","value":"value","findByName":"findByName","resetCachedExtent":"resetCachedExtent","resolveLabelValue":"resolveLabelValue"}}],"IgcAxisAnnotationCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcAxisCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","i":"i","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","_createFromInternal":"_createFromInternal"}}],"IgcAxisMatcher":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisMatcher","k":"class","s":"classes","m":{"constructor":"constructor","axisType":"axisType","index":"index","memberPath":"memberPath","memberPathType":"memberPathType","name":"name","title":"title","typedIndex":"typedIndex","findByName":"findByName"}}],"IgcAxisMouseEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","axis":"axis","axisDateValue":"axisDateValue","axisValue":"axisValue","chartPosition":"chartPosition","label":"label","labelContext":"labelContext","plotAreaPosition":"plotAreaPosition","worldPosition":"worldPosition"}}],"IgcAxisRangeChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcAxisRangeChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","maximumValue":"maximumValue","minimumValue":"minimumValue","oldMaximumValue":"oldMaximumValue","oldMinimumValue":"oldMinimumValue"}}],"IgcBarFragmentComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcBarFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","barFragmentXAxis":"barFragmentXAxis","barFragmentYAxis":"barFragmentYAxis","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","fragmentXAxis":"fragmentXAxis","fragmentYAxis":"fragmentYAxis","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcBarSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcBarSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcBollingerBandsOverlayComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcBollingerBandsOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcBollingerBandWidthIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcBollingerBandWidthIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","multiplier":"multiplier","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcBrushScaleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcBrushScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brushes":"brushes","isBrushScale":"isBrushScale","isReady":"isReady","propertyUpdated":"propertyUpdated","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getBrush":"getBrush","notifySeries":"notifySeries","registerSeries":"registerSeries","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcBubbleSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcBubbleSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","fillMemberAsLegendLabel":"fillMemberAsLegendLabel","fillMemberAsLegendUnit":"fillMemberAsLegendUnit","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCalculatedColumn":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalculatedColumn","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","findByName":"findByName"}}],"IgcCalloutAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundCornerRadius":"backgroundCornerRadius","backgroundPaddingBottom":"backgroundPaddingBottom","backgroundPaddingLeft":"backgroundPaddingLeft","backgroundPaddingRight":"backgroundPaddingRight","backgroundPaddingTop":"backgroundPaddingTop","badgeBackground":"badgeBackground","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","content":"content","formatLabel":"formatLabel","itemColor":"itemColor","key":"key","leaderBrush":"leaderBrush","outline":"outline","series":"series","strokeThickness":"strokeThickness","text":"text","textColor":"textColor","xValue":"xValue","yValue":"yValue","findByName":"findByName"}}],"IgcCalloutAnnotationCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcCalloutBadgeInfo":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutBadgeInfo","k":"class","s":"classes","m":{"constructor":"constructor","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","findByName":"findByName"}}],"IgcCalloutContentUpdatingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutContentUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","content":"content","item":"item","xValue":"xValue","yValue":"yValue"}}],"IgcCalloutLabelUpdatingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutLabelUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","label":"label","series":"series","seriesName":"seriesName","xValue":"xValue","yValue":"yValue"}}],"IgcCalloutLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","allowedPositions":"allowedPositions","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoCalloutVisibilityMode":"autoCalloutVisibilityMode","brush":"brush","calloutBackground":"calloutBackground","calloutBadgeBackground":"calloutBadgeBackground","calloutBadgeCorner":"calloutBadgeCorner","calloutBadgeGap":"calloutBadgeGap","calloutBadgeHeight":"calloutBadgeHeight","calloutBadgeImageMemberPath":"calloutBadgeImageMemberPath","calloutBadgeMatchSeries":"calloutBadgeMatchSeries","calloutBadgeOutline":"calloutBadgeOutline","calloutBadgeThickness":"calloutBadgeThickness","calloutBadgeVisible":"calloutBadgeVisible","calloutBadgeWidth":"calloutBadgeWidth","calloutCollisionMode":"calloutCollisionMode","calloutContentUpdating":"calloutContentUpdating","calloutCornerRadius":"calloutCornerRadius","calloutDarkTextColor":"calloutDarkTextColor","calloutExpandsAxisBufferEnabled":"calloutExpandsAxisBufferEnabled","calloutExpandsAxisBufferMaxHeight":"calloutExpandsAxisBufferMaxHeight","calloutExpandsAxisBufferMaxWidth":"calloutExpandsAxisBufferMaxWidth","calloutExpandsAxisBufferMinHeight":"calloutExpandsAxisBufferMinHeight","calloutExpandsAxisBufferMinWidth":"calloutExpandsAxisBufferMinWidth","calloutExpandsAxisBufferOnInitialVisibility":"calloutExpandsAxisBufferOnInitialVisibility","calloutExpandsAxisBufferOnlyWhenVisible":"calloutExpandsAxisBufferOnlyWhenVisible","calloutInterpolatedValuePrecision":"calloutInterpolatedValuePrecision","calloutLabelUpdating":"calloutLabelUpdating","calloutLeaderBrush":"calloutLeaderBrush","calloutLightTextColor":"calloutLightTextColor","calloutOutline":"calloutOutline","calloutPaddingBottom":"calloutPaddingBottom","calloutPaddingLeft":"calloutPaddingLeft","calloutPaddingRight":"calloutPaddingRight","calloutPaddingTop":"calloutPaddingTop","calloutPositionPadding":"calloutPositionPadding","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutSeriesSelecting":"calloutSeriesSelecting","calloutStrokeThickness":"calloutStrokeThickness","calloutStyleUpdating":"calloutStyleUpdating","calloutSuspendedWhenShiftingToVisible":"calloutSuspendedWhenShiftingToVisible","calloutTextColor":"calloutTextColor","coercionMethods":"coercionMethods","collisionChannel":"collisionChannel","contentMemberPath":"contentMemberPath","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueLabelMode":"highlightedValueLabelMode","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAutoCalloutBehaviorEnabled":"isAutoCalloutBehaviorEnabled","isBar":"isBar","isCalloutOffsettingEnabled":"isCalloutOffsettingEnabled","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCalloutRenderStyleEnabled":"isCustomCalloutRenderStyleEnabled","isCustomCalloutStyleEnabled":"isCustomCalloutStyleEnabled","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","keyMemberPath":"keyMemberPath","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelMemberPath":"labelMemberPath","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldTruncateOnBoundaryCollisions":"shouldTruncateOnBoundaryCollisions","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","textStyle":"textStyle","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useAutoContrastingLabelColors":"useAutoContrastingLabelColors","useIndex":"useIndex","useInterpolatedValueForAutoCalloutLabels":"useInterpolatedValueForAutoCalloutLabels","useItemColorForFill":"useItemColorForFill","useItemColorForOutline":"useItemColorForOutline","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSeriesColorForOutline":"useSeriesColorForOutline","useSingleShadow":"useSingleShadow","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xMemberPath":"xMemberPath","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","invalidateCalloutContent":"invalidateCalloutContent","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","recalculateAxisRangeBuffer":"recalculateAxisRangeBuffer","refreshAxisBufferAndCalloutPositions":"refreshAxisBufferAndCalloutPositions","refreshLabelPositions":"refreshLabelPositions","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCalloutPlacementPositionsCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutPlacementPositionsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcCalloutRenderStyleUpdatingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutRenderStyleUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualPosition":"actualPosition","background":"background","backgroundCorner":"backgroundCorner","badgeBackground":"badgeBackground","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","height":"height","item":"item","labelPositionX":"labelPositionX","labelPositionY":"labelPositionY","leaderBrush":"leaderBrush","outline":"outline","series":"series","strokeThickness":"strokeThickness","targetPositionX":"targetPositionX","targetPositionY":"targetPositionY","textColor":"textColor","width":"width","xValue":"xValue","yValue":"yValue"}}],"IgcCalloutSeriesSelectingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutSeriesSelectingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","series":"series","seriesName":"seriesName","xValue":"xValue","yValue":"yValue"}}],"IgcCalloutStyleUpdatingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCalloutStyleUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bacgkroundPaddingBottom":"bacgkroundPaddingBottom","bacgkroundPaddingLeft":"bacgkroundPaddingLeft","bacgkroundPaddingRight":"bacgkroundPaddingRight","bacgkroundPaddingTop":"bacgkroundPaddingTop","background":"background","backgroundCorner":"backgroundCorner","badgeBackground":"badgeBackground","badgeCorner":"badgeCorner","badgeGap":"badgeGap","badgeHeight":"badgeHeight","badgeImage":"badgeImage","badgeOutline":"badgeOutline","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","badgeWidth":"badgeWidth","item":"item","leaderBrush":"leaderBrush","outline":"outline","series":"series","strokeThickness":"strokeThickness","textColor":"textColor","xValue":"xValue","yValue":"yValue"}}],"IgcCategoryAngleAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryAngleAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","areGroupSizesUneven":"areGroupSizesUneven","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCategoryAxisBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgcCategoryChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isCategoryHighlightingEnabled":"isCategoryHighlightingEnabled","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isItemHighlightingEnabled":"isItemHighlightingEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisActualMaximum":"xAxisActualMaximum","xAxisActualMinimum":"xAxisActualMinimum","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisGap":"xAxisGap","xAxisInterval":"xAxisInterval","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumGap":"xAxisMaximumGap","xAxisMinimumGapSize":"xAxisMinimumGapSize","xAxisMinorInterval":"xAxisMinorInterval","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisOverlap":"xAxisOverlap","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisActualMaximum":"yAxisActualMaximum","yAxisActualMinimum":"yAxisActualMinimum","yAxisAutoRangeBufferMode":"yAxisAutoRangeBufferMode","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFavorLabellingScaleEnd":"yAxisFavorLabellingScaleEnd","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getCurrentXAxisActualMaximum":"getCurrentXAxisActualMaximum","getCurrentXAxisActualMinimum":"getCurrentXAxisActualMinimum","getCurrentYAxisActualMaximum":"getCurrentYAxisActualMaximum","getCurrentYAxisActualMinimum":"getCurrentYAxisActualMinimum","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","recalculateMarginAutoExpansion":"recalculateMarginAutoExpansion","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","register":"register"}}],"IgcCategoryDateTimeXAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryDateTimeXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","displayType":"displayType","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","unevenlySpacedLabels":"unevenlySpacedLabels","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollDateRangeIntoView":"scrollDateRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCategoryHighlightLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryHighlightLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCategoryItemHighlightLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryItemHighlightLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","bandHighlightWidth":"bandHighlightWidth","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highlightType":"highlightType","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerTemplate":"markerTemplate","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCategorySeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcCategoryToolTipLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","toolTipPosition":"toolTipPosition","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCategoryXAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCategoryYAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCategoryYAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcChaikinOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChaikinOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcChaikinVolatilityIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChaikinVolatilityIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcChartCursorEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartCursorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","series":"series","seriesViewer":"seriesViewer","toString":"toString"}}],"IgcChartGroupDescription":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgcChartGroupDescriptionCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcChartMouseEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","chartPosition":"chartPosition","item":"item","originalSource":"originalSource","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition","getPosition":"getPosition","toString":"toString"}}],"IgcChartResizeIdleEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartResizeIdleEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcChartSelectedItemCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSelectedItemCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcChartSelection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSelection","k":"class","s":"classes","m":{"constructor":"constructor","item":"item","matcher":"matcher","series":"series","equals":"equals","findByName":"findByName"}}],"IgcChartSeriesEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSeriesEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","series":"series"}}],"IgcChartSortDescription":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgcChartSortDescriptionCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcChartSummaryDescription":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgcChartSummaryDescriptionCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcChartSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcColorScaleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcColorScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","propertyUpdated":"propertyUpdated","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcColumnFragmentComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcColumnFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","fragmentXAxis":"fragmentXAxis","fragmentYAxis":"fragmentYAxis","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcColumnSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedColumnVerticalPosition":"consolidatedColumnVerticalPosition","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcColumnSupportingCalculation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcColumnSupportingCalculation","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgcCommodityChannelIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCommodityChannelIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcContourValueResolverComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcContourValueResolverComponent","k":"class","s":"classes","m":{"constructor":"constructor","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcCrosshairLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCrosshairLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalLineVisibility":"horizontalLineVisibility","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipAxisAnnotationOnInvalidData":"skipAxisAnnotationOnInvalidData","skipAxisAnnotationOnZeroValueFragments":"skipAxisAnnotationOnZeroValueFragments","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalLineVisibility":"verticalLineVisibility","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCustomContourValueResolverComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCustomContourValueResolverComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","getCustomContourValues":"getCustomContourValues","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCustomContourValueResolverEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCustomContourValueResolverEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contourValues":"contourValues","values":"values"}}],"IgcCustomIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCustomIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","basedOnColumns":"basedOnColumns","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","indicator":"indicator","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCustomIndicatorNameCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCustomIndicatorNameCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcCustomPaletteBrushScaleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCustomPaletteBrushScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brushes":"brushes","brushSelectionMode":"brushSelectionMode","isBrushScale":"isBrushScale","isReady":"isReady","propertyUpdated":"propertyUpdated","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getBrush":"getBrush","getBrush1":"getBrush1","notifySeries":"notifySeries","registerSeries":"registerSeries","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcCustomPaletteColorScaleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcCustomPaletteColorScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","interpolationMode":"interpolationMode","maximumValue":"maximumValue","minimumValue":"minimumValue","palette":"palette","propertyUpdated":"propertyUpdated","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","providePalette":"providePalette","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataAnnotationAxisLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationAxisLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcDataAnnotationBandLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationBandLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationBreadthMemberPath":"annotationBreadthMemberPath","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataAnnotationInfo":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationInfo","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","borderColor":"borderColor","borderRadius":"borderRadius","borderThickness":"borderThickness","dataIndex":"dataIndex","dataLabelX":"dataLabelX","dataLabelY":"dataLabelY","dataValueX":"dataValueX","dataValueY":"dataValueY","isCenterLabel":"isCenterLabel","isEndLabel":"isEndLabel","isStartLabel":"isStartLabel","isXAxisBadgeEnabled":"isXAxisBadgeEnabled","isYAxisBadgeEnabled":"isYAxisBadgeEnabled","textColor":"textColor","xAxisBadgeBackground":"xAxisBadgeBackground","xAxisBadgeImagePath":"xAxisBadgeImagePath","xAxisBadgeMargin":"xAxisBadgeMargin","xAxisBadgeOutline":"xAxisBadgeOutline","xAxisBadgeOutlineThickness":"xAxisBadgeOutlineThickness","xAxisBadgeRadius":"xAxisBadgeRadius","xAxisBadgeSize":"xAxisBadgeSize","xAxisLabel":"xAxisLabel","xAxisPixel":"xAxisPixel","xAxisUserAnnotation":"xAxisUserAnnotation","xAxisValue":"xAxisValue","xAxisWindow":"xAxisWindow","yAxisBadgeBackground":"yAxisBadgeBackground","yAxisBadgeImagePath":"yAxisBadgeImagePath","yAxisBadgeMargin":"yAxisBadgeMargin","yAxisBadgeOutline":"yAxisBadgeOutline","yAxisBadgeOutlineThickness":"yAxisBadgeOutlineThickness","yAxisBadgeRadius":"yAxisBadgeRadius","yAxisBadgeSize":"yAxisBadgeSize","yAxisLabel":"yAxisLabel","yAxisPixel":"yAxisPixel","yAxisUserAnnotation":"yAxisUserAnnotation","yAxisValue":"yAxisValue","yAxisWindow":"yAxisWindow","findByName":"findByName"}}],"IgcDataAnnotationItem":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationItem","k":"class","s":"classes","m":{"constructor":"constructor","centerLabelX":"centerLabelX","centerLabelY":"centerLabelY","dataIndex":"dataIndex","endLabelX":"endLabelX","endLabelY":"endLabelY","shapeBrush":"shapeBrush","shapeCenterX":"shapeCenterX","shapeCenterY":"shapeCenterY","shapeEndX":"shapeEndX","shapeEndY":"shapeEndY","shapeOutline":"shapeOutline","shapeStartX":"shapeStartX","shapeStartY":"shapeStartY","shapeThickness":"shapeThickness","startLabelX":"startLabelX","startLabelY":"startLabelY","findByName":"findByName"}}],"IgcDataAnnotationLineLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationLineLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataAnnotationPointLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationPointLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgcDataAnnotationRangeLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationRangeLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgcDataAnnotationRectLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationRectLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundXMemberPath":"annotationBadgeBackgroundXMemberPath","annotationBadgeBackgroundYMemberPath":"annotationBadgeBackgroundYMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledXMemberPath":"annotationBadgeEnabledXMemberPath","annotationBadgeEnabledYMemberPath":"annotationBadgeEnabledYMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeImageXMemberPath":"annotationBadgeImageXMemberPath","annotationBadgeImageYMemberPath":"annotationBadgeImageYMemberPath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeOutlineXMemberPath":"annotationBadgeOutlineXMemberPath","annotationBadgeOutlineYMemberPath":"annotationBadgeOutlineYMemberPath","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelTextColor":"centerLabelTextColor","centerLabelXDisplayMode":"centerLabelXDisplayMode","centerLabelXMemberPath":"centerLabelXMemberPath","centerLabelYDisplayMode":"centerLabelYDisplayMode","centerLabelYMemberPath":"centerLabelYMemberPath","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelTextColor":"endLabelTextColor","endLabelXDisplayMode":"endLabelXDisplayMode","endLabelXMemberPath":"endLabelXMemberPath","endLabelYDisplayMode":"endLabelYDisplayMode","endLabelYMemberPath":"endLabelYMemberPath","endValueXMemberPath":"endValueXMemberPath","endValueYMemberPath":"endValueYMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelTextColor":"startLabelTextColor","startLabelXDisplayMode":"startLabelXDisplayMode","startLabelXMemberPath":"startLabelXMemberPath","startLabelYDisplayMode":"startLabelYDisplayMode","startLabelYMemberPath":"startLabelYMemberPath","startValueXMemberPath":"startValueXMemberPath","startValueYMemberPath":"startValueYMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataAnnotationShapeLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationShapeLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal"}}],"IgcDataAnnotationSliceLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationSliceLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelMemberPath":"annotationLabelMemberPath","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMemberPath":"annotationValueMemberPath","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataAnnotationStripLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataAnnotationStripLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","annotationBackground":"annotationBackground","annotationBackgroundMatchLayer":"annotationBackgroundMatchLayer","annotationBackgroundMode":"annotationBackgroundMode","annotationBackgroundShift":"annotationBackgroundShift","annotationBadgeBackground":"annotationBadgeBackground","annotationBadgeBackgroundMemberPath":"annotationBadgeBackgroundMemberPath","annotationBadgeCornerRadius":"annotationBadgeCornerRadius","annotationBadgeEnabled":"annotationBadgeEnabled","annotationBadgeEnabledMemberPath":"annotationBadgeEnabledMemberPath","annotationBadgeImageMemberPath":"annotationBadgeImageMemberPath","annotationBadgeImagePath":"annotationBadgeImagePath","annotationBadgeMargin":"annotationBadgeMargin","annotationBadgeOutline":"annotationBadgeOutline","annotationBadgeOutlineMemberPath":"annotationBadgeOutlineMemberPath","annotationBadgeOutlineThickness":"annotationBadgeOutlineThickness","annotationBadgeSize":"annotationBadgeSize","annotationBorderColor":"annotationBorderColor","annotationBorderMatchLayer":"annotationBorderMatchLayer","annotationBorderMode":"annotationBorderMode","annotationBorderRadius":"annotationBorderRadius","annotationBorderShift":"annotationBorderShift","annotationBorderThickness":"annotationBorderThickness","annotationLabelDisplayMode":"annotationLabelDisplayMode","annotationLabelVisible":"annotationLabelVisible","annotationPaddingBottom":"annotationPaddingBottom","annotationPaddingLeft":"annotationPaddingLeft","annotationPaddingRight":"annotationPaddingRight","annotationPaddingTop":"annotationPaddingTop","annotationShapeVisible":"annotationShapeVisible","annotationTextColor":"annotationTextColor","annotationTextColorMatchLayer":"annotationTextColorMatchLayer","annotationTextColorMode":"annotationTextColorMode","annotationTextColorShift":"annotationTextColorShift","annotationValueMaxPrecision":"annotationValueMaxPrecision","annotationValueMinPrecision":"annotationValueMinPrecision","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","centerLabelBackground":"centerLabelBackground","centerLabelBorderColor":"centerLabelBorderColor","centerLabelDisplayMode":"centerLabelDisplayMode","centerLabelMemberPath":"centerLabelMemberPath","centerLabelTextColor":"centerLabelTextColor","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelDisplayMode":"endLabelDisplayMode","endLabelMemberPath":"endLabelMemberPath","endLabelTextColor":"endLabelTextColor","endValueMemberPath":"endValueMemberPath","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTargetingHorizontalAxis":"isTargetingHorizontalAxis","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemsUseWorldCoordinates":"itemsUseWorldCoordinates","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextMemberPath":"overlayTextMemberPath","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelDisplayMode":"startLabelDisplayMode","startLabelMemberPath":"startLabelMemberPath","startLabelTextColor":"startLabelTextColor","startValueMemberPath":"startValueMemberPath","stylingAxisAnnotation":"stylingAxisAnnotation","stylingOverlayText":"stylingOverlayText","stylingShapeAnnotation":"stylingShapeAnnotation","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetMode":"targetMode","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureAnnotationPadding":"ensureAnnotationPadding","findByName":"findByName","fromWorld":"fromWorld","fromWorldPosition":"fromWorldPosition","fromWorldX":"fromWorldX","fromWorldY":"fromWorldY","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorld":"toWorld","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","toWorldX":"toWorldX","toWorldY":"toWorldY","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAxes":"actualAxes","actualSeries":"actualSeries","contentAxes":"contentAxes","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualPlotAreaMarginBottom":"actualPlotAreaMarginBottom","actualPlotAreaMarginLeft":"actualPlotAreaMarginLeft","actualPlotAreaMarginRight":"actualPlotAreaMarginRight","actualPlotAreaMarginTop":"actualPlotAreaMarginTop","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","actualWindowScaleHorizontal":"actualWindowScaleHorizontal","actualWindowScaleVertical":"actualWindowScaleVertical","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoExpandMarginExtraPadding":"autoExpandMarginExtraPadding","autoExpandMarginMaximumValue":"autoExpandMarginMaximumValue","autoMarginAndAngleUpdateMode":"autoMarginAndAngleUpdateMode","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axes":"axes","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","contentHitTestMode":"contentHitTestMode","contentViewport":"contentViewport","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","dataSource":"dataSource","defaultAxisMajorStroke":"defaultAxisMajorStroke","defaultAxisMinorStroke":"defaultAxisMinorStroke","defaultAxisStroke":"defaultAxisStroke","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","fullAxes":"fullAxes","fullSeries":"fullSeries","gridAreaRectChanged":"gridAreaRectChanged","gridMode":"gridMode","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isInCreateAnnotationMode":"isInCreateAnnotationMode","isInDeleteAnnotationMode":"isInDeleteAnnotationMode","isMap":"isMap","isPagePanningAllowed":"isPagePanningAllowed","isSquare":"isSquare","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","series":"series","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAutoExpandMarginForInitialLabels":"shouldAutoExpandMarginForInitialLabels","shouldConsiderAutoRotationForInitialLabels":"shouldConsiderAutoRotationForInitialLabels","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldSuppressAxisLabelTruncation":"shouldSuppressAxisLabelTruncation","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","suppressAutoMarginAndAngleRecalculation":"suppressAutoMarginAndAngleRecalculation","syncChannel":"syncChannel","synchronizeHorizontally":"synchronizeHorizontally","synchronizeVertically":"synchronizeVertically","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","viewportRect":"viewportRect","width":"width","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowScaleHorizontal":"windowScaleHorizontal","windowScaleVertical":"windowScaleVertical","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","afterContentInit":"afterContentInit","attachSeries":"attachSeries","attributeChangedCallback":"attributeChangedCallback","bindData":"bindData","bindHighlightedData":"bindHighlightedData","cancelAnnotationFlow":"cancelAnnotationFlow","cancelCreatingAnnotation":"cancelCreatingAnnotation","cancelDeletingAnnotation":"cancelDeletingAnnotation","cancelManipulation":"cancelManipulation","captureImage":"captureImage","clearTileZoomCache":"clearTileZoomCache","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","endTiledZoomingIfRunning":"endTiledZoomingIfRunning","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","finishCreatingAnnotation":"finishCreatingAnnotation","finishDeletingAnnotation":"finishDeletingAnnotation","flush":"flush","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getAnimationIdleVersionNumber":"getAnimationIdleVersionNumber","getCurrentActualWindowRect":"getCurrentActualWindowRect","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","isAnimationActive":"isAnimationActive","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","queueForAnimationIdle":"queueForAnimationIdle","recalculateAutoLabelsAngle":"recalculateAutoLabelsAngle","recalculateMarginAutoExpansion":"recalculateMarginAutoExpansion","refreshComputedPlotAreaMargin":"refreshComputedPlotAreaMargin","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","renderToImage":"renderToImage","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","startTiledZoomingIfNecessary":"startTiledZoomingIfNecessary","styleUpdated":"styleUpdated","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDataChartDefaultTooltipsComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataChartDefaultTooltipsComponent","k":"class","s":"classes","m":{"constructor":"constructor","anchoredCategoryTooltip":"anchoredCategoryTooltip","anchoredRadialTooltip":"anchoredRadialTooltip","financialTooltip":"financialTooltip","onContentReady":"onContentReady","rangeCategoryTooltip":"rangeCategoryTooltip","userAnnotationTooltip":"userAnnotationTooltip","afterContentInit":"afterContentInit","asAny":"asAny","ensureDefaultTooltip":"ensureDefaultTooltip","format":"format","getAnchoredValue":"getAnchoredValue","getAngleValue":"getAngleValue","getBrush":"getBrush","getCloseValue":"getCloseValue","getHighValue":"getHighValue","getItemValue":"getItemValue","getLowValue":"getLowValue","getOpenValue":"getOpenValue","getRadiusValue":"getRadiusValue","getValue":"getValue","getVolumeValue":"getVolumeValue","getXValue":"getXValue","getYValue":"getYValue","hasClose":"hasClose","hasHigh":"hasHigh","hasLow":"hasLow","hasOpen":"hasOpen","hasRadius":"hasRadius","hasValue":"hasValue","hasVolume":"hasVolume","shortDate":"shortDate","register":"register"}}],"IgcDataChartMouseButtonEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataChartMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelSelection":"cancelSelection","chart":"chart","chartPosition":"chartPosition","handled":"handled","item":"item","originalSource":"originalSource","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition","getPosition":"getPosition","toString":"toString"}}],"IgcDataLegendComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBackground":"actualBackground","actualBadgesVisible":"actualBadgesVisible","actualBorderBrush":"actualBorderBrush","actualBorderThicknessBottom":"actualBorderThicknessBottom","actualBorderThicknessLeft":"actualBorderThicknessLeft","actualBorderThicknessRight":"actualBorderThicknessRight","actualBorderThicknessTop":"actualBorderThicknessTop","actualPixelScalingRatio":"actualPixelScalingRatio","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","calculateColumnSummary":"calculateColumnSummary","contentBackground":"contentBackground","contentBorderBrush":"contentBorderBrush","contentBorderThickness":"contentBorderThickness","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","height":"height","i":"i","includedColumns":"includedColumns","includedSeries":"includedSeries","isEmbeddedInDataTooltip":"isEmbeddedInDataTooltip","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layoutMode":"layoutMode","pixelScalingRatio":"pixelScalingRatio","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","styleGroupRow":"styleGroupRow","styleHeaderRow":"styleHeaderRow","styleSeriesColumn":"styleSeriesColumn","styleSeriesRow":"styleSeriesRow","styleSummaryColumn":"styleSummaryColumn","styleSummaryRow":"styleSummaryRow","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","target":"target","targetCursorPositionX":"targetCursorPositionX","targetCursorPositionY":"targetCursorPositionY","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatCurrencyCode":"valueFormatCurrencyCode","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureActualBorderThickness":"ensureActualBorderThickness","ensureBadgeMargin":"ensureBadgeMargin","ensureGroupRowMargin":"ensureGroupRowMargin","ensureGroupTextMargin":"ensureGroupTextMargin","ensureHeaderRowMargin":"ensureHeaderRowMargin","ensureHeaderTextMargin":"ensureHeaderTextMargin","ensureLabelTextMargin":"ensureLabelTextMargin","ensureSummaryRowMargin":"ensureSummaryRowMargin","ensureSummaryTitleTextMargin":"ensureSummaryTitleTextMargin","ensureTitleTextMargin":"ensureTitleTextMargin","ensureUnitsTextMargin":"ensureUnitsTextMargin","ensureValueRowMargin":"ensureValueRowMargin","ensureValueTextMargin":"ensureValueTextMargin","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getAbbreviatedNumber":"getAbbreviatedNumber","getAbbreviatedString":"getAbbreviatedString","getAbbreviatedSymbol":"getAbbreviatedSymbol","notifySizeChanged":"notifySizeChanged","updateStyle":"updateStyle","register":"register"}}],"IgcDataLegendSeriesGroupInfo":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataLegendSeriesGroupInfo","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgcDataLegendStylingColumnEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataLegendStylingColumnEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","columnIndex":"columnIndex","groupName":"groupName","labelText":"labelText","labelTextColor":"labelTextColor","seriesIndex":"seriesIndex","seriesTitle":"seriesTitle","unitsText":"unitsText","unitsTextColor":"unitsTextColor","valueAbbreviation":"valueAbbreviation","valueMemberLabel":"valueMemberLabel","valueMemberPath":"valueMemberPath","valueOriginal":"valueOriginal","valueText":"valueText","valueTextColor":"valueTextColor"}}],"IgcDataLegendStylingRowEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataLegendStylingRowEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","badgeShape":"badgeShape","groupName":"groupName","isBadgeVisible":"isBadgeVisible","isRowVisible":"isRowVisible","seriesIndex":"seriesIndex","seriesTitle":"seriesTitle","titleText":"titleText","titleTextColor":"titleTextColor"}}],"IgcDataLegendSummaryEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataLegendSummaryEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","columnMemberPath":"columnMemberPath","columnValues":"columnValues","summaryLabel":"summaryLabel","summaryUnits":"summaryUnits","summaryValue":"summaryValue"}}],"IgcDataPieBaseChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataPieBaseChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","innerExtent":"innerExtent","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","sortDescriptions":"sortDescriptions","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisActualMaximum":"valueAxisActualMaximum","valueAxisActualMinimum":"valueAxisActualMinimum","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getOthersContext":"getOthersContext","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgcDataPieChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataPieChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFavorLabellingScaleEnd":"angleAxisFavorLabellingScaleEnd","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInterval":"angleAxisInterval","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorInterval":"angleAxisMinorInterval","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","chartType":"chartType","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","darkSliceLabelColor":"darkSliceLabelColor","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","innerExtent":"innerExtent","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isTransitionInEnabled":"isTransitionInEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","labelMemberPath":"labelMemberPath","leftMargin":"leftMargin","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendOthersSliceLabelFormat":"legendOthersSliceLabelFormat","legendOthersSliceLabelFormatSpecifiers":"legendOthersSliceLabelFormatSpecifiers","legendSliceLabelContentMode":"legendSliceLabelContentMode","legendSliceLabelFormat":"legendSliceLabelFormat","legendSliceLabelFormatSpecifiers":"legendSliceLabelFormatSpecifiers","lightSliceLabelColor":"lightSliceLabelColor","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerCollision":"markerCollision","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersSliceLabelFormat":"othersSliceLabelFormat","othersSliceLabelFormatSpecifiers":"othersSliceLabelFormatSpecifiers","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","radiusExtent":"radiusExtent","radiusX":"radiusX","radiusY":"radiusY","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionThickness":"selectionThickness","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceLabelContentMode":"sliceLabelContentMode","sliceLabelContentSeparator":"sliceLabelContentSeparator","sliceLabelFormat":"sliceLabelFormat","sliceLabelFormatSpecifiers":"sliceLabelFormatSpecifiers","sliceLabelPositionMode":"sliceLabelPositionMode","sortDescriptions":"sortDescriptions","startAngle":"startAngle","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","sweepDirection":"sweepDirection","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","useInsetOutlines":"useInsetOutlines","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisAbbreviateLargeNumbers":"valueAxisAbbreviateLargeNumbers","valueAxisActualMaximum":"valueAxisActualMaximum","valueAxisActualMinimum":"valueAxisActualMinimum","valueAxisAutoRangeBufferMode":"valueAxisAutoRangeBufferMode","valueAxisExtent":"valueAxisExtent","valueAxisFavorLabellingScaleEnd":"valueAxisFavorLabellingScaleEnd","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInterval":"valueAxisInterval","valueAxisInverted":"valueAxisInverted","valueAxisIsLogarithmic":"valueAxisIsLogarithmic","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisLogarithmBase":"valueAxisLogarithmBase","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMaximumValue":"valueAxisMaximumValue","valueAxisMinimumValue":"valueAxisMinimumValue","valueAxisMinorInterval":"valueAxisMinorInterval","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","valueMemberPath":"valueMemberPath","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getOthersContext":"getOthersContext","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","register":"register"}}],"IgcDataSourceSupportingCalculation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataSourceSupportingCalculation","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgcDataToolTipLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDataToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualGroupedPositionModeX":"actualGroupedPositionModeX","actualGroupedPositionModeY":"actualGroupedPositionModeY","actualGroupingMode":"actualGroupingMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","badgeMarginBottom":"badgeMarginBottom","badgeMarginLeft":"badgeMarginLeft","badgeMarginRight":"badgeMarginRight","badgeMarginTop":"badgeMarginTop","badgeShape":"badgeShape","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultPositionOffsetX":"defaultPositionOffsetX","defaultPositionOffsetY":"defaultPositionOffsetY","discreteLegendItemTemplate":"discreteLegendItemTemplate","excludedColumns":"excludedColumns","excludedSeries":"excludedSeries","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","groupedPositionModeX":"groupedPositionModeX","groupedPositionModeY":"groupedPositionModeY","groupingMode":"groupingMode","groupRowMarginBottom":"groupRowMarginBottom","groupRowMarginLeft":"groupRowMarginLeft","groupRowMarginRight":"groupRowMarginRight","groupRowMarginTop":"groupRowMarginTop","groupRowVisible":"groupRowVisible","groupTextColor":"groupTextColor","groupTextMarginBottom":"groupTextMarginBottom","groupTextMarginLeft":"groupTextMarginLeft","groupTextMarginRight":"groupTextMarginRight","groupTextMarginTop":"groupTextMarginTop","groupTextStyle":"groupTextStyle","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","headerFormatCulture":"headerFormatCulture","headerFormatDate":"headerFormatDate","headerFormatSpecifiers":"headerFormatSpecifiers","headerFormatString":"headerFormatString","headerFormatTime":"headerFormatTime","headerRowMarginBottom":"headerRowMarginBottom","headerRowMarginLeft":"headerRowMarginLeft","headerRowMarginRight":"headerRowMarginRight","headerRowMarginTop":"headerRowMarginTop","headerRowVisible":"headerRowVisible","headerText":"headerText","headerTextColor":"headerTextColor","headerTextMarginBottom":"headerTextMarginBottom","headerTextMarginLeft":"headerTextMarginLeft","headerTextMarginRight":"headerTextMarginRight","headerTextMarginTop":"headerTextMarginTop","headerTextStyle":"headerTextStyle","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","includedColumns":"includedColumns","includedSeries":"includedSeries","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","labelDisplayMode":"labelDisplayMode","labelTextColor":"labelTextColor","labelTextMarginBottom":"labelTextMarginBottom","labelTextMarginLeft":"labelTextMarginLeft","labelTextMarginRight":"labelTextMarginRight","labelTextMarginTop":"labelTextMarginTop","labelTextStyle":"labelTextStyle","layers":"layers","layoutMode":"layoutMode","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","positionOffsetX":"positionOffsetX","positionOffsetY":"positionOffsetY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","shouldUpdateWhenSeriesDataChanges":"shouldUpdateWhenSeriesDataChanges","showDefaultTooltip":"showDefaultTooltip","summaryLabelText":"summaryLabelText","summaryLabelTextColor":"summaryLabelTextColor","summaryLabelTextStyle":"summaryLabelTextStyle","summaryRowMarginBottom":"summaryRowMarginBottom","summaryRowMarginLeft":"summaryRowMarginLeft","summaryRowMarginRight":"summaryRowMarginRight","summaryRowMarginTop":"summaryRowMarginTop","summaryTitleText":"summaryTitleText","summaryTitleTextColor":"summaryTitleTextColor","summaryTitleTextMarginBottom":"summaryTitleTextMarginBottom","summaryTitleTextMarginLeft":"summaryTitleTextMarginLeft","summaryTitleTextMarginRight":"summaryTitleTextMarginRight","summaryTitleTextMarginTop":"summaryTitleTextMarginTop","summaryTitleTextStyle":"summaryTitleTextStyle","summaryType":"summaryType","summaryUnitsText":"summaryUnitsText","summaryUnitsTextColor":"summaryUnitsTextColor","summaryUnitsTextStyle":"summaryUnitsTextStyle","summaryValueTextColor":"summaryValueTextColor","summaryValueTextStyle":"summaryValueTextStyle","targetAxis":"targetAxis","targetAxisName":"targetAxisName","thickness":"thickness","title":"title","titleTextColor":"titleTextColor","titleTextMarginBottom":"titleTextMarginBottom","titleTextMarginLeft":"titleTextMarginLeft","titleTextMarginRight":"titleTextMarginRight","titleTextMarginTop":"titleTextMarginTop","titleTextStyle":"titleTextStyle","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","unitsDisplayMode":"unitsDisplayMode","unitsText":"unitsText","unitsTextColor":"unitsTextColor","unitsTextMarginBottom":"unitsTextMarginBottom","unitsTextMarginLeft":"unitsTextMarginLeft","unitsTextMarginRight":"unitsTextMarginRight","unitsTextMarginTop":"unitsTextMarginTop","unitsTextStyle":"unitsTextStyle","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueFormatAbbreviation":"valueFormatAbbreviation","valueFormatCulture":"valueFormatCulture","valueFormatMaxFractions":"valueFormatMaxFractions","valueFormatMinFractions":"valueFormatMinFractions","valueFormatMode":"valueFormatMode","valueFormatSpecifiers":"valueFormatSpecifiers","valueFormatString":"valueFormatString","valueFormatUseGrouping":"valueFormatUseGrouping","valueRowMarginBottom":"valueRowMarginBottom","valueRowMarginLeft":"valueRowMarginLeft","valueRowMarginRight":"valueRowMarginRight","valueRowMarginTop":"valueRowMarginTop","valueRowVisible":"valueRowVisible","valueTextColor":"valueTextColor","valueTextMarginBottom":"valueTextMarginBottom","valueTextMarginLeft":"valueTextMarginLeft","valueTextMarginRight":"valueTextMarginRight","valueTextMarginTop":"valueTextMarginTop","valueTextStyle":"valueTextStyle","valueTextUseSeriesColors":"valueTextUseSeriesColors","valueTextWhenMissingData":"valueTextWhenMissingData","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureBadgeMargin":"ensureBadgeMargin","ensureGroupRowMargin":"ensureGroupRowMargin","ensureGroupTextMargin":"ensureGroupTextMargin","ensureHeaderRowMargin":"ensureHeaderRowMargin","ensureHeaderTextMargin":"ensureHeaderTextMargin","ensureLabelTextMargin":"ensureLabelTextMargin","ensureSummaryRowMargin":"ensureSummaryRowMargin","ensureSummaryTitleTextMargin":"ensureSummaryTitleTextMargin","ensureTitleTextMargin":"ensureTitleTextMargin","ensureUnitsTextMargin":"ensureUnitsTextMargin","ensureValueRowMargin":"ensureValueRowMargin","ensureValueTextMargin":"ensureValueTextMargin","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDetrendedPriceOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDetrendedPriceOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDomainChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDomainChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","i":"i","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","destroy":"destroy","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgcDomainChartPlotAreaPointerEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDomainChartPlotAreaPointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chartPosition":"chartPosition","plotAreaPosition":"plotAreaPosition"}}],"IgcDomainChartSeriesPointerEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDomainChartSeriesPointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelSelection":"cancelSelection","chartPosition":"chartPosition","item":"item","plotAreaPosition":"plotAreaPosition","series":"series","worldPosition":"worldPosition"}}],"IgcDomainChartTestingInfo":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDomainChartTestingInfo","k":"class","s":"classes","m":{"constructor":"constructor","mainDataChart":"mainDataChart","findByName":"findByName"}}],"IgcDoughnutChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDoughnutChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","height":"height","holeDimensionsChanged":"holeDimensionsChanged","i":"i","innerExtent":"innerExtent","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","pixelScalingRatio":"pixelScalingRatio","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","series":"series","sliceClick":"sliceClick","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getCenterCoordinates":"getCenterCoordinates","getContainerID":"getContainerID","getHoleRadius":"getHoleRadius","ngOnDestroy":"ngOnDestroy","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","register":"register"}}],"IgcDoughnutChartDefaultTooltipsComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcDoughnutChartDefaultTooltipsComponent","k":"class","s":"classes","m":{"constructor":"constructor","doughnutSliceTooltip":"doughnutSliceTooltip","onContentReady":"onContentReady","afterContentInit":"afterContentInit","ensureDefaultTooltip":"ensureDefaultTooltip","getBrush":"getBrush","getSliceLabel":"getSliceLabel","getValue":"getValue","getValueMemberPath":"getValueMemberPath","register":"register"}}],"IgcEaseOfMovementIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcEaseOfMovementIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFastStochasticOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFastStochasticOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFilterStringErrorsParsingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","errors":"errors","propertyName":"propertyName"}}],"IgcFinalValueLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinalValueLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","finalValueSelectionMode":"finalValueSelectionMode","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFinancialCalculationDataSource":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialCalculationDataSource","k":"class","s":"classes","m":{"constructor":"constructor","calculateCount":"calculateCount","calculateFrom":"calculateFrom","closeColumn":"closeColumn","count":"count","highColumn":"highColumn","i":"i","indicatorColumn":"indicatorColumn","longPeriod":"longPeriod","lowColumn":"lowColumn","maximumValue":"maximumValue","minimumValue":"minimumValue","multiplier":"multiplier","openColumn":"openColumn","period":"period","shortPeriod":"shortPeriod","specifiesRange":"specifiesRange","trueLow":"trueLow","trueRange":"trueRange","typicalColumn":"typicalColumn","volumeColumn":"volumeColumn","findByName":"findByName"}}],"IgcFinancialCalculationSupportingCalculations":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialCalculationSupportingCalculations","k":"class","s":"classes","m":{"constructor":"constructor","eMA":"eMA","longPriceOscillatorAverage":"longPriceOscillatorAverage","longVolumeOscillatorAverage":"longVolumeOscillatorAverage","makeSafe":"makeSafe","movingSum":"movingSum","shortPriceOscillatorAverage":"shortPriceOscillatorAverage","shortVolumeOscillatorAverage":"shortVolumeOscillatorAverage","sMA":"sMA","sTDEV":"sTDEV","findByName":"findByName"}}],"IgcFinancialChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","applyCustomIndicators":"applyCustomIndicators","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTemplate":"chartTemplate","chartTitle":"chartTitle","chartType":"chartType","chartTypePickerTemplate":"chartTypePickerTemplate","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","customIndicatorNames":"customIndicatorNames","dataSource":"dataSource","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","indicatorBrushes":"indicatorBrushes","indicatorDisplayTypes":"indicatorDisplayTypes","indicatorLongPeriod":"indicatorLongPeriod","indicatorMenuTemplate":"indicatorMenuTemplate","indicatorMultiplier":"indicatorMultiplier","indicatorNegativeBrushes":"indicatorNegativeBrushes","indicatorPeriod":"indicatorPeriod","indicatorShortPeriod":"indicatorShortPeriod","indicatorSignalPeriod":"indicatorSignalPeriod","indicatorSmoothingPeriod":"indicatorSmoothingPeriod","indicatorThickness":"indicatorThickness","indicatorTypes":"indicatorTypes","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isLegendVisible":"isLegendVisible","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isToolbarVisible":"isToolbarVisible","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","negativeBrushes":"negativeBrushes","negativeOutlines":"negativeOutlines","outlineMode":"outlineMode","outlines":"outlines","overlayBrushes":"overlayBrushes","overlayMultiplier":"overlayMultiplier","overlayOutlines":"overlayOutlines","overlayThickness":"overlayThickness","overlayTypes":"overlayTypes","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","rangeSelectorOptions":"rangeSelectorOptions","rangeSelectorTemplate":"rangeSelectorTemplate","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","toolbarHeight":"toolbarHeight","toolbarTemplate":"toolbarTemplate","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","volumeBrushes":"volumeBrushes","volumeOutlines":"volumeOutlines","volumeThickness":"volumeThickness","volumeType":"volumeType","width":"width","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisBreaks":"xAxisBreaks","xAxisEnhancedIntervalPreferMoreCategoryLabels":"xAxisEnhancedIntervalPreferMoreCategoryLabels","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMaximumValue":"xAxisMaximumValue","xAxisMinimumValue":"xAxisMinimumValue","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisMode":"xAxisMode","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","xAxisZoomMaximumCategoryRange":"xAxisZoomMaximumCategoryRange","xAxisZoomMaximumItemSpan":"xAxisZoomMaximumItemSpan","xAxisZoomToCategoryRange":"xAxisZoomToCategoryRange","xAxisZoomToCategoryStart":"xAxisZoomToCategoryStart","xAxisZoomToItemSpan":"xAxisZoomToItemSpan","yAxisAbbreviateLargeNumbers":"yAxisAbbreviateLargeNumbers","yAxisActualMaximum":"yAxisActualMaximum","yAxisActualMinimum":"yAxisActualMinimum","yAxisEnhancedIntervalPreferMoreCategoryLabels":"yAxisEnhancedIntervalPreferMoreCategoryLabels","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInterval":"yAxisInterval","yAxisInverted":"yAxisInverted","yAxisIsLogarithmic":"yAxisIsLogarithmic","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisLogarithmBase":"yAxisLogarithmBase","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMaximumValue":"yAxisMaximumValue","yAxisMinimumValue":"yAxisMinimumValue","yAxisMinorInterval":"yAxisMinorInterval","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisMode":"yAxisMode","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","zoomSliderType":"zoomSliderType","zoomSliderXAxisMajorStroke":"zoomSliderXAxisMajorStroke","zoomSliderXAxisMajorStrokeThickness":"zoomSliderXAxisMajorStrokeThickness","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","bindData":"bindData","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","initializeContent":"initializeContent","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut","register":"register"}}],"IgcFinancialChartCustomIndicatorArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialChartCustomIndicatorArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","index":"index","indicatorInfo":"indicatorInfo","series":"series"}}],"IgcFinancialChartDefaultTemplatesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialChartDefaultTemplatesComponent","k":"class","s":"classes","m":{"constructor":"constructor","financialChartIndicatorMenuTemplate":"financialChartIndicatorMenuTemplate","financialChartRangeSelectorTemplate":"financialChartRangeSelectorTemplate","financialChartToolbarTemplate":"financialChartToolbarTemplate","financialChartTypePickerTemplate":"financialChartTypePickerTemplate","register":"register"}}],"IgcFinancialChartRangeSelectorOptionCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialChartRangeSelectorOptionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcFinancialEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","basedOn":"basedOn","count":"count","dataSource":"dataSource","i":"i","position":"position","supportingCalculations":"supportingCalculations"}}],"IgcFinancialIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcFinancialIndicatorTypeCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialIndicatorTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcFinancialLegendComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","register":"register"}}],"IgcFinancialOverlayComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcFinancialOverlayTypeCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialOverlayTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcFinancialPriceSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialPriceSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","closeMemberAsLegendLabel":"closeMemberAsLegendLabel","closeMemberAsLegendUnit":"closeMemberAsLegendUnit","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","openMemberAsLegendLabel":"openMemberAsLegendLabel","openMemberAsLegendUnit":"openMemberAsLegendUnit","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFinancialSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFinancialSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcForceIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcForceIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFragmentBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFragmentBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcFullStochasticOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFullStochasticOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","smoothingPeriod":"smoothingPeriod","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","triggerPeriod":"triggerPeriod","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFunnelChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","allowSliceSelection":"allowSliceSelection","bottomEdgeWidth":"bottomEdgeWidth","brushes":"brushes","dataSource":"dataSource","formatInnerLabel":"formatInnerLabel","formatOuterLabel":"formatOuterLabel","funnelSliceDisplay":"funnelSliceDisplay","height":"height","highlightedValueMemberPath":"highlightedValueMemberPath","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","innerLabelMemberPath":"innerLabelMemberPath","innerLabelVisibility":"innerLabelVisibility","isInverted":"isInverted","legend":"legend","legendItemBadgeTemplate":"legendItemBadgeTemplate","outerLabelAlignment":"outerLabelAlignment","outerLabelMemberPath":"outerLabelMemberPath","outerLabelTextColor":"outerLabelTextColor","outerLabelTextStyle":"outerLabelTextStyle","outerLabelVisibility":"outerLabelVisibility","outlines":"outlines","outlineThickness":"outlineThickness","pixelScalingRatio":"pixelScalingRatio","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","sliceClicked":"sliceClicked","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","unselectedSliceFill":"unselectedSliceFill","unselectedSliceOpacity":"unselectedSliceOpacity","unselectedSliceStroke":"unselectedSliceStroke","unselectedSliceStrokeThickness":"unselectedSliceStrokeThickness","useBezierCurve":"useBezierCurve","useOuterLabelsForLegend":"useOuterLabelsForLegend","useUnselectedStyle":"useUnselectedStyle","valueMemberPath":"valueMemberPath","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindData":"bindData","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureSelectedSliceStyle":"ensureSelectedSliceStyle","ensureUnselectedSliceStyle":"ensureUnselectedSliceStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","toggleSelection":"toggleSelection","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFunnelChartSelectedItemsChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelChartSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgcFunnelChartSelectedItemsCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelChartSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcFunnelDataContext":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelDataContext","k":"class","s":"classes","m":{"constructor":"constructor","index":"index","item":"item","findByName":"findByName"}}],"IgcFunnelSliceClickedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelSliceClickedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","index":"index","item":"item"}}],"IgcFunnelSliceDataContext":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelSliceDataContext","k":"class","s":"classes","m":{"constructor":"constructor","itemOutline":"itemOutline"}}],"IgcFunnelSliceEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcFunnelSliceEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","index":"index","item":"item","position":"position"}}],"IgcHierarchicalRingSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcHierarchicalRingSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brushes":"brushes","childrenMemberPath":"childrenMemberPath","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindData":"bindData","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","provideContainer":"provideContainer","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcHighDensityScatterSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcHighDensityScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useBruteForce":"useBruteForce","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcHoleDimensionsChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcHoleDimensionsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","center":"center","radius":"radius"}}],"IgcHorizontalAnchoredCategorySeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcHorizontalAnchoredCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcHorizontalRangeCategorySeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcHorizontalRangeCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcHorizontalStackedSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcHorizontalStackedSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcIndexCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcIndexCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcIndicatorDisplayTypeCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcIndicatorDisplayTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcItemLegendComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcItemLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","orientation":"orientation","textColor":"textColor","textStyle":"textStyle","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","createItemwiseLegendItems":"createItemwiseLegendItems","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","register":"register"}}],"IgcItemToolTipLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcItemToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","toolTipBackground":"toolTipBackground","toolTipBorderBrush":"toolTipBorderBrush","toolTipBorderThickness":"toolTipBorderThickness","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcItemwiseStrategyBasedIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcItemwiseStrategyBasedIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcLabelClickEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLabelClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","allowSliceClick":"allowSliceClick","item":"item"}}],"IgcLabelFormatOverrideEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLabelFormatOverrideEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dateTime":"dateTime","format":"format","label":"label"}}],"IgcLegendBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLegendBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave"}}],"IgcLegendComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","container":"container","htmlTagName":"htmlTagName","i":"i","isFinancial":"isFinancial","isItemwise":"isItemwise","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","orientation":"orientation","textColor":"textColor","textStyle":"textStyle","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","register":"register"}}],"IgcLegendMouseButtonEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLegendMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","handled":"handled","item":"item","legendItem":"legendItem","originalSource":"originalSource","series":"series","toString":"toString"}}],"IgcLegendMouseEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLegendMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chart":"chart","item":"item","legendItem":"legendItem","originalSource":"originalSource","series":"series","toString":"toString"}}],"IgcLegendTextContentChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLegendTextContentChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcLinearContourValueResolverComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLinearContourValueResolverComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","valueCount":"valueCount","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcLineFragmentComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLineFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcLineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcMarkerSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMarkerSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcMarkerTypeCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMarkerTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcMarketFacilitationIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMarketFacilitationIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcMassIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMassIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcMedianPriceIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMedianPriceIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcMoneyFlowIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMoneyFlowIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcMovingAverageConvergenceDivergenceIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcMovingAverageConvergenceDivergenceIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","signalPeriod":"signalPeriod","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcNegativeVolumeIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcNegativeVolumeIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcNumericAngleAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcNumericAngleAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcNumericAxisBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcNumericAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgcNumericRadiusAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcNumericRadiusAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","innerRadiusExtentScale":"innerRadiusExtentScale","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","radiusExtentScale":"radiusExtentScale","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getScaledValue":"getScaledValue","getUnscaledValue":"getUnscaledValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcNumericXAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcNumericXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcNumericYAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcNumericYAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcOnBalanceVolumeIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcOnBalanceVolumeIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcOrdinalTimeXAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcOrdinalTimeXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormats":"labelFormats","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","zoomMaximumCategoryRange":"zoomMaximumCategoryRange","zoomMaximumItemSpan":"zoomMaximumItemSpan","zoomToCategoryRange":"zoomToCategoryRange","zoomToCategoryStart":"zoomToCategoryStart","zoomToItemSpan":"zoomToItemSpan","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","getWindowZoomFromCategories":"getWindowZoomFromCategories","getWindowZoomFromItemSpan":"getWindowZoomFromItemSpan","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollIntoView":"scrollIntoView","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcOthersCategoryContextComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcOthersCategoryContextComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","items":"items","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcOverlayTextInfo":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcOverlayTextInfo","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundMode":"backgroundMode","backgroundShift":"backgroundShift","borderMode":"borderMode","borderRadius":"borderRadius","borderShift":"borderShift","borderStroke":"borderStroke","borderThickness":"borderThickness","horizontalMargin":"horizontalMargin","horizontalPadding":"horizontalPadding","shapeBrush":"shapeBrush","shapeOutline":"shapeOutline","textAngle":"textAngle","textColor":"textColor","textColorMode":"textColorMode","textColorShift":"textColorShift","textContent":"textContent","textLocation":"textLocation","textVisible":"textVisible","verticalMargin":"verticalMargin","verticalPadding":"verticalPadding","findByName":"findByName"}}],"IgcOverlayTextUpdatingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcOverlayTextUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","background":"background","backgroundMode":"backgroundMode","backgroundShift":"backgroundShift","borderMode":"borderMode","borderRadius":"borderRadius","borderShift":"borderShift","borderStroke":"borderStroke","borderThickness":"borderThickness","dataIndex":"dataIndex","horizontalMargin":"horizontalMargin","horizontalPadding":"horizontalPadding","shapeBrush":"shapeBrush","shapeOutline":"shapeOutline","textAngle":"textAngle","textColor":"textColor","textColorMode":"textColorMode","textColorShift":"textColorShift","textContent":"textContent","textEmpty":"textEmpty","textLocation":"textLocation","textVisible":"textVisible","verticalMargin":"verticalMargin","verticalPadding":"verticalPadding"}}],"IgcPercentagePriceOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPercentagePriceOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPercentageVolumeOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPercentageVolumeOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","longPeriod":"longPeriod","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shortPeriod":"shortPeriod","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPercentChangeYAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPercentChangeYAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","scrollRangeIntoView":"scrollRangeIntoView","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPieChartBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPieChartBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideContainer":"provideContainer","removeWidgetLevelDataSource":"removeWidgetLevelDataSource","setWidgetLevelDataSource":"setWidgetLevelDataSource","simulateLeftClick":"simulateLeftClick","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal"}}],"IgcPieChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPieChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBrushes":"actualBrushes","actualLabelInnerColor":"actualLabelInnerColor","actualLabelOuterColor":"actualLabelOuterColor","actualOutlines":"actualOutlines","actualPixelScalingRatio":"actualPixelScalingRatio","allowSliceExplosion":"allowSliceExplosion","allowSliceSelection":"allowSliceSelection","brushes":"brushes","dataSource":"dataSource","explodedRadius":"explodedRadius","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","height":"height","innerExtent":"innerExtent","isDragInteractionEnabled":"isDragInteractionEnabled","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelClick":"labelClick","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineMargin":"leaderLineMargin","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","radiusFactor":"radiusFactor","selectedItem":"selectedItem","selectedItemChanged":"selectedItemChanged","selectedItemChanging":"selectedItemChanging","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedItemsChanging":"selectedItemsChanging","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","selectionMode":"selectionMode","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sliceClick":"sliceClick","sliceEnter":"sliceEnter","sliceHover":"sliceHover","sliceLeave":"sliceLeave","startAngle":"startAngle","sweepDirection":"sweepDirection","textStyle":"textStyle","toolTip":"toolTip","valueMemberPath":"valueMemberPath","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindData":"bindData","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideContainer":"provideContainer","removeWidgetLevelDataSource":"removeWidgetLevelDataSource","setWidgetLevelDataSource":"setWidgetLevelDataSource","simulateLeftClick":"simulateLeftClick","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPieSliceDataContext":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPieSliceDataContext","k":"class","s":"classes","m":{"constructor":"constructor","isOthersSlice":"isOthersSlice","percentValue":"percentValue"}}],"IgcPieSliceOthersContext":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPieSliceOthersContext","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgcPlotAreaMouseButtonEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPlotAreaMouseButtonEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chartPosition":"chartPosition","manipulationOccurred":"manipulationOccurred","plotAreaPosition":"plotAreaPosition","viewer":"viewer"}}],"IgcPlotAreaMouseEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPlotAreaMouseEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","chartPosition":"chartPosition","isDuringManipulation":"isDuringManipulation","plotAreaPosition":"plotAreaPosition","viewer":"viewer"}}],"IgcPointSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPointSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPolarAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPolarBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcPolarLineSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarLineSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcPolarLineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPolarScatterSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPolarSplineAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarSplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPolarSplineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPolarSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","angleMemberAsLegendLabel":"angleMemberAsLegendLabel","angleMemberAsLegendUnit":"angleMemberAsLegendUnit","angleMemberPath":"angleMemberPath","areaFillOpacity":"areaFillOpacity","assigningPolarMarkerStyle":"assigningPolarMarkerStyle","assigningPolarStyle":"assigningPolarStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedAngleMemberPath":"highlightedAngleMemberPath","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedRadiusMemberPath":"highlightedRadiusMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomPolarMarkerStyleAllowed":"isCustomPolarMarkerStyleAllowed","isCustomPolarStyleAllowed":"isCustomPolarStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusAxis":"radiusAxis","radiusAxisName":"radiusAxisName","radiusMemberAsLegendLabel":"radiusMemberAsLegendLabel","radiusMemberAsLegendUnit":"radiusMemberAsLegendUnit","radiusMemberPath":"radiusMemberPath","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCartesianInterpolation":"useCartesianInterpolation","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsRadiusAxis":"canUseAsRadiusAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPositiveVolumeIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPositiveVolumeIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPriceChannelOverlayComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPriceChannelOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPriceVolumeTrendIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcPriceVolumeTrendIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcProgressiveLoadStatusEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcProgressiveLoadStatusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentStatus":"currentStatus"}}],"IgcProportionalCategoryAngleAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcProportionalCategoryAngleAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualMajorStroke":"actualMajorStroke","actualMinorInterval":"actualMinorInterval","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","areGroupSizesUneven":"areGroupSizesUneven","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelMode":"companionAxisLabelMode","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStartAngleOffset":"companionAxisStartAngleOffset","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","hasOthersCategory":"hasOthersCategory","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelMode":"labelMode","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","minimumGapSize":"minimumGapSize","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","normalizationMayContainUnknowns":"normalizationMayContainUnknowns","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersIndex":"othersIndex","othersValue":"othersValue","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","startAngleOffset":"startAngleOffset","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","valueMemberPath":"valueMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNormalizingValueAtIndex":"getNormalizingValueAtIndex","getPercentageValue":"getPercentageValue","getScaledAngle":"getScaledAngle","getUnscaledAngle":"getUnscaledAngle","getValueLabel":"getValueLabel","isOthersValue":"isOthersValue","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRadialAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRadialAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRadialBaseChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRadialBaseChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAngleAxisLabelTextColor":"actualAngleAxisLabelTextColor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualValueAxisLabelTextColor":"actualValueAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","angleAxisExtent":"angleAxisExtent","angleAxisFormatLabel":"angleAxisFormatLabel","angleAxisInverted":"angleAxisInverted","angleAxisLabel":"angleAxisLabel","angleAxisLabelAngle":"angleAxisLabelAngle","angleAxisLabelBottomMargin":"angleAxisLabelBottomMargin","angleAxisLabelFormat":"angleAxisLabelFormat","angleAxisLabelFormatSpecifiers":"angleAxisLabelFormatSpecifiers","angleAxisLabelHorizontalAlignment":"angleAxisLabelHorizontalAlignment","angleAxisLabelLeftMargin":"angleAxisLabelLeftMargin","angleAxisLabelLocation":"angleAxisLabelLocation","angleAxisLabelRightMargin":"angleAxisLabelRightMargin","angleAxisLabelTextColor":"angleAxisLabelTextColor","angleAxisLabelTextStyle":"angleAxisLabelTextStyle","angleAxisLabelTopMargin":"angleAxisLabelTopMargin","angleAxisLabelVerticalAlignment":"angleAxisLabelVerticalAlignment","angleAxisLabelVisibility":"angleAxisLabelVisibility","angleAxisMajorStroke":"angleAxisMajorStroke","angleAxisMajorStrokeThickness":"angleAxisMajorStrokeThickness","angleAxisMaximumExtent":"angleAxisMaximumExtent","angleAxisMaximumExtentPercentage":"angleAxisMaximumExtentPercentage","angleAxisMinorStroke":"angleAxisMinorStroke","angleAxisMinorStrokeThickness":"angleAxisMinorStrokeThickness","angleAxisStrip":"angleAxisStrip","angleAxisStroke":"angleAxisStroke","angleAxisStrokeThickness":"angleAxisStrokeThickness","angleAxisTickLength":"angleAxisTickLength","angleAxisTickStroke":"angleAxisTickStroke","angleAxisTickStrokeThickness":"angleAxisTickStrokeThickness","angleAxisTitle":"angleAxisTitle","angleAxisTitleAlignment":"angleAxisTitleAlignment","angleAxisTitleAngle":"angleAxisTitleAngle","angleAxisTitleBottomMargin":"angleAxisTitleBottomMargin","angleAxisTitleLeftMargin":"angleAxisTitleLeftMargin","angleAxisTitleMargin":"angleAxisTitleMargin","angleAxisTitleRightMargin":"angleAxisTitleRightMargin","angleAxisTitleTextColor":"angleAxisTitleTextColor","angleAxisTitleTextStyle":"angleAxisTitleTextStyle","angleAxisTitleTopMargin":"angleAxisTitleTopMargin","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueAxisExtent":"valueAxisExtent","valueAxisFormatLabel":"valueAxisFormatLabel","valueAxisInverted":"valueAxisInverted","valueAxisLabel":"valueAxisLabel","valueAxisLabelAngle":"valueAxisLabelAngle","valueAxisLabelBottomMargin":"valueAxisLabelBottomMargin","valueAxisLabelFormat":"valueAxisLabelFormat","valueAxisLabelFormatSpecifiers":"valueAxisLabelFormatSpecifiers","valueAxisLabelHorizontalAlignment":"valueAxisLabelHorizontalAlignment","valueAxisLabelLeftMargin":"valueAxisLabelLeftMargin","valueAxisLabelLocation":"valueAxisLabelLocation","valueAxisLabelRightMargin":"valueAxisLabelRightMargin","valueAxisLabelTextColor":"valueAxisLabelTextColor","valueAxisLabelTextStyle":"valueAxisLabelTextStyle","valueAxisLabelTopMargin":"valueAxisLabelTopMargin","valueAxisLabelVerticalAlignment":"valueAxisLabelVerticalAlignment","valueAxisLabelVisibility":"valueAxisLabelVisibility","valueAxisMajorStroke":"valueAxisMajorStroke","valueAxisMajorStrokeThickness":"valueAxisMajorStrokeThickness","valueAxisMaximumExtent":"valueAxisMaximumExtent","valueAxisMaximumExtentPercentage":"valueAxisMaximumExtentPercentage","valueAxisMinorStroke":"valueAxisMinorStroke","valueAxisMinorStrokeThickness":"valueAxisMinorStrokeThickness","valueAxisStrip":"valueAxisStrip","valueAxisStroke":"valueAxisStroke","valueAxisStrokeThickness":"valueAxisStrokeThickness","valueAxisTickLength":"valueAxisTickLength","valueAxisTickStroke":"valueAxisTickStroke","valueAxisTickStrokeThickness":"valueAxisTickStrokeThickness","valueAxisTitle":"valueAxisTitle","valueAxisTitleAlignment":"valueAxisTitleAlignment","valueAxisTitleAngle":"valueAxisTitleAngle","valueAxisTitleBottomMargin":"valueAxisTitleBottomMargin","valueAxisTitleLeftMargin":"valueAxisTitleLeftMargin","valueAxisTitleMargin":"valueAxisTitleMargin","valueAxisTitleRightMargin":"valueAxisTitleRightMargin","valueAxisTitleTextColor":"valueAxisTitleTextColor","valueAxisTitleTextStyle":"valueAxisTitleTextStyle","valueAxisTitleTopMargin":"valueAxisTitleTopMargin","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledAngle":"getScaledAngle","getScaledValue":"getScaledValue","getUnscaledAngle":"getUnscaledAngle","getUnscaledValue":"getUnscaledValue","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgcRadialBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRadialBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcRadialColumnSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRadialColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRadialLineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRadialLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useCategoryNormalizedValues":"useCategoryNormalizedValues","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRadialPieSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRadialPieSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","angleAxis":"angleAxis","angleAxisName":"angleAxisName","areaFillOpacity":"areaFillOpacity","assigningRadialMarkerStyle":"assigningRadialMarkerStyle","assigningRadialStyle":"assigningRadialStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutLabelPrecision":"autoCalloutLabelPrecision","autoCalloutLabelValueSeparator":"autoCalloutLabelValueSeparator","autoCalloutOthersLabelFormat":"autoCalloutOthersLabelFormat","autoCalloutOthersLabelFormatSpecifiers":"autoCalloutOthersLabelFormatSpecifiers","autoCalloutPercentagePrecision":"autoCalloutPercentagePrecision","autoCalloutRadialLabelMode":"autoCalloutRadialLabelMode","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","clipSeriesToBounds":"clipSeriesToBounds","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomRadialMarkerStyleAllowed":"isCustomRadialMarkerStyleAllowed","isCustomRadialStyleAllowed":"isCustomRadialStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendEmptyValuesMode":"legendEmptyValuesMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","legendLabelMemberPath":"legendLabelMemberPath","legendProportionalRadialLabelFormat":"legendProportionalRadialLabelFormat","legendProportionalRadialLabelFormatSpecifiers":"legendProportionalRadialLabelFormatSpecifiers","legendRadialLabelMode":"legendRadialLabelMode","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","othersCategoryBrush":"othersCategoryBrush","othersCategoryOutline":"othersCategoryOutline","othersLegendProportionalRadialLabelFormat":"othersLegendProportionalRadialLabelFormat","othersLegendProportionalRadialLabelFormatSpecifiers":"othersLegendProportionalRadialLabelFormatSpecifiers","othersProportionalRadialLabelFormat":"othersProportionalRadialLabelFormat","othersProportionalRadialLabelFormatSpecifiers":"othersProportionalRadialLabelFormatSpecifiers","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","proportionalRadialLabelFormat":"proportionalRadialLabelFormat","proportionalRadialLabelFormatSpecifiers":"proportionalRadialLabelFormatSpecifiers","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useCategoryNormalizedValues":"useCategoryNormalizedValues","useInsetOutlines":"useInsetOutlines","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueAxis":"valueAxis","valueAxisName":"valueAxisName","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsAngleAxis":"canUseAsAngleAxis","canUseAsValueAxis":"canUseAsValueAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getAngleFromWorld":"getAngleFromWorld","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRangeAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRangeAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRangeCategorySeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRangeCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcRangeColumnSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRangeColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberAsLegendLabel":"highMemberAsLegendLabel","highMemberAsLegendUnit":"highMemberAsLegendUnit","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberAsLegendLabel":"lowMemberAsLegendLabel","lowMemberAsLegendUnit":"lowMemberAsLegendUnit","lowMemberPath":"lowMemberPath","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRateOfChangeAndMomentumIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRateOfChangeAndMomentumIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRefreshCompletedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRefreshCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcRelativeStrengthIndexIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRelativeStrengthIndexIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRenderRequestedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRenderRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","animate":"animate"}}],"IgcRing":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRing","k":"class","s":"classes","m":{"constructor":"constructor","center":"center","controlSize":"controlSize","index":"index","innerExtend":"innerExtend","ringBreadth":"ringBreadth","ringSeries":"ringSeries","findByName":"findByName","prepareArcs":"prepareArcs","renderArcs":"renderArcs"}}],"IgcRingSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRingSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","brushes":"brushes","dataSource":"dataSource","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","i":"i","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindData":"bindData","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","provideContainer":"provideContainer","_createFromInternal":"_createFromInternal"}}],"IgcRingSeriesCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRingSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcRingSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcRingSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brushes":"brushes","dataSource":"dataSource","explodedSlices":"explodedSlices","formatLabel":"formatLabel","formatLegendLabel":"formatLegendLabel","i":"i","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInnerColor":"labelInnerColor","labelMemberPath":"labelMemberPath","labelOuterColor":"labelOuterColor","labelsPosition":"labelsPosition","leaderLineFill":"leaderLineFill","leaderLineMargin":"leaderLineMargin","leaderLineOpacity":"leaderLineOpacity","leaderLineStroke":"leaderLineStroke","leaderLineStrokeThickness":"leaderLineStrokeThickness","leaderLineType":"leaderLineType","leaderLineVisibility":"leaderLineVisibility","legend":"legend","legendLabelFormat":"legendLabelFormat","legendLabelFormatSpecifiers":"legendLabelFormatSpecifiers","legendLabelMemberPath":"legendLabelMemberPath","legendOthersLabelFormat":"legendOthersLabelFormat","legendOthersLabelFormatSpecifiers":"legendOthersLabelFormatSpecifiers","othersCategoryFill":"othersCategoryFill","othersCategoryOpacity":"othersCategoryOpacity","othersCategoryStroke":"othersCategoryStroke","othersCategoryStrokeThickness":"othersCategoryStrokeThickness","othersCategoryText":"othersCategoryText","othersCategoryThreshold":"othersCategoryThreshold","othersCategoryType":"othersCategoryType","othersLabelFormat":"othersLabelFormat","othersLabelFormatSpecifiers":"othersLabelFormatSpecifiers","outlines":"outlines","propertyUpdated":"propertyUpdated","radiusFactor":"radiusFactor","ring":"ring","selectedSliceFill":"selectedSliceFill","selectedSliceOpacity":"selectedSliceOpacity","selectedSlices":"selectedSlices","selectedSliceStroke":"selectedSliceStroke","selectedSliceStrokeThickness":"selectedSliceStrokeThickness","showDefaultTooltip":"showDefaultTooltip","startAngle":"startAngle","textStyle":"textStyle","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","valueMemberPath":"valueMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindData":"bindData","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLeaderLineStyle":"ensureLeaderLineStyle","ensureOthersCategoryStyle":"ensureOthersCategoryStyle","ensureSelectedStyle":"ensureSelectedStyle","findByName":"findByName","provideContainer":"provideContainer","sychronizeCollections":"sychronizeCollections","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScaleLegendComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScaleLegendComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","isFinancial":"isFinancial","isItemwise":"isItemwise","legendItemMouseEnter":"legendItemMouseEnter","legendItemMouseLeave":"legendItemMouseLeave","legendItemMouseLeftButtonDown":"legendItemMouseLeftButtonDown","legendItemMouseLeftButtonUp":"legendItemMouseLeftButtonUp","legendItemMouseMove":"legendItemMouseMove","legendTextContentChanged":"legendTextContentChanged","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flushTextContentChangedCheck":"flushTextContentChangedCheck","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","register":"register"}}],"IgcScalerParams":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScalerParams","k":"class","s":"classes","m":{"constructor":"constructor","referenceValue":"referenceValue","findByName":"findByName"}}],"IgcScatterAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualColorScale":"actualColorScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","colorMemberAsLegendLabel":"colorMemberAsLegendLabel","colorMemberAsLegendUnit":"colorMemberAsLegendUnit","colorMemberPath":"colorMemberPath","colorScale":"colorScale","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attachImage":"attachImage","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","updateActualColorScale":"updateActualColorScale","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcScatterContourSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterContourSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFillScale":"actualFillScale","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillScale":"fillScale","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterLineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","unknownValuePlotting":"unknownValuePlotting","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterPolygonSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterPolygonSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterPolylineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterPolylineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeStyle":"shapeStyle","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterSplineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedXMemberPath":"highlightedXMemberPath","highlightedYMemberPath":"highlightedYMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomMarkerCircular":"isCustomMarkerCircular","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stiffness":"stiffness","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineZIndex":"trendLineZIndex","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcScatterTriangulationSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcScatterTriangulationSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationStatusChanged":"triangulationStatusChanged","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","xMemberAsLegendLabel":"xMemberAsLegendLabel","xMemberAsLegendUnit":"xMemberAsLegendUnit","xMemberPath":"xMemberPath","yAxis":"yAxis","yAxisName":"yAxisName","yMemberAsLegendLabel":"yMemberAsLegendLabel","yMemberAsLegendUnit":"yMemberAsLegendUnit","yMemberPath":"yMemberPath","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcSelectedItemChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSelectedItemChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newItem":"newItem","oldItem":"oldItem"}}],"IgcSelectedItemChangingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSelectedItemChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","newItem":"newItem","oldItem":"oldItem"}}],"IgcSelectedItemsChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgcSelectedItemsChangingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSelectedItemsChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgcSeriesCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","i":"i","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcSeriesLayer":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesLayer","k":"class","s":"classes","m":{"constructor":"constructor","propertyOverlays":"propertyOverlays","transitionOutIsInProgress":"transitionOutIsInProgress","zIndex":"zIndex","findByName":"findByName","playTransitionIn":"playTransitionIn","playTransitionOutAndRemove":"playTransitionOutAndRemove"}}],"IgcSeriesLayerCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesLayerCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcSeriesLayerPropertyOverlay":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesLayerPropertyOverlay","k":"class","s":"classes","m":{"constructor":"constructor","currentValuePropertyName":"currentValuePropertyName","internalPropertyName":"internalPropertyName","isAlwaysApplied":"isAlwaysApplied","isSourceOverlay":"isSourceOverlay","propertyName":"propertyName","propertyUpdated":"propertyUpdated","value":"value","valueResolving":"valueResolving","findByName":"findByName"}}],"IgcSeriesLayerPropertyOverlayCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesLayerPropertyOverlayCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcSeriesLayerPropertyOverlayValueResolvingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesLayerPropertyOverlayValueResolvingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","value":"value"}}],"IgcSeriesMatcher":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesMatcher","k":"class","s":"classes","m":{"constructor":"constructor","index":"index","memberPath":"memberPath","memberPathType":"memberPathType","name":"name","title":"title","findByName":"findByName"}}],"IgcSeriesViewerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesViewerComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualContentHitTestMode":"actualContentHitTestMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","actualWindowPositionHorizontal":"actualWindowPositionHorizontal","actualWindowPositionVertical":"actualWindowPositionVertical","actualWindowRect":"actualWindowRect","actualWindowRectChanged":"actualWindowRectChanged","actualWindowRectMinHeight":"actualWindowRectMinHeight","actualWindowRectMinWidth":"actualWindowRectMinWidth","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","autoMarginHeight":"autoMarginHeight","autoMarginWidth":"autoMarginWidth","axisLabelMouseClick":"axisLabelMouseClick","axisLabelMouseDown":"axisLabelMouseDown","axisLabelMouseEnter":"axisLabelMouseEnter","axisLabelMouseLeave":"axisLabelMouseLeave","axisLabelMouseOver":"axisLabelMouseOver","axisLabelMouseUp":"axisLabelMouseUp","axisPanelMouseClick":"axisPanelMouseClick","axisPanelMouseDown":"axisPanelMouseDown","axisPanelMouseEnter":"axisPanelMouseEnter","axisPanelMouseLeave":"axisPanelMouseLeave","axisPanelMouseOver":"axisPanelMouseOver","axisPanelMouseUp":"axisPanelMouseUp","bottomMargin":"bottomMargin","brushes":"brushes","chartTitle":"chartTitle","contentHitTestMode":"contentHitTestMode","contentViewport":"contentViewport","crosshairPoint":"crosshairPoint","crosshairVisibility":"crosshairVisibility","defaultInteraction":"defaultInteraction","dragModifier":"dragModifier","effectiveViewport":"effectiveViewport","fireMouseLeaveOnManipulationStart":"fireMouseLeaveOnManipulationStart","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","fullSeries":"fullSeries","gridAreaRectChanged":"gridAreaRectChanged","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalCrosshairBrush":"horizontalCrosshairBrush","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","imageCaptured":"imageCaptured","interactionOverride":"interactionOverride","interactionPixelScalingRatio":"interactionPixelScalingRatio","isAntiAliasingEnabledDuringInteraction":"isAntiAliasingEnabledDuringInteraction","isDetached":"isDetached","isInCreateAnnotationMode":"isInCreateAnnotationMode","isInDeleteAnnotationMode":"isInDeleteAnnotationMode","isMap":"isMap","isPagePanningAllowed":"isPagePanningAllowed","isSurfaceInteractionDisabled":"isSurfaceInteractionDisabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isWindowSyncedToVisibleRange":"isWindowSyncedToVisibleRange","leftMargin":"leftMargin","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerOutlines":"markerOutlines","outlines":"outlines","panModifier":"panModifier","pixelScalingRatio":"pixelScalingRatio","plotAreaBackground":"plotAreaBackground","plotAreaClicked":"plotAreaClicked","plotAreaMouseEnter":"plotAreaMouseEnter","plotAreaMouseLeave":"plotAreaMouseLeave","plotAreaMouseLeftButtonDown":"plotAreaMouseLeftButtonDown","plotAreaMouseLeftButtonUp":"plotAreaMouseLeftButtonUp","plotAreaMouseOver":"plotAreaMouseOver","preferHigherResolutionTiles":"preferHigherResolutionTiles","previewPathFill":"previewPathFill","previewPathOpacity":"previewPathOpacity","previewPathStroke":"previewPathStroke","previewRect":"previewRect","refreshCompleted":"refreshCompleted","resizeIdle":"resizeIdle","resizeIdleMilliseconds":"resizeIdleMilliseconds","rightButtonDefaultInteraction":"rightButtonDefaultInteraction","rightMargin":"rightMargin","scrollbarsAnimationDuration":"scrollbarsAnimationDuration","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionModifier":"selectionModifier","selectionTransitionDuration":"selectionTransitionDuration","seriesClick":"seriesClick","seriesCursorMouseMove":"seriesCursorMouseMove","seriesMouseEnter":"seriesMouseEnter","seriesMouseLeave":"seriesMouseLeave","seriesMouseLeftButtonDown":"seriesMouseLeftButtonDown","seriesMouseLeftButtonUp":"seriesMouseLeftButtonUp","seriesMouseMove":"seriesMouseMove","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldMatchZOrderToSeriesOrder":"shouldMatchZOrderToSeriesOrder","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","sizeChanged":"sizeChanged","subtitle":"subtitle","subtitleBottomMargin":"subtitleBottomMargin","subtitleHorizontalAlignment":"subtitleHorizontalAlignment","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","titleBottomMargin":"titleBottomMargin","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","topMargin":"topMargin","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useTiledZooming":"useTiledZooming","verticalCrosshairBrush":"verticalCrosshairBrush","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewerManipulationEnding":"viewerManipulationEnding","viewerManipulationStarting":"viewerManipulationStarting","viewportRect":"viewportRect","windowPositionHorizontal":"windowPositionHorizontal","windowPositionVertical":"windowPositionVertical","windowRect":"windowRect","windowRectChanged":"windowRectChanged","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowResponse":"windowResponse","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","zoomCoercionMode":"zoomCoercionMode","zoomTileCacheSize":"zoomTileCacheSize","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attachSeries":"attachSeries","attributeChangedCallback":"attributeChangedCallback","cancelAnnotationFlow":"cancelAnnotationFlow","cancelCreatingAnnotation":"cancelCreatingAnnotation","cancelDeletingAnnotation":"cancelDeletingAnnotation","cancelManipulation":"cancelManipulation","captureImage":"captureImage","clearTileZoomCache":"clearTileZoomCache","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","endTiledZoomingIfRunning":"endTiledZoomingIfRunning","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","finishCreatingAnnotation":"finishCreatingAnnotation","finishDeletingAnnotation":"finishDeletingAnnotation","flush":"flush","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getAnimationIdleVersionNumber":"getAnimationIdleVersionNumber","getCurrentActualWindowRect":"getCurrentActualWindowRect","getDesiredToolbarActions":"getDesiredToolbarActions","hideToolTip":"hideToolTip","isAnimationActive":"isAnimationActive","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyContainerResized":"notifyContainerResized","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","queueForAnimationIdle":"queueForAnimationIdle","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","renderToImage":"renderToImage","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulateMouseLeave":"simulateMouseLeave","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","startTiledZoomingIfNecessary":"startTiledZoomingIfNecessary","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal"}}],"IgcSeriesViewerManipulationEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesViewerManipulationEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dragSelectRectangle":"dragSelectRectangle","isDragSelect":"isDragSelect","isDragSelectCancelled":"isDragSelectCancelled","isDragZoom":"isDragZoom","isZoomPan":"isZoomPan"}}],"IgcSeriesViewerSelectedSeriesItemsChangedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesViewerSelectedSeriesItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgcSeriesViewerSelectedSeriesItemsChangingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSeriesViewerSelectedSeriesItemsChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","currentItems":"currentItems","newItems":"newItems","oldItems":"oldItems"}}],"IgcShapeSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcShapeSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualItemSearchMode":"actualItemSearchMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedShapeMemberPath":"highlightedShapeMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","styleShape":"styleShape","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcSizeScaleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSizeScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","globalMaximum":"globalMaximum","globalMinimum":"globalMinimum","isLogarithmic":"isLogarithmic","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getCurrentGlobalMaximum":"getCurrentGlobalMaximum","getCurrentGlobalMinimum":"getCurrentGlobalMinimum","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSliceClickEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSliceClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","dataContext":"dataContext","endAngle":"endAngle","fill":"fill","index":"index","isExploded":"isExploded","isOthersSlice":"isOthersSlice","isSelected":"isSelected","origin":"origin","originalEvent":"originalEvent","outline":"outline","radius":"radius","startAngle":"startAngle"}}],"IgcSliceEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSliceEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","dataContext":"dataContext","endAngle":"endAngle","fill":"fill","index":"index","isExploded":"isExploded","isOthersSlice":"isOthersSlice","isSelected":"isSelected","origin":"origin","originalEvent":"originalEvent","outline":"outline","position":"position","radius":"radius","startAngle":"startAngle"}}],"IgcSlowStochasticOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSlowStochasticOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSparklineComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSparklineComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualPixelScalingRatio":"actualPixelScalingRatio","brush":"brush","dataSource":"dataSource","displayNormalRangeInFront":"displayNormalRangeInFront","displayType":"displayType","firstMarkerBrush":"firstMarkerBrush","firstMarkerSize":"firstMarkerSize","firstMarkerVisibility":"firstMarkerVisibility","formatLabel":"formatLabel","height":"height","highMarkerBrush":"highMarkerBrush","highMarkerSize":"highMarkerSize","highMarkerVisibility":"highMarkerVisibility","horizontalAxisBrush":"horizontalAxisBrush","horizontalAxisLabel":"horizontalAxisLabel","horizontalAxisVisibility":"horizontalAxisVisibility","horizontalLabelFormat":"horizontalLabelFormat","horizontalLabelFormatSpecifiers":"horizontalLabelFormatSpecifiers","labelMemberPath":"labelMemberPath","lastMarkerBrush":"lastMarkerBrush","lastMarkerSize":"lastMarkerSize","lastMarkerVisibility":"lastMarkerVisibility","lineThickness":"lineThickness","lowMarkerBrush":"lowMarkerBrush","lowMarkerSize":"lowMarkerSize","lowMarkerVisibility":"lowMarkerVisibility","markerBrush":"markerBrush","markerSize":"markerSize","markerVisibility":"markerVisibility","maximum":"maximum","minimum":"minimum","negativeBrush":"negativeBrush","negativeMarkerBrush":"negativeMarkerBrush","negativeMarkerSize":"negativeMarkerSize","negativeMarkerVisibility":"negativeMarkerVisibility","normalRangeFill":"normalRangeFill","normalRangeMaximum":"normalRangeMaximum","normalRangeMinimum":"normalRangeMinimum","normalRangeVisibility":"normalRangeVisibility","pixelScalingRatio":"pixelScalingRatio","tooltipTemplate":"tooltipTemplate","trendLineBrush":"trendLineBrush","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","unknownValuePlotting":"unknownValuePlotting","valueMemberPath":"valueMemberPath","verticalAxisBrush":"verticalAxisBrush","verticalAxisLabel":"verticalAxisLabel","verticalAxisVisibility":"verticalAxisVisibility","verticalLabelFormat":"verticalLabelFormat","verticalLabelFormatSpecifiers":"verticalLabelFormatSpecifiers","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySetItem":"notifySetItem","provideContainer":"provideContainer","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSplineAreaFragmentComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSplineAreaFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSplineAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSplineFragmentBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSplineFragmentBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcSplineFragmentComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSplineFragmentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSplineSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSplineSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcSplineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","splineType":"splineType","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStacked100AreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStacked100AreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStacked100BarSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStacked100BarSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStacked100ColumnSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStacked100ColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStacked100LineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStacked100LineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStacked100SplineAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStacked100SplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStacked100SplineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStacked100SplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedBarSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedBarSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedColumnSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedColumnSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedFragmentSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedFragmentSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualDataLegendGroup":"actualDataLegendGroup","actualHighlightedValuesDataLegendGroup":"actualHighlightedValuesDataLegendGroup","actualHighlightedValuesDisplayMode":"actualHighlightedValuesDisplayMode","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualIsDropShadowEnabled":"actualIsDropShadowEnabled","actualIsSplineShapePartOfRange":"actualIsSplineShapePartOfRange","actualIsTransitionInEnabled":"actualIsTransitionInEnabled","actualLegendItemBadgeMode":"actualLegendItemBadgeMode","actualLegendItemBadgeShape":"actualLegendItemBadgeShape","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLegendItemTemplate":"actualLegendItemTemplate","actualLegendItemVisibility":"actualLegendItemVisibility","actualLineCap":"actualLineCap","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillMode":"actualMarkerFillMode","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerOutlineMode":"actualMarkerOutlineMode","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerThickness":"actualMarkerThickness","actualMarkerType":"actualMarkerType","actualOpacity":"actualOpacity","actualOutline":"actualOutline","actualOutlineMode":"actualOutlineMode","actualRadiusX":"actualRadiusX","actualRadiusY":"actualRadiusY","actualShadowBlur":"actualShadowBlur","actualShadowColor":"actualShadowColor","actualShadowOffsetX":"actualShadowOffsetX","actualShadowOffsetY":"actualShadowOffsetY","actualThickness":"actualThickness","actualTransitionDuration":"actualTransitionDuration","actualTransitionEasingFunction":"actualTransitionEasingFunction","actualTransitionInDuration":"actualTransitionInDuration","actualTransitionInEasingFunction":"actualTransitionInEasingFunction","actualTransitionInMode":"actualTransitionInMode","actualTransitionInSpeedType":"actualTransitionInSpeedType","actualUseSingleShadow":"actualUseSingleShadow","actualValueMemberAsLegendLabel":"actualValueMemberAsLegendLabel","actualValueMemberAsLegendUnit":"actualValueMemberAsLegendUnit","actualVisibility":"actualVisibility","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","brush":"brush","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataSource":"dataSource","highlightedDataSource":"highlightedDataSource","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightingFadeOpacity":"highlightingFadeOpacity","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDropShadowEnabled":"isDropShadowEnabled","isSplineShapePartOfRange":"isSplineShapePartOfRange","isTransitionInEnabled":"isTransitionInEnabled","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","parentOrLocalBrush":"parentOrLocalBrush","propertyUpdated":"propertyUpdated","radiusX":"radiusX","radiusY":"radiusY","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","moveCursorPoint":"moveCursorPoint","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","replayTransitionIn":"replayTransitionIn","scrollIntoView":"scrollIntoView","simulateHover":"simulateHover","toWorldPosition":"toWorldPosition","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedLineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcStackedSeriesCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcStackedSeriesCreatedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedSeriesCreatedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","brush":"brush","dashArray":"dashArray","index":"index","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","markerBrush":"markerBrush","markerOutline":"markerOutline","markerStyle":"markerStyle","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","outline":"outline","thickness":"thickness","title":"title","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction"}}],"IgcStackedSplineAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedSplineAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStackedSplineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStackedSplineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isSplineShapePartOfRange":"isSplineShapePartOfRange","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStandardDeviationIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStandardDeviationIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStepAreaSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStepAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStepLineSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStepLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStochRSIIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStochRSIIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcStraightNumericAxisBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStraightNumericAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","abbreviatedLabelFormat":"abbreviatedLabelFormat","abbreviatedLabelFormatSpecifiers":"abbreviatedLabelFormatSpecifiers","abbreviateLargeNumbers":"abbreviateLargeNumbers","actualInterval":"actualInterval","actualIntervalChange":"actualIntervalChange","actualIsLogarithmic":"actualIsLogarithmic","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMaxPrecision":"actualMaxPrecision","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorInterval":"actualMinorInterval","actualMinorIntervalChange":"actualMinorIntervalChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","actualVisibleMaximumValue":"actualVisibleMaximumValue","actualVisibleMinimumValue":"actualVisibleMinimumValue","annotations":"annotations","autoRangeBufferMode":"autoRangeBufferMode","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisInterval":"companionAxisInterval","companionAxisIsInverted":"companionAxisIsInverted","companionAxisIsLogarithmic":"companionAxisIsLogarithmic","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisLogarithmBase":"companionAxisLogarithmBase","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMaximumValue":"companionAxisMaximumValue","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinimumValue":"companionAxisMinimumValue","companionAxisMinorInterval":"companionAxisMinorInterval","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","favorLabellingScaleEnd":"favorLabellingScaleEnd","formatAbbreviatedLabel":"formatAbbreviatedLabel","formatLabel":"formatLabel","hasUserMaximum":"hasUserMaximum","hasUserMinimum":"hasUserMinimum","interval":"interval","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDateTime":"isDateTime","isDisabled":"isDisabled","isFormattingAbbreviatedLargeNumber":"isFormattingAbbreviatedLargeNumber","isHorizontal":"isHorizontal","isInverted":"isInverted","isLogarithmic":"isLogarithmic","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","logarithmBase":"logarithmBase","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumValue":"maximumValue","maxPrecision":"maxPrecision","minimumValue":"minimumValue","minorInterval":"minorInterval","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","rangeChanged":"rangeChanged","referenceValue":"referenceValue","renderRequested":"renderRequested","scaleMode":"scaleMode","shouldApplyMaxPrecisionWhenZoomed":"shouldApplyMaxPrecisionWhenZoomed","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getFullRange":"getFullRange","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgcStrategyBasedIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStrategyBasedIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcStyleShapeEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcStyleShapeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","item":"item","shapeFill":"shapeFill","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","ensureShapeStyle":"ensureShapeStyle"}}],"IgcTimeAxisBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal"}}],"IgcTimeAxisBreakCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTimeAxisBreakComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisBreakComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","end":"end","i":"i","interval":"interval","start":"start","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTimeAxisIntervalCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisIntervalCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTimeAxisIntervalComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisIntervalComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","i":"i","interval":"interval","intervalType":"intervalType","range":"range","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTimeAxisLabelFormatCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisLabelFormatCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTimeAxisLabelFormatComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeAxisLabelFormatComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","format":"format","i":"i","labelFormatOverride":"labelFormatOverride","range":"range","repeatedDayFormat":"repeatedDayFormat","repeatedMonthFormat":"repeatedMonthFormat","repeatedYearFormat":"repeatedYearFormat","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTimeXAxisComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTimeXAxisComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualMajorStroke":"actualMajorStroke","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualMinorStroke":"actualMinorStroke","actualStroke":"actualStroke","annotations":"annotations","axisInternal":"axisInternal","breaks":"breaks","coercionMethods":"coercionMethods","companionAxisCrossingAxis":"companionAxisCrossingAxis","companionAxisCrossingAxisName":"companionAxisCrossingAxisName","companionAxisCrossingValue":"companionAxisCrossingValue","companionAxisEnabled":"companionAxisEnabled","companionAxisIsInverted":"companionAxisIsInverted","companionAxisLabelAngle":"companionAxisLabelAngle","companionAxisLabelColor":"companionAxisLabelColor","companionAxisLabelExtent":"companionAxisLabelExtent","companionAxisLabelHorizontalAlignment":"companionAxisLabelHorizontalAlignment","companionAxisLabelLocation":"companionAxisLabelLocation","companionAxisLabelOpposite":"companionAxisLabelOpposite","companionAxisLabelVerticalAlignment":"companionAxisLabelVerticalAlignment","companionAxisLabelVisible":"companionAxisLabelVisible","companionAxisMajorStroke":"companionAxisMajorStroke","companionAxisMajorStrokeThickness":"companionAxisMajorStrokeThickness","companionAxisMinExtent":"companionAxisMinExtent","companionAxisMinorStroke":"companionAxisMinorStroke","companionAxisMinorStrokeThickness":"companionAxisMinorStrokeThickness","companionAxisShouldAutoTruncateAnnotations":"companionAxisShouldAutoTruncateAnnotations","companionAxisShouldAvoidAnnotationCollisions":"companionAxisShouldAvoidAnnotationCollisions","companionAxisShouldKeepAnnotationsInView":"companionAxisShouldKeepAnnotationsInView","companionAxisStrip":"companionAxisStrip","companionAxisStroke":"companionAxisStroke","companionAxisStrokeThickness":"companionAxisStrokeThickness","companionAxisSyncronizedWithPrimaryAxis":"companionAxisSyncronizedWithPrimaryAxis","companionAxisTickLength":"companionAxisTickLength","companionAxisTickStroke":"companionAxisTickStroke","companionAxisTickStrokeThickness":"companionAxisTickStrokeThickness","companionAxisTitle":"companionAxisTitle","crossingAxis":"crossingAxis","crossingAxisName":"crossingAxisName","crossingValue":"crossingValue","dataSource":"dataSource","dateTimeMemberPath":"dateTimeMemberPath","enhancedIntervalMinimumCharacters":"enhancedIntervalMinimumCharacters","enhancedIntervalPreferMoreCategoryLabels":"enhancedIntervalPreferMoreCategoryLabels","expectFunctions":"expectFunctions","formatLabel":"formatLabel","gap":"gap","intervals":"intervals","isAngular":"isAngular","isCategory":"isCategory","isCategoryDateTime":"isCategoryDateTime","isCompanionAxis":"isCompanionAxis","isContinuous":"isContinuous","isDataPreSorted":"isDataPreSorted","isDateTime":"isDateTime","isDisabled":"isDisabled","isHorizontal":"isHorizontal","isInverted":"isInverted","isNumeric":"isNumeric","isOrdinal":"isOrdinal","isPiecewise":"isPiecewise","isPrimaryAxis":"isPrimaryAxis","isRadial":"isRadial","isSorting":"isSorting","isVertical":"isVertical","itemsCount":"itemsCount","label":"label","labelAngle":"labelAngle","labelBottomMargin":"labelBottomMargin","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormats":"labelFormats","labelFormatSpecifiers":"labelFormatSpecifiers","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labellingMode":"labellingMode","labelLocation":"labelLocation","labelMaximumExtent":"labelMaximumExtent","labelMaximumExtentPercentage":"labelMaximumExtentPercentage","labelRightMargin":"labelRightMargin","labelShowFirstLabel":"labelShowFirstLabel","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVisibility":"labelVisibility","majorStroke":"majorStroke","majorStrokeDashArray":"majorStrokeDashArray","majorStrokeThickness":"majorStrokeThickness","maximumGap":"maximumGap","maximumValue":"maximumValue","minimumGapSize":"minimumGapSize","minimumValue":"minimumValue","minorStroke":"minorStroke","minorStrokeDashArray":"minorStrokeDashArray","minorStrokeThickness":"minorStrokeThickness","name":"name","overlap":"overlap","rangeChanged":"rangeChanged","renderRequested":"renderRequested","shouldAutoTruncateAnnotations":"shouldAutoTruncateAnnotations","shouldAvoidAnnotationCollisions":"shouldAvoidAnnotationCollisions","shouldKeepAnnotationsInView":"shouldKeepAnnotationsInView","strip":"strip","stroke":"stroke","strokeDashArray":"strokeDashArray","strokeThickness":"strokeThickness","tickLength":"tickLength","tickStroke":"tickStroke","tickStrokeDashArray":"tickStrokeDashArray","tickStrokeThickness":"tickStrokeThickness","title":"title","titleAngle":"titleAngle","titleBottomMargin":"titleBottomMargin","titleExtent":"titleExtent","titleHorizontalAlignment":"titleHorizontalAlignment","titleLeftMargin":"titleLeftMargin","titleLocation":"titleLocation","titleMaximumExtent":"titleMaximumExtent","titleMaximumExtentPercentage":"titleMaximumExtentPercentage","titlePosition":"titlePosition","titleRightMargin":"titleRightMargin","titleShowFirstLabel":"titleShowFirstLabel","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","titleVerticalAlignment":"titleVerticalAlignment","titleVisibility":"titleVisibility","useClusteringMode":"useClusteringMode","useEnhancedIntervalManagement":"useEnhancedIntervalManagement","usePerLabelHeightMeasurement":"usePerLabelHeightMeasurement","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureLabelSettings":"ensureLabelSettings","ensureTitleSettings":"ensureTitleSettings","findByName":"findByName","getCategoryBoundingBox":"getCategoryBoundingBox","getCategoryBoundingBoxHelper":"getCategoryBoundingBoxHelper","getFullRange":"getFullRange","getIndexClosestToUnscaledValue":"getIndexClosestToUnscaledValue","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getValueLabel":"getValueLabel","notifyClearItems":"notifyClearItems","notifyDataChanged":"notifyDataChanged","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","provideData":"provideData","renderAxis":"renderAxis","resetCachedEnhancedInterval":"resetCachedEnhancedInterval","scaleValue":"scaleValue","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTransitionOutCompletedEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTransitionOutCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTreemapComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTreemapComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualStyleMappings":"actualStyleMappings","contentStyleMappings":"contentStyleMappings","htmlTagName":"htmlTagName","actualHighlightingMode":"actualHighlightingMode","actualInteractionPixelScalingRatio":"actualInteractionPixelScalingRatio","actualPixelScalingRatio":"actualPixelScalingRatio","animating":"animating","breadcrumbSequence":"breadcrumbSequence","customValueMemberPath":"customValueMemberPath","darkTextColor":"darkTextColor","dataSource":"dataSource","fillBrushes":"fillBrushes","fillScaleLogarithmBase":"fillScaleLogarithmBase","fillScaleMaximumValue":"fillScaleMaximumValue","fillScaleMinimumValue":"fillScaleMinimumValue","fillScaleMode":"fillScaleMode","focusItem":"focusItem","headerBackground":"headerBackground","headerDarkTextColor":"headerDarkTextColor","headerDisplayMode":"headerDisplayMode","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverDarkTextColor":"headerHoverDarkTextColor","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","headerTextStyle":"headerTextStyle","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValueOpacity":"highlightedValueOpacity","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","idMemberPath":"idMemberPath","interactionPixelScalingRatio":"interactionPixelScalingRatio","isFillScaleLogarithmic":"isFillScaleLogarithmic","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelHorizontalFitMode":"labelHorizontalFitMode","labelLeftMargin":"labelLeftMargin","labelMemberPath":"labelMemberPath","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","labelVerticalFitMode":"labelVerticalFitMode","layoutOrientation":"layoutOrientation","layoutType":"layoutType","minimumDisplaySize":"minimumDisplaySize","nodeOpacity":"nodeOpacity","nodePointerEnter":"nodePointerEnter","nodePointerLeave":"nodePointerLeave","nodePointerOver":"nodePointerOver","nodePointerPressed":"nodePointerPressed","nodePointerReleased":"nodePointerReleased","nodeRenderStyling":"nodeRenderStyling","nodeStyling":"nodeStyling","outline":"outline","overlayHeaderBackground":"overlayHeaderBackground","overlayHeaderHoverBackground":"overlayHeaderHoverBackground","overlayHeaderLabelBottomMargin":"overlayHeaderLabelBottomMargin","overlayHeaderLabelLeftMargin":"overlayHeaderLabelLeftMargin","overlayHeaderLabelRightMargin":"overlayHeaderLabelRightMargin","overlayHeaderLabelTopMargin":"overlayHeaderLabelTopMargin","parentIdMemberPath":"parentIdMemberPath","parentNodeBottomMargin":"parentNodeBottomMargin","parentNodeBottomPadding":"parentNodeBottomPadding","parentNodeLeftMargin":"parentNodeLeftMargin","parentNodeLeftPadding":"parentNodeLeftPadding","parentNodeRightMargin":"parentNodeRightMargin","parentNodeRightPadding":"parentNodeRightPadding","parentNodeTopMargin":"parentNodeTopMargin","parentNodeTopPadding":"parentNodeTopPadding","pixelScalingRatio":"pixelScalingRatio","rootTitle":"rootTitle","strokeThickness":"strokeThickness","styleMappings":"styleMappings","textColor":"textColor","textStyle":"textStyle","transitionDuration":"transitionDuration","valueMemberPath":"valueMemberPath","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","markDirty":"markDirty","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","notifySizeChanged":"notifySizeChanged","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","simulateHover":"simulateHover","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTreemapNodePointerEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTreemapNodePointerEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","customValue":"customValue","isHandled":"isHandled","isOverHeader":"isOverHeader","isRightButton":"isRightButton","item":"item","label":"label","parentItem":"parentItem","parentLabel":"parentLabel","parentSum":"parentSum","parentValue":"parentValue","position":"position","sum":"sum","value":"value"}}],"IgcTreemapNodeStyleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTreemapNodeStyleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","textColor":"textColor","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTreemapNodeStyleMappingCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTreemapNodeStyleMappingCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTreemapNodeStyleMappingComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTreemapNodeStyleMappingComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","fadeOpacity":"fadeOpacity","fill":"fill","headerBackground":"headerBackground","headerHeight":"headerHeight","headerHoverBackground":"headerHoverBackground","headerHoverTextColor":"headerHoverTextColor","headerLabelBottomMargin":"headerLabelBottomMargin","headerLabelLeftMargin":"headerLabelLeftMargin","headerLabelRightMargin":"headerLabelRightMargin","headerLabelTopMargin":"headerLabelTopMargin","headerTextColor":"headerTextColor","highlightingHandled":"highlightingHandled","label":"label","labelBottomMargin":"labelBottomMargin","labelHorizontalAlignment":"labelHorizontalAlignment","labelLeftMargin":"labelLeftMargin","labelRightMargin":"labelRightMargin","labelTopMargin":"labelTopMargin","labelVerticalAlignment":"labelVerticalAlignment","mappingMode":"mappingMode","maximumValue":"maximumValue","minimumValue":"minimumValue","name":"name","opacity":"opacity","outline":"outline","strokeThickness":"strokeThickness","targetType":"targetType","textColor":"textColor","value":"value","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTreemapNodeStylingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTreemapNodeStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","customValue":"customValue","highlightingHandled":"highlightingHandled","highlightingInfo":"highlightingInfo","isHighlightInProgress":"isHighlightInProgress","isParent":"isParent","item":"item","label":"label","parentItem":"parentItem","parentLabel":"parentLabel","parentSum":"parentSum","parentValue":"parentValue","style":"style","sum":"sum","totalHighlightProgress":"totalHighlightProgress","value":"value"}}],"IgcTrendLineLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTrendLineLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualTargetSeries":"actualTargetSeries","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLinePeriod":"trendLinePeriod","trendLineType":"trendLineType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getManagerIdentifier":"getManagerIdentifier","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onApplyTemplate":"onApplyTemplate","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTrendLineTypeCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTrendLineTypeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTRIXIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTRIXIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcTypicalPriceIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcTypicalPriceIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcUltimateOscillatorIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUltimateOscillatorIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcUserAnnotationCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAnnotationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcUserAnnotationInformation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAnnotationInformation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","annotationId":"annotationId","badgeColor":"badgeColor","badgeImageUri":"badgeImageUri","dialogSuggestedXLocation":"dialogSuggestedXLocation","dialogSuggestedYLocation":"dialogSuggestedYLocation","label":"label","mainColor":"mainColor","findByName":"findByName"}}],"IgcUserAnnotationInformationEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAnnotationInformationEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotationInfo":"annotationInfo"}}],"IgcUserAnnotationLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAnnotationLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","annotations":"annotations","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingAxisAnnotation":"stylingAxisAnnotation","stylingPointAnnotation":"stylingPointAnnotation","stylingSliceAnnotation":"stylingSliceAnnotation","stylingStripAnnotation":"stylingStripAnnotation","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","userAnnotationInformationRequested":"userAnnotationInformationRequested","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","loadAnnotationsFromJson":"loadAnnotationsFromJson","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","saveAnnotationsToJson":"saveAnnotationsToJson","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcUserAnnotationToolTipContentUpdatingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAnnotationToolTipContentUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotationInfo":"annotationInfo","content":"content"}}],"IgcUserAnnotationToolTipLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAnnotationToolTipLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","contentUpdating":"contentUpdating","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcUserAxisAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAxisAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcUserAxisAnnotationStylingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserAxisAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgcUserBaseAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserBaseAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcUserPointAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserPointAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","targetSeries":"targetSeries","targetSeriesMatcher":"targetSeriesMatcher","targetSeriesName":"targetSeriesName","xValue":"xValue","yValue":"yValue","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcUserPointAnnotationStylingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserPointAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgcUserShapeAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserShapeAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcUserSliceAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserSliceAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcUserSliceAnnotationStylingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserSliceAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgcUserStripAnnotation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserStripAnnotation","k":"class","s":"classes","m":{"constructor":"constructor","annotationData":"annotationData","badgeBackground":"badgeBackground","badgeCornerRadius":"badgeCornerRadius","badgeImagePath":"badgeImagePath","badgeMargin":"badgeMargin","badgeOutline":"badgeOutline","badgeSize":"badgeSize","badgeThickness":"badgeThickness","badgeVisible":"badgeVisible","endLabel":"endLabel","endLabelBackground":"endLabelBackground","endLabelBorderColor":"endLabelBorderColor","endLabelColor":"endLabelColor","endValue":"endValue","endValueDisplayMode":"endValueDisplayMode","identifier":"identifier","isPillShaped":"isPillShaped","isVisible":"isVisible","label":"label","labelBackground":"labelBackground","labelBorderColor":"labelBorderColor","labelBorderRadius":"labelBorderRadius","labelBorderThickness":"labelBorderThickness","labelColor":"labelColor","labelPadding":"labelPadding","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","shapeBackground":"shapeBackground","shapeOutline":"shapeOutline","shapeThickness":"shapeThickness","startLabel":"startLabel","startLabelBackground":"startLabelBackground","startLabelBorderColor":"startLabelBorderColor","startLabelColor":"startLabelColor","startValue":"startValue","startValueDisplayMode":"startValueDisplayMode","targetAxis":"targetAxis","targetAxisMatcher":"targetAxisMatcher","targetAxisName":"targetAxisName","value":"value","valueDisplayMode":"valueDisplayMode","bindAxes":"bindAxes","bindSeries":"bindSeries","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcUserStripAnnotationStylingEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcUserStripAnnotationStylingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","annotation":"annotation"}}],"IgcValueBrushScaleComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcValueBrushScaleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brushes":"brushes","isBrushScale":"isBrushScale","isLogarithmic":"isLogarithmic","isReady":"isReady","logarithmBase":"logarithmBase","maximumValue":"maximumValue","minimumValue":"minimumValue","propertyUpdated":"propertyUpdated","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getBrush":"getBrush","notifySeries":"notifySeries","registerSeries":"registerSeries","unregisterSeries":"unregisterSeries","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcValueLayerComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcValueLayerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAppearanceMode":"actualAppearanceMode","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualDashArray":"actualDashArray","actualDashCap":"actualDashCap","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualHorizontalAppearanceMode":"actualHorizontalAppearanceMode","actualHorizontalDashArray":"actualHorizontalDashArray","actualHorizontalShiftAmount":"actualHorizontalShiftAmount","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualShiftAmount":"actualShiftAmount","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualValueLayerBrush":"actualValueLayerBrush","actualVerticalAppearanceMode":"actualVerticalAppearanceMode","actualVerticalDashArray":"actualVerticalDashArray","actualVerticalShiftAmount":"actualVerticalShiftAmount","actualVolumeLabel":"actualVolumeLabel","appearanceMode":"appearanceMode","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","coercionMethods":"coercionMethods","cursorPosition":"cursorPosition","cursorPositionUpdatesOnMove":"cursorPositionUpdatesOnMove","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","horizontalAppearanceMode":"horizontalAppearanceMode","horizontalDashArray":"horizontalDashArray","horizontalLineStroke":"horizontalLineStroke","horizontalShiftAmount":"horizontalShiftAmount","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultCrosshairDisabled":"isDefaultCrosshairDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shiftAmount":"shiftAmount","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldRenderAsOverlay":"shouldRenderAsOverlay","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","skipUnknownValues":"skipUnknownValues","stylingOverlayText":"stylingOverlayText","targetAxis":"targetAxis","targetAxisName":"targetAxisName","targetSeries":"targetSeries","targetSeriesName":"targetSeriesName","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useIndex":"useIndex","useInterpolation":"useInterpolation","useItemWiseColors":"useItemWiseColors","useLegend":"useLegend","useSingleShadow":"useSingleShadow","valueMode":"valueMode","verticalAppearanceMode":"verticalAppearanceMode","verticalDashArray":"verticalDashArray","verticalLineStroke":"verticalLineStroke","verticalShiftAmount":"verticalShiftAmount","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxisAnnotationBackground":"xAxisAnnotationBackground","xAxisAnnotationBackgroundCornerRadius":"xAxisAnnotationBackgroundCornerRadius","xAxisAnnotationFormatLabel":"xAxisAnnotationFormatLabel","xAxisAnnotationInterpolatedValuePrecision":"xAxisAnnotationInterpolatedValuePrecision","xAxisAnnotationOutline":"xAxisAnnotationOutline","xAxisAnnotationPaddingBottom":"xAxisAnnotationPaddingBottom","xAxisAnnotationPaddingLeft":"xAxisAnnotationPaddingLeft","xAxisAnnotationPaddingRight":"xAxisAnnotationPaddingRight","xAxisAnnotationPaddingTop":"xAxisAnnotationPaddingTop","xAxisAnnotationStrokeThickness":"xAxisAnnotationStrokeThickness","xAxisAnnotationTextColor":"xAxisAnnotationTextColor","yAxisAnnotationBackground":"yAxisAnnotationBackground","yAxisAnnotationBackgroundCornerRadius":"yAxisAnnotationBackgroundCornerRadius","yAxisAnnotationFormatLabel":"yAxisAnnotationFormatLabel","yAxisAnnotationInterpolatedValuePrecision":"yAxisAnnotationInterpolatedValuePrecision","yAxisAnnotationOutline":"yAxisAnnotationOutline","yAxisAnnotationPaddingBottom":"yAxisAnnotationPaddingBottom","yAxisAnnotationPaddingLeft":"yAxisAnnotationPaddingLeft","yAxisAnnotationPaddingRight":"yAxisAnnotationPaddingRight","yAxisAnnotationPaddingTop":"yAxisAnnotationPaddingTop","yAxisAnnotationStrokeThickness":"yAxisAnnotationStrokeThickness","yAxisAnnotationTextColor":"yAxisAnnotationTextColor","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcValueModeCollection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcValueModeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcValueOverlayComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcValueOverlayComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","axis":"axis","axisAnnotationBackground":"axisAnnotationBackground","axisAnnotationBackgroundCornerRadius":"axisAnnotationBackgroundCornerRadius","axisAnnotationFormatLabel":"axisAnnotationFormatLabel","axisAnnotationInterpolatedValuePrecision":"axisAnnotationInterpolatedValuePrecision","axisAnnotationOutline":"axisAnnotationOutline","axisAnnotationPaddingBottom":"axisAnnotationPaddingBottom","axisAnnotationPaddingLeft":"axisAnnotationPaddingLeft","axisAnnotationPaddingRight":"axisAnnotationPaddingRight","axisAnnotationPaddingTop":"axisAnnotationPaddingTop","axisAnnotationStrokeThickness":"axisAnnotationStrokeThickness","axisAnnotationTextColor":"axisAnnotationTextColor","axisName":"axisName","brush":"brush","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","dateValue":"dateValue","discreteLegendItemTemplate":"discreteLegendItemTemplate","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isAxisAnnotationEnabled":"isAxisAnnotationEnabled","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","labelResolved":"labelResolved","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","overlayText":"overlayText","overlayTextAngle":"overlayTextAngle","overlayTextBackground":"overlayTextBackground","overlayTextBackgroundMatchLayer":"overlayTextBackgroundMatchLayer","overlayTextBackgroundMode":"overlayTextBackgroundMode","overlayTextBackgroundShift":"overlayTextBackgroundShift","overlayTextBorderColor":"overlayTextBorderColor","overlayTextBorderMatchLayer":"overlayTextBorderMatchLayer","overlayTextBorderMode":"overlayTextBorderMode","overlayTextBorderRadius":"overlayTextBorderRadius","overlayTextBorderShift":"overlayTextBorderShift","overlayTextBorderThickness":"overlayTextBorderThickness","overlayTextColor":"overlayTextColor","overlayTextColorMatchLayer":"overlayTextColorMatchLayer","overlayTextColorMode":"overlayTextColorMode","overlayTextColorShift":"overlayTextColorShift","overlayTextHorizontalMargin":"overlayTextHorizontalMargin","overlayTextHorizontalPadding":"overlayTextHorizontalPadding","overlayTextLocation":"overlayTextLocation","overlayTextStyle":"overlayTextStyle","overlayTextVerticalMargin":"overlayTextVerticalMargin","overlayTextVerticalPadding":"overlayTextVerticalPadding","overlayTextVisible":"overlayTextVisible","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","stylingOverlayText":"stylingOverlayText","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","value":"value","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getLabel":"getLabel","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcVerticalAnchoredCategorySeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcVerticalAnchoredCategorySeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcVerticalStackedSeriesBaseComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcVerticalStackedSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","autoGenerateSeries":"autoGenerateSeries","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPercentBased":"isPercentBased","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","reverseLegendOrder":"reverseLegendOrder","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","series":"series","seriesCreated":"seriesCreated","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal"}}],"IgcWaterfallSeriesComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcWaterfallSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerBrush":"actualMarkerBrush","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","actualMarkerType":"actualMarkerType","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryMarkerStyle":"assigningCategoryMarkerStyle","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","categoryCollisionMode":"categoryCollisionMode","coercionMethods":"coercionMethods","consolidatedItemHitTestBehavior":"consolidatedItemHitTestBehavior","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","discreteLegendItemTemplate":"discreteLegendItemTemplate","effectiveIsMarkerCircular":"effectiveIsMarkerCircular","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValueMemberPath":"highlightedValueMemberPath","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightingFadeOpacity":"highlightingFadeOpacity","hitTestMode":"hitTestMode","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryMarkerStyleAllowed":"isCustomCategoryMarkerStyleAllowed","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isCustomMarkerCircular":"isCustomMarkerCircular","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","negativeOutline":"negativeOutline","opacity":"opacity","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","radiusX":"radiusX","radiusY":"radiusY","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","useHighMarkerFidelity":"useHighMarkerFidelity","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","valueMemberAsLegendLabel":"valueMemberAsLegendLabel","valueMemberAsLegendUnit":"valueMemberAsLegendUnit","valueMemberPath":"valueMemberPath","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcWeightedCloseIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcWeightedCloseIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveIsItemwise":"resolveIsItemwise","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcWilliamsPercentRIndicatorComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcWilliamsPercentRIndicatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAreaFillOpacity":"actualAreaFillOpacity","actualBrush":"actualBrush","actualCloseLabel":"actualCloseLabel","actualFocusBrush":"actualFocusBrush","actualFocusMode":"actualFocusMode","actualHighLabel":"actualHighLabel","actualHighlightedValuesFadeOpacity":"actualHighlightedValuesFadeOpacity","actualHighlightingFadeOpacity":"actualHighlightingFadeOpacity","actualHighlightingMode":"actualHighlightingMode","actualHitTestMode":"actualHitTestMode","actualLayers":"actualLayers","actualLegendItemBadgeBrush":"actualLegendItemBadgeBrush","actualLegendItemBadgeOutline":"actualLegendItemBadgeOutline","actualLegendItemBadgeTemplate":"actualLegendItemBadgeTemplate","actualLowLabel":"actualLowLabel","actualMarkerFillOpacity":"actualMarkerFillOpacity","actualOpenLabel":"actualOpenLabel","actualOutline":"actualOutline","actualRadiusLabel":"actualRadiusLabel","actualResolution":"actualResolution","actualSelectionBrush":"actualSelectionBrush","actualSelectionMode":"actualSelectionMode","actualThickness":"actualThickness","actualTrendLineBrush":"actualTrendLineBrush","actualValueLabel":"actualValueLabel","actualVolumeLabel":"actualVolumeLabel","areaFillOpacity":"areaFillOpacity","assigningCategoryStyle":"assigningCategoryStyle","attachTooltipToRoot":"attachTooltipToRoot","autoCalloutLabelFormat":"autoCalloutLabelFormat","autoCalloutLabelFormatSpecifiers":"autoCalloutLabelFormatSpecifiers","autoCalloutValueLabelFormat":"autoCalloutValueLabelFormat","autoCalloutValueLabelFormatSpecifiers":"autoCalloutValueLabelFormatSpecifiers","brush":"brush","closeMemberPath":"closeMemberPath","coercionMethods":"coercionMethods","dashArray":"dashArray","dataLegendGroup":"dataLegendGroup","dataLegendKey":"dataLegendKey","dataSource":"dataSource","defaultDisplayType":"defaultDisplayType","discreteLegendItemTemplate":"discreteLegendItemTemplate","displayType":"displayType","expectFunctions":"expectFunctions","finalValue":"finalValue","focusBrush":"focusBrush","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","hasValueAxis":"hasValueAxis","hasVisibleMarkers":"hasVisibleMarkers","highlightedCloseMemberPath":"highlightedCloseMemberPath","highlightedDataSource":"highlightedDataSource","highlightedHighMemberPath":"highlightedHighMemberPath","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedLowMemberPath":"highlightedLowMemberPath","highlightedOpenMemberPath":"highlightedOpenMemberPath","highlightedTitleSuffix":"highlightedTitleSuffix","highlightedValuesDataLegendGroup":"highlightedValuesDataLegendGroup","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightedValuesExtraPropertyOverlays":"highlightedValuesExtraPropertyOverlays","highlightedValuesFadeOpacity":"highlightedValuesFadeOpacity","highlightedVolumeMemberPath":"highlightedVolumeMemberPath","highlightingFadeOpacity":"highlightingFadeOpacity","highMemberPath":"highMemberPath","hitTestMode":"hitTestMode","ignoreFirst":"ignoreFirst","index":"index","isActualLegendFinancial":"isActualLegendFinancial","isAnnotationCalloutLayer":"isAnnotationCalloutLayer","isAnnotationCrosshairLayer":"isAnnotationCrosshairLayer","isAnnotationDataLayer":"isAnnotationDataLayer","isAnnotationFinalValue":"isAnnotationFinalValue","isAnnotationHoverLayer":"isAnnotationHoverLayer","isAnnotationLayer":"isAnnotationLayer","isAnnotationValueLayer":"isAnnotationValueLayer","isArea":"isArea","isAreaOrLine":"isAreaOrLine","isBar":"isBar","isCategory":"isCategory","isColoredItemwise":"isColoredItemwise","isColumn":"isColumn","isComponentHighlightingModeIgnored":"isComponentHighlightingModeIgnored","isCustomCategoryStyleAllowed":"isCustomCategoryStyleAllowed","isDefaultCrosshairBehaviorDisabled":"isDefaultCrosshairBehaviorDisabled","isDefaultTooltipBehaviorDisabled":"isDefaultTooltipBehaviorDisabled","isDefaultToolTipSelected":"isDefaultToolTipSelected","isDropShadowEnabled":"isDropShadowEnabled","isFinancial":"isFinancial","isFinancialIndicator":"isFinancialIndicator","isFinancialOverlay":"isFinancialOverlay","isFinancialSeries":"isFinancialSeries","isFinancialWaterfall":"isFinancialWaterfall","isFragment":"isFragment","isGeographic":"isGeographic","isHighlightingEnabled":"isHighlightingEnabled","isHighlightOverlay":"isHighlightOverlay","isIndexed":"isIndexed","isLayer":"isLayer","isLineContour":"isLineContour","isLineOnly":"isLineOnly","isMarkerlessDisplayPreferred":"isMarkerlessDisplayPreferred","isNegativeColorSupported":"isNegativeColorSupported","isPie":"isPie","isPixel":"isPixel","isPolar":"isPolar","isPolygon":"isPolygon","isPolyline":"isPolyline","isRadial":"isRadial","isRange":"isRange","isScatter":"isScatter","isShape":"isShape","isShapeControl":"isShapeControl","isSpline":"isSpline","isStacked":"isStacked","isStep":"isStep","isSummarizationSupported":"isSummarizationSupported","isTile":"isTile","isToolTipLayer":"isToolTipLayer","isTransitionInEnabled":"isTransitionInEnabled","isUsableInLegend":"isUsableInLegend","isUserAnnotationLayer":"isUserAnnotationLayer","isUserAnnotationToolTipLayer":"isUserAnnotationToolTipLayer","isValueAxisInverted":"isValueAxisInverted","isValueOverlay":"isValueOverlay","isVertical":"isVertical","isWaterfall":"isWaterfall","layers":"layers","legend":"legend","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemBadgeTemplate":"legendItemBadgeTemplate","legendItemTemplate":"legendItemTemplate","legendItemVisibility":"legendItemVisibility","lineCap":"lineCap","lineJoin":"lineJoin","lowMemberPath":"lowMemberPath","markerFillOpacity":"markerFillOpacity","mouseOverEnabled":"mouseOverEnabled","name":"name","negativeBrush":"negativeBrush","opacity":"opacity","openMemberPath":"openMemberPath","outline":"outline","outlineMode":"outlineMode","percentChange":"percentChange","period":"period","renderRequested":"renderRequested","resolution":"resolution","safeActualBrush":"safeActualBrush","selectionBrush":"selectionBrush","selectionThickness":"selectionThickness","seriesInternal":"seriesInternal","shadowBlur":"shadowBlur","shadowColor":"shadowColor","shadowOffsetX":"shadowOffsetX","shadowOffsetY":"shadowOffsetY","shouldAnimateOnDataSourceSwap":"shouldAnimateOnDataSourceSwap","shouldHideAutoCallouts":"shouldHideAutoCallouts","shouldRemoveHighlightedDataOnLayerHidden":"shouldRemoveHighlightedDataOnLayerHidden","shouldShiftOpacityForSafeActualBrush":"shouldShiftOpacityForSafeActualBrush","showDefaultTooltip":"showDefaultTooltip","thickness":"thickness","title":"title","tooltipContainerTemplate":"tooltipContainerTemplate","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","transitionInDuration":"transitionInDuration","transitionInEasingFunction":"transitionInEasingFunction","transitionInMode":"transitionInMode","transitionInSpeedType":"transitionInSpeedType","transitionOutCompleted":"transitionOutCompleted","transitionOutDuration":"transitionOutDuration","transitionOutEasingFunction":"transitionOutEasingFunction","transitionOutSpeedType":"transitionOutSpeedType","trendLineBrush":"trendLineBrush","trendLineDashArray":"trendLineDashArray","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","typical":"typical","typicalBasedOn":"typicalBasedOn","useItemWiseColors":"useItemWiseColors","useSingleShadow":"useSingleShadow","visibility":"visibility","visibleRangeMarginBottom":"visibleRangeMarginBottom","visibleRangeMarginLeft":"visibleRangeMarginLeft","visibleRangeMarginRight":"visibleRangeMarginRight","visibleRangeMarginTop":"visibleRangeMarginTop","visibleRangeMode":"visibleRangeMode","volumeMemberPath":"volumeMemberPath","xAxis":"xAxis","xAxisName":"xAxisName","yAxis":"yAxis","yAxisName":"yAxisName","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","bindAxes":"bindAxes","bindSeries":"bindSeries","canUseAsXAxis":"canUseAsXAxis","canUseAsYAxis":"canUseAsYAxis","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","fromWorldPosition":"fromWorldPosition","getCategoryWidth":"getCategoryWidth","getEffectiveViewport":"getEffectiveViewport","getExactItemIndex":"getExactItemIndex","getItem":"getItem","getItemIndex":"getItemIndex","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMainContentViewport":"getMainContentViewport","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getOffsetValue":"getOffsetValue","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesCloseValue":"getSeriesCloseValue","getSeriesCloseValuePosition":"getSeriesCloseValuePosition","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesOpenValue":"getSeriesOpenValue","getSeriesOpenValuePosition":"getSeriesOpenValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","getSeriesValueType":"getSeriesValueType","getSeriesValueTypePosition":"getSeriesValueTypePosition","getSeriesValueTypePositionFromValue":"getSeriesValueTypePositionFromValue","getSeriesVolumeValue":"getSeriesVolumeValue","getSeriesVolumeValuePosition":"getSeriesVolumeValuePosition","getUnscaledPosition":"getUnscaledPosition","hideToolTips":"hideToolTips","hideToolTipsImmediate":"hideToolTipsImmediate","moveCursorPoint":"moveCursorPoint","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","playTransitionIn":"playTransitionIn","playTransitionOut":"playTransitionOut","playTransitionOutAndRemove":"playTransitionOutAndRemove","provideData":"provideData","provideHighlightedData":"provideHighlightedData","removeAllAlternateViews":"removeAllAlternateViews","removeAlternateView":"removeAlternateView","removeAxes":"removeAxes","renderSeries":"renderSeries","replayTransitionIn":"replayTransitionIn","resolveTooltipBrush":"resolveTooltipBrush","scrollIntoView":"scrollIntoView","setNegativeColors":"setNegativeColors","simulateHover":"simulateHover","styleUpdated":"styleUpdated","toWorldPosition":"toWorldPosition","toWorldRect":"toWorldRect","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXYChartComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcXYChartComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualBrushes":"actualBrushes","actualOutlines":"actualOutlines","actualXAxisLabelTextColor":"actualXAxisLabelTextColor","actualYAxisLabelTextColor":"actualYAxisLabelTextColor","alignsGridLinesToPixels":"alignsGridLinesToPixels","animateSeriesWhenAxisRangeChanges":"animateSeriesWhenAxisRangeChanges","areaFillOpacity":"areaFillOpacity","autoCalloutsVisible":"autoCalloutsVisible","bottomMargin":"bottomMargin","brushes":"brushes","calloutCollisionMode":"calloutCollisionMode","calloutLabelUpdating":"calloutLabelUpdating","calloutRenderStyleUpdating":"calloutRenderStyleUpdating","calloutsAllowedPositions":"calloutsAllowedPositions","calloutsAutoLabelPrecision":"calloutsAutoLabelPrecision","calloutsBackground":"calloutsBackground","calloutsContentMemberPath":"calloutsContentMemberPath","calloutsDarkTextColor":"calloutsDarkTextColor","calloutsDataSource":"calloutsDataSource","calloutsLabelMemberPath":"calloutsLabelMemberPath","calloutsLeaderBrush":"calloutsLeaderBrush","calloutsLightTextColor":"calloutsLightTextColor","calloutsOutline":"calloutsOutline","calloutsStrokeThickness":"calloutsStrokeThickness","calloutsTextColor":"calloutsTextColor","calloutsTextStyle":"calloutsTextStyle","calloutStyleUpdating":"calloutStyleUpdating","calloutStyleUpdatingEventEnabled":"calloutStyleUpdatingEventEnabled","calloutsUseAutoContrastingLabelColors":"calloutsUseAutoContrastingLabelColors","calloutsUseItemColorForFill":"calloutsUseItemColorForFill","calloutsUseItemColorForOutline":"calloutsUseItemColorForOutline","calloutsVisible":"calloutsVisible","calloutsXMemberPath":"calloutsXMemberPath","calloutsYMemberPath":"calloutsYMemberPath","chartTitle":"chartTitle","computedPlotAreaMarginMode":"computedPlotAreaMarginMode","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsAnnotationXAxisBackground":"crosshairsAnnotationXAxisBackground","crosshairsAnnotationXAxisPrecision":"crosshairsAnnotationXAxisPrecision","crosshairsAnnotationXAxisTextColor":"crosshairsAnnotationXAxisTextColor","crosshairsAnnotationYAxisBackground":"crosshairsAnnotationYAxisBackground","crosshairsAnnotationYAxisPrecision":"crosshairsAnnotationYAxisPrecision","crosshairsAnnotationYAxisTextColor":"crosshairsAnnotationYAxisTextColor","crosshairsDisplayMode":"crosshairsDisplayMode","crosshairsLineHorizontalStroke":"crosshairsLineHorizontalStroke","crosshairsLineThickness":"crosshairsLineThickness","crosshairsLineVerticalStroke":"crosshairsLineVerticalStroke","crosshairsSkipInvalidData":"crosshairsSkipInvalidData","crosshairsSkipZeroValueFragments":"crosshairsSkipZeroValueFragments","crosshairsSnapToData":"crosshairsSnapToData","dataToolTipBadgeMarginBottom":"dataToolTipBadgeMarginBottom","dataToolTipBadgeMarginLeft":"dataToolTipBadgeMarginLeft","dataToolTipBadgeMarginRight":"dataToolTipBadgeMarginRight","dataToolTipBadgeMarginTop":"dataToolTipBadgeMarginTop","dataToolTipBadgeShape":"dataToolTipBadgeShape","dataToolTipDefaultPositionOffsetX":"dataToolTipDefaultPositionOffsetX","dataToolTipDefaultPositionOffsetY":"dataToolTipDefaultPositionOffsetY","dataToolTipExcludedColumns":"dataToolTipExcludedColumns","dataToolTipExcludedSeries":"dataToolTipExcludedSeries","dataToolTipGroupedPositionModeX":"dataToolTipGroupedPositionModeX","dataToolTipGroupedPositionModeY":"dataToolTipGroupedPositionModeY","dataToolTipGroupingMode":"dataToolTipGroupingMode","dataToolTipGroupRowMarginBottom":"dataToolTipGroupRowMarginBottom","dataToolTipGroupRowMarginLeft":"dataToolTipGroupRowMarginLeft","dataToolTipGroupRowMarginRight":"dataToolTipGroupRowMarginRight","dataToolTipGroupRowMarginTop":"dataToolTipGroupRowMarginTop","dataToolTipGroupRowVisible":"dataToolTipGroupRowVisible","dataToolTipGroupTextColor":"dataToolTipGroupTextColor","dataToolTipGroupTextMarginBottom":"dataToolTipGroupTextMarginBottom","dataToolTipGroupTextMarginLeft":"dataToolTipGroupTextMarginLeft","dataToolTipGroupTextMarginRight":"dataToolTipGroupTextMarginRight","dataToolTipGroupTextMarginTop":"dataToolTipGroupTextMarginTop","dataToolTipGroupTextStyle":"dataToolTipGroupTextStyle","dataToolTipHeaderFormatCulture":"dataToolTipHeaderFormatCulture","dataToolTipHeaderFormatDate":"dataToolTipHeaderFormatDate","dataToolTipHeaderFormatSpecifiers":"dataToolTipHeaderFormatSpecifiers","dataToolTipHeaderFormatString":"dataToolTipHeaderFormatString","dataToolTipHeaderFormatTime":"dataToolTipHeaderFormatTime","dataToolTipHeaderRowMarginBottom":"dataToolTipHeaderRowMarginBottom","dataToolTipHeaderRowMarginLeft":"dataToolTipHeaderRowMarginLeft","dataToolTipHeaderRowMarginRight":"dataToolTipHeaderRowMarginRight","dataToolTipHeaderRowMarginTop":"dataToolTipHeaderRowMarginTop","dataToolTipHeaderRowVisible":"dataToolTipHeaderRowVisible","dataToolTipHeaderText":"dataToolTipHeaderText","dataToolTipHeaderTextColor":"dataToolTipHeaderTextColor","dataToolTipHeaderTextMarginBottom":"dataToolTipHeaderTextMarginBottom","dataToolTipHeaderTextMarginLeft":"dataToolTipHeaderTextMarginLeft","dataToolTipHeaderTextMarginRight":"dataToolTipHeaderTextMarginRight","dataToolTipHeaderTextMarginTop":"dataToolTipHeaderTextMarginTop","dataToolTipHeaderTextStyle":"dataToolTipHeaderTextStyle","dataToolTipIncludedColumns":"dataToolTipIncludedColumns","dataToolTipIncludedSeries":"dataToolTipIncludedSeries","dataToolTipLabelDisplayMode":"dataToolTipLabelDisplayMode","dataToolTipLabelTextColor":"dataToolTipLabelTextColor","dataToolTipLabelTextMarginBottom":"dataToolTipLabelTextMarginBottom","dataToolTipLabelTextMarginLeft":"dataToolTipLabelTextMarginLeft","dataToolTipLabelTextMarginRight":"dataToolTipLabelTextMarginRight","dataToolTipLabelTextMarginTop":"dataToolTipLabelTextMarginTop","dataToolTipLabelTextStyle":"dataToolTipLabelTextStyle","dataToolTipPositionOffsetX":"dataToolTipPositionOffsetX","dataToolTipPositionOffsetY":"dataToolTipPositionOffsetY","dataToolTipShouldUpdateWhenSeriesDataChanges":"dataToolTipShouldUpdateWhenSeriesDataChanges","dataToolTipSummaryLabelText":"dataToolTipSummaryLabelText","dataToolTipSummaryLabelTextColor":"dataToolTipSummaryLabelTextColor","dataToolTipSummaryLabelTextStyle":"dataToolTipSummaryLabelTextStyle","dataToolTipSummaryRowMarginBottom":"dataToolTipSummaryRowMarginBottom","dataToolTipSummaryRowMarginLeft":"dataToolTipSummaryRowMarginLeft","dataToolTipSummaryRowMarginRight":"dataToolTipSummaryRowMarginRight","dataToolTipSummaryRowMarginTop":"dataToolTipSummaryRowMarginTop","dataToolTipSummaryTitleText":"dataToolTipSummaryTitleText","dataToolTipSummaryTitleTextColor":"dataToolTipSummaryTitleTextColor","dataToolTipSummaryTitleTextMarginBottom":"dataToolTipSummaryTitleTextMarginBottom","dataToolTipSummaryTitleTextMarginLeft":"dataToolTipSummaryTitleTextMarginLeft","dataToolTipSummaryTitleTextMarginRight":"dataToolTipSummaryTitleTextMarginRight","dataToolTipSummaryTitleTextMarginTop":"dataToolTipSummaryTitleTextMarginTop","dataToolTipSummaryTitleTextStyle":"dataToolTipSummaryTitleTextStyle","dataToolTipSummaryType":"dataToolTipSummaryType","dataToolTipSummaryUnitsText":"dataToolTipSummaryUnitsText","dataToolTipSummaryUnitsTextColor":"dataToolTipSummaryUnitsTextColor","dataToolTipSummaryUnitsTextStyle":"dataToolTipSummaryUnitsTextStyle","dataToolTipSummaryValueTextColor":"dataToolTipSummaryValueTextColor","dataToolTipSummaryValueTextStyle":"dataToolTipSummaryValueTextStyle","dataToolTipTitleTextColor":"dataToolTipTitleTextColor","dataToolTipTitleTextMarginBottom":"dataToolTipTitleTextMarginBottom","dataToolTipTitleTextMarginLeft":"dataToolTipTitleTextMarginLeft","dataToolTipTitleTextMarginRight":"dataToolTipTitleTextMarginRight","dataToolTipTitleTextMarginTop":"dataToolTipTitleTextMarginTop","dataToolTipTitleTextStyle":"dataToolTipTitleTextStyle","dataToolTipUnitsDisplayMode":"dataToolTipUnitsDisplayMode","dataToolTipUnitsText":"dataToolTipUnitsText","dataToolTipUnitsTextColor":"dataToolTipUnitsTextColor","dataToolTipUnitsTextMarginBottom":"dataToolTipUnitsTextMarginBottom","dataToolTipUnitsTextMarginLeft":"dataToolTipUnitsTextMarginLeft","dataToolTipUnitsTextMarginRight":"dataToolTipUnitsTextMarginRight","dataToolTipUnitsTextMarginTop":"dataToolTipUnitsTextMarginTop","dataToolTipUnitsTextStyle":"dataToolTipUnitsTextStyle","dataToolTipValueFormatAbbreviation":"dataToolTipValueFormatAbbreviation","dataToolTipValueFormatCulture":"dataToolTipValueFormatCulture","dataToolTipValueFormatMaxFractions":"dataToolTipValueFormatMaxFractions","dataToolTipValueFormatMinFractions":"dataToolTipValueFormatMinFractions","dataToolTipValueFormatMode":"dataToolTipValueFormatMode","dataToolTipValueFormatSpecifiers":"dataToolTipValueFormatSpecifiers","dataToolTipValueFormatString":"dataToolTipValueFormatString","dataToolTipValueFormatUseGrouping":"dataToolTipValueFormatUseGrouping","dataToolTipValueRowMarginBottom":"dataToolTipValueRowMarginBottom","dataToolTipValueRowMarginLeft":"dataToolTipValueRowMarginLeft","dataToolTipValueRowMarginRight":"dataToolTipValueRowMarginRight","dataToolTipValueRowMarginTop":"dataToolTipValueRowMarginTop","dataToolTipValueRowVisible":"dataToolTipValueRowVisible","dataToolTipValueTextColor":"dataToolTipValueTextColor","dataToolTipValueTextMarginBottom":"dataToolTipValueTextMarginBottom","dataToolTipValueTextMarginLeft":"dataToolTipValueTextMarginLeft","dataToolTipValueTextMarginRight":"dataToolTipValueTextMarginRight","dataToolTipValueTextMarginTop":"dataToolTipValueTextMarginTop","dataToolTipValueTextStyle":"dataToolTipValueTextStyle","dataToolTipValueTextUseSeriesColors":"dataToolTipValueTextUseSeriesColors","dataToolTipValueTextWhenMissingData":"dataToolTipValueTextWhenMissingData","domainType":"domainType","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsBackground":"finalValueAnnotationsBackground","finalValueAnnotationsPrecision":"finalValueAnnotationsPrecision","finalValueAnnotationsTextColor":"finalValueAnnotationsTextColor","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","focusBrush":"focusBrush","focusDismissDelayMilliseconds":"focusDismissDelayMilliseconds","focusedSeriesItems":"focusedSeriesItems","focusedSeriesItemsChanged":"focusedSeriesItemsChanged","focusMode":"focusMode","focusTransitionDuration":"focusTransitionDuration","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","highlightedDataSource":"highlightedDataSource","highlightedLegendItemVisibility":"highlightedLegendItemVisibility","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","highlightingBehavior":"highlightingBehavior","highlightingDismissDelayMilliseconds":"highlightingDismissDelayMilliseconds","highlightingFadeOpacity":"highlightingFadeOpacity","highlightingMode":"highlightingMode","highlightingTransitionDuration":"highlightingTransitionDuration","horizontalViewScrollbarCornerRadius":"horizontalViewScrollbarCornerRadius","horizontalViewScrollbarFill":"horizontalViewScrollbarFill","horizontalViewScrollbarHeight":"horizontalViewScrollbarHeight","horizontalViewScrollbarInset":"horizontalViewScrollbarInset","horizontalViewScrollbarMaxOpacity":"horizontalViewScrollbarMaxOpacity","horizontalViewScrollbarMode":"horizontalViewScrollbarMode","horizontalViewScrollbarOutline":"horizontalViewScrollbarOutline","horizontalViewScrollbarPosition":"horizontalViewScrollbarPosition","horizontalViewScrollbarShouldAddAutoTrackInsets":"horizontalViewScrollbarShouldAddAutoTrackInsets","horizontalViewScrollbarStrokeThickness":"horizontalViewScrollbarStrokeThickness","horizontalViewScrollbarTrackEndInset":"horizontalViewScrollbarTrackEndInset","horizontalViewScrollbarTrackStartInset":"horizontalViewScrollbarTrackStartInset","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isDetached":"isDetached","isHorizontalZoomEnabled":"isHorizontalZoomEnabled","isSeriesHighlightingEnabled":"isSeriesHighlightingEnabled","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVerticalZoomEnabled":"isVerticalZoomEnabled","leftMargin":"leftMargin","legend":"legend","legendHighlightingMode":"legendHighlightingMode","legendItemBadgeMode":"legendItemBadgeMode","legendItemBadgeShape":"legendItemBadgeShape","legendItemVisibility":"legendItemVisibility","markerAutomaticBehavior":"markerAutomaticBehavior","markerBrushes":"markerBrushes","markerFillMode":"markerFillMode","markerFillOpacity":"markerFillOpacity","markerMaxCount":"markerMaxCount","markerOutlineMode":"markerOutlineMode","markerOutlines":"markerOutlines","markerThickness":"markerThickness","markerTypes":"markerTypes","outlineMode":"outlineMode","outlines":"outlines","pixelScalingRatio":"pixelScalingRatio","plotAreaMarginBottom":"plotAreaMarginBottom","plotAreaMarginLeft":"plotAreaMarginLeft","plotAreaMarginRight":"plotAreaMarginRight","plotAreaMarginTop":"plotAreaMarginTop","plotAreaPointerDown":"plotAreaPointerDown","plotAreaPointerEnter":"plotAreaPointerEnter","plotAreaPointerLeave":"plotAreaPointerLeave","plotAreaPointerMove":"plotAreaPointerMove","plotAreaPointerUp":"plotAreaPointerUp","resolution":"resolution","rightMargin":"rightMargin","selectedSeriesItems":"selectedSeriesItems","selectedSeriesItemsChanged":"selectedSeriesItemsChanged","selectionBehavior":"selectionBehavior","selectionBrush":"selectionBrush","selectionDismissDelayMilliseconds":"selectionDismissDelayMilliseconds","selectionMode":"selectionMode","selectionTransitionDuration":"selectionTransitionDuration","seriesAdded":"seriesAdded","seriesClick":"seriesClick","seriesPlotAreaMarginHorizontalMode":"seriesPlotAreaMarginHorizontalMode","seriesPlotAreaMarginVerticalMode":"seriesPlotAreaMarginVerticalMode","seriesPointerDown":"seriesPointerDown","seriesPointerEnter":"seriesPointerEnter","seriesPointerLeave":"seriesPointerLeave","seriesPointerMove":"seriesPointerMove","seriesPointerUp":"seriesPointerUp","seriesRemoved":"seriesRemoved","seriesValueLayerUseLegend":"seriesValueLayerUseLegend","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldPanOnMaximumZoom":"shouldPanOnMaximumZoom","shouldSimulateHoverMoveCrosshairPoint":"shouldSimulateHoverMoveCrosshairPoint","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","subtitle":"subtitle","subtitleAlignment":"subtitleAlignment","subtitleBottomMargin":"subtitleBottomMargin","subtitleLeftMargin":"subtitleLeftMargin","subtitleRightMargin":"subtitleRightMargin","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","subtitleTopMargin":"subtitleTopMargin","summaryDescriptions":"summaryDescriptions","thickness":"thickness","titleAlignment":"titleAlignment","titleBottomMargin":"titleBottomMargin","titleLeftMargin":"titleLeftMargin","titleRightMargin":"titleRightMargin","titleTextColor":"titleTextColor","titleTextStyle":"titleTextStyle","titleTopMargin":"titleTopMargin","tooltipTemplate":"tooltipTemplate","tooltipTemplates":"tooltipTemplates","toolTipType":"toolTipType","topMargin":"topMargin","transitionDuration":"transitionDuration","transitionEasingFunction":"transitionEasingFunction","trendLineBrushes":"trendLineBrushes","trendLineLayerUseLegend":"trendLineLayerUseLegend","trendLinePeriod":"trendLinePeriod","trendLineThickness":"trendLineThickness","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","unknownValuePlotting":"unknownValuePlotting","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","useValueForAutoCalloutLabels":"useValueForAutoCalloutLabels","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesThickness":"valueLinesThickness","verticalViewScrollbarCornerRadius":"verticalViewScrollbarCornerRadius","verticalViewScrollbarFill":"verticalViewScrollbarFill","verticalViewScrollbarInset":"verticalViewScrollbarInset","verticalViewScrollbarMaxOpacity":"verticalViewScrollbarMaxOpacity","verticalViewScrollbarMode":"verticalViewScrollbarMode","verticalViewScrollbarOutline":"verticalViewScrollbarOutline","verticalViewScrollbarPosition":"verticalViewScrollbarPosition","verticalViewScrollbarShouldAddAutoTrackInsets":"verticalViewScrollbarShouldAddAutoTrackInsets","verticalViewScrollbarStrokeThickness":"verticalViewScrollbarStrokeThickness","verticalViewScrollbarTrackEndInset":"verticalViewScrollbarTrackEndInset","verticalViewScrollbarTrackStartInset":"verticalViewScrollbarTrackStartInset","verticalViewScrollbarWidth":"verticalViewScrollbarWidth","viewport":"viewport","windowRect":"windowRect","windowRectMinHeight":"windowRectMinHeight","windowRectMinWidth":"windowRectMinWidth","windowSizeMinHeight":"windowSizeMinHeight","windowSizeMinWidth":"windowSizeMinWidth","xAxisExtent":"xAxisExtent","xAxisFormatLabel":"xAxisFormatLabel","xAxisInverted":"xAxisInverted","xAxisLabel":"xAxisLabel","xAxisLabelAngle":"xAxisLabelAngle","xAxisLabelBottomMargin":"xAxisLabelBottomMargin","xAxisLabelFormat":"xAxisLabelFormat","xAxisLabelFormatSpecifiers":"xAxisLabelFormatSpecifiers","xAxisLabelHorizontalAlignment":"xAxisLabelHorizontalAlignment","xAxisLabelLeftMargin":"xAxisLabelLeftMargin","xAxisLabelLocation":"xAxisLabelLocation","xAxisLabelRightMargin":"xAxisLabelRightMargin","xAxisLabelTextColor":"xAxisLabelTextColor","xAxisLabelTextStyle":"xAxisLabelTextStyle","xAxisLabelTopMargin":"xAxisLabelTopMargin","xAxisLabelVerticalAlignment":"xAxisLabelVerticalAlignment","xAxisLabelVisibility":"xAxisLabelVisibility","xAxisMajorStroke":"xAxisMajorStroke","xAxisMajorStrokeThickness":"xAxisMajorStrokeThickness","xAxisMaximumExtent":"xAxisMaximumExtent","xAxisMaximumExtentPercentage":"xAxisMaximumExtentPercentage","xAxisMinorStroke":"xAxisMinorStroke","xAxisMinorStrokeThickness":"xAxisMinorStrokeThickness","xAxisStrip":"xAxisStrip","xAxisStroke":"xAxisStroke","xAxisStrokeThickness":"xAxisStrokeThickness","xAxisTickLength":"xAxisTickLength","xAxisTickStroke":"xAxisTickStroke","xAxisTickStrokeThickness":"xAxisTickStrokeThickness","xAxisTitle":"xAxisTitle","xAxisTitleAlignment":"xAxisTitleAlignment","xAxisTitleAngle":"xAxisTitleAngle","xAxisTitleBottomMargin":"xAxisTitleBottomMargin","xAxisTitleLeftMargin":"xAxisTitleLeftMargin","xAxisTitleMargin":"xAxisTitleMargin","xAxisTitleRightMargin":"xAxisTitleRightMargin","xAxisTitleTextColor":"xAxisTitleTextColor","xAxisTitleTextStyle":"xAxisTitleTextStyle","xAxisTitleTopMargin":"xAxisTitleTopMargin","yAxisExtent":"yAxisExtent","yAxisFormatLabel":"yAxisFormatLabel","yAxisInverted":"yAxisInverted","yAxisLabel":"yAxisLabel","yAxisLabelAngle":"yAxisLabelAngle","yAxisLabelBottomMargin":"yAxisLabelBottomMargin","yAxisLabelFormat":"yAxisLabelFormat","yAxisLabelFormatSpecifiers":"yAxisLabelFormatSpecifiers","yAxisLabelHorizontalAlignment":"yAxisLabelHorizontalAlignment","yAxisLabelLeftMargin":"yAxisLabelLeftMargin","yAxisLabelLocation":"yAxisLabelLocation","yAxisLabelRightMargin":"yAxisLabelRightMargin","yAxisLabelTextColor":"yAxisLabelTextColor","yAxisLabelTextStyle":"yAxisLabelTextStyle","yAxisLabelTopMargin":"yAxisLabelTopMargin","yAxisLabelVerticalAlignment":"yAxisLabelVerticalAlignment","yAxisLabelVisibility":"yAxisLabelVisibility","yAxisMajorStroke":"yAxisMajorStroke","yAxisMajorStrokeThickness":"yAxisMajorStrokeThickness","yAxisMaximumExtent":"yAxisMaximumExtent","yAxisMaximumExtentPercentage":"yAxisMaximumExtentPercentage","yAxisMinorStroke":"yAxisMinorStroke","yAxisMinorStrokeThickness":"yAxisMinorStrokeThickness","yAxisStrip":"yAxisStrip","yAxisStroke":"yAxisStroke","yAxisStrokeThickness":"yAxisStrokeThickness","yAxisTickLength":"yAxisTickLength","yAxisTickStroke":"yAxisTickStroke","yAxisTickStrokeThickness":"yAxisTickStrokeThickness","yAxisTitle":"yAxisTitle","yAxisTitleAlignment":"yAxisTitleAlignment","yAxisTitleAngle":"yAxisTitleAngle","yAxisTitleBottomMargin":"yAxisTitleBottomMargin","yAxisTitleLeftMargin":"yAxisTitleLeftMargin","yAxisTitleMargin":"yAxisTitleMargin","yAxisTitleRightMargin":"yAxisTitleRightMargin","yAxisTitleTextColor":"yAxisTitleTextColor","yAxisTitleTextStyle":"yAxisTitleTextStyle","yAxisTitleTopMargin":"yAxisTitleTopMargin","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","attributeChangedCallback":"attributeChangedCallback","bindCalloutsData":"bindCalloutsData","cancelAnnotationFlow":"cancelAnnotationFlow","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureDataToolTipBadgeMargin":"ensureDataToolTipBadgeMargin","ensureDataToolTipGroupRowMargin":"ensureDataToolTipGroupRowMargin","ensureDataToolTipGroupTextMargin":"ensureDataToolTipGroupTextMargin","ensureDataToolTipHeaderRowMargin":"ensureDataToolTipHeaderRowMargin","ensureDataToolTipHeaderTextMargin":"ensureDataToolTipHeaderTextMargin","ensureDataToolTipLabelTextMargin":"ensureDataToolTipLabelTextMargin","ensureDataToolTipSummaryRowMargin":"ensureDataToolTipSummaryRowMargin","ensureDataToolTipSummaryTitleTextMargin":"ensureDataToolTipSummaryTitleTextMargin","ensureDataToolTipTitleTextMargin":"ensureDataToolTipTitleTextMargin","ensureDataToolTipUnitsTextMargin":"ensureDataToolTipUnitsTextMargin","ensureDataToolTipValueRowMargin":"ensureDataToolTipValueRowMargin","ensureDataToolTipValueTextMargin":"ensureDataToolTipValueTextMargin","exportDomainChartTestingInfo":"exportDomainChartTestingInfo","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","flush":"flush","getDesiredToolbarActions":"getDesiredToolbarActions","getScaledValueX":"getScaledValueX","getScaledValueY":"getScaledValueY","getUnscaledValueX":"getUnscaledValueX","getUnscaledValueY":"getUnscaledValueY","hideToolTip":"hideToolTip","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifyResized":"notifyResized","notifySeriesDataChanged":"notifySeriesDataChanged","notifySetItem":"notifySetItem","notifyVisualPropertiesChanged":"notifyVisualPropertiesChanged","onDetach":"onDetach","provideContainer":"provideContainer","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","replayTransitionIn":"replayTransitionIn","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","simulateClick":"simulateClick","simulateHover":"simulateHover","simulatePlotPointerUp":"simulatePlotPointerUp","simulatePressAndHold":"simulatePressAndHold","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","zoomIn":"zoomIn","zoomOut":"zoomOut"}}],"IgcZoomSliderComponent":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcZoomSliderComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","endInset":"endInset","height":"height","higherCalloutBrush":"higherCalloutBrush","higherCalloutOutline":"higherCalloutOutline","higherCalloutStrokeThickness":"higherCalloutStrokeThickness","higherCalloutTextColor":"higherCalloutTextColor","higherShadeBrush":"higherShadeBrush","higherShadeOutline":"higherShadeOutline","higherShadeStrokeThickness":"higherShadeStrokeThickness","higherThumbBrush":"higherThumbBrush","higherThumbHeight":"higherThumbHeight","higherThumbOutline":"higherThumbOutline","higherThumbRidgesBrush":"higherThumbRidgesBrush","higherThumbStrokeThickness":"higherThumbStrokeThickness","higherThumbWidth":"higherThumbWidth","i":"i","isCustomBarProvided":"isCustomBarProvided","isCustomRangeThumbProvided":"isCustomRangeThumbProvided","isCustomShadeProvided":"isCustomShadeProvided","isCustomThumbProvided":"isCustomThumbProvided","lowerCalloutBrush":"lowerCalloutBrush","lowerCalloutOutline":"lowerCalloutOutline","lowerCalloutStrokeThickness":"lowerCalloutStrokeThickness","lowerCalloutTextColor":"lowerCalloutTextColor","lowerShadeBrush":"lowerShadeBrush","lowerShadeOutline":"lowerShadeOutline","lowerShadeStrokeThickness":"lowerShadeStrokeThickness","lowerThumbBrush":"lowerThumbBrush","lowerThumbHeight":"lowerThumbHeight","lowerThumbOutline":"lowerThumbOutline","lowerThumbRidgesBrush":"lowerThumbRidgesBrush","lowerThumbStrokeThickness":"lowerThumbStrokeThickness","lowerThumbWidth":"lowerThumbWidth","maxZoomWidth":"maxZoomWidth","minZoomWidth":"minZoomWidth","orientation":"orientation","panTransitionDuration":"panTransitionDuration","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingAxisValue":"resolvingAxisValue","startInset":"startInset","thumbCalloutTextStyle":"thumbCalloutTextStyle","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","width":"width","windowRect":"windowRect","windowRectChanged":"windowRectChanged","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","flush":"flush","hide":"hide","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","provideContainer":"provideContainer","show":"show","trackDirty":"trackDirty","updateStyle":"updateStyle","register":"register"}}],"IgcZoomSliderResolvingAxisValueEventArgs":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/classes/IgcZoomSliderResolvingAxisValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","position":"position","value":"value"}}],"AngleAxisLabelLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AngleAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"AnnotationAppearanceMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AnnotationAppearanceMode","k":"enum","s":"enums","m":{"Auto":"Auto","BrightnessShift":"BrightnessShift","DashPattern":"DashPattern","OpacityShift":"OpacityShift","SaturationShift":"SaturationShift"}}],"AutoCalloutVisibilityMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AutoCalloutVisibilityMode","k":"enum","s":"enums","m":{"Auto":"Auto","DedicatedLanes":"DedicatedLanes","Normal":"Normal"}}],"AutoMarginsAndAngleUpdateMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AutoMarginsAndAngleUpdateMode","k":"enum","s":"enums","m":{"None":"None","SizeChanging":"SizeChanging","SizeChangingAndZoom":"SizeChangingAndZoom"}}],"AxisAngleLabelMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AxisAngleLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Center":"Center","ClosestPoint":"ClosestPoint"}}],"AxisExtentType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AxisExtentType","k":"enum","s":"enums","m":{"Percent":"Percent","Pixel":"Pixel"}}],"AxisLabelsLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AxisLabelsLocation","k":"enum","s":"enums","m":{"InsideBottom":"InsideBottom","InsideLeft":"InsideLeft","InsideRight":"InsideRight","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight","OutsideTop":"OutsideTop"}}],"AxisOrientation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AxisOrientation","k":"enum","s":"enums","m":{"Angular":"Angular","Horizontal":"Horizontal","Radial":"Radial","Vertical":"Vertical"}}],"AxisRangeBufferMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AxisRangeBufferMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series","SeriesMaximum":"SeriesMaximum","SeriesMinimum":"SeriesMinimum"}}],"AxisTitlePosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/AxisTitlePosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"BrushSelectionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/BrushSelectionMode","k":"enum","s":"enums","m":{"Interpolate":"Interpolate","Select":"Select"}}],"CalloutPlacementPositions":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CalloutPlacementPositions","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"CategoryChartType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CategoryChartType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Column":"Column","Line":"Line","Point":"Point","Spline":"Spline","SplineArea":"SplineArea","StepArea":"StepArea","StepLine":"StepLine","Waterfall":"Waterfall"}}],"CategoryCollisionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CategoryCollisionMode","k":"enum","s":"enums","m":{"MatchHeight":"MatchHeight","WholeColumn":"WholeColumn"}}],"CategoryItemHighlightType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CategoryItemHighlightType","k":"enum","s":"enums","m":{"Auto":"Auto","Marker":"Marker","Shape":"Shape"}}],"CategorySeriesMarkerCollisionAvoidance":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CategorySeriesMarkerCollisionAvoidance","k":"enum","s":"enums","m":{"None":"None","Omit":"Omit"}}],"CategoryTooltipLayerPosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CategoryTooltipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"CategoryTransitionInMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CategoryTransitionInMode","k":"enum","s":"enums","m":{"AccordionFromBottom":"AccordionFromBottom","AccordionFromCategoryAxisMaximum":"AccordionFromCategoryAxisMaximum","AccordionFromCategoryAxisMinimum":"AccordionFromCategoryAxisMinimum","AccordionFromLeft":"AccordionFromLeft","AccordionFromRight":"AccordionFromRight","AccordionFromTop":"AccordionFromTop","AccordionFromValueAxisMaximum":"AccordionFromValueAxisMaximum","AccordionFromValueAxisMinimum":"AccordionFromValueAxisMinimum","Auto":"Auto","Expand":"Expand","FromParent":"FromParent","FromZero":"FromZero","SweepFromBottom":"SweepFromBottom","SweepFromCategoryAxisMaximum":"SweepFromCategoryAxisMaximum","SweepFromCategoryAxisMinimum":"SweepFromCategoryAxisMinimum","SweepFromCenter":"SweepFromCenter","SweepFromLeft":"SweepFromLeft","SweepFromRight":"SweepFromRight","SweepFromTop":"SweepFromTop","SweepFromValueAxisMaximum":"SweepFromValueAxisMaximum","SweepFromValueAxisMinimum":"SweepFromValueAxisMinimum"}}],"ChartHitTestMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ChartHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational","Mixed":"Mixed","MixedFavoringComputational":"MixedFavoringComputational"}}],"CollisionAvoidanceType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CollisionAvoidanceType","k":"enum","s":"enums","m":{"Fade":"Fade","FadeAndShift":"FadeAndShift","None":"None","Omit":"Omit","OmitAndShift":"OmitAndShift"}}],"ColorScaleInterpolationMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ColorScaleInterpolationMode","k":"enum","s":"enums","m":{"InterpolateHSV":"InterpolateHSV","InterpolateRGB":"InterpolateRGB","Select":"Select"}}],"ComputedPlotAreaMarginMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ComputedPlotAreaMarginMode","k":"enum","s":"enums","m":{"Auto":"Auto","None":"None","Series":"Series"}}],"ConsolidatedItemHitTestBehavior":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ConsolidatedItemHitTestBehavior","k":"enum","s":"enums","m":{"Basic":"Basic","NearestY":"NearestY"}}],"ConsolidatedItemsPosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ConsolidatedItemsPosition","k":"enum","s":"enums","m":{"Maximum":"Maximum","Median":"Median","Minimum":"Minimum","RelativeMaximum":"RelativeMaximum","RelativeMinimum":"RelativeMinimum"}}],"CrosshairsDisplayMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/CrosshairsDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"DataAnnotationDisplayMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/DataAnnotationDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisValue":"AxisValue","DataLabel":"DataLabel","DataValue":"DataValue","Hidden":"Hidden","PixelValue":"PixelValue","WindowValue":"WindowValue"}}],"DataAnnotationTargetMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/DataAnnotationTargetMode","k":"enum","s":"enums","m":{"Auto":"Auto","CategoryXAxes":"CategoryXAxes","CategoryYAxes":"CategoryYAxes","CompanionXAxes":"CompanionXAxes","CompanionYAxes":"CompanionYAxes","DataSourceAxes":"DataSourceAxes","HorizontalAxes":"HorizontalAxes","None":"None","NumericXAxes":"NumericXAxes","NumericYAxes":"NumericYAxes","PrimaryXAxes":"PrimaryXAxes","PrimaryYAxes":"PrimaryYAxes","TimeAxes":"TimeAxes","VerticalAxes":"VerticalAxes"}}],"DataPieChartType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/DataPieChartType","k":"enum","s":"enums","m":{"Auto":"Auto","PieSingleRing":"PieSingleRing"}}],"DataTooltipConstraintMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/DataTooltipConstraintMode","k":"enum","s":"enums","m":{"Application":"Application","Auto":"Auto","Chart":"Chart","None":"None","PlotArea":"PlotArea"}}],"DataToolTipLayerPosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/DataToolTipLayerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideEnd":"InsideEnd","InsideStart":"InsideStart","OutsideEnd":"OutsideEnd","OutsideStart":"OutsideStart"}}],"DomainType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/DomainType","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Pie":"Pie","Scatter":"Scatter","Shape":"Shape"}}],"EnableErrorBars":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/EnableErrorBars","k":"enum","s":"enums","m":{"Both":"Both","Negative":"Negative","None":"None","Positive":"Positive"}}],"FinalValueSelectionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinalValueSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Final":"Final","FinalVisible":"FinalVisible","FinalVisibleInterpolated":"FinalVisibleInterpolated"}}],"FinancialChartRangeSelectorOption":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialChartRangeSelectorOption","k":"enum","s":"enums","m":{"All":"All","OneMonth":"OneMonth","OneYear":"OneYear","SixMonths":"SixMonths","ThreeMonths":"ThreeMonths","YearToDate":"YearToDate"}}],"FinancialChartType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialChartType","k":"enum","s":"enums","m":{"Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line"}}],"FinancialChartVolumeType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialChartVolumeType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","None":"None"}}],"FinancialChartXAxisMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialChartXAxisMode","k":"enum","s":"enums","m":{"Ordinal":"Ordinal","Time":"Time"}}],"FinancialChartYAxisMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialChartYAxisMode","k":"enum","s":"enums","m":{"Numeric":"Numeric","PercentChange":"PercentChange"}}],"FinancialChartZoomSliderType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialChartZoomSliderType","k":"enum","s":"enums","m":{"Area":"Area","Auto":"Auto","Bar":"Bar","Candle":"Candle","Column":"Column","Line":"Line","None":"None"}}],"FinancialIndicatorType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialIndicatorType","k":"enum","s":"enums","m":{"AbsoluteVolumeOscillator":"AbsoluteVolumeOscillator","AccumulationDistribution":"AccumulationDistribution","AverageDirectionalIndex":"AverageDirectionalIndex","AverageTrueRange":"AverageTrueRange","BollingerBandWidth":"BollingerBandWidth","ChaikinOscillator":"ChaikinOscillator","ChaikinVolatility":"ChaikinVolatility","CommodityChannelIndex":"CommodityChannelIndex","DetrendedPriceOscillator":"DetrendedPriceOscillator","EaseOfMovement":"EaseOfMovement","FastStochasticOscillator":"FastStochasticOscillator","ForceIndex":"ForceIndex","FullStochasticOscillator":"FullStochasticOscillator","MarketFacilitationIndex":"MarketFacilitationIndex","MassIndex":"MassIndex","MedianPrice":"MedianPrice","MoneyFlowIndex":"MoneyFlowIndex","MovingAverageConvergenceDivergence":"MovingAverageConvergenceDivergence","NegativeVolumeIndex":"NegativeVolumeIndex","OnBalanceVolume":"OnBalanceVolume","PercentagePriceOscillator":"PercentagePriceOscillator","PercentageVolumeOscillator":"PercentageVolumeOscillator","PositiveVolumeIndex":"PositiveVolumeIndex","PriceVolumeTrend":"PriceVolumeTrend","RateOfChangeAndMomentum":"RateOfChangeAndMomentum","RelativeStrengthIndex":"RelativeStrengthIndex","SlowStochasticOscillator":"SlowStochasticOscillator","StandardDeviation":"StandardDeviation","StochRSI":"StochRSI","TRIX":"TRIX","TypicalPrice":"TypicalPrice","UltimateOscillator":"UltimateOscillator","WeightedClose":"WeightedClose","WilliamsPercentR":"WilliamsPercentR"}}],"FinancialOverlayType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FinancialOverlayType","k":"enum","s":"enums","m":{"BollingerBands":"BollingerBands","PriceChannel":"PriceChannel"}}],"FunnelSliceDisplay":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/FunnelSliceDisplay","k":"enum","s":"enums","m":{"Uniform":"Uniform","Weighted":"Weighted"}}],"GridMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/GridMode","k":"enum","s":"enums","m":{"BeforeSeries":"BeforeSeries","BehindSeries":"BehindSeries","None":"None"}}],"HighlightingMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/HighlightingMode","k":"enum","s":"enums","m":{"Closest":"Closest","DirectlyOver":"DirectlyOver"}}],"IndicatorDisplayType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/IndicatorDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line"}}],"ItemsSourceAction":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ItemsSourceAction","k":"enum","s":"enums","m":{"Change":"Change","Insert":"Insert","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"LabelsPosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/LabelsPosition","k":"enum","s":"enums","m":{"BestFit":"BestFit","Center":"Center","InsideEnd":"InsideEnd","None":"None","OutsideEnd":"OutsideEnd"}}],"LeaderLineType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/LeaderLineType","k":"enum","s":"enums","m":{"Arc":"Arc","Spline":"Spline","Straight":"Straight"}}],"LegendHighlightingMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/LegendHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchSeries":"MatchSeries","None":"None"}}],"LegendOrientation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/LegendOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"MarkerAutomaticBehavior":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/MarkerAutomaticBehavior","k":"enum","s":"enums","m":{"Circle":"Circle","CircleSmart":"CircleSmart","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Indexed":"Indexed","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","SmartIndexed":"SmartIndexed","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"MarkerFillMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/MarkerFillMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerOutline":"MatchMarkerOutline","Normal":"Normal"}}],"MarkerOutlineMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/MarkerOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","MatchMarkerBrush":"MatchMarkerBrush","Normal":"Normal"}}],"MarkerType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/MarkerType","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle","Unset":"Unset"}}],"NumericScaleMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/NumericScaleMode","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"OuterLabelAlignment":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/OuterLabelAlignment","k":"enum","s":"enums","m":{"Left":"Left","Right":"Right"}}],"OverlayTextLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/OverlayTextLocation","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","InsideBottomCenter":"InsideBottomCenter","InsideBottomLeft":"InsideBottomLeft","InsideBottomRight":"InsideBottomRight","InsideMiddleCenter":"InsideMiddleCenter","InsideMiddleLeft":"InsideMiddleLeft","InsideMiddleRight":"InsideMiddleRight","InsideTopCenter":"InsideTopCenter","InsideTopLeft":"InsideTopLeft","InsideTopRight":"InsideTopRight","OutsideBottomCenter":"OutsideBottomCenter","OutsideBottomLeft":"OutsideBottomLeft","OutsideBottomRight":"OutsideBottomRight","OutsideMiddleLeft":"OutsideMiddleLeft","OutsideMiddleRight":"OutsideMiddleRight","OutsideTopCenter":"OutsideTopCenter","OutsideTopLeft":"OutsideTopLeft","OutsideTopRight":"OutsideTopRight"}}],"PieChartSweepDirection":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/PieChartSweepDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"PointerTooltipPointerLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/PointerTooltipPointerLocation","k":"enum","s":"enums","m":{"Auto":"Auto","BottomLeft":"BottomLeft","BottomMiddle":"BottomMiddle","BottomRight":"BottomRight","LeftBottom":"LeftBottom","LeftMiddle":"LeftMiddle","LeftTop":"LeftTop","RightBottom":"RightBottom","RightMiddle":"RightMiddle","RightTop":"RightTop","TopLeft":"TopLeft","TopMiddle":"TopMiddle","TopRight":"TopRight"}}],"PriceDisplayType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/PriceDisplayType","k":"enum","s":"enums","m":{"Candlestick":"Candlestick","OHLC":"OHLC"}}],"ScatterItemSearchMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ScatterItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestPoint":"ClosestPoint","ClosestPointOnClosestLine":"ClosestPointOnClosestLine","ClosestVisiblePoint":"ClosestVisiblePoint","ClosestVisiblePointOnClosestLine":"ClosestVisiblePointOnClosestLine","None":"None","TopVisiblePoint":"TopVisiblePoint"}}],"SeriesHighlightingBehavior":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesHighlightingBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","DirectlyOver":"DirectlyOver","NearestItems":"NearestItems","NearestItemsAndSeries":"NearestItemsAndSeries","NearestItemsRetainMainShapes":"NearestItemsRetainMainShapes"}}],"SeriesHighlightingMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","BrightenSpecific":"BrightenSpecific","FadeOthers":"FadeOthers","FadeOthersSpecific":"FadeOthersSpecific","None":"None"}}],"SeriesHitTestMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesHitTestMode","k":"enum","s":"enums","m":{"Auto":"Auto","ColorEncoded":"ColorEncoded","Computational":"Computational"}}],"SeriesOutlineMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesOutlineMode","k":"enum","s":"enums","m":{"Auto":"Auto","Collapsed":"Collapsed","Visible":"Visible"}}],"SeriesPlotAreaMarginHorizontalMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesPlotAreaMarginHorizontalMode","k":"enum","s":"enums","m":{"Auto":"Auto","LeftBufferRightBuffer":"LeftBufferRightBuffer","LeftBufferRightMargin":"LeftBufferRightMargin","LeftMarginRightBuffer":"LeftMarginRightBuffer","LeftMarginRightMargin":"LeftMarginRightMargin","None":"None"}}],"SeriesPlotAreaMarginVerticalMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesPlotAreaMarginVerticalMode","k":"enum","s":"enums","m":{"Auto":"Auto","BottomBufferTopBuffer":"BottomBufferTopBuffer","BottomBufferTopMargin":"BottomBufferTopMargin","BottomMarginTopBuffer":"BottomMarginTopBuffer","BottomMarginTopMargin":"BottomMarginTopMargin","None":"None"}}],"SeriesSelectionBehavior":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesSelectionBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","PerDataItemMultiSelect":"PerDataItemMultiSelect","PerDataItemSingleSelect":"PerDataItemSingleSelect","PerSeriesAndDataItemGlobalSingleSelect":"PerSeriesAndDataItemGlobalSingleSelect","PerSeriesAndDataItemMultiSelect":"PerSeriesAndDataItemMultiSelect","PerSeriesAndDataItemSingleSelect":"PerSeriesAndDataItemSingleSelect","PerSeriesMultiSelect":"PerSeriesMultiSelect","PerSeriesSingleSelect":"PerSeriesSingleSelect"}}],"SeriesSelectionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesSelectionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","FocusColorFill":"FocusColorFill","FocusColorOutline":"FocusColorOutline","FocusColorThickOutline":"FocusColorThickOutline","GrayscaleOthers":"GrayscaleOthers","None":"None","SelectionColorFill":"SelectionColorFill","SelectionColorOutline":"SelectionColorOutline","SelectionColorThickOutline":"SelectionColorThickOutline","ThickOutline":"ThickOutline"}}],"SeriesViewerHorizontalScrollbarPosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesViewerHorizontalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop"}}],"SeriesViewerScrollbarMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesViewerScrollbarMode","k":"enum","s":"enums","m":{"FadeToLine":"FadeToLine","Fading":"Fading","None":"None","Persistent":"Persistent"}}],"SeriesViewerVerticalScrollbarPosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesViewerVerticalScrollbarPosition","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight"}}],"SeriesVisibleRangeMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SeriesVisibleRangeMode","k":"enum","s":"enums","m":{"Auto":"Auto","IncludeReferenceValue":"IncludeReferenceValue","ValuesOnly":"ValuesOnly"}}],"ShapeItemSearchMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ShapeItemSearchMode","k":"enum","s":"enums","m":{"Auto":"Auto","ClosestBoundingBox":"ClosestBoundingBox","ClosestPointOnClosestShape":"ClosestPointOnClosestShape","ClosestShape":"ClosestShape","None":"None"}}],"SliceSelectionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SliceSelectionMode","k":"enum","s":"enums","m":{"Manual":"Manual","Multiple":"Multiple","Single":"Single"}}],"SparklineDisplayType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SparklineDisplayType","k":"enum","s":"enums","m":{"Area":"Area","Column":"Column","Line":"Line","WinLoss":"WinLoss"}}],"SplineType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/SplineType","k":"enum","s":"enums","m":{"Clamped":"Clamped","Natural":"Natural"}}],"ThumbRangePosition":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"TimeAxisDisplayType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TimeAxisDisplayType","k":"enum","s":"enums","m":{"Continuous":"Continuous","Discrete":"Discrete"}}],"TimeAxisIntervalType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TimeAxisIntervalType","k":"enum","s":"enums","m":{"Days":"Days","Hours":"Hours","Milliseconds":"Milliseconds","Minutes":"Minutes","Months":"Months","Seconds":"Seconds","Ticks":"Ticks","Weeks":"Weeks","Years":"Years"}}],"TimeAxisLabellingMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TimeAxisLabellingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Compressed":"Compressed","Normal":"Normal"}}],"ToolTipType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ToolTipType","k":"enum","s":"enums","m":{"Category":"Category","Data":"Data","Default":"Default","Item":"Item","None":"None"}}],"TransitionInSpeedType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TransitionInSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TransitionOutSpeedType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TransitionOutSpeedType","k":"enum","s":"enums","m":{"Auto":"Auto","IndexScaled":"IndexScaled","Normal":"Normal","Random":"Random","ValueScaled":"ValueScaled"}}],"TreemapFillScaleMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapFillScaleMode","k":"enum","s":"enums","m":{"GlobalSum":"GlobalSum","GlobalValue":"GlobalValue","Sum":"Sum","Value":"Value"}}],"TreemapHeaderDisplayMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapHeaderDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Header":"Header","Overlay":"Overlay"}}],"TreemapHighlightedValueDisplayMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapHighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"TreemapHighlightingMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapHighlightingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Brighten":"Brighten","FadeOthers":"FadeOthers","None":"None"}}],"TreemapLabelHorizontalFitMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapLabelHorizontalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Ellipsis":"Ellipsis","Hide":"Hide"}}],"TreemapLabelVerticalFitMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapLabelVerticalFitMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hide":"Hide","Show":"Show"}}],"TreemapLayoutType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapLayoutType","k":"enum","s":"enums","m":{"SliceAndDice":"SliceAndDice","Squarified":"Squarified","Stripped":"Stripped"}}],"TreemapNodeStyleMappingTargetType":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapNodeStyleMappingTargetType","k":"enum","s":"enums","m":{"All":"All","Child":"Child","Parent":"Parent"}}],"TreemapOrientation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"TreemapValueMappingMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/TreemapValueMappingMode","k":"enum","s":"enums","m":{"CustomValue":"CustomValue","Sum":"Sum","Value":"Value"}}],"UserAnnotationTarget":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/UserAnnotationTarget","k":"enum","s":"enums","m":{"Axis":"Axis","Point":"Point","Slice":"Slice","Strip":"Strip"}}],"ValueAxisLabelLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ValueAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ValueCollisionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ValueCollisionMode","k":"enum","s":"enums","m":{"Range":"Range","Value":"Value"}}],"ValueLayerValueMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ValueLayerValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","GlobalAverage":"GlobalAverage","GlobalMaximum":"GlobalMaximum","GlobalMinimum":"GlobalMinimum","Maximum":"Maximum","Minimum":"Minimum"}}],"ViewerSurfaceUsage":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ViewerSurfaceUsage","k":"enum","s":"enums","m":{"Minimal":"Minimal","Normal":"Normal"}}],"WindowResponse":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/WindowResponse","k":"enum","s":"enums","m":{"Deferred":"Deferred","Immediate":"Immediate"}}],"XAxisLabelLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/XAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideBottom":"InsideBottom","InsideTop":"InsideTop","OutsideBottom":"OutsideBottom","OutsideTop":"OutsideTop"}}],"YAxisLabelLocation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/YAxisLabelLocation","k":"enum","s":"enums","m":{"Auto":"Auto","InsideLeft":"InsideLeft","InsideRight":"InsideRight","OutsideLeft":"OutsideLeft","OutsideRight":"OutsideRight"}}],"ZoomCoercionMode":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ZoomCoercionMode","k":"enum","s":"enums","m":{"Auto":"Auto","AxisConstrained":"AxisConstrained","Unconstrained":"Unconstrained"}}],"ZoomSliderOrientation":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/enums/ZoomSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"DataChartStylingDefaults":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/variables/DataChartStylingDefaults","k":"variable","s":"variables"}],"LegendBaseStyles":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/variables/LegendBaseStyles","k":"variable","s":"variables"}],"SparklineStylingDefaults":[{"p":"igniteui-webcomponents-charts","u":"/api/webcomponents/igniteui-webcomponents-charts/7.0.0/variables/SparklineStylingDefaults","k":"variable","s":"variables"}],"ArrayBox$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/ArrayBox-1","k":"class","s":"classes","m":{"constructor":"constructor","$arrayWrapper":"$arrayWrapper","isFixedSize":"isFixedSize","isReadOnly":"isReadOnly","isSynchronized":"isSynchronized","syncRoot":"syncRoot","$type":"$type","count":"count","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","equals":"equals","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","getHashCode":"getHashCode","indexOf":"indexOf","insert":"insert","insertRange":"insertRange","item":"item","remove":"remove","removeAt":"removeAt","removeRange":"removeRange","reverse":"reverse"}}],"Base":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Base","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"BaseError":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/BaseError","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"BinaryUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/BinaryUtil","k":"class","s":"classes","m":{"constructor":"constructor","getBinary":"getBinary","isResponseTypeSupported":"isResponseTypeSupported"}}],"Calendar":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Calendar","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","addMonths":"addMonths","addYears":"addYears","equals":"equals","eras":"eras","getDayOfMonth":"getDayOfMonth","getDaysInMonth":"getDaysInMonth","getDaysInYear":"getDaysInYear","getEra":"getEra","getHashCode":"getHashCode","getMonth":"getMonth","getYear":"getYear","memberwiseClone":"memberwiseClone","toDateTime":"toDateTime","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"CollectionAdapter":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/CollectionAdapter","k":"class","s":"classes","m":{"constructor":"constructor","actualContent":"actualContent","collisionChecker":"collisionChecker","addManualItem":"addManualItem","clearManualItems":"clearManualItems","insertManualItem":"insertManualItem","notifyContentChanged":"notifyContentChanged","onQueryChanged":"onQueryChanged","removeManualItem":"removeManualItem","removeManualItemAt":"removeManualItemAt","shiftContentToManual":"shiftContentToManual","syncItems":"syncItems","updateQuery":"updateQuery"}}],"CompareInfo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/CompareInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","compare1":"compare1","compare4":"compare4","compare5":"compare5","equals":"equals","getHashCode":"getHashCode","indexOf1":"indexOf1","indexOf3":"indexOf3","indexOf5":"indexOf5","indexOf6":"indexOf6","memberwiseClone":"memberwiseClone","referenceEquals":"referenceEquals","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic"}}],"CompareUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/CompareUtil","k":"class","s":"classes","m":{"constructor":"constructor","compareTo":"compareTo","compareToObject":"compareToObject"}}],"ComponentRendererAdapter":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/ComponentRendererAdapter","k":"class","s":"classes","m":{"constructor":"constructor","isBlazorRenderer":"isBlazorRenderer","addItemToCollection":"addItemToCollection","clearCollection":"clearCollection","clearContainer":"clearContainer","coerceToEnum":"coerceToEnum","createBrushCollection":"createBrushCollection","createColorCollection":"createColorCollection","createDoubleCollection":"createDoubleCollection","createHandler":"createHandler","createObject":"createObject","disposeHandler":"disposeHandler","ensureExternalObject":"ensureExternalObject","executeMethod":"executeMethod","flushChanges":"flushChanges","forPropertyValueItem":"forPropertyValueItem","getMarkupCollection":"getMarkupCollection","getMarkupTypeMatcher":"getMarkupTypeMatcher","getPropertyValue":"getPropertyValue","getRootObject":"getRootObject","mustManageInMarkup":"mustManageInMarkup","onPendingRef":"onPendingRef","onUIThread":"onUIThread","publicCollectionAsObjectArray":"publicCollectionAsObjectArray","removeItemFromCollection":"removeItemFromCollection","removeRootItem":"removeRootItem","replaceItemInCollection":"replaceItemInCollection","replaceRootItem":"replaceRootItem","resetPropertyOnTarget":"resetPropertyOnTarget","serializeBrush":"serializeBrush","serializeBrushCollection":"serializeBrushCollection","serializeColor":"serializeColor","serializeColorCollection":"serializeColorCollection","serializeDoubleCollection":"serializeDoubleCollection","serializePixelPoint":"serializePixelPoint","serializePixelRect":"serializePixelRect","serializePixelSize":"serializePixelSize","serializePoint":"serializePoint","serializeRect":"serializeRect","serializeSize":"serializeSize","serializeTimespan":"serializeTimespan","setHandler":"setHandler","setOrUpdateCollectionOnTarget":"setOrUpdateCollectionOnTarget","setPropertyValue":"setPropertyValue"}}],"ConvertUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/ConvertUtil","k":"class","s":"classes","m":{"constructor":"constructor","convertToNumber":"convertToNumber","toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toSByte":"toSByte","toSingle":"toSingle","toString1":"toString1","toUInt16":"toUInt16","toUInt32":"toUInt32","toUInt64":"toUInt64"}}],"CultureInfo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/CultureInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","calendar":"calendar","compareInfo":"compareInfo","dateTimeFormat":"dateTimeFormat","name":"name","numberFormat":"numberFormat","twoLetterISOLanguageName":"twoLetterISOLanguageName","currentCulture":"currentCulture","invariantCulture":"invariantCulture","clone":"clone","equals":"equals","getFormat":"getFormat","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getCultureInfo":"getCultureInfo","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"DataVisualizationLocaleCs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleDa":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleDe":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleEn":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleEs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleFr":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_Header1":"FinancialChart_IndicatorMenu_Header1","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader1","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader1":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader1","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader1","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader1":"FinancialChart_IndicatorMenu_VolumeCategoryHeader1","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleHu":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleIt":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleJa":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleKo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleKo","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleNb":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleNl":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocalePl":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocalePt":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleRo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleSv":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleTr":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleZhHans":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DataVisualizationLocaleZhHant":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DataVisualizationLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","AssemblyNotIncluded":"AssemblyNotIncluded","BreakEvenTitle_BreakEven":"BreakEvenTitle_BreakEven","BreakEvenTitle_FixedCost":"BreakEvenTitle_FixedCost","BreakEvenTitle_LossArea":"BreakEvenTitle_LossArea","BreakEvenTitle_MarginalProfit":"BreakEvenTitle_MarginalProfit","BreakEvenTitle_ProfitArea":"BreakEvenTitle_ProfitArea","BreakEvenTitle_SafetyMargin":"BreakEvenTitle_SafetyMargin","BreakEvenTitle_SalesRevenue":"BreakEvenTitle_SalesRevenue","BreakEvenTitle_TotalCost":"BreakEvenTitle_TotalCost","BreakEvenTitle_VariableCost":"BreakEvenTitle_VariableCost","BubbleSeries_Radius":"BubbleSeries_Radius","DataChart_InteractivityNotLoaded":"DataChart_InteractivityNotLoaded","DataChart_NumberAbbreviatorNotLoaded":"DataChart_NumberAbbreviatorNotLoaded","DataChart_VisualDataNotLoaded":"DataChart_VisualDataNotLoaded","DataProviderNotInitialized":"DataProviderNotInitialized","DataSource_Summary_Avg":"DataSource_Summary_Avg","DataSource_Summary_Count":"DataSource_Summary_Count","DataSource_Summary_Max":"DataSource_Summary_Max","DataSource_Summary_Min":"DataSource_Summary_Min","DataSource_Summary_Sum":"DataSource_Summary_Sum","Default_Series_Title":"Default_Series_Title","FinancialChart_IndicatorMenu_Header":"FinancialChart_IndicatorMenu_Header","FinancialChart_IndicatorMenu_IndicatorsCategoryHeader":"FinancialChart_IndicatorMenu_IndicatorsCategoryHeader","FinancialChart_IndicatorMenu_OverlaysCategoryHeader":"FinancialChart_IndicatorMenu_OverlaysCategoryHeader","FinancialChart_IndicatorMenu_TrendlinesCategoryHeader":"FinancialChart_IndicatorMenu_TrendlinesCategoryHeader","FinancialChart_IndicatorMenu_VolumeCategoryHeader":"FinancialChart_IndicatorMenu_VolumeCategoryHeader","FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_AbsoluteVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution":"FinancialChart_IndicatorsMenu_Indicator_AccumulationDistribution","FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex":"FinancialChart_IndicatorsMenu_Indicator_AverageDirectionalIndex","FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange":"FinancialChart_IndicatorsMenu_Indicator_AverageTrueRange","FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth":"FinancialChart_IndicatorsMenu_Indicator_BollingerBandWidth","FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator":"FinancialChart_IndicatorsMenu_Indicator_ChaikinOscillator","FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility":"FinancialChart_IndicatorsMenu_Indicator_ChaikinVolatility","FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex":"FinancialChart_IndicatorsMenu_Indicator_CommodityChannelIndex","FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_DetrendedPriceOscillator","FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement":"FinancialChart_IndicatorsMenu_Indicator_EaseOfMovement","FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FastStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_ForceIndex":"FinancialChart_IndicatorsMenu_Indicator_ForceIndex","FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_FullStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex":"FinancialChart_IndicatorsMenu_Indicator_MarketFacilitationIndex","FinancialChart_IndicatorsMenu_Indicator_MassIndex":"FinancialChart_IndicatorsMenu_Indicator_MassIndex","FinancialChart_IndicatorsMenu_Indicator_MedianPrice":"FinancialChart_IndicatorsMenu_Indicator_MedianPrice","FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex":"FinancialChart_IndicatorsMenu_Indicator_MoneyFlowIndex","FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence":"FinancialChart_IndicatorsMenu_Indicator_MovingAverageConvergenceDivergence","FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_NegativeVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume":"FinancialChart_IndicatorsMenu_Indicator_OnBalanceVolume","FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentagePriceOscillator","FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator":"FinancialChart_IndicatorsMenu_Indicator_PercentageVolumeOscillator","FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex":"FinancialChart_IndicatorsMenu_Indicator_PositiveVolumeIndex","FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend":"FinancialChart_IndicatorsMenu_Indicator_PriceVolumeTrend","FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum":"FinancialChart_IndicatorsMenu_Indicator_RateOfChangeAndMomentum","FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex":"FinancialChart_IndicatorsMenu_Indicator_RelativeStrengthIndex","FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator":"FinancialChart_IndicatorsMenu_Indicator_SlowStochasticOscillator","FinancialChart_IndicatorsMenu_Indicator_StandardDeviation":"FinancialChart_IndicatorsMenu_Indicator_StandardDeviation","FinancialChart_IndicatorsMenu_Indicator_StochRSI":"FinancialChart_IndicatorsMenu_Indicator_StochRSI","FinancialChart_IndicatorsMenu_Indicator_TRIX":"FinancialChart_IndicatorsMenu_Indicator_TRIX","FinancialChart_IndicatorsMenu_Indicator_TypicalPrice":"FinancialChart_IndicatorsMenu_Indicator_TypicalPrice","FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator":"FinancialChart_IndicatorsMenu_Indicator_UltimateOscillator","FinancialChart_IndicatorsMenu_Indicator_WeightedClose":"FinancialChart_IndicatorsMenu_Indicator_WeightedClose","FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR":"FinancialChart_IndicatorsMenu_Indicator_WilliamsPercentR","FinancialChart_IndicatorsMenu_Overlay_BollingerBands":"FinancialChart_IndicatorsMenu_Overlay_BollingerBands","FinancialChart_IndicatorsMenu_Overlay_PriceChannel":"FinancialChart_IndicatorsMenu_Overlay_PriceChannel","FinancialChart_IndicatorsMenu_TrendLine_CubicFit":"FinancialChart_IndicatorsMenu_TrendLine_CubicFit","FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage":"FinancialChart_IndicatorsMenu_TrendLine_CumulativeAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialAverage","FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit":"FinancialChart_IndicatorsMenu_TrendLine_ExponentialFit","FinancialChart_IndicatorsMenu_TrendLine_LinearFit":"FinancialChart_IndicatorsMenu_TrendLine_LinearFit","FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit":"FinancialChart_IndicatorsMenu_TrendLine_LogarithmicFit","FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage":"FinancialChart_IndicatorsMenu_TrendLine_ModifiedAverage","FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit":"FinancialChart_IndicatorsMenu_TrendLine_PowerLawFit","FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuadraticFit","FinancialChart_IndicatorsMenu_TrendLine_QuarticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuarticFit","FinancialChart_IndicatorsMenu_TrendLine_QuinticFit":"FinancialChart_IndicatorsMenu_TrendLine_QuinticFit","FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage":"FinancialChart_IndicatorsMenu_TrendLine_SimpleAverage","FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage":"FinancialChart_IndicatorsMenu_TrendLine_WeightedAverage","FinancialChart_IndicatorsMenu_Volume_Area":"FinancialChart_IndicatorsMenu_Volume_Area","FinancialChart_IndicatorsMenu_Volume_Column":"FinancialChart_IndicatorsMenu_Volume_Column","FinancialChart_IndicatorsMenu_Volume_Line":"FinancialChart_IndicatorsMenu_Volume_Line","FinancialChart_RangeSelector_All":"FinancialChart_RangeSelector_All","FinancialChart_RangeSelector_From":"FinancialChart_RangeSelector_From","FinancialChart_RangeSelector_OneMonth":"FinancialChart_RangeSelector_OneMonth","FinancialChart_RangeSelector_OneYear":"FinancialChart_RangeSelector_OneYear","FinancialChart_RangeSelector_SixMonths":"FinancialChart_RangeSelector_SixMonths","FinancialChart_RangeSelector_ThreeMonths":"FinancialChart_RangeSelector_ThreeMonths","FinancialChart_RangeSelector_To":"FinancialChart_RangeSelector_To","FinancialChart_RangeSelector_YearToDate":"FinancialChart_RangeSelector_YearToDate","FinancialSeries_Close":"FinancialSeries_Close","FinancialSeries_High":"FinancialSeries_High","FinancialSeries_Low":"FinancialSeries_Low","FinancialSeries_Open":"FinancialSeries_Open","FinancialSeries_Volume":"FinancialSeries_Volume","NoEncodingsLoaded":"NoEncodingsLoaded","NotSupportedEncoding":"NotSupportedEncoding","Object_Sealed":"Object_Sealed","OPD_DefaultInteraction":"OPD_DefaultInteraction","OPD_DragPan":"OPD_DragPan","OPD_DragZoom":"OPD_DragZoom","OPD_ScaleToFit":"OPD_ScaleToFit","OPD_ScaleToFit_SeriesViewer":"OPD_ScaleToFit_SeriesViewer","OPD_ZoomIn":"OPD_ZoomIn","OPD_ZoomOut":"OPD_ZoomOut","OPD_ZoomTo100":"OPD_ZoomTo100","PieChart_Others":"PieChart_Others","RangeModificationsNotSupportRangeModificationsNotSupported":"RangeModificationsNotSupportRangeModificationsNotSupported","ScatterSeries_Value":"ScatterSeries_Value","TRIAL_VERSION":"TRIAL_VERSION"}}],"DateTimeFormat":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DateTimeFormat","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","dateSeparator":"dateSeparator","longDatePattern":"longDatePattern","monthNames":"monthNames","shortDatePattern":"shortDatePattern","shortTimePattern":"shortTimePattern","timeSeparator":"timeSeparator","clone":"clone","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"DictionaryUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/DictionaryUtil","k":"class","s":"classes","m":{"constructor":"constructor","dictionaryCreate":"dictionaryCreate","dictionaryGetDictionary":"dictionaryGetDictionary","dictionaryGetEnumerator":"dictionaryGetEnumerator","dictionaryGetKeys":"dictionaryGetKeys","dictionaryGetValues":"dictionaryGetValues","en":"en"}}],"Enum":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Enum","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"EnumBox":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EnumBox","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","value":"value","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getActualName":"getActualName","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","toDouble":"toDouble","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"EnumerableWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EnumerableWrapper","k":"class","s":"classes","m":{"constructor":"constructor"}}],"EnumerableWrapperObject":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EnumerableWrapperObject","k":"class","s":"classes","m":{"constructor":"constructor"}}],"EnumeratorWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EnumeratorWrapper","k":"class","s":"classes","m":{"constructor":"constructor","next":"next"}}],"EnumeratorWrapperObject":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EnumeratorWrapperObject","k":"class","s":"classes","m":{"constructor":"constructor","next":"next"}}],"EnumUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EnumUtil","k":"class","s":"classes","m":{"constructor":"constructor","enumHasFlag":"enumHasFlag","getEnumValue":"getEnumValue","getFlaggedName":"getFlaggedName","getName":"getName","getNames":"getNames","getValues":"getValues","isDefined":"isDefined","parse":"parse","toDouble":"toDouble","toObject":"toObject","toString":"toString","tryParse$1":"tryParse$1"}}],"EventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/EventArgs","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","empty":"empty","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"FormatException":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/FormatException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"HttpRequestUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/HttpRequestUtil","k":"class","s":"classes","m":{"constructor":"constructor","submit":"submit"}}],"IgcAsyncCompletedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcAsyncCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelled":"cancelled","errorMessage":"errorMessage","userState":"userState"}}],"IgcBaseGenericDataSource":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcBaseGenericDataSource","k":"class","s":"classes","m":{"constructor":"constructor","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","findByName":"findByName","queueAutoRefresh":"queueAutoRefresh","_createFromInternal":"_createFromInternal"}}],"IgcCancelEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcCancelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel"}}],"IgcCancellingMultiScaleImageEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcCancellingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","uri":"uri"}}],"IgcCaptureImageSettings":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcCaptureImageSettings","k":"class","s":"classes","m":{"constructor":"constructor","addToClipboard":"addToClipboard","format":"format","findByName":"findByName"}}],"IgcChildContentComponent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcChildContentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","alignItems":"alignItems","display":"display","flexDirection":"flexDirection","attachedCallback":"attachedCallback","connectedCallback":"connectedCallback","createShadow":"createShadow","onChildrenChanged":"onChildrenChanged","register":"register"}}],"IgcComponentRendererContainerComponent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcComponentRendererContainerComponent","k":"class","s":"classes","m":{"constructor":"constructor","element":"element","clearContainer":"clearContainer","createObject":"createObject","getRootObject":"getRootObject","replaceRootItem":"replaceRootItem","fromElement":"fromElement","isEvent":"isEvent"}}],"IgcContentChildCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcContentChildCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcDataContext":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataContext","k":"class","s":"classes","m":{"constructor":"constructor","actualItemBrush":"actualItemBrush","i":"i","item":"item","itemBrush":"itemBrush","itemLabel":"itemLabel","legendLabel":"legendLabel","outline":"outline","series":"series","thickness":"thickness","findByName":"findByName"}}],"IgcDataLegendSeriesContext":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataLegendSeriesContext","k":"class","s":"classes","m":{"constructor":"constructor","seriesFamily":"seriesFamily","findByName":"findByName","getSeriesValue":"getSeriesValue","getSeriesValueInfo":"getSeriesValueInfo","getSeriesValues":"getSeriesValues","setSeriesValue":"setSeriesValue","setSeriesValueInfo":"setSeriesValueInfo"}}],"IgcDataLegendSeriesValueInfo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataLegendSeriesValueInfo","k":"class","s":"classes","m":{"constructor":"constructor","allowLabels":"allowLabels","allowUnits":"allowUnits","formatAllowAbbreviation":"formatAllowAbbreviation","formatAllowCurrency":"formatAllowCurrency","formatAllowDecimal":"formatAllowDecimal","formatAllowInteger":"formatAllowInteger","formatAllowPercent":"formatAllowPercent","formatMaxFractions":"formatMaxFractions","formatMinFractions":"formatMinFractions","formatUseNegativeColor":"formatUseNegativeColor","formatUsePositiveColor":"formatUsePositiveColor","formatWithSeriesColor":"formatWithSeriesColor","index":"index","isExcludeByDefault":"isExcludeByDefault","memberLabel":"memberLabel","memberPath":"memberPath","memberSymbol":"memberSymbol","memberUnit":"memberUnit","orderIndex":"orderIndex","value":"value","valueNegativePrefix":"valueNegativePrefix","valueNegativeSuffix":"valueNegativeSuffix","valuePositivePrefix":"valuePositivePrefix","valuePositiveSuffix":"valuePositiveSuffix","valueType":"valueType","findByName":"findByName","toString":"toString"}}],"IgcDataLegendSummaryColumn":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataLegendSummaryColumn","k":"class","s":"classes","m":{"constructor":"constructor","allowLabels":"allowLabels","allowUnits":"allowUnits","formatAllowAbbreviation":"formatAllowAbbreviation","formatAllowCurrency":"formatAllowCurrency","formatAllowDecimal":"formatAllowDecimal","formatAllowInteger":"formatAllowInteger","formatAllowPercent":"formatAllowPercent","formatMaxFractions":"formatMaxFractions","formatMinFractions":"formatMinFractions","formatUseNegativeColor":"formatUseNegativeColor","formatUsePositiveColor":"formatUsePositiveColor","formatWithSeriesColor":"formatWithSeriesColor","index":"index","isExcludeByDefault":"isExcludeByDefault","memberLabel":"memberLabel","memberPath":"memberPath","memberSymbol":"memberSymbol","memberUnit":"memberUnit","orderIndex":"orderIndex","seriesLabels":"seriesLabels","seriesUnits":"seriesUnits","seriesValues":"seriesValues","value":"value","valueNegativePrefix":"valueNegativePrefix","valueNegativeSuffix":"valueNegativeSuffix","valuePositivePrefix":"valuePositivePrefix","valuePositiveSuffix":"valuePositiveSuffix","valueType":"valueType","addLabel":"addLabel","addUnits":"addUnits","addValue":"addValue","findByName":"findByName","toString":"toString"}}],"IgcDataSeriesCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcDataSourceDataProviderSchemaChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceDataProviderSchemaChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","schema":"schema"}}],"IgcDataSourceGroupDescription":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgcDataSourceGroupDescriptionCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgcDataSourcePropertiesRequestedChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourcePropertiesRequestedChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcDataSourceRootSummariesChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceRootSummariesChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcDataSourceRowExpansionChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceRowExpansionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newState":"newState","oldState":"oldState","rowIndex":"rowIndex"}}],"IgcDataSourceSchemaChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceSchemaChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","schema":"schema"}}],"IgcDataSourceSortDescription":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgcDataSourceSortDescriptionCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgcDataSourceSummaryDescription":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgcDataSourceSummaryDescriptionCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDataSourceSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgcDateTimeFormatSpecifier":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDateTimeFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","calendar":"calendar","dateStyle":"dateStyle","day":"day","dayPeriod":"dayPeriod","era":"era","formatMatcher":"formatMatcher","fractionalSecondDigits":"fractionalSecondDigits","hour":"hour","hour12":"hour12","hourCycle":"hourCycle","locale":"locale","localeMatcher":"localeMatcher","minute":"minute","month":"month","numberingSystem":"numberingSystem","second":"second","timeStyle":"timeStyle","timeZone":"timeZone","timeZoneName":"timeZoneName","weekDay":"weekDay","year":"year","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgcDoubleValueChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDoubleValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcDownloadingMultiScaleImageEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcDownloadingMultiScaleImageEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","image":"image","uri":"uri"}}],"IgcFilterExpressionCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcFilterExpressionCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","i":"i","onChanged":"onChanged","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","syncTarget":"syncTarget","add":"add","clear":"clear","findByName":"findByName","get":"get","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","set":"set","toArray":"toArray"}}],"IgcFocusEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","fromTarget":"fromTarget","target":"target"}}],"IgcFormatSpecifier":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgcFormatSpecifierCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcFormatSpecifierCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcGenericVirtualDataSource":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcGenericVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","pageRequested":"pageRequested","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","addSchemaProperty":"addSchemaProperty","addSummaryDate":"addSummaryDate","addSummaryDouble":"addSummaryDouble","addSummaryInt":"addSummaryInt","addSummaryString":"addSummaryString","fillColumnBool":"fillColumnBool","fillColumnDate":"fillColumnDate","fillColumnDouble":"fillColumnDouble","fillColumnInt":"fillColumnInt","fillColumnString":"fillColumnString","fillCount":"fillCount","fillGroupEnd":"fillGroupEnd","fillGroupStart":"fillGroupStart","fillGroupValueDate":"fillGroupValueDate","fillGroupValueDouble":"fillGroupValueDouble","fillGroupValueInt":"fillGroupValueInt","fillGroupValueString":"fillGroupValueString","fillPageEnd":"fillPageEnd","fillPageStart":"fillPageStart","findByName":"findByName","queueAutoRefresh":"queueAutoRefresh","_createFromInternal":"_createFromInternal"}}],"IgcGetTileImageUriArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcGetTileImageUriArgs","k":"class","s":"classes","m":{"constructor":"constructor","tileImageUri":"tileImageUri","tileLevel":"tileLevel","tilePositionX":"tilePositionX","tilePositionY":"tilePositionY"}}],"IgcHeatTileGenerator":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcHeatTileGenerator","k":"class","s":"classes","m":{"constructor":"constructor","blurRadius":"blurRadius","logarithmBase":"logarithmBase","maxBlurRadius":"maxBlurRadius","maximumColor":"maximumColor","maximumValue":"maximumValue","minimumColor":"minimumColor","minimumValue":"minimumValue","scaleColorOffsets":"scaleColorOffsets","scaleColors":"scaleColors","useBlurRadiusAdjustedForZoom":"useBlurRadiusAdjustedForZoom","useGlobalMinMax":"useGlobalMinMax","useGlobalMinMaxAdjustedForZoom":"useGlobalMinMaxAdjustedForZoom","useLogarithmicScale":"useLogarithmicScale","useWebWorkers":"useWebWorkers","values":"values","webWorkerInstance":"webWorkerInstance","webWorkerScriptPath":"webWorkerScriptPath","xValues":"xValues","yValues":"yValues","cancelTile":"cancelTile","destroy":"destroy","findByName":"findByName","getTile":"getTile"}}],"IgcHighlightingInfo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcHighlightingInfo","k":"class","s":"classes","m":{"constructor":"constructor","context":"context","endIndex":"endIndex","isExclusive":"isExclusive","isFullRange":"isFullRange","isMarker":"isMarker","progress":"progress","startIndex":"startIndex","state":"state","findByName":"findByName"}}],"IgcImageCapturedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcImageCapturedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","base64Data":"base64Data","image":"image","settings":"settings"}}],"IgcImageLoadEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcImageLoadEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","data":"data","error":"error","path":"path","status":"status"}}],"IgcKeyEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcKeyEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","alt":"alt","ctrl":"ctrl","defaultPrevented":"defaultPrevented","keyCode":"keyCode","modifiers":"modifiers","originalEvent":"originalEvent","shift":"shift","preventDefault":"preventDefault","stopPropagation":"stopPropagation"}}],"IgcNumberFormatSpecifier":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcNumberFormatSpecifier","k":"class","s":"classes","m":{"constructor":"constructor","compactDisplay":"compactDisplay","currency":"currency","currencyCode":"currencyCode","currencyDisplay":"currencyDisplay","currencySign":"currencySign","locale":"locale","localeMatcher":"localeMatcher","maximumFractionDigits":"maximumFractionDigits","maximumSignificantDigits":"maximumSignificantDigits","minimumFractionDigits":"minimumFractionDigits","minimumIntegerDigits":"minimumIntegerDigits","minimumSignificantDigits":"minimumSignificantDigits","notation":"notation","numberingSystem":"numberingSystem","signDisplay":"signDisplay","style":"style","unit":"unit","unitDisplay":"unitDisplay","useGrouping":"useGrouping","findByName":"findByName","getLocalCulture":"getLocalCulture"}}],"IgcObjectCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcObjectCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcOnClosedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcOnClosedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcOnPopupEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcOnPopupEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcPageRequestedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcPageRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dataSourceId":"dataSourceId","isSchemaRequest":"isSchemaRequest","pageIndex":"pageIndex","pageSize":"pageSize","requestId":"requestId"}}],"IgcPopupComponent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcPopupComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAmbientShadowColor":"actualAmbientShadowColor","actualElevation":"actualElevation","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","animationDuration":"animationDuration","animationEnabled":"animationEnabled","animationType":"animationType","background":"background","cornerRadius":"cornerRadius","disableHitTestDuringAnimation":"disableHitTestDuringAnimation","elevation":"elevation","height":"height","i":"i","isClosing":"isClosing","isFixed":"isFixed","isFocusable":"isFocusable","isHitTestVisible":"isHitTestVisible","isPointerEnabled":"isPointerEnabled","isShowing":"isShowing","isShown":"isShown","measuringContentSize":"measuringContentSize","onClosed":"onClosed","onPopup":"onPopup","pointerBackground":"pointerBackground","pointerPosition":"pointerPosition","pointerSize":"pointerSize","popupGotFocus":"popupGotFocus","popupLostFocus":"popupLostFocus","useTopLayer":"useTopLayer","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","close":"close","connectedCallback":"connectedCallback","createShadow":"createShadow","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","showRelativeToExclusionRect":"showRelativeToExclusionRect","updateStyle":"updateStyle","register":"register"}}],"IgcPopupMeasuringContentSizeEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcPopupMeasuringContentSizeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcPropertyUpdatedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcPropertyUpdatedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue","propertyName":"propertyName"}}],"IgcProvideCalculatorEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcProvideCalculatorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","calculator":"calculator"}}],"IgcRectChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcRectChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newRect":"newRect","oldRect":"oldRect"}}],"IgcShapeDataSource":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcShapeDataSource","k":"class","s":"classes","m":{"constructor":"constructor","computedWorldRect":"computedWorldRect","count":"count","databaseSource":"databaseSource","deferImportCompleted":"deferImportCompleted","filter":"filter","i":"i","importCompleted":"importCompleted","importPending":"importPending","name":"name","shapefileSource":"shapefileSource","shapeHeader":"shapeHeader","shapeType":"shapeType","worldRect":"worldRect","dataBind":"dataBind","findByName":"findByName","getLargestShapeBoundsForRecord":"getLargestShapeBoundsForRecord","getMaxLongitude":"getMaxLongitude","getPointData":"getPointData","getRecord":"getRecord","getRecordBounds":"getRecordBounds","getRecordFieldNames":"getRecordFieldNames","getRecordsCount":"getRecordsCount","getRecordValue":"getRecordValue","getRecordValues":"getRecordValues","getWorldBounds":"getWorldBounds","removeRecord":"removeRecord","sendImportCompleted":"sendImportCompleted","setRecordValue":"setRecordValue","setRecordValues":"setRecordValues","setWorldBounds":"setWorldBounds","shiftAllShapes":"shiftAllShapes","shiftShapes":"shiftShapes"}}],"IgcShapefileRecord":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcShapefileRecord","k":"class","s":"classes","m":{"constructor":"constructor","bounds":"bounds","fieldsNames":"fieldsNames","fieldsTypes":"fieldsTypes","fieldValues":"fieldValues","i":"i","points":"points","shapeType":"shapeType","findByName":"findByName","getFieldValue":"getFieldValue","setFieldValue":"setFieldValue"}}],"IgcShapeFilterRecordEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcShapeFilterRecordEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","record":"record","shouldInclude":"shouldInclude"}}],"IgcSimpleDefaultTooltipComponent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcSimpleDefaultTooltipComponent","k":"class","s":"classes","m":{"constructor":"constructor","labelText":"labelText","onContentReady":"onContentReady","tooltip":"tooltip","htmlTagName":"htmlTagName","connectedCallback":"connectedCallback","createShadow":"createShadow","ensureDefaultTooltip":"ensureDefaultTooltip","getLabel":"getLabel","render":"render","register":"register"}}],"IgcStockChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcStockChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","addedSymbols":"addedSymbols","removedSymbols":"removedSymbols"}}],"IgcStyle":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcStyle","k":"class","s":"classes","m":{"constructor":"constructor","findByName":"findByName"}}],"IgcTemplateContentComponent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcTemplateContentComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","context":"context","owner":"owner","template":"template","attachedCallback":"attachedCallback","connectedCallback":"connectedCallback","createShadow":"createShadow","diconnectedCallBack":"diconnectedCallBack","markChanged":"markChanged","register":"register"}}],"IgcToolCommandArgumentCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcToolCommandArgumentCollection","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","add":"add","clear":"clear","contains":"contains","filter":"filter","findByName":"findByName","hasName":"hasName","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","toArray":"toArray"}}],"IgcTooltipContainerComponent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcTooltipContainerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","containerTemplate":"containerTemplate","context":"context","template":"template","attachedCallback":"attachedCallback","connectedCallback":"connectedCallback","createShadow":"createShadow","destroy":"destroy","diconnectedCallBack":"diconnectedCallBack","register":"register"}}],"IgcTransactionState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcTransactionState","k":"class","s":"classes","m":{"constructor":"constructor","id":"id","transactionType":"transactionType","value":"value","version":"version","findByName":"findByName"}}],"IgcTriangulationDataSource":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcTriangulationDataSource","k":"class","s":"classes","m":{"constructor":"constructor","i":"i","importCompleted":"importCompleted","source":"source","findByName":"findByName","getPointData":"getPointData","getTriangleData":"getTriangleData"}}],"IgcTriangulationStatusEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcTriangulationStatusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","currentStatus":"currentStatus"}}],"IgcUploadDataCompletedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcUploadDataCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelled":"cancelled","errorMessage":"errorMessage","result":"result","userState":"userState"}}],"IgcUploadStringCompletedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgcUploadStringCompletedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancelled":"cancelled","errorMessage":"errorMessage","result":"result","userState":"userState"}}],"IgEvent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IgEvent","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","emit":"emit","remove":"remove"}}],"IterableWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IterableWrapper","k":"class","s":"classes","m":{"constructor":"constructor","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject"}}],"IteratorWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/IteratorWrapper","k":"class","s":"classes","m":{"constructor":"constructor","current":"current","currentObject":"currentObject","dispose":"dispose","moveNext":"moveNext","reset":"reset"}}],"ModuleManager":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/ModuleManager","k":"class","s":"classes","m":{"constructor":"constructor","register":"register"}}],"NamePatcher":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/NamePatcher","k":"class","s":"classes","m":{"constructor":"constructor","_patched":"_patched","ensurePatched":"ensurePatched","ensureStylablePatched":"ensureStylablePatched"}}],"NotSupportedException":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/NotSupportedException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Nullable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Nullable","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","getUnderlyingType":"getUnderlyingType","referenceEquals":"referenceEquals"}}],"Nullable$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Nullable-1","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","isNullable":"isNullable","$t":"$t","nextHashCode":"nextHashCode","hasValue":"hasValue","value":"value","equals":"equals","getDefaultValue":"getDefaultValue","getHashCode":"getHashCode","getValueOrDefault":"getValueOrDefault","getValueOrDefault1":"getValueOrDefault1","memberwiseClone":"memberwiseClone","postDecrement":"postDecrement","postIncrement":"postIncrement","preDecrement":"preDecrement","preIncrement":"preIncrement","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","nullableEquals":"nullableEquals","referenceEquals":"referenceEquals"}}],"NumberFormatInfo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/NumberFormatInfo","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","currencySymbol":"currencySymbol","nativeDigits":"nativeDigits","negativeSign":"negativeSign","numberDecimalSeparator":"numberDecimalSeparator","numberGroupSeparator":"numberGroupSeparator","numberGroupSizes":"numberGroupSizes","percentSymbol":"percentSymbol","positiveSign":"positiveSign","clone":"clone","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"PlatformConstants":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/PlatformConstants","k":"class","s":"classes","m":{"constructor":"constructor","Postfix":"Postfix","Prefix":"Prefix"}}],"PointUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/PointUtil","k":"class","s":"classes","m":{"constructor":"constructor","create":"create","createXY":"createXY","equals":"equals","notEquals":"notEquals"}}],"PortalManager":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/PortalManager","k":"class","s":"classes","m":{"constructor":"constructor","renderer":"renderer","_destroy":"_destroy","getPortal":"getPortal","onChildrenChanged":"onChildrenChanged"}}],"PromiseFactory":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/PromiseFactory","k":"class","s":"classes","m":{"constructor":"constructor","promise":"promise","reject":"reject","resolve":"resolve"}}],"PromiseWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/PromiseWrapper","k":"class","s":"classes","m":{"constructor":"constructor","always":"always","done":"done","fail":"fail","state":"state","then":"then"}}],"PropertyChangedEventArgs":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/PropertyChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","propertyName":"propertyName","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"ReflectionUtil":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/ReflectionUtil","k":"class","s":"classes","m":{"constructor":"constructor","getPropertyGetter":"getPropertyGetter"}}],"RegisterElementHelper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/RegisterElementHelper","k":"class","s":"classes","m":{"constructor":"constructor","force":"force","registerElement":"registerElement"}}],"Stream":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Stream","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","canRead":"canRead","canSeek":"canSeek","canWrite":"canWrite","length":"length","position":"position","close":"close","dispose":"dispose","equals":"equals","flush":"flush","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","read":"read","readByte":"readByte","seek":"seek","setLength":"setLength","write":"write","writeByte":"writeByte","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"SystemException":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/SystemException","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","innerException":"innerException","message":"message","equals":"equals","getHashCode":"getHashCode","init1":"init1","init2":"init2","memberwiseClone":"memberwiseClone","toString":"toString","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"TemplateImplementation":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/TemplateImplementation","k":"class","s":"classes","m":{"constructor":"constructor","createTemplate":"createTemplate","renderTemplate":"renderTemplate","useLitHtml":"useLitHtml"}}],"Thread":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Thread","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","currentCulture":"currentCulture","currentThread":"currentThread","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"Type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/Type","k":"class","s":"classes","m":{"constructor":"constructor","_$nullNullable":"_$nullNullable","$type":"$type","baseType":"baseType","enumInfo":"enumInfo","identifier":"identifier","InstanceConstructor":"InstanceConstructor","interfaces":"interfaces","isEnumType":"isEnumType","isNullable":"isNullable","name":"name","specializationCache":"specializationCache","stringId":"stringId","typeArguments":"typeArguments","nextHashCode":"nextHashCode","fullName":"fullName","genericTypeArguments":"genericTypeArguments","isGenericType":"isGenericType","isGenericTypeDefinition":"isGenericTypeDefinition","isPrimitive":"isPrimitive","isValueType":"isValueType","typeName":"typeName","equals":"equals","generateString":"generateString","getHashCode":"getHashCode","getSpecId":"getSpecId","getStaticFields":"getStaticFields","initSelfReferences":"initSelfReferences","isAssignableFrom":"isAssignableFrom","isInstanceOfType":"isInstanceOfType","memberwiseClone":"memberwiseClone","specialize":"specialize","canAssign":"canAssign","canAssignSimple":"canAssignSimple","checkEquals":"checkEquals","compare":"compare","compareSimple":"compareSimple","createInstance":"createInstance","decodePropType":"decodePropType","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getDefaultValue":"getDefaultValue","getHashCodeStatic":"getHashCodeStatic","getPrimitiveHashCode":"getPrimitiveHashCode","op_Equality":"op_Equality","op_Inequality":"op_Inequality","referenceEquals":"referenceEquals"}}],"TypeRegistrar":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/TypeRegistrar","k":"class","s":"classes","m":{"constructor":"constructor","_registrar":"_registrar","callRegister":"callRegister","create":"create","createFromInternal":"createFromInternal","get":"get","isRegistered":"isRegistered","register":"register","registerCons":"registerCons"}}],"ValueType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/ValueType","k":"class","s":"classes","m":{"constructor":"constructor","$type":"$type","$t":"$t","nextHashCode":"nextHashCode","equals":"equals","getHashCode":"getHashCode","memberwiseClone":"memberwiseClone","compare":"compare","compareSimple":"compareSimple","equalsSimple":"equalsSimple","equalsStatic":"equalsStatic","getArrayOfProperties":"getArrayOfProperties","getArrayOfValues":"getArrayOfValues","getHashCodeStatic":"getHashCodeStatic","referenceEquals":"referenceEquals"}}],"WebComponentRenderer":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/WebComponentRenderer","k":"class","s":"classes","m":{"constructor":"constructor","rootWrapper":"rootWrapper","addSizeWatcher":"addSizeWatcher","append":"append","appendToBody":"appendToBody","clearTimeout":"clearTimeout","createElement":"createElement","createElementNS":"createElementNS","destroy":"destroy","endCSSQuery":"endCSSQuery","expandTemplate":"expandTemplate","get2DCanvasContext":"get2DCanvasContext","getClearTimeout":"getClearTimeout","getCssDefaultPropertyValue":"getCssDefaultPropertyValue","getCssDefaultValuesForClassCollection":"getCssDefaultValuesForClassCollection","getCurrentDiscovery":"getCurrentDiscovery","getDefaultFontHeight":"getDefaultFontHeight","getExternal":"getExternal","getHeightForFontString":"getHeightForFontString","getPortal":"getPortal","getRequestAnimationFrame":"getRequestAnimationFrame","getResourceString":"getResourceString","getSetTimeout":"getSetTimeout","getSubRenderer":"getSubRenderer","getWrapper":"getWrapper","globalListen":"globalListen","hasBody":"hasBody","hasWindow":"hasWindow","listen":"listen","querySelector":"querySelector","removeSizeWatcher":"removeSizeWatcher","runInMainZone":"runInMainZone","setCssQueryFontString":"setCssQueryFontString","setCultureId":"setCultureId","setResourceBundleId":"setResourceBundleId","setTimeout":"setTimeout","startCSSQuery":"startCSSQuery","supportsAnimation":"supportsAnimation","supportsDOMEvents":"supportsDOMEvents","updateRoot":"updateRoot","withRenderer":"withRenderer"}}],"WebComponentWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/classes/WebComponentWrapper","k":"class","s":"classes","m":{"constructor":"constructor","addClass":"addClass","append":"append","before":"before","clone":"clone","destroy":"destroy","findByClass":"findByClass","focus":"focus","getAttribute":"getAttribute","getChildAt":"getChildAt","getChildCount":"getChildCount","getNativeElement":"getNativeElement","getOffset":"getOffset","getOffsetHelper":"getOffsetHelper","getProperty":"getProperty","getStyleProperty":"getStyleProperty","getText":"getText","height":"height","hide":"hide","listen":"listen","outerHeight":"outerHeight","outerHeightWithMargin":"outerHeightWithMargin","outerWidth":"outerWidth","outerWidthWithMargin":"outerWidthWithMargin","parent":"parent","querySelectorAll":"querySelectorAll","remove":"remove","removeChild":"removeChild","removeChildren":"removeChildren","removeClass":"removeClass","setAttribute":"setAttribute","setOffset":"setOffset","setProperty":"setProperty","setRawPosition":"setRawPosition","setRawSize":"setRawSize","setRawStyleProperty":"setRawStyleProperty","setRawText":"setRawText","setRawXPosition":"setRawXPosition","setRawYPosition":"setRawYPosition","setStyleProperty":"setStyleProperty","setText":"setText","show":"show","unlistenAll":"unlistenAll","width":"width","withRenderer":"withRenderer"}}],"AngularWrapperPosition":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/AngularWrapperPosition","k":"interface","s":"interfaces","m":{"left":"left","top":"top"}}],"Delegate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/Delegate","k":"interface","s":"interfaces","m":{"original":"original","target":"target","enumerate":"enumerate"}}],"DomPortal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/DomPortal","k":"interface","s":"interfaces","m":{"componentRef":"componentRef","portalContainer":"portalContainer","destroy":"destroy"}}],"DomRenderer":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/DomRenderer","k":"interface","s":"interfaces","m":{"rootWrapper":"rootWrapper","append":"append","appendToBody":"appendToBody","clearTimeout":"clearTimeout","createElement":"createElement","createElementNS":"createElementNS","destroy":"destroy","endCSSQuery":"endCSSQuery","expandTemplate":"expandTemplate","get2DCanvasContext":"get2DCanvasContext","getClearTimeout":"getClearTimeout","getCssDefaultPropertyValue":"getCssDefaultPropertyValue","getCssDefaultValuesForClassCollection":"getCssDefaultValuesForClassCollection","getExternal":"getExternal","getHeightForFontString":"getHeightForFontString","getPortal":"getPortal","getRequestAnimationFrame":"getRequestAnimationFrame","getResourceString":"getResourceString","getSetTimeout":"getSetTimeout","getSubRenderer":"getSubRenderer","getWrapper":"getWrapper","globalListen":"globalListen","hasBody":"hasBody","hasWindow":"hasWindow","querySelector":"querySelector","runInMainZone":"runInMainZone","setCssQueryFontString":"setCssQueryFontString","setCultureId":"setCultureId","setResourceBundleId":"setResourceBundleId","setTimeout":"setTimeout","startCSSQuery":"startCSSQuery","supportsAnimation":"supportsAnimation","supportsDOMEvents":"supportsDOMEvents"}}],"DomWrapper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/DomWrapper","k":"interface","s":"interfaces","m":{"addClass":"addClass","append":"append","before":"before","clone":"clone","destroy":"destroy","findByClass":"findByClass","focus":"focus","getAttribute":"getAttribute","getChildAt":"getChildAt","getChildCount":"getChildCount","getNativeElement":"getNativeElement","getOffset":"getOffset","getProperty":"getProperty","getStyleProperty":"getStyleProperty","getText":"getText","height":"height","hide":"hide","listen":"listen","outerHeight":"outerHeight","outerHeightWithMargin":"outerHeightWithMargin","outerWidth":"outerWidth","outerWidthWithMargin":"outerWidthWithMargin","parent":"parent","querySelectorAll":"querySelectorAll","remove":"remove","removeChild":"removeChild","removeChildren":"removeChildren","removeClass":"removeClass","setAttribute":"setAttribute","setOffset":"setOffset","setProperty":"setProperty","setRawPosition":"setRawPosition","setRawSize":"setRawSize","setRawStyleProperty":"setRawStyleProperty","setRawText":"setRawText","setRawXPosition":"setRawXPosition","setRawYPosition":"setRawYPosition","setStyleProperty":"setStyleProperty","setText":"setText","show":"show","unlistenAll":"unlistenAll","width":"width"}}],"DomWrapperPosition":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/DomWrapperPosition","k":"interface","s":"interfaces","m":{"left":"left","top":"top"}}],"EnumInfo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/EnumInfo","k":"interface","s":"interfaces","m":{"actualNames":"actualNames","actualNamesValuesMap":"actualNamesValuesMap","mustCoerceToInt":"mustCoerceToInt","names":"names","namesValuesMap":"namesValuesMap"}}],"ICollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/ICollection","k":"interface","s":"interfaces","m":{"count":"count","isSynchronized":"isSynchronized","syncRoot":"syncRoot","copyTo":"copyTo","getEnumeratorObject":"getEnumeratorObject"}}],"ICollection$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/ICollection-1","k":"interface","s":"interfaces","m":{"count":"count","isReadOnly":"isReadOnly","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","remove":"remove"}}],"IComparable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IComparable","k":"interface","s":"interfaces","m":{"compareToObject":"compareToObject"}}],"IComparable$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IComparable-1","k":"interface","s":"interfaces","m":{"compareTo":"compareTo"}}],"IConvertible":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IConvertible","k":"interface","s":"interfaces","m":{"toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toSByte":"toSByte","toSingle":"toSingle","toString1":"toString1","toUInt16":"toUInt16","toUInt32":"toUInt32","toUInt64":"toUInt64"}}],"IDictionary":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IDictionary","k":"interface","s":"interfaces"}],"IDisposable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IDisposable","k":"interface","s":"interfaces","m":{"dispose":"dispose"}}],"IEnumerable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEnumerable","k":"interface","s":"interfaces","m":{"getEnumeratorObject":"getEnumeratorObject"}}],"IEnumerable$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEnumerable-1","k":"interface","s":"interfaces","m":{"getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject"}}],"IEnumerator":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEnumerator","k":"interface","s":"interfaces","m":{"currentObject":"currentObject","moveNext":"moveNext","reset":"reset"}}],"IEnumerator$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEnumerator-1","k":"interface","s":"interfaces","m":{"current":"current","currentObject":"currentObject","dispose":"dispose","moveNext":"moveNext","reset":"reset"}}],"IEqualityComparer":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEqualityComparer","k":"interface","s":"interfaces","m":{"equals":"equals","getHashCode":"getHashCode"}}],"IEqualityComparer$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEqualityComparer-1","k":"interface","s":"interfaces","m":{"equalsC":"equalsC","getHashCodeC":"getHashCodeC"}}],"IEquatable$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IEquatable-1","k":"interface","s":"interfaces","m":{"equals":"equals"}}],"IFormatProvider":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IFormatProvider","k":"interface","s":"interfaces","m":{"getFormat":"getFormat"}}],"IgDataTemplate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IgDataTemplate","k":"interface","s":"interfaces","m":{"measure":"measure","passCompleted":"passCompleted","passStarting":"passStarting","render":"render"}}],"IgPoint":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IgPoint","k":"interface","s":"interfaces","m":{"x":"x","y":"y"}}],"IgRect":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IgRect","k":"interface","s":"interfaces","m":{"height":"height","left":"left","top":"top","width":"width"}}],"IgSize":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IgSize","k":"interface","s":"interfaces","m":{"height":"height","width":"width"}}],"IList":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IList","k":"interface","s":"interfaces","m":{"count":"count","isFixedSize":"isFixedSize","isReadOnly":"isReadOnly","isSynchronized":"isSynchronized","syncRoot":"syncRoot","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"IList$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IList-1","k":"interface","s":"interfaces","m":{"count":"count","isReadOnly":"isReadOnly","add":"add","clear":"clear","contains":"contains","copyTo":"copyTo","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"INotifyPropertyChanged":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/INotifyPropertyChanged","k":"interface","s":"interfaces","m":{"propertyChanged":"propertyChanged"}}],"IRenderTemplateObject":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/IRenderTemplateObject","k":"interface","s":"interfaces","m":{"strings":"strings","values":"values"}}],"ITemplateObject":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/ITemplateObject","k":"interface","s":"interfaces","m":{"strings":"strings","values":"values"}}],"LegacyGestureEvent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/LegacyGestureEvent","k":"interface","s":"interfaces","m":{"scale":"scale"}}],"NormalizedEvent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/NormalizedEvent","k":"interface","s":"interfaces","m":{"button":"button","originalEvent":"originalEvent","pageX":"pageX","pageY":"pageY","target":"target","wheelDelta":"wheelDelta"}}],"XmlAttribute":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlAttribute","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlDocument":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlDocument","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","documentElement":"documentElement","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","createElementNS":"createElementNS","createNode":"createNode","getAttributeNodeNS":"getAttributeNodeNS","importNode":"importNode","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlElement":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlElement","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlLinkedNode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlLinkedNode","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlNamedNodeMap":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlNamedNodeMap","k":"interface","s":"interfaces","m":{"getQualifiedItem":"getQualifiedItem"}}],"XmlNode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlNode","k":"interface","s":"interfaces","m":{"attributes":"attributes","baseName":"baseName","childNodes":"childNodes","localName":"localName","namespaceURI":"namespaceURI","nodeType":"nodeType","nodeValue":"nodeValue","ownerDocument":"ownerDocument","text":"text","textContent":"textContent","value":"value","xml":"xml","appendChild":"appendChild","cloneNode":"cloneNode","getAttributeNodeNS":"getAttributeNodeNS","removeChild":"removeChild","setAttributeNode":"setAttributeNode"}}],"XmlNodeList":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/interfaces/XmlNodeList","k":"interface","s":"interfaces","m":{"length":"length","getQualifiedItem":"getQualifiedItem","item":"item"}}],"BaseControlTheme":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/BaseControlTheme","k":"enum","s":"enums","m":{"Default":"Default","DenaliLight":"DenaliLight","MaterialLight":"MaterialLight","RevealDark":"RevealDark","RevealLight":"RevealLight","SlingshotDark":"SlingshotDark","SlingshotLight":"SlingshotLight"}}],"CalendarWeekRule":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CalendarWeekRule","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"CalloutCollisionMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CalloutCollisionMode","k":"enum","s":"enums","m":{"Auto":"Auto","Greedy":"Greedy","GreedyCenterOfMass":"GreedyCenterOfMass","RadialBestFit":"RadialBestFit","RadialCenter":"RadialCenter","RadialInsideEnd":"RadialInsideEnd","RadialOutsideEnd":"RadialOutsideEnd","SimulatedAnnealing":"SimulatedAnnealing"}}],"CancelBehavior":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CancelBehavior","k":"enum","s":"enums","m":{"KeepCurrent":"KeepCurrent","ToBeginning":"ToBeginning","ToEnd":"ToEnd"}}],"CaptureImageFormat":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CaptureImageFormat","k":"enum","s":"enums","m":{"Jpeg":"Jpeg","Png":"Png"}}],"CodeGenerationLibraryItemContentLocation":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CodeGenerationLibraryItemContentLocation","k":"enum","s":"enums","m":{"CDN":"CDN","CDNSkipHydrate":"CDNSkipHydrate","Code":"Code","JsonFile":"JsonFile"}}],"CodeGenerationLibraryItemPlatform":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CodeGenerationLibraryItemPlatform","k":"enum","s":"enums","m":{"All":"All","AllWeb":"AllWeb","Android":"Android","Angular":"Angular","Blazor":"Blazor","Desktop":"Desktop","DotNet":"DotNet","iOS":"iOS","JQuery":"JQuery","Kotlin":"Kotlin","React":"React","Swift":"Swift","Unknown":"Unknown","Web":"Web","WebComponents":"WebComponents","Win":"Win","WindowsForms":"WindowsForms","WPF":"WPF","XPlat":"XPlat"}}],"CodeGenerationLibraryItemType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CodeGenerationLibraryItemType","k":"enum","s":"enums","m":{"Data":"Data","EventHandler":"EventHandler","Template":"Template","Unknown":"Unknown"}}],"CodeGenerationTargetPlatforms":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CodeGenerationTargetPlatforms","k":"enum","s":"enums","m":{"Angular":"Angular","Blazor":"Blazor","Kotlin":"Kotlin","React":"React","Swift":"Swift","WebComponents":"WebComponents","WindowsForms":"WindowsForms","WPF":"WPF"}}],"CollisionGeometryType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CollisionGeometryType","k":"enum","s":"enums","m":{"Box":"Box","Boxes":"Boxes","Circle":"Circle","PieSlice":"PieSlice"}}],"CompareOptions":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/CompareOptions","k":"enum","s":"enums","m":{"IgnoreCase":"IgnoreCase","IgnoreKanaType":"IgnoreKanaType","IgnoreNonSpace":"IgnoreNonSpace","IgnoreSymbols":"IgnoreSymbols","IgnoreWidth":"IgnoreWidth","None":"None","Ordinal":"Ordinal","OrdinalIgnoreCase":"OrdinalIgnoreCase","StringSort":"StringSort"}}],"ControlDisplayDensity":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ControlDisplayDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"DataAbbreviationMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataAbbreviationMode","k":"enum","s":"enums","m":{"Auto":"Auto","Billion":"Billion","Independent":"Independent","Kilo":"Kilo","Million":"Million","None":"None","Quadrillion":"Quadrillion","Shared":"Shared","Trillion":"Trillion","Unset":"Unset"}}],"DataLegendHeaderDateMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendHeaderDateMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendHeaderTimeMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendHeaderTimeMode","k":"enum","s":"enums","m":{"Auto":"Auto","FullStyle":"FullStyle","LongStyle":"LongStyle","MediumStyle":"MediumStyle","None":"None","ShortStyle":"ShortStyle"}}],"DataLegendLabelMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendLayoutMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendLayoutMode","k":"enum","s":"enums","m":{"Table":"Table","Vertical":"Vertical"}}],"DataLegendSeriesFamily":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendSeriesFamily","k":"enum","s":"enums","m":{"Category":"Category","Financial":"Financial","Geographic":"Geographic","Highlight":"Highlight","Indicator":"Indicator","Polar":"Polar","Radial":"Radial","Range":"Range","Scatter":"Scatter","Shape":"Shape","Stacked":"Stacked"}}],"DataLegendSeriesValueType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendSeriesValueType","k":"enum","s":"enums","m":{"Angle":"Angle","Average":"Average","Change":"Change","Close":"Close","Fill":"Fill","High":"High","Low":"Low","Open":"Open","Radius":"Radius","Range":"Range","Summary":"Summary","TypicalPrice":"TypicalPrice","Value":"Value","Volume":"Volume","XValue":"XValue","YValue":"YValue"}}],"DataLegendSummaryType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendSummaryType","k":"enum","s":"enums","m":{"Auto":"Auto","Average":"Average","Max":"Max","Min":"Min","None":"None","Total":"Total"}}],"DataLegendUnitsMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendUnitsMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Visible":"Visible"}}],"DataLegendValueMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataLegendValueMode","k":"enum","s":"enums","m":{"Auto":"Auto","Currency":"Currency","Decimal":"Decimal"}}],"DataSeriesAxisType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSeriesAxisType","k":"enum","s":"enums","m":{"Category":"Category","CategoryAngle":"CategoryAngle","ContinuousDateTime":"ContinuousDateTime","DiscreteDateTime":"DiscreteDateTime","Linear":"Linear","Logarithmic":"Logarithmic","NotApplicable":"NotApplicable","ProportionalCategoryAngle":"ProportionalCategoryAngle","RadialLinear":"RadialLinear","RadialLogarithmic":"RadialLogarithmic"}}],"DataSeriesIntent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSeriesIntent","k":"enum","s":"enums","m":{"AxisDateValue":"AxisDateValue","AxisLabelValue":"AxisLabelValue","CloseSeriesValue":"CloseSeriesValue","DontPlot":"DontPlot","GenerationInput":"GenerationInput","HighSeriesValue":"HighSeriesValue","LowSeriesValue":"LowSeriesValue","OpenSeriesValue":"OpenSeriesValue","PrimarySeriesValue":"PrimarySeriesValue","SalesFixedCost":"SalesFixedCost","SalesMarginalProfit":"SalesMarginalProfit","SalesRevenue":"SalesRevenue","SalesTotalCost":"SalesTotalCost","SalesUnit":"SalesUnit","SalesVariableCost":"SalesVariableCost","SeriesAngle":"SeriesAngle","SeriesFill":"SeriesFill","SeriesGroup":"SeriesGroup","SeriesLabel":"SeriesLabel","SeriesRadius":"SeriesRadius","SeriesShape":"SeriesShape","SeriesTitle":"SeriesTitle","SeriesValue":"SeriesValue","SeriesX":"SeriesX","SeriesY":"SeriesY","VolumeSeriesValue":"VolumeSeriesValue"}}],"DataSeriesMarker":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSeriesMarker","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Diamond":"Diamond","Hexagon":"Hexagon","Hexagram":"Hexagram","Hidden":"Hidden","None":"None","Pentagon":"Pentagon","Pentagram":"Pentagram","Pyramid":"Pyramid","Smart":"Smart","Square":"Square","Tetragram":"Tetragram","Triangle":"Triangle"}}],"DataSeriesPropertyType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSeriesPropertyType","k":"enum","s":"enums","m":{"DateTime":"DateTime","Numeric":"Numeric","string1":"string1"}}],"DataSeriesType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","CalloutLayer":"CalloutLayer","CategoryHighlightLayer":"CategoryHighlightLayer","CategoryItemHighlightLayer":"CategoryItemHighlightLayer","CategoryToolTipLayer":"CategoryToolTipLayer","Column":"Column","CrosshairLayer":"CrosshairLayer","DataToolTipLayer":"DataToolTipLayer","FinalValueLayer":"FinalValueLayer","FinancialIndicator":"FinancialIndicator","FinancialOverlay":"FinancialOverlay","FinancialPrice":"FinancialPrice","GeographicBubble":"GeographicBubble","GeographicContour":"GeographicContour","GeographicHeat":"GeographicHeat","GeographicHighDensity":"GeographicHighDensity","GeographicPolygon":"GeographicPolygon","GeographicPolyline":"GeographicPolyline","GeographicScatter":"GeographicScatter","GeographicScatterArea":"GeographicScatterArea","ItemToolTipLayer":"ItemToolTipLayer","Line":"Line","LinearGauge":"LinearGauge","Pie":"Pie","Point":"Point","RadialGauge":"RadialGauge","RadialLine":"RadialLine","ScatterArea":"ScatterArea","ScatterBubble":"ScatterBubble","ScatterContour":"ScatterContour","ScatterHighDensity":"ScatterHighDensity","ScatterLine":"ScatterLine","ScatterPoint":"ScatterPoint","ScatterPolygon":"ScatterPolygon","ScatterPolyline":"ScatterPolyline","ScatterSpline":"ScatterSpline","Spline":"Spline","SplineArea":"SplineArea","Stacked":"Stacked","StepArea":"StepArea","StepLine":"StepLine","TrendLineLayer":"TrendLineLayer","Unknown":"Unknown","UserAnnotationToolTipLayer":"UserAnnotationToolTipLayer","ValueLayer":"ValueLayer","ValueOverlay":"ValueOverlay","Waterfall":"Waterfall"}}],"DataSourcePageRequestPriority":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSourcePageRequestPriority","k":"enum","s":"enums","m":{"High":"High","Low":"Low","Normal":"Normal"}}],"DataSourceRowType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSourceRowType","k":"enum","s":"enums","m":{"Custom":"Custom","Normal":"Normal","SectionFooter":"SectionFooter","SectionHeader":"SectionHeader","ShiftedRow":"ShiftedRow","SummaryRowRoot":"SummaryRowRoot","SummaryRowSection":"SummaryRowSection"}}],"DataSourceSchemaPropertyType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","ByteValue":"ByteValue","DateTimeOffsetValue":"DateTimeOffsetValue","DateTimeValue":"DateTimeValue","DecimalValue":"DecimalValue","DoubleValue":"DoubleValue","IntValue":"IntValue","LongValue":"LongValue","ObjectValue":"ObjectValue","ShortValue":"ShortValue","SingleValue":"SingleValue","StringValue":"StringValue"}}],"DataSourceSectionHeaderDisplayMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSourceSectionHeaderDisplayMode","k":"enum","s":"enums","m":{"Combined":"Combined","Split":"Split"}}],"DataSourceSummaryOperand":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSourceSummaryOperand","k":"enum","s":"enums","m":{"Average":"Average","Count":"Count","Custom":"Custom","Max":"Max","Min":"Min","Sum":"Sum"}}],"DataSourceSummaryScope":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataSourceSummaryScope","k":"enum","s":"enums","m":{"Both":"Both","Groups":"Groups","None":"None","Root":"Root"}}],"DataTooltipGroupedPositionX":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataTooltipGroupedPositionX","k":"enum","s":"enums","m":{"Auto":"Auto","LeftEdgeSnapLeft":"LeftEdgeSnapLeft","LeftEdgeSnapMiddle":"LeftEdgeSnapMiddle","LeftEdgeSnapRight":"LeftEdgeSnapRight","PinLeft":"PinLeft","PinMiddle":"PinMiddle","PinRight":"PinRight","RightEdgeSnapLeft":"RightEdgeSnapLeft","RightEdgeSnapMiddle":"RightEdgeSnapMiddle","RightEdgeSnapRight":"RightEdgeSnapRight","SnapLeft":"SnapLeft","SnapMiddle":"SnapMiddle","SnapRight":"SnapRight","TrackLeft":"TrackLeft","TrackMiddle":"TrackMiddle","TrackRight":"TrackRight"}}],"DataTooltipGroupedPositionY":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataTooltipGroupedPositionY","k":"enum","s":"enums","m":{"Auto":"Auto","BottomEdgeSnapBottom":"BottomEdgeSnapBottom","BottomEdgeSnapMiddle":"BottomEdgeSnapMiddle","BottomEdgeSnapTop":"BottomEdgeSnapTop","PinBottom":"PinBottom","PinMiddle":"PinMiddle","PinTop":"PinTop","SnapBottom":"SnapBottom","SnapMiddle":"SnapMiddle","SnapTop":"SnapTop","TopEdgeSnapBottom":"TopEdgeSnapBottom","TopEdgeSnapMiddle":"TopEdgeSnapMiddle","TopEdgeSnapTop":"TopEdgeSnapTop","TrackBottom":"TrackBottom","TrackMiddle":"TrackMiddle","TrackTop":"TrackTop"}}],"DataToolTipLayerGroupingMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DataToolTipLayerGroupingMode","k":"enum","s":"enums","m":{"Auto":"Auto","Grouped":"Grouped","Individual":"Individual"}}],"DateTimeKind":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DateTimeKind","k":"enum","s":"enums","m":{"Local":"Local","Unspecified":"Unspecified","Utc":"Utc"}}],"DayOfWeek":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}},{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/DayOfWeek","k":"enum","s":"enums","m":{"Friday":"Friday","Monday":"Monday","Saturday":"Saturday","Sunday":"Sunday","Thursday":"Thursday","Tuesday":"Tuesday","Wednesday":"Wednesday"}}],"DescriptionPathOperatorType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/DescriptionPathOperatorType","k":"enum","s":"enums","m":{"Combine":"Combine","None":"None"}}],"ElevationMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ElevationMode","k":"enum","s":"enums","m":{"Auto":"Auto","HaloShadow":"HaloShadow","MaterialShadow":"MaterialShadow"}}],"EntityHandling":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/EntityHandling","k":"enum","s":"enums","m":{"ExpandCharEntities":"ExpandCharEntities","ExpandEntities":"ExpandEntities"}}],"ErrorBarCalculatorReference":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ErrorBarCalculatorReference","k":"enum","s":"enums","m":{"X":"X","Y":"Y"}}],"ErrorBarCalculatorType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ErrorBarCalculatorType","k":"enum","s":"enums","m":{"Data":"Data","Fixed":"Fixed","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"FastItemsSourceEventAction":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FastItemsSourceEventAction","k":"enum","s":"enums","m":{"Change":"Change","Insert":"Insert","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"FeatureState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FeatureState","k":"enum","s":"enums","m":{"Disabled":"Disabled","Enabled":"Enabled","Unset":"Unset"}}],"FillRule":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FillRule","k":"enum","s":"enums","m":{"EvenOdd":"EvenOdd","Nonzero":"Nonzero"}}],"FilterExpressionFunctionType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FilterExpressionFunctionType","k":"enum","s":"enums","m":{"Cast":"Cast","Ceiling":"Ceiling","Concat":"Concat","Contains":"Contains","Date":"Date","Day":"Day","EndsWith":"EndsWith","Env":"Env","Floor":"Floor","Hour":"Hour","IndexOf":"IndexOf","IsOf":"IsOf","Length":"Length","Minute":"Minute","Month":"Month","Now":"Now","Replace":"Replace","Round":"Round","Second":"Second","StartsWith":"StartsWith","Substring":"Substring","Time":"Time","ToLower":"ToLower","ToUpper":"ToUpper","Trim":"Trim","Year":"Year"}}],"FilterExpressionOperatorType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FilterExpressionOperatorType","k":"enum","s":"enums","m":{"Add":"Add","And":"And","Divide":"Divide","Equal":"Equal","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","Grouping":"Grouping","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","Modulo":"Modulo","Multiply":"Multiply","None":"None","Not":"Not","NotEqual":"NotEqual","Or":"Or","Subtract":"Subtract"}}],"FilterExpressionWrapperType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FilterExpressionWrapperType","k":"enum","s":"enums","m":{"Last30":"Last30","Last365":"Last365","Last7":"Last7","LastMonth":"LastMonth","LastQuarter":"LastQuarter","LastWeek":"LastWeek","LastYear":"LastYear","MonthToDate":"MonthToDate","NextMonth":"NextMonth","NextQuarter":"NextQuarter","NextWeek":"NextWeek","NextYear":"NextYear","Q1":"Q1","Q2":"Q2","Q3":"Q3","Q4":"Q4","QuarterToDate":"QuarterToDate","ThisMonth":"ThisMonth","ThisQuarter":"ThisQuarter","ThisWeek":"ThisWeek","ThisYear":"ThisYear","Today":"Today","Tomorrow":"Tomorrow","TrailingTwelveMonths":"TrailingTwelveMonths","YearToDate":"YearToDate","Yesterday":"Yesterday"}}],"FlatDataProviderJoinCollisionType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FlatDataProviderJoinCollisionType","k":"enum","s":"enums","m":{"Auto":"Auto","LeftOnly":"LeftOnly","PreferLeft":"PreferLeft","PreferRight":"PreferRight","RightOnly":"RightOnly"}}],"FlatDataProviderJoinType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/FlatDataProviderJoinType","k":"enum","s":"enums","m":{"Join":"Join","Left":"Left","Right":"Right"}}],"Formatting":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/Formatting","k":"enum","s":"enums","m":{"Indented":"Indented","None":"None"}}],"GenericDataSourceSchemaPropertyType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/GenericDataSourceSchemaPropertyType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","DateTimeValue":"DateTimeValue","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"GeometryType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/GeometryType","k":"enum","s":"enums","m":{"Ellipse":"Ellipse","Group":"Group","Line":"Line","Path":"Path","Rectangle":"Rectangle"}}],"GradientDirection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/GradientDirection","k":"enum","s":"enums","m":{"BottomTop":"BottomTop","LeftRight":"LeftRight","Radial":"Radial","RightLeft":"RightLeft","TopBottom":"TopBottom"}}],"HighlightedValueDisplayMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/HighlightedValueDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"HighlightedValueLabelMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/HighlightedValueLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","LabelBoth":"LabelBoth","PreferHighlighted":"PreferHighlighted","PreferOriginal":"PreferOriginal"}}],"HighlightingState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/HighlightingState","k":"enum","s":"enums","m":{"inward":"inward","outward":"outward","Static":"Static"}}],"HighlightState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/HighlightState","k":"enum","s":"enums","m":{"Hidden":"Hidden","Hiding":"Hiding","Showing":"Showing","Shown":"Shown","StartHiding":"StartHiding","StartShowing":"StartShowing"}}],"ImageLoadStatus":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ImageLoadStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Completed":"Completed","Failed":"Failed","Loading":"Loading","Unknown":"Unknown"}}],"InteractionState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/InteractionState","k":"enum","s":"enums","m":{"Auto":"Auto","DragPan":"DragPan","DragSelect":"DragSelect","DragZoom":"DragZoom","None":"None"}}],"InterpolationMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/InterpolationMode","k":"enum","s":"enums","m":{"HSV":"HSV","RGB":"RGB"}}],"JsonDictionaryValueType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/JsonDictionaryValueType","k":"enum","s":"enums","m":{"BooleanValue":"BooleanValue","NullValue":"NullValue","NumberValue":"NumberValue","StringValue":"StringValue"}}],"Key":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/Key","k":"enum","s":"enums","m":{"A":"A","Add":"Add","Alt":"Alt","B":"B","Back":"Back","C":"C","CapsLock":"CapsLock","Ctrl":"Ctrl","D":"D","D0":"D0","D1":"D1","D2":"D2","D3":"D3","D4":"D4","D5":"D5","D6":"D6","D7":"D7","D8":"D8","D9":"D9","Decimal":"Decimal","del":"del","Divide":"Divide","Down":"Down","E":"E","End":"End","Enter":"Enter","Escape":"Escape","F":"F","F1":"F1","F10":"F10","F11":"F11","F12":"F12","F2":"F2","F3":"F3","F4":"F4","F5":"F5","F6":"F6","F7":"F7","F8":"F8","F9":"F9","G":"G","H":"H","Home":"Home","I":"I","Insert":"Insert","J":"J","K":"K","L":"L","Left":"Left","M":"M","Multiply":"Multiply","N":"N","None":"None","NumPad0":"NumPad0","NumPad1":"NumPad1","NumPad2":"NumPad2","NumPad3":"NumPad3","NumPad4":"NumPad4","NumPad5":"NumPad5","NumPad6":"NumPad6","NumPad7":"NumPad7","NumPad8":"NumPad8","NumPad9":"NumPad9","O":"O","OemMinus":"OemMinus","OemPipe":"OemPipe","OemPlus":"OemPlus","OemQuestion":"OemQuestion","OemSemicolon":"OemSemicolon","OemTilde":"OemTilde","P":"P","PageDown":"PageDown","PageUp":"PageUp","Q":"Q","R":"R","Right":"Right","S":"S","Shift":"Shift","Space":"Space","Subtract":"Subtract","T":"T","Tab":"Tab","U":"U","Unknown":"Unknown","Up":"Up","V":"V","W":"W","X":"X","Y":"Y","Z":"Z"}}],"LegendEmptyValuesMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/LegendEmptyValuesMode","k":"enum","s":"enums","m":{"AlwaysHidden":"AlwaysHidden","AlwaysVisible":"AlwaysVisible","ShowWhenNoOthersCategory":"ShowWhenNoOthersCategory"}}],"LegendItemBadgeMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/LegendItemBadgeMode","k":"enum","s":"enums","m":{"MatchSeries":"MatchSeries","Simplified":"Simplified"}}],"LegendItemBadgeShape":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/LegendItemBadgeShape","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bar":"Bar","Circle":"Circle","Column":"Column","Hidden":"Hidden","Line":"Line","Marker":"Marker","Square":"Square"}}],"ListSortDirection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ListSortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"ModifierKeys":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ModifierKeys","k":"enum","s":"enums","m":{"Alt":"Alt","Apple":"Apple","Control":"Control","None":"None","Shift":"Shift","Windows":"Windows"}}],"MouseButton":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/MouseButton","k":"enum","s":"enums","m":{"Left":"Left","Middle":"Middle","Right":"Right","Unkown":"Unkown"}}],"NativeUIElementFactoryFlavor":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/NativeUIElementFactoryFlavor","k":"enum","s":"enums","m":{"NativePlatform":"NativePlatform","None":"None","XPlat":"XPlat"}}],"NeedleBeingDragged":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/NeedleBeingDragged","k":"enum","s":"enums","m":{"Highlight":"Highlight","Main":"Main","None":"None"}}],"NotifyCollectionChangedAction":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/NotifyCollectionChangedAction","k":"enum","s":"enums","m":{"Add":"Add","Remove":"Remove","Replace":"Replace","Reset":"Reset"}}],"NumberStyles":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/NumberStyles","k":"enum","s":"enums","m":{"AllowCurrencySymbol":"AllowCurrencySymbol","AllowDecimalPoint":"AllowDecimalPoint","AllowExponent":"AllowExponent","AllowHexSpecifier":"AllowHexSpecifier","AllowLeadingSign":"AllowLeadingSign","AllowLeadingWhite":"AllowLeadingWhite","AllowParentheses":"AllowParentheses","AllowThousands":"AllowThousands","AllowTrailingSign":"AllowTrailingSign","AllowTrailingWhite":"AllowTrailingWhite","Any":"Any","Currency":"Currency","Float":"Float","HexNumber":"HexNumber","Integer":"Integer","None":"None","Number":"Number"}}],"OthersCategoryType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/OthersCategoryType","k":"enum","s":"enums","m":{"Number":"Number","Percent":"Percent"}}],"PathSegmentType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PathSegmentType","k":"enum","s":"enums","m":{"Arc":"Arc","Bezier":"Bezier","Line":"Line","PolyBezier":"PolyBezier","PolyLine":"PolyLine"}}],"PenLineCap":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PenLineCap","k":"enum","s":"enums","m":{"Flat":"Flat","Round":"Round","Square":"Square","Triangle":"Triangle"}}],"PenLineJoin":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PenLineJoin","k":"enum","s":"enums","m":{"Bevel":"Bevel","Miter":"Miter","Round":"Round"}}],"PermissionState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PermissionState","k":"enum","s":"enums","m":{"None":"None","Unrestricted":"Unrestricted"}}],"PopupAlignment":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PopupAlignment","k":"enum","s":"enums","m":{"Auto":"Auto","Far":"Far","Middle":"Middle","Near":"Near"}}],"PopupAnimationType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PopupAnimationType","k":"enum","s":"enums","m":{"FadeInOutSlide":"FadeInOutSlide","GrowShrink":"GrowShrink"}}],"PopupDirection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PopupDirection","k":"enum","s":"enums","m":{"Auto":"Auto","Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"PopupPointerPosition":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/PopupPointerPosition","k":"enum","s":"enums","m":{"Auto":"Auto","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"RadialLabelMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/RadialLabelMode","k":"enum","s":"enums","m":{"Auto":"Auto","Label":"Label","LabelAndPercentage":"LabelAndPercentage","LabelAndValue":"LabelAndValue","LabelAndValueAndPercentage":"LabelAndValueAndPercentage","Normal":"Normal","Percentage":"Percentage","Value":"Value","ValueAndPercentage":"ValueAndPercentage"}}],"ReadState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ReadState","k":"enum","s":"enums","m":{"Closed":"Closed","EndOfFile":"EndOfFile","Error":"Error","Initial":"Initial","Interactive":"Interactive"}}],"RegexOptions":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/RegexOptions","k":"enum","s":"enums","m":{"Compiled":"Compiled","CultureInvariant":"CultureInvariant","ECMAScript":"ECMAScript","ExplicitCapture":"ExplicitCapture","IgnoreCase":"IgnoreCase","IgnorePatternWhitespace":"IgnorePatternWhitespace","Multiline":"Multiline","None":"None","RightToLeft":"RightToLeft","Singleline":"Singleline"}}],"ScrollbarStyle":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ScrollbarStyle","k":"enum","s":"enums","m":{"Default":"Default","Fading":"Fading","Hidden":"Hidden","Thin":"Thin"}}],"SecurityAction":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/SecurityAction","k":"enum","s":"enums","m":{"Assert":"Assert","Demand":"Demand","Deny":"Deny","InheritanceDemand":"InheritanceDemand","LinkDemand":"LinkDemand","PermitOnly":"PermitOnly","RequestMinimum":"RequestMinimum","RequestOptional":"RequestOptional","RequestRefuse":"RequestRefuse"}}],"SeekOrigin":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/SeekOrigin","k":"enum","s":"enums","m":{"Begin":"Begin","Current":"Current","End":"End"}}],"SeriesHighlightedValuesDisplayMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/SeriesHighlightedValuesDisplayMode","k":"enum","s":"enums","m":{"Auto":"Auto","Hidden":"Hidden","Overlay":"Overlay"}}],"ShapeType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ShapeType","k":"enum","s":"enums","m":{"None":"None","Point":"Point","PointM":"PointM","PointZ":"PointZ","Polygon":"Polygon","PolygonM":"PolygonM","PolygonZ":"PolygonZ","PolyLine":"PolyLine","PolyLineM":"PolyLineM","PolyLineZ":"PolyLineZ","PolyPatch":"PolyPatch","PolyPoint":"PolyPoint","PolyPointM":"PolyPointM","PolyPointZ":"PolyPointZ"}}],"SmartPosition":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/SmartPosition","k":"enum","s":"enums","m":{"CenterBottom":"CenterBottom","CenterCenter":"CenterCenter","CenterTop":"CenterTop","LeftBottom":"LeftBottom","LeftCenter":"LeftCenter","LeftTop":"LeftTop","RightBottom":"RightBottom","RightCenter":"RightCenter","RightTop":"RightTop"}}],"Stretch":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/Stretch","k":"enum","s":"enums","m":{"Fill":"Fill","None":"None","Uniform":"Uniform","UniformToFill":"UniformToFill"}}],"StringComparison":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/StringComparison","k":"enum","s":"enums","m":{"CurrentCulture":"CurrentCulture","CurrentCultureIgnoreCase":"CurrentCultureIgnoreCase","InvariantCulture":"InvariantCulture","InvariantCultureIgnoreCase":"InvariantCultureIgnoreCase","Ordinal":"Ordinal","OrdinalIgnoreCase":"OrdinalIgnoreCase"}}],"StringSplitOptions":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/StringSplitOptions","k":"enum","s":"enums","m":{"None":"None","RemoveEmptyEntries":"RemoveEmptyEntries"}}],"SweepDirection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/SweepDirection","k":"enum","s":"enums","m":{"Clockwise":"Clockwise","Counterclockwise":"Counterclockwise"}}],"TaskStatus":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TaskStatus","k":"enum","s":"enums","m":{"Canceled":"Canceled","Created":"Created","Faulted":"Faulted","RanToCompletion":"RanToCompletion"}}],"ToolActionButtonInfoDisplayType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolActionButtonInfoDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionFieldSelectorInfoType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolActionFieldSelectorInfoType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolActionInfoDensity":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolActionInfoDensity","k":"enum","s":"enums","m":{"Auto":"Auto","Comfortable":"Comfortable","Compact":"Compact","Cosy":"Cosy","Minimal":"Minimal"}}],"ToolActionType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolActionType","k":"enum","s":"enums","m":{"Button":"Button","ButtonPair":"ButtonPair","Checkbox":"Checkbox","CheckboxList":"CheckboxList","ColorEditor":"ColorEditor","Combo":"Combo","FieldSelector":"FieldSelector","GroupHeader":"GroupHeader","IconButton":"IconButton","IconMenu":"IconMenu","Label":"Label","NumberInput":"NumberInput","Radio":"Radio","Separator":"Separator","SubPanel":"SubPanel","TextInput":"TextInput","Unknown":"Unknown"}}],"ToolCommandExecutionState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolCommandExecutionState","k":"enum","s":"enums","m":{"Completed":"Completed","Failed":"Failed","Pending":"Pending"}}],"ToolCommandStateType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolCommandStateType","k":"enum","s":"enums","m":{"IsDisabledChanged":"IsDisabledChanged","ValueChanged":"ValueChanged","VisibilityChanged":"VisibilityChanged"}}],"ToolContextBindingMode":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolContextBindingMode","k":"enum","s":"enums","m":{"OneWay":"OneWay","TwoWay":"TwoWay"}}],"ToolContextValueType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/ToolContextValueType","k":"enum","s":"enums","m":{"BoolValue":"BoolValue","Brush":"Brush","BrushCollection":"BrushCollection","Color":"Color","Data":"Data","DoubleValue":"DoubleValue","IntValue":"IntValue","StringValue":"StringValue"}}],"TransactionEvent":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TransactionEvent","k":"enum","s":"enums","m":{"Add":"Add","Clear":"Clear","Commit":"Commit","End":"End","Redo":"Redo","Undo":"Undo"}}],"TransactionPendingState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TransactionPendingState","k":"enum","s":"enums","m":{"Accept":"Accept","Pending":"Pending","Reject":"Reject"}}],"TransactionType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TransactionType","k":"enum","s":"enums","m":{"Add":"Add","Delete":"Delete","Update":"Update"}}],"TrendLineType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TrendLineType","k":"enum","s":"enums","m":{"CubicFit":"CubicFit","CumulativeAverage":"CumulativeAverage","ExponentialAverage":"ExponentialAverage","ExponentialFit":"ExponentialFit","LinearFit":"LinearFit","LogarithmicFit":"LogarithmicFit","ModifiedAverage":"ModifiedAverage","None":"None","PowerLawFit":"PowerLawFit","QuadraticFit":"QuadraticFit","QuarticFit":"QuarticFit","QuinticFit":"QuinticFit","SimpleAverage":"SimpleAverage","WeightedAverage":"WeightedAverage"}}],"TypeDescriptionPlatform":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TypeDescriptionPlatform","k":"enum","s":"enums","m":{"Angular":"Angular","Blazor":"Blazor","JQuery":"JQuery","Kotlin":"Kotlin","React":"React","Swift":"Swift","Unknown":"Unknown","UWP":"UWP","WebComponents":"WebComponents","WindowsForms":"WindowsForms","WinUI":"WinUI","WPF":"WPF","XamarinAndroid":"XamarinAndroid","XamarinForms":"XamarinForms","XamariniOS":"XamariniOS"}}],"TypeDescriptionWellKnownType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/TypeDescriptionWellKnownType","k":"enum","s":"enums","m":{"Array":"Array","boolean1":"boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","DataTemplate":"DataTemplate","Date":"Date","DoubleCollection":"DoubleCollection","EventRef":"EventRef","ExportedType":"ExportedType","IList":"IList","MethodRef":"MethodRef","Number":"Number","Pixel":"Pixel","PixelPoint":"PixelPoint","PixelRect":"PixelRect","PixelSize":"PixelSize","Point":"Point","Rect":"Rect","Size":"Size","string1":"string1","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unknown":"Unknown","Void":"Void"}}],"UnknownValuePlotting":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/UnknownValuePlotting","k":"enum","s":"enums","m":{"DontPlot":"DontPlot","LinearInterpolate":"LinearInterpolate"}}],"UriKind":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/UriKind","k":"enum","s":"enums","m":{"Absolute":"Absolute","Relative":"Relative","RelativeOrAbsolute":"RelativeOrAbsolute"}}],"Visibility":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/Visibility","k":"enum","s":"enums","m":{"Collapsed":"Collapsed","Visible":"Visible"}}],"WhitespaceHandling":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/WhitespaceHandling","k":"enum","s":"enums","m":{"All":"All","None":"None","Significant":"Significant"}}],"WriteState":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/WriteState","k":"enum","s":"enums","m":{"Attribute":"Attribute","Closed":"Closed","Content":"Content","Element":"Element","Prolog":"Prolog","Start":"Start"}}],"XBaseDataType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/XBaseDataType","k":"enum","s":"enums","m":{"AutoIncrement":"AutoIncrement","Binary":"Binary","Character":"Character","Currency":"Currency","Date":"Date","DateTime":"DateTime","double1":"double1","FloatingPoint":"FloatingPoint","General":"General","Integer":"Integer","Logical":"Logical","Memo":"Memo","Number":"Number","Picture":"Picture","Timestamp":"Timestamp","Variant":"Variant","VariField":"VariField"}}],"XmlNodeType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/XmlNodeType","k":"enum","s":"enums","m":{"Attribute":"Attribute","CDATA":"CDATA","Comment":"Comment","Document":"Document","DocumentFragment":"DocumentFragment","DocumentType":"DocumentType","Element":"Element","EndElement":"EndElement","EndEntity":"EndEntity","Entity":"Entity","EntityReference":"EntityReference","None":"None","Notation":"Notation","ProcessingInstruction":"ProcessingInstruction","SignificantWhitespace":"SignificantWhitespace","Text":"Text","Whitespace":"Whitespace","XmlDeclaration":"XmlDeclaration"}}],"XmlSpace":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/enums/XmlSpace","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Preserve":"Preserve"}}],"InstanceConstructor":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/types/InstanceConstructor","k":"type","s":"types"}],"RenderFunction":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/types/RenderFunction","k":"type","s":"types"}],"TemplateFunction":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/types/TemplateFunction","k":"type","s":"types"}],"a$":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/a-","k":"variable","s":"variables"}],"Array_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Array_-type","k":"variable","s":"variables"}],"b$":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/b-","k":"variable","s":"variables"}],"Boolean_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Boolean_-type","k":"variable","s":"variables"}],"boolToDecimal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToDecimal","k":"variable","s":"variables"}],"boolToDouble":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToDouble","k":"variable","s":"variables"}],"boolToInt32":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToInt32","k":"variable","s":"variables"}],"boolToInt64":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToInt64","k":"variable","s":"variables"}],"boolToSingle":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToSingle","k":"variable","s":"variables"}],"boolToUInt16":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToUInt16","k":"variable","s":"variables"}],"boolToUInt32":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToUInt32","k":"variable","s":"variables"}],"boolToUInt64":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/boolToUInt64","k":"variable","s":"variables"}],"CalendarWeekRule_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/CalendarWeekRule_-type","k":"variable","s":"variables"}],"d$":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/d-","k":"variable","s":"variables"}],"Date_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Date_-type","k":"variable","s":"variables"}],"DateTimeKind_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/DateTimeKind_-type","k":"variable","s":"variables"}],"DayOfWeek_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/DayOfWeek_-type","k":"variable","s":"variables"}],"Delegate_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Delegate_-type","k":"variable","s":"variables"}],"DomPortal_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/DomPortal_-type","k":"variable","s":"variables"}],"DomRenderer_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/DomRenderer_-type","k":"variable","s":"variables"}],"DomWrapper_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/DomWrapper_-type","k":"variable","s":"variables"}],"ICollection_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/ICollection_-type","k":"variable","s":"variables"}],"ICollection$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/ICollection-1_-type","k":"variable","s":"variables"}],"IComparable_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IComparable_-type","k":"variable","s":"variables"}],"IComparable$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IComparable-1_-type","k":"variable","s":"variables"}],"IConvertible_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IConvertible_-type","k":"variable","s":"variables"}],"IDictionary_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IDictionary_-type","k":"variable","s":"variables"}],"IDisposable_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IDisposable_-type","k":"variable","s":"variables"}],"IEnumerable_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEnumerable_-type","k":"variable","s":"variables"}],"IEnumerable$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEnumerable-1_-type","k":"variable","s":"variables"}],"IEnumerator_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEnumerator_-type","k":"variable","s":"variables"}],"IEnumerator$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEnumerator-1_-type","k":"variable","s":"variables"}],"IEqualityComparer_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEqualityComparer_-type","k":"variable","s":"variables"}],"IEqualityComparer$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEqualityComparer-1_-type","k":"variable","s":"variables"}],"IEquatable$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IEquatable-1_-type","k":"variable","s":"variables"}],"IFormatProvider_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IFormatProvider_-type","k":"variable","s":"variables"}],"IgcHTMLElement":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IgcHTMLElement","k":"variable","s":"variables"}],"IList_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IList_-type","k":"variable","s":"variables"}],"IList$1_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/IList-1_-type","k":"variable","s":"variables"}],"INotifyPropertyChanged_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/INotifyPropertyChanged_-type","k":"variable","s":"variables"}],"n$":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/n-","k":"variable","s":"variables"}],"nothing":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/nothing","k":"variable","s":"variables"}],"Number_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Number_-type","k":"variable","s":"variables"}],"Point_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Point_-type","k":"variable","s":"variables"}],"s$":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/s-","k":"variable","s":"variables"}],"shadowWrap":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/shadowWrap","k":"variable","s":"variables"}],"String_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/String_-type","k":"variable","s":"variables"}],"stringCompare":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/stringCompare","k":"variable","s":"variables"}],"toDecimal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/toDecimal","k":"variable","s":"variables"}],"v$":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/v-","k":"variable","s":"variables"}],"Void_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/Void_-type","k":"variable","s":"variables"}],"wellKnownColors":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/wellKnownColors","k":"variable","s":"variables"}],"XmlAttribute_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlAttribute_-type","k":"variable","s":"variables"}],"XmlDocument_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlDocument_-type","k":"variable","s":"variables"}],"XmlElement_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlElement_-type","k":"variable","s":"variables"}],"XmlLinkedNode_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlLinkedNode_-type","k":"variable","s":"variables"}],"XmlNamedNodeMap_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlNamedNodeMap_-type","k":"variable","s":"variables"}],"XmlNode_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlNode_-type","k":"variable","s":"variables"}],"XmlNodeList_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlNodeList_-type","k":"variable","s":"variables"}],"XmlNodeType_$type":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/variables/XmlNodeType_-type","k":"variable","s":"variables"}],"addBrushPaletteThemeEntry":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/addBrushPaletteThemeEntry","k":"function","s":"functions"}],"addPaletteThemeEntry":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/addPaletteThemeEntry","k":"function","s":"functions"}],"addTextThemeEntry":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/addTextThemeEntry","k":"function","s":"functions"}],"arrayClear":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayClear","k":"function","s":"functions"}],"arrayClear1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayClear1","k":"function","s":"functions"}],"arrayContains":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayContains","k":"function","s":"functions"}],"arrayCopy":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayCopy","k":"function","s":"functions"}],"arrayCopy1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayCopy1","k":"function","s":"functions"}],"arrayCopy2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayCopy2","k":"function","s":"functions"}],"arrayCopyTo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayCopyTo","k":"function","s":"functions"}],"arrayFindByName":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayFindByName","k":"function","s":"functions"}],"arrayGetLength":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayGetLength","k":"function","s":"functions"}],"arrayGetRank":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayGetRank","k":"function","s":"functions"}],"arrayGetValue":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayGetValue","k":"function","s":"functions"}],"arrayIndexOf1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayIndexOf1","k":"function","s":"functions"}],"arrayInsert":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayInsert","k":"function","s":"functions"}],"arrayInsertRange":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayInsertRange","k":"function","s":"functions"}],"arrayInsertRange1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayInsertRange1","k":"function","s":"functions"}],"arrayLast":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayLast","k":"function","s":"functions"}],"arrayListCreate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayListCreate","k":"function","s":"functions"}],"arrayRemoveAt":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayRemoveAt","k":"function","s":"functions"}],"arrayRemoveItem":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayRemoveItem","k":"function","s":"functions"}],"arrayResize":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayResize","k":"function","s":"functions"}],"arrayShallowClone":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/arrayShallowClone","k":"function","s":"functions"}],"b64toUint8Array":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/b64toUint8Array","k":"function","s":"functions"}],"boolCompare":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/boolCompare","k":"function","s":"functions"}],"boolToInt16":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/boolToInt16","k":"function","s":"functions"}],"boolToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/boolToString","k":"function","s":"functions"}],"boxArray$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/boxArray-1","k":"function","s":"functions"}],"brushCollectionToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/brushCollectionToString","k":"function","s":"functions"}],"brushToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/brushToString","k":"function","s":"functions"}],"callStaticConstructors":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/callStaticConstructors","k":"function","s":"functions"}],"ceil10":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/ceil10","k":"function","s":"functions"}],"charMaxValue":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/charMaxValue","k":"function","s":"functions"}],"charMinValue":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/charMinValue","k":"function","s":"functions"}],"colorCollectionToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/colorCollectionToString","k":"function","s":"functions"}],"colorToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/colorToString","k":"function","s":"functions"}],"compareTo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/compareTo","k":"function","s":"functions"}],"createGuid":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/createGuid","k":"function","s":"functions"}],"createMutationObserver":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/createMutationObserver","k":"function","s":"functions"}],"dateAdd":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAdd","k":"function","s":"functions"}],"dateAddDays":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAddDays","k":"function","s":"functions"}],"dateAddHours":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAddHours","k":"function","s":"functions"}],"dateAddMinutes":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAddMinutes","k":"function","s":"functions"}],"dateAddMonths":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAddMonths","k":"function","s":"functions"}],"dateAddSeconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAddSeconds","k":"function","s":"functions"}],"dateAddYears":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateAddYears","k":"function","s":"functions"}],"dateEquals":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateEquals","k":"function","s":"functions"}],"dateFromFileTime":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateFromFileTime","k":"function","s":"functions"}],"dateFromFileTimeUtc":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateFromFileTimeUtc","k":"function","s":"functions"}],"dateFromMilliseconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateFromMilliseconds","k":"function","s":"functions"}],"dateFromTicks":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateFromTicks","k":"function","s":"functions"}],"dateFromValues":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateFromValues","k":"function","s":"functions"}],"dateGetDate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateGetDate","k":"function","s":"functions"}],"dateGetMonth":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateGetMonth","k":"function","s":"functions"}],"dateGetTimeOfDay":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateGetTimeOfDay","k":"function","s":"functions"}],"dateIsDST":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateIsDST","k":"function","s":"functions"}],"dateIsLeapYear":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateIsLeapYear","k":"function","s":"functions"}],"dateKind":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateKind","k":"function","s":"functions"}],"dateMaxValue":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateMaxValue","k":"function","s":"functions"}],"dateMinValue":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateMinValue","k":"function","s":"functions"}],"dateNow":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateNow","k":"function","s":"functions"}],"dateParse":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateParse","k":"function","s":"functions"}],"dateParseExact":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateParseExact","k":"function","s":"functions"}],"dateStdTimezoneOffset":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateStdTimezoneOffset","k":"function","s":"functions"}],"dateSubtract":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateSubtract","k":"function","s":"functions"}],"dateToday":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateToday","k":"function","s":"functions"}],"dateToFileTime":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateToFileTime","k":"function","s":"functions"}],"dateToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateToString","k":"function","s":"functions"}],"dateToStringFormat":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateToStringFormat","k":"function","s":"functions"}],"dateTryParse":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/dateTryParse","k":"function","s":"functions"}],"daysInMonth":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/daysInMonth","k":"function","s":"functions"}],"decimalAdjust":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/decimalAdjust","k":"function","s":"functions"}],"defaultDVDateParse":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/defaultDVDateParse","k":"function","s":"functions"}],"delegateCombine":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/delegateCombine","k":"function","s":"functions"}],"delegateRemove":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/delegateRemove","k":"function","s":"functions"}],"doubleCollectionToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/doubleCollectionToString","k":"function","s":"functions"}],"endsWith1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/endsWith1","k":"function","s":"functions"}],"ensureBool":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/ensureBool","k":"function","s":"functions"}],"ensureEnum":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/ensureEnum","k":"function","s":"functions"}],"enumGetBox":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/enumGetBox","k":"function","s":"functions"}],"enumToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/enumToString","k":"function","s":"functions"}],"floor10":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/floor10","k":"function","s":"functions"}],"fromBrushCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromBrushCollection","k":"function","s":"functions"}],"fromColorCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromColorCollection","k":"function","s":"functions"}],"fromDict":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromDict","k":"function","s":"functions"}],"fromDoubleCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromDoubleCollection","k":"function","s":"functions"}],"fromEn":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromEn","k":"function","s":"functions"}],"fromEnum":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromEnum","k":"function","s":"functions"}],"fromOADate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromOADate","k":"function","s":"functions"}],"fromPoint":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromPoint","k":"function","s":"functions"}],"fromRect":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromRect","k":"function","s":"functions"}],"fromSize":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromSize","k":"function","s":"functions"}],"fromSpinal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/fromSpinal","k":"function","s":"functions"}],"getAllPropertyNames":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getAllPropertyNames","k":"function","s":"functions"}],"getBoxIfEnum":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getBoxIfEnum","k":"function","s":"functions"}],"getColorStringSafe":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getColorStringSafe","k":"function","s":"functions"}],"getEn":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getEn","k":"function","s":"functions"}],"getEnumerator":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getEnumerator","k":"function","s":"functions"}],"getEnumeratorObject":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getEnumeratorObject","k":"function","s":"functions"}],"getInstanceType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getInstanceType","k":"function","s":"functions"}],"getModifiedProps":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/getModifiedProps","k":"function","s":"functions"}],"html":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/html","k":"function","s":"functions"}],"ieeeRemainder":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/ieeeRemainder","k":"function","s":"functions"}],"indexOfAny":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/indexOfAny","k":"function","s":"functions"}],"initializePropertiesFromCss":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/initializePropertiesFromCss","k":"function","s":"functions"}],"intDivide":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/intDivide","k":"function","s":"functions"}],"interfaceToInternal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/interfaceToInternal","k":"function","s":"functions"}],"intSToU":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/intSToU","k":"function","s":"functions"}],"intToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/intToString","k":"function","s":"functions"}],"intToString1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/intToString1","k":"function","s":"functions"}],"isDigit":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isDigit","k":"function","s":"functions"}],"isDigit1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isDigit1","k":"function","s":"functions"}],"isInfinity":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isInfinity","k":"function","s":"functions"}],"isLetter":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isLetter","k":"function","s":"functions"}],"isLetterOrDigit":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isLetterOrDigit","k":"function","s":"functions"}],"isLower":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isLower","k":"function","s":"functions"}],"isNaN_":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isNaN_","k":"function","s":"functions"}],"isNegativeInfinity":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isNegativeInfinity","k":"function","s":"functions"}],"isNumber":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isNumber","k":"function","s":"functions"}],"isPoint":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isPoint","k":"function","s":"functions"}],"isPositiveInfinity":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isPositiveInfinity","k":"function","s":"functions"}],"isRect":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isRect","k":"function","s":"functions"}],"isSize":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isSize","k":"function","s":"functions"}],"isValidProp":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/isValidProp","k":"function","s":"functions"}],"lastIndexOfAny":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/lastIndexOfAny","k":"function","s":"functions"}],"log10":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/log10","k":"function","s":"functions"}],"logBase":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/logBase","k":"function","s":"functions"}],"markDep":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/markDep","k":"function","s":"functions"}],"markEnum":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/markEnum","k":"function","s":"functions"}],"markStruct":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/markStruct","k":"function","s":"functions"}],"markType":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/markType","k":"function","s":"functions"}],"netRegexToJS":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/netRegexToJS","k":"function","s":"functions"}],"nullableAdd":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableAdd","k":"function","s":"functions"}],"nullableConcat":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableConcat","k":"function","s":"functions"}],"nullableDivide":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableDivide","k":"function","s":"functions"}],"nullableEquals":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableEquals","k":"function","s":"functions"}],"nullableGreaterThan":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableGreaterThan","k":"function","s":"functions"}],"nullableGreaterThanOrEqual":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableGreaterThanOrEqual","k":"function","s":"functions"}],"nullableIsNull":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableIsNull","k":"function","s":"functions"}],"nullableLessThan":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableLessThan","k":"function","s":"functions"}],"nullableLessThanOrEqual":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableLessThanOrEqual","k":"function","s":"functions"}],"nullableModulus":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableModulus","k":"function","s":"functions"}],"nullableMultiply":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableMultiply","k":"function","s":"functions"}],"nullableNotEquals":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableNotEquals","k":"function","s":"functions"}],"nullableSubtract":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/nullableSubtract","k":"function","s":"functions"}],"numberToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/numberToString","k":"function","s":"functions"}],"numberToString1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/numberToString1","k":"function","s":"functions"}],"numberToString2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/numberToString2","k":"function","s":"functions"}],"padLeft":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/padLeft","k":"function","s":"functions"}],"padRight":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/padRight","k":"function","s":"functions"}],"parseBool":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseBool","k":"function","s":"functions"}],"parseInt16_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt16_1","k":"function","s":"functions"}],"parseInt16_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt16_2","k":"function","s":"functions"}],"parseInt32_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt32_1","k":"function","s":"functions"}],"parseInt32_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt32_2","k":"function","s":"functions"}],"parseInt64_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt64_1","k":"function","s":"functions"}],"parseInt64_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt64_2","k":"function","s":"functions"}],"parseInt8_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt8_1","k":"function","s":"functions"}],"parseInt8_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseInt8_2","k":"function","s":"functions"}],"parseIntCore":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseIntCore","k":"function","s":"functions"}],"parseNumber":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseNumber","k":"function","s":"functions"}],"parseNumber1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseNumber1","k":"function","s":"functions"}],"parseUInt16_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt16_1","k":"function","s":"functions"}],"parseUInt16_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt16_2","k":"function","s":"functions"}],"parseUInt32_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt32_1","k":"function","s":"functions"}],"parseUInt32_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt32_2","k":"function","s":"functions"}],"parseUInt64_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt64_1","k":"function","s":"functions"}],"parseUInt64_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt64_2","k":"function","s":"functions"}],"parseUInt8_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt8_1","k":"function","s":"functions"}],"parseUInt8_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/parseUInt8_2","k":"function","s":"functions"}],"pointFromLiteral":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/pointFromLiteral","k":"function","s":"functions"}],"pointToLiteral":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/pointToLiteral","k":"function","s":"functions"}],"pointToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/pointToString","k":"function","s":"functions"}],"rectFromLiteral":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/rectFromLiteral","k":"function","s":"functions"}],"rectToLiteral":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/rectToLiteral","k":"function","s":"functions"}],"rectToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/rectToString","k":"function","s":"functions"}],"render":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/render","k":"function","s":"functions"}],"reverse":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/reverse","k":"function","s":"functions"}],"rgbToHex":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/rgbToHex","k":"function","s":"functions"}],"round10":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/round10","k":"function","s":"functions"}],"round10N":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/round10N","k":"function","s":"functions"}],"runOn":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/runOn","k":"function","s":"functions"}],"sizeFromLiteral":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/sizeFromLiteral","k":"function","s":"functions"}],"sizeToLiteral":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/sizeToLiteral","k":"function","s":"functions"}],"sizeToString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/sizeToString","k":"function","s":"functions"}],"sleep":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/sleep","k":"function","s":"functions"}],"startsWith1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/startsWith1","k":"function","s":"functions"}],"stringCompare1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCompare1","k":"function","s":"functions"}],"stringCompare2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCompare2","k":"function","s":"functions"}],"stringCompare3":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCompare3","k":"function","s":"functions"}],"stringCompareOrdinal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCompareOrdinal","k":"function","s":"functions"}],"stringCompareTo":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCompareTo","k":"function","s":"functions"}],"stringConcat":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringConcat","k":"function","s":"functions"}],"stringContains":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringContains","k":"function","s":"functions"}],"stringCopyToCharArray":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCopyToCharArray","k":"function","s":"functions"}],"stringCreateFromChar":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCreateFromChar","k":"function","s":"functions"}],"stringCreateFromCharArray":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCreateFromCharArray","k":"function","s":"functions"}],"stringCreateFromCharArraySlice":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringCreateFromCharArraySlice","k":"function","s":"functions"}],"stringEmpty":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringEmpty","k":"function","s":"functions"}],"stringEndsWith":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringEndsWith","k":"function","s":"functions"}],"stringEquals":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringEquals","k":"function","s":"functions"}],"stringEquals1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringEquals1","k":"function","s":"functions"}],"stringEscapeRegExp":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringEscapeRegExp","k":"function","s":"functions"}],"stringFormat":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringFormat","k":"function","s":"functions"}],"stringFormat1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringFormat1","k":"function","s":"functions"}],"stringFormat2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringFormat2","k":"function","s":"functions"}],"stringInsert":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringInsert","k":"function","s":"functions"}],"stringIsDigit":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringIsDigit","k":"function","s":"functions"}],"stringIsNullOrEmpty":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringIsNullOrEmpty","k":"function","s":"functions"}],"stringIsNullOrWhiteSpace":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringIsNullOrWhiteSpace","k":"function","s":"functions"}],"stringJoin":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringJoin","k":"function","s":"functions"}],"stringJoin1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringJoin1","k":"function","s":"functions"}],"stringRemove":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringRemove","k":"function","s":"functions"}],"stringReplace":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringReplace","k":"function","s":"functions"}],"stringSplit":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringSplit","k":"function","s":"functions"}],"stringStartsWith":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringStartsWith","k":"function","s":"functions"}],"stringToBrush":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToBrush","k":"function","s":"functions"}],"stringToCharArray":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToCharArray","k":"function","s":"functions"}],"stringToColor":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToColor","k":"function","s":"functions"}],"stringToLocaleLower":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToLocaleLower","k":"function","s":"functions"}],"stringToLocaleUpper":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToLocaleUpper","k":"function","s":"functions"}],"stringToString$1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToString-1","k":"function","s":"functions"}],"stringToString1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/stringToString1","k":"function","s":"functions"}],"strToColor":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/strToColor","k":"function","s":"functions"}],"timeSpanDays":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanDays","k":"function","s":"functions"}],"timeSpanFromDays":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanFromDays","k":"function","s":"functions"}],"timeSpanFromHours":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanFromHours","k":"function","s":"functions"}],"timeSpanFromMilliseconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanFromMilliseconds","k":"function","s":"functions"}],"timeSpanFromMinutes":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanFromMinutes","k":"function","s":"functions"}],"timeSpanFromSeconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanFromSeconds","k":"function","s":"functions"}],"timeSpanFromTicks":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanFromTicks","k":"function","s":"functions"}],"timeSpanHours":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanHours","k":"function","s":"functions"}],"timeSpanInit1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanInit1","k":"function","s":"functions"}],"timeSpanInit2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanInit2","k":"function","s":"functions"}],"timeSpanInit3":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanInit3","k":"function","s":"functions"}],"timeSpanMilliseconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanMilliseconds","k":"function","s":"functions"}],"timeSpanMinutes":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanMinutes","k":"function","s":"functions"}],"timeSpanNegate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanNegate","k":"function","s":"functions"}],"timeSpanSeconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanSeconds","k":"function","s":"functions"}],"timeSpanTicks":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanTicks","k":"function","s":"functions"}],"timeSpanTotalDays":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanTotalDays","k":"function","s":"functions"}],"timeSpanTotalHours":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanTotalHours","k":"function","s":"functions"}],"timeSpanTotalMilliseconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanTotalMilliseconds","k":"function","s":"functions"}],"timeSpanTotalMinutes":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanTotalMinutes","k":"function","s":"functions"}],"timeSpanTotalSeconds":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/timeSpanTotalSeconds","k":"function","s":"functions"}],"toBoolean":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toBoolean","k":"function","s":"functions"}],"toBrushCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toBrushCollection","k":"function","s":"functions"}],"toColorCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toColorCollection","k":"function","s":"functions"}],"toDouble":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toDouble","k":"function","s":"functions"}],"toDoubleCollection":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toDoubleCollection","k":"function","s":"functions"}],"toEn":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toEn","k":"function","s":"functions"}],"toEnum":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toEnum","k":"function","s":"functions"}],"toLocalTime":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toLocalTime","k":"function","s":"functions"}],"toLongDateString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toLongDateString","k":"function","s":"functions"}],"toLongTimeString":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toLongTimeString","k":"function","s":"functions"}],"toNullable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toNullable","k":"function","s":"functions"}],"toOADate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toOADate","k":"function","s":"functions"}],"toPoint":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toPoint","k":"function","s":"functions"}],"toRect":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toRect","k":"function","s":"functions"}],"toSize":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toSize","k":"function","s":"functions"}],"toSpinal":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toSpinal","k":"function","s":"functions"}],"toString1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toString1","k":"function","s":"functions"}],"toUniversalTime":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/toUniversalTime","k":"function","s":"functions"}],"trim":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/trim","k":"function","s":"functions"}],"trimEnd":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/trimEnd","k":"function","s":"functions"}],"trimStart":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/trimStart","k":"function","s":"functions"}],"truncate":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/truncate","k":"function","s":"functions"}],"tryParseBool":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseBool","k":"function","s":"functions"}],"tryParseInt16_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt16_1","k":"function","s":"functions"}],"tryParseInt16_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt16_2","k":"function","s":"functions"}],"tryParseInt32_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt32_1","k":"function","s":"functions"}],"tryParseInt32_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt32_2","k":"function","s":"functions"}],"tryParseInt64_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt64_1","k":"function","s":"functions"}],"tryParseInt64_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt64_2","k":"function","s":"functions"}],"tryParseInt8_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt8_1","k":"function","s":"functions"}],"tryParseInt8_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseInt8_2","k":"function","s":"functions"}],"tryParseIntCore":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseIntCore","k":"function","s":"functions"}],"tryParseNumber":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseNumber","k":"function","s":"functions"}],"tryParseNumber1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseNumber1","k":"function","s":"functions"}],"tryParseUInt16_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt16_1","k":"function","s":"functions"}],"tryParseUInt16_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt16_2","k":"function","s":"functions"}],"tryParseUInt32_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt32_1","k":"function","s":"functions"}],"tryParseUInt32_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt32_2","k":"function","s":"functions"}],"tryParseUInt64_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt64_1","k":"function","s":"functions"}],"tryParseUInt64_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt64_2","k":"function","s":"functions"}],"tryParseUInt8_1":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt8_1","k":"function","s":"functions"}],"tryParseUInt8_2":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/tryParseUInt8_2","k":"function","s":"functions"}],"typeCast":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/typeCast","k":"function","s":"functions"}],"typeCastObjTo$t":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/typeCastObjTo-t","k":"function","s":"functions"}],"typeGetValue":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/typeGetValue","k":"function","s":"functions"}],"u32BitwiseAnd":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/u32BitwiseAnd","k":"function","s":"functions"}],"u32BitwiseOr":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/u32BitwiseOr","k":"function","s":"functions"}],"u32BitwiseXor":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/u32BitwiseXor","k":"function","s":"functions"}],"u32LS":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/u32LS","k":"function","s":"functions"}],"uint8ArraytoB64":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/uint8ArraytoB64","k":"function","s":"functions"}],"unboxArray":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/unboxArray","k":"function","s":"functions"}],"unicode_hack":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/unicode_hack","k":"function","s":"functions"}],"unwrapNullable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/unwrapNullable","k":"function","s":"functions"}],"wrapNullable":[{"p":"igniteui-webcomponents-core","u":"/api/webcomponents/igniteui-webcomponents-core/7.0.0/functions/wrapNullable","k":"function","s":"functions"}],"IgcDashboardTileChangingContentEventArgs":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileChangingContentEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contentJson":"contentJson"}}],"IgcDashboardTileComponent":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBrushes":"actualBrushes","actualCustomizations":"actualCustomizations","actualOutlines":"actualOutlines","autoCalloutsVisible":"autoCalloutsVisible","backgroundColor":"backgroundColor","baseTheme":"baseTheme","brushes":"brushes","categoryAxisMajorStroke":"categoryAxisMajorStroke","changingContent":"changingContent","contentCustomizations":"contentCustomizations","crosshairsAnnotationEnabled":"crosshairsAnnotationEnabled","crosshairsDisplayMode":"crosshairsDisplayMode","customizations":"customizations","dataSource":"dataSource","density":"density","excludedProperties":"excludedProperties","filterExpressions":"filterExpressions","filterStringErrorsParsing":"filterStringErrorsParsing","finalValueAnnotationsVisible":"finalValueAnnotationsVisible","groupDescriptions":"groupDescriptions","groupSortDescriptions":"groupSortDescriptions","groupSorts":"groupSorts","height":"height","highlightedDataSource":"highlightedDataSource","highlightedValuesDisplayMode":"highlightedValuesDisplayMode","highlightFilterExpressions":"highlightFilterExpressions","includedProperties":"includedProperties","initialFilter":"initialFilter","initialFilterExpressions":"initialFilterExpressions","initialGroupDescriptions":"initialGroupDescriptions","initialGroups":"initialGroups","initialGroupSortDescriptions":"initialGroupSortDescriptions","initialHighlightFilter":"initialHighlightFilter","initialHighlightFilterExpressions":"initialHighlightFilterExpressions","initialSortDescriptions":"initialSortDescriptions","initialSorts":"initialSorts","initialSummaries":"initialSummaries","initialSummaryDescriptions":"initialSummaryDescriptions","isUserAnnotationsEnabled":"isUserAnnotationsEnabled","isVisTypeRadial":"isVisTypeRadial","isVisTypeStacked":"isVisTypeStacked","outlines":"outlines","selectedSeriesItems":"selectedSeriesItems","shouldAvoidAxisAnnotationCollisions":"shouldAvoidAxisAnnotationCollisions","shouldDisplayMockData":"shouldDisplayMockData","shouldUseSkeletonStyleForMockData":"shouldUseSkeletonStyleForMockData","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","tileTitle":"tileTitle","trendLineBrushes":"trendLineBrushes","trendLineType":"trendLineType","trendLineTypes":"trendLineTypes","userAnnotationInformationRequested":"userAnnotationInformationRequested","userAnnotationToolTipContentUpdating":"userAnnotationToolTipContentUpdating","validVisualizationTypePriorityThreshold":"validVisualizationTypePriorityThreshold","validVisualizationTypes":"validVisualizationTypes","valueLines":"valueLines","valueLinesBrushes":"valueLinesBrushes","valueLinesGlobalAverageBrush":"valueLinesGlobalAverageBrush","valueLinesGlobalMaximumBrush":"valueLinesGlobalMaximumBrush","valueLinesGlobalMinimumBrush":"valueLinesGlobalMinimumBrush","visualizationType":"visualizationType","width":"width","observedAttributes":"observedAttributes","addCommandAvailabilityListener":"addCommandAvailabilityListener","addCommandStateChangedListener":"addCommandStateChangedListener","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","cancelAnnotationFlow":"cancelAnnotationFlow","clearSettings":"clearSettings","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","findByName":"findByName","finishAnnotationFlow":"finishAnnotationFlow","getDesiredToolbarActions":"getDesiredToolbarActions","getSettingsValue":"getSettingsValue","hasModifiedSettings":"hasModifiedSettings","loadAnnotationsFromJson":"loadAnnotationsFromJson","notifyContainerResized":"notifyContainerResized","onUIReady":"onUIReady","removeCommandAvailabilityListener":"removeCommandAvailabilityListener","removeCommandStateChangedListener":"removeCommandStateChangedListener","removeSettingsValue":"removeSettingsValue","resetAnnotations":"resetAnnotations","resetZoom":"resetZoom","saveAnnotationsToJson":"saveAnnotationsToJson","startCreatingAnnotation":"startCreatingAnnotation","startDeletingAnnotation":"startDeletingAnnotation","updateSettingsValue":"updateSettingsValue","updateStyle":"updateStyle","zoomIn":"zoomIn","zoomOut":"zoomOut","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDashboardTileCustomizationCollection":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileCustomizationCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcDashboardTileCustomizationComponent":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileCustomizationComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","collectionIndex":"collectionIndex","isCollectionInsertionAtEnd":"isCollectionInsertionAtEnd","isCollectionInsertionAtIndex":"isCollectionInsertionAtIndex","isCollectionInsertionAtStart":"isCollectionInsertionAtStart","isCollectionRemovaltIndex":"isCollectionRemovaltIndex","matchParentIndex":"matchParentIndex","matchType":"matchType","order":"order","propertyName":"propertyName","propertyValue":"propertyValue","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcDashboardTileFilterStringErrorsParsingEventArgs":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileFilterStringErrorsParsingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","errors":"errors","propertyName":"propertyName"}}],"IgcDashboardTileGroupDescription":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileGroupDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgcDashboardTileGroupDescriptionCollection":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileGroupDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgcDashboardTileSortDescription":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileSortDescription","k":"class","s":"classes","m":{"constructor":"constructor","field":"field","sortDirection":"sortDirection","equals":"equals","findByName":"findByName"}}],"IgcDashboardTileSortDescriptionCollection":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileSortDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"IgcDashboardTileSummaryDescription":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileSummaryDescription","k":"class","s":"classes","m":{"constructor":"constructor","alias":"alias","calculatorDisplayName":"calculatorDisplayName","field":"field","operand":"operand","provideCalculator":"provideCalculator","equals":"equals","findByName":"findByName"}}],"IgcDashboardTileSummaryDescriptionCollection":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/classes/IgcDashboardTileSummaryDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor","shouldDetachOnTargetChange":"shouldDetachOnTargetChange","add":"add","clear":"clear","findByName":"findByName","indexOf":"indexOf","insert":"insert","remove":"remove","removeAt":"removeAt"}}],"DashboardTileVisualizationType":[{"p":"igniteui-webcomponents-dashboards","u":"/api/webcomponents/igniteui-webcomponents-dashboards/7.0.0/enums/DashboardTileVisualizationType","k":"enum","s":"enums","m":{"AreaChart":"AreaChart","Auto":"Auto","BarChart":"BarChart","BubbleChart":"BubbleChart","BulletGraph":"BulletGraph","CandlestickChart":"CandlestickChart","ChoroplethMap":"ChoroplethMap","ColumnChart":"ColumnChart","DoughnutChart":"DoughnutChart","FunnelChart":"FunnelChart","Grid":"Grid","HeatmapMap":"HeatmapMap","HighDensityMap":"HighDensityMap","KPI":"KPI","LinearGauge":"LinearGauge","LineChart":"LineChart","Map":"Map","OHLCChart":"OHLCChart","PieChart":"PieChart","PolarChart":"PolarChart","RadialGauge":"RadialGauge","RadialLineChart":"RadialLineChart","ScatterChart":"ScatterChart","ScatterMap":"ScatterMap","SparklineChart":"SparklineChart","SplineAreaChart":"SplineAreaChart","SplineChart":"SplineChart","StackedAreaChart":"StackedAreaChart","StackedBarChart":"StackedBarChart","StackedColumnChart":"StackedColumnChart","StepAreaChart":"StepAreaChart","StepLineChart":"StepLineChart","TextGauge":"TextGauge","TextView":"TextView","TimeSeriesChart":"TimeSeriesChart","Treemap":"Treemap"}}],"Entity":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/Entity","k":"class","s":"classes","m":{"constructor":"constructor","name":"name","primaryKey":"primaryKey","properties":"properties"}}],"EntityProperty":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/EntityProperty","k":"class","s":"classes","m":{"constructor":"constructor","isNullable":"isNullable","name":"name","type":"type"}}],"EntitySet":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/EntitySet","k":"class","s":"classes","m":{"constructor":"constructor","entityName":"entityName","entityNamespace":"entityNamespace","entityType":"entityType","name":"name"}}],"LinkedList":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/LinkedList","k":"class","s":"classes","m":{"constructor":"constructor","first":"first","last":"last","addFirst":"addFirst","addLast":"addLast","clear":"clear","contains":"contains","remove":"remove","removeFirst":"removeFirst","removeValue":"removeValue"}}],"LinkedListNode":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/LinkedListNode","k":"class","s":"classes","m":{"constructor":"constructor","next":"next","prev":"prev","value":"value"}}],"ODataDataSourcePage":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataDataSourcePage","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","getGroupInformation":"getGroupInformation","getItemAtIndex":"getItemAtIndex","getItemValueAtIndex":"getItemValueAtIndex","getSummaryInformation":"getSummaryInformation","pageIndex":"pageIndex","schema":"schema"}}],"ODataSchemaProvider":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataSchemaProvider","k":"class","s":"classes","m":{"constructor":"constructor","nS":"nS","getODataDataSourceSchema":"getODataDataSourceSchema"}}],"ODataVirtualDataSource":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","isAggregationSupportedByServer":"isAggregationSupportedByServer","isFilteringSupportedOverride":"isFilteringSupportedOverride","isGroupingSupportedOverride":"isGroupingSupportedOverride","isSortingSupportedOverride":"isSortingSupportedOverride","timeoutMilliseconds":"timeoutMilliseconds","clone":"clone"}}],"ODataVirtualDataSourceDataProvider":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataVirtualDataSourceDataProvider","k":"class","s":"classes","m":{"constructor":"constructor","_autoRefreshQueued":"_autoRefreshQueued","_schemaFetchQueued":"_schemaFetchQueued","schemaChanged":"schemaChanged","$t":"$t","actualCount":"actualCount","actualSchema":"actualSchema","baseUri":"baseUri","batchCompleted":"batchCompleted","deferAutoRefresh":"deferAutoRefresh","enableJsonp":"enableJsonp","entitySet":"entitySet","executionContext":"executionContext","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","isFilteringSupported":"isFilteringSupported","isGroupingSupported":"isGroupingSupported","isItemIndexLookupSupported":"isItemIndexLookupSupported","isKeyIndexLookupSupported":"isKeyIndexLookupSupported","isSortingSupported":"isSortingSupported","notifyUsingSourceIndexes":"notifyUsingSourceIndexes","pageLoaded":"pageLoaded","pageSizeRequested":"pageSizeRequested","propertiesRequested":"propertiesRequested","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope","timeoutMilliseconds":"timeoutMilliseconds","updateNotifier":"updateNotifier","addItem":"addItem","addPageRequest":"addPageRequest","close":"close","createBatchRequest":"createBatchRequest","doRefreshInternal":"doRefreshInternal","doSchemaFetchInternal":"doSchemaFetchInternal","flushAutoRefresh":"flushAutoRefresh","getItemValue":"getItemValue","indexOfItem":"indexOfItem","indexOfKey":"indexOfKey","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","queueAutoRefresh":"queueAutoRefresh","queueSchemaFetch":"queueSchemaFetch","refresh":"refresh","refreshInternal":"refreshInternal","removeAllPageRequests":"removeAllPageRequests","removeItem":"removeItem","removePageRequest":"removePageRequest","resolveSchemaPropertyType":"resolveSchemaPropertyType","schemaFetchInternal":"schemaFetchInternal","setItemValue":"setItemValue"}}],"ODataVirtualDataSourceDataProviderWorker":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataVirtualDataSourceDataProviderWorker","k":"class","s":"classes","m":{"constructor":"constructor","schemaRequestIndex":"schemaRequestIndex","createBatchRequest":"createBatchRequest"}}],"ODataVirtualDataSourceDataProviderWorkerSettings":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataVirtualDataSourceDataProviderWorkerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","filterExpressions":"filterExpressions","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","propertiesRequested":"propertiesRequested","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope"}}],"ODataVirtualDataSourceProviderTaskDataHolder":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/ODataVirtualDataSourceProviderTaskDataHolder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"RestVirtualDataSource":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/RestVirtualDataSource","k":"class","s":"classes","m":{"constructor":"constructor","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","fixedFullCount":"fixedFullCount","isAggregationSupportedByServer":"isAggregationSupportedByServer","isFilteringSupportedByServer":"isFilteringSupportedByServer","isFilteringSupportedOverride":"isFilteringSupportedOverride","isGroupingSupportedOverride":"isGroupingSupportedOverride","isSortingSupportedOverride":"isSortingSupportedOverride","performFetch":"performFetch","provideAggregatedCount":"provideAggregatedCount","provideAggregationParameter":"provideAggregationParameter","provideDesiredPropertiesParameter":"provideDesiredPropertiesParameter","provideFilterParameter":"provideFilterParameter","provideFullCount":"provideFullCount","provideItems":"provideItems","provideOrderByParameter":"provideOrderByParameter","providePagingParameter":"providePagingParameter","provideUri":"provideUri","timeoutMilliseconds":"timeoutMilliseconds","clone":"clone"}}],"RestVirtualDataSourceDataProvider":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/RestVirtualDataSourceDataProvider","k":"class","s":"classes","m":{"constructor":"constructor","_autoRefreshQueued":"_autoRefreshQueued","_schemaFetchQueued":"_schemaFetchQueued","schemaChanged":"schemaChanged","$t":"$t","actualCount":"actualCount","actualSchema":"actualSchema","baseUri":"baseUri","batchCompleted":"batchCompleted","deferAutoRefresh":"deferAutoRefresh","enableJsonp":"enableJsonp","entitySet":"entitySet","executionContext":"executionContext","filterExpressions":"filterExpressions","fixedFullCount":"fixedFullCount","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","isFilteringSupported":"isFilteringSupported","isGroupingSupported":"isGroupingSupported","isItemIndexLookupSupported":"isItemIndexLookupSupported","isKeyIndexLookupSupported":"isKeyIndexLookupSupported","isSortingSupported":"isSortingSupported","notifyUsingSourceIndexes":"notifyUsingSourceIndexes","pageLoaded":"pageLoaded","pageSizeRequested":"pageSizeRequested","performFetch":"performFetch","propertiesRequested":"propertiesRequested","provideAggregatedCount":"provideAggregatedCount","provideAggregationParameter":"provideAggregationParameter","provideDesiredPropertiesParameter":"provideDesiredPropertiesParameter","provideFilterParameter":"provideFilterParameter","provideFullCount":"provideFullCount","provideItems":"provideItems","provideOrderByParameter":"provideOrderByParameter","providePagingParameter":"providePagingParameter","provideUri":"provideUri","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope","timeoutMilliseconds":"timeoutMilliseconds","updateNotifier":"updateNotifier","addItem":"addItem","addPageRequest":"addPageRequest","close":"close","createBatchRequest":"createBatchRequest","doRefreshInternal":"doRefreshInternal","doSchemaFetchInternal":"doSchemaFetchInternal","flushAutoRefresh":"flushAutoRefresh","getItemValue":"getItemValue","indexOfItem":"indexOfItem","indexOfKey":"indexOfKey","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","queueAutoRefresh":"queueAutoRefresh","queueSchemaFetch":"queueSchemaFetch","refresh":"refresh","refreshInternal":"refreshInternal","removeAllPageRequests":"removeAllPageRequests","removeItem":"removeItem","removePageRequest":"removePageRequest","resolveSchemaPropertyType":"resolveSchemaPropertyType","schemaFetchInternal":"schemaFetchInternal","setItemValue":"setItemValue"}}],"RestVirtualDataSourceDataProviderWorker":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/RestVirtualDataSourceDataProviderWorker","k":"class","s":"classes","m":{"constructor":"constructor","schemaRequestIndex":"schemaRequestIndex","createBatchRequest":"createBatchRequest"}}],"RestVirtualDataSourceDataProviderWorkerSettings":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/RestVirtualDataSourceDataProviderWorkerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","baseUri":"baseUri","enableJsonp":"enableJsonp","entitySet":"entitySet","filterExpressions":"filterExpressions","fixedFullCount":"fixedFullCount","groupDescriptions":"groupDescriptions","isAggregationSupported":"isAggregationSupported","performFetch":"performFetch","propertiesRequested":"propertiesRequested","provideAggregatedCount":"provideAggregatedCount","provideAggregationParameter":"provideAggregationParameter","provideDesiredPropertiesParameter":"provideDesiredPropertiesParameter","provideFilterParameter":"provideFilterParameter","provideFullCount":"provideFullCount","provideItems":"provideItems","provideOrderByParameter":"provideOrderByParameter","providePagingParameter":"providePagingParameter","provideUri":"provideUri","schemaIncludedProperties":"schemaIncludedProperties","sortDescriptions":"sortDescriptions","summaryDescriptions":"summaryDescriptions","summaryScope":"summaryScope"}}],"RestVirtualDataSourcePage":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/RestVirtualDataSourcePage","k":"class","s":"classes","m":{"constructor":"constructor","count":"count","getGroupInformation":"getGroupInformation","getItemAtIndex":"getItemAtIndex","getItemValueAtIndex":"getItemValueAtIndex","getSummaryInformation":"getSummaryInformation","pageIndex":"pageIndex","schema":"schema"}}],"RestVirtualDataSourceProviderTaskDataHolder":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/RestVirtualDataSourceProviderTaskDataHolder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"Schema":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/classes/Schema","k":"class","s":"classes","m":{"constructor":"constructor","entities":"entities","entitySets":"entitySets","namespace":"namespace"}}],"first":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/functions/first","k":"function","s":"functions"}],"toArray":[{"p":"igniteui-webcomponents-datasources","u":"/api/webcomponents/igniteui-webcomponents-datasources/7.0.0/functions/toArray","k":"function","s":"functions"}],"AnyValueDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/AnyValueDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"ArgumentExceptionExtension":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ArgumentExceptionExtension","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArgumentOutOfRangeExceptionExtension":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ArgumentOutOfRangeExceptionExtension","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArithmeticException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ArithmeticException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ArrayFormula":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ArrayFormula","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellRange":"cellRange","applyTo":"applyTo","clearCellRange":"clearCellRange","toString":"toString","areEqual":"areEqual","parse":"parse","staticInit":"staticInit"}}],"ArrayProxy":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ArrayProxy","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","_j":"_j","getEnumerator":"getEnumerator","getLength":"getLength","item":"item"}}],"AverageConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/AverageConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","aboveBelow":"aboveBelow","cellFormat":"cellFormat","conditionType":"conditionType","numericStandardDeviation":"numericStandardDeviation","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"AverageFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/AverageFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","average":"average","type":"type"}}],"Axis":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Axis","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisBetweenCategories":"axisBetweenCategories","axisGroup":"axisGroup","axisTitle":"axisTitle","baseUnit":"baseUnit","baseUnitIsAuto":"baseUnitIsAuto","categoryType":"categoryType","chart":"chart","crosses":"crosses","crossesAt":"crossesAt","displayUnit":"displayUnit","displayUnitCustom":"displayUnitCustom","displayUnitLabel":"displayUnitLabel","gapWidth":"gapWidth","logBase":"logBase","majorGridLines":"majorGridLines","majorTickMark":"majorTickMark","majorUnit":"majorUnit","majorUnitIsAuto":"majorUnitIsAuto","majorUnitScale":"majorUnitScale","maximumScale":"maximumScale","maximumScaleIsAuto":"maximumScaleIsAuto","minimumScale":"minimumScale","minimumScaleIsAuto":"minimumScaleIsAuto","minorGridLines":"minorGridLines","minorTickMark":"minorTickMark","minorUnit":"minorUnit","minorUnitIsAuto":"minorUnitIsAuto","minorUnitScale":"minorUnitScale","owner":"owner","position":"position","reversePlotOrder":"reversePlotOrder","scaleType":"scaleType","sheet":"sheet","tickLabelPosition":"tickLabelPosition","tickLabels":"tickLabels","tickLabelSpacing":"tickLabelSpacing","tickLabelSpacingIsAuto":"tickLabelSpacingIsAuto","tickLines":"tickLines","tickMarkSpacing":"tickMarkSpacing","type":"type","visible":"visible","workbook":"workbook","worksheet":"worksheet","setMajorMinorUnit":"setMajorMinorUnit"}}],"AxisCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/AxisCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","item":"item","remove":"remove","staticInit":"staticInit"}}],"BlanksConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/BlanksConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"BoxAndWhiskerSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/BoxAndWhiskerSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","quartileCalculation":"quartileCalculation","showInnerPoints":"showInnerPoints","showMeanLine":"showMeanLine","showMeanMarkers":"showMeanMarkers","showOutlierPoints":"showOutlierPoints"}}],"CategoryAxisBinning":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CategoryAxisBinning","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","binWidth":"binWidth","numberOfBins":"numberOfBins","overflow":"overflow","overflowThreshold":"overflowThreshold","underflow":"underflow","underflowThreshold":"underflowThreshold"}}],"CellConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","dataBarInfo":"dataBarInfo","hasConditionFormatting":"hasConditionFormatting","iconInfo":"iconInfo"}}],"CellDataBarInfo":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellDataBarInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisColor":"axisColor","axisPosition":"axisPosition","barBorder":"barBorder","barColor":"barColor","barFillType":"barFillType","barPositionFrom":"barPositionFrom","barPositionTo":"barPositionTo","direction":"direction","isNegative":"isNegative","showValue":"showValue"}}],"CellFill":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","noColor":"noColor","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillGradient":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellFillGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","stops":"stops","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillGradientStop":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellFillGradientStop","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","offset":"offset","equals":"equals","getHashCode":"getHashCode"}}],"CellFillLinearGradient":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellFillLinearGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","angle":"angle","stops":"stops","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillPattern":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellFillPattern","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backgroundColorInfo":"backgroundColorInfo","patternColorInfo":"patternColorInfo","patternStyle":"patternStyle","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellFillRectangularGradient":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellFillRectangularGradient","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottom":"bottom","left":"left","right":"right","stops":"stops","top":"top","noColor":"noColor","equals":"equals","getHashCode":"getHashCode","createLinearGradientFill":"createLinearGradientFill","createPatternFill":"createPatternFill","createRectangularGradientFill":"createRectangularGradientFill","createSolidFill":"createSolidFill"}}],"CellIconInfo":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CellIconInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","icon":"icon","iconIndex":"iconIndex","iconSet":"iconSet","showValue":"showValue"}}],"ChartArea":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartArea","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","roundedCorners":"roundedCorners","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartAreaBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartAreaBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","roundedCorners":"roundedCorners","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartBorder":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartBorder","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartDropLines":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartDropLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartEmptyFill":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartEmptyFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartFillBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartFillBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartGradientFill":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartGradientFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","angle":"angle","chart":"chart","gradientType":"gradientType","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","getStops":"getStops"}}],"ChartGridLines":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartGridLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","gridLineType":"gridLineType","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartHighLowLines":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartHighLowLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartLabelBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartLabelBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ChartLine":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartLine","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartLineBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartLineBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartObject":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartObject","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartPatternFill":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartPatternFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backgroundColor":"backgroundColor","chart":"chart","foregroundColor":"foregroundColor","owner":"owner","pattern":"pattern","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartSeriesLines":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartSeriesLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"Chartsheet":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Chartsheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","displayOptions":"displayOptions","hasProtectionPassword":"hasProtectionPassword","isProtected":"isProtected","name":"name","printOptions":"printOptions","protection":"protection","selected":"selected","sheetIndex":"sheetIndex","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","moveToSheetIndex":"moveToSheetIndex","protect":"protect","unprotect":"unprotect","staticInit":"staticInit"}}],"ChartsheetDisplayOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartsheetDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"ChartsheetDisplayOptionsBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartsheetDisplayOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"ChartsheetPrintOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartsheetPrintOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","paperSize":"paperSize","printErrors":"printErrors","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","resolution":"resolution","rightMargin":"rightMargin","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","reset":"reset"}}],"ChartsheetProtection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartsheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowEditContents":"allowEditContents","allowEditObjects":"allowEditObjects"}}],"ChartSolidFill":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartSolidFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","color":"color","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"ChartTextAreaBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartTextAreaBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ChartTickLines":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartTickLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ChartTitle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ChartTitle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","overlay":"overlay","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"ColorScaleConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ColorScaleConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorScaleType":"colorScaleType","conditionType":"conditionType","formula":"formula","maximumThreshold":"maximumThreshold","midpointThreshold":"midpointThreshold","minimumThreshold":"minimumThreshold","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ColorScaleCriterion":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ColorScaleCriterion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formatColor":"formatColor","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue","toString":"toString"}}],"ComboChartGroup":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ComboChartGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisGroup":"axisGroup","chart":"chart","chartType":"chartType","doughnutHoleSize":"doughnutHoleSize","firstSliceAngle":"firstSliceAngle","gapWidth":"gapWidth","owner":"owner","seriesOverlap":"seriesOverlap","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"ComboChartGroupCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ComboChartGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","item":"item","remove":"remove","staticInit":"staticInit"}}],"ConditionalFormatBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ConditionalFormatBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ConditionalFormatCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ConditionalFormatCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","addAverageCondition":"addAverageCondition","addBlanksCondition":"addBlanksCondition","addColorScaleCondition":"addColorScaleCondition","addDataBarCondition":"addDataBarCondition","addDateTimeCondition":"addDateTimeCondition","addDuplicateCondition":"addDuplicateCondition","addErrorsCondition":"addErrorsCondition","addFormulaCondition":"addFormulaCondition","addIconSetCondition":"addIconSetCondition","addNoBlanksCondition":"addNoBlanksCondition","addNoErrorsCondition":"addNoErrorsCondition","addOperatorCondition":"addOperatorCondition","addRankCondition":"addRankCondition","addTextCondition":"addTextCondition","addUniqueCondition":"addUniqueCondition","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"ConditionBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ConditionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ConditionValue":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ConditionValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue","toString":"toString"}}],"CriterionBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CriterionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","formula":"formula","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue"}}],"CustomDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","getFormula":"getFormula","isEquivalentTo":"isEquivalentTo","setFormula":"setFormula"}}],"CustomFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","condition1":"condition1","condition2":"condition2","conditionalOperator":"conditionalOperator"}}],"CustomFilterCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomFilterCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comparisonOperator":"comparisonOperator","value":"value","equals":"equals","getHashCode":"getHashCode"}}],"CustomListSortCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomListSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","list":"list","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"CustomTableStyleCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomTableStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"CustomView":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomView","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","name":"name","saveHiddenRowsAndColumns":"saveHiddenRowsAndColumns","savePrintOptions":"savePrintOptions","windowOptions":"windowOptions","apply":"apply","getDisplayOptions":"getDisplayOptions","getHiddenColumns":"getHiddenColumns","getHiddenRows":"getHiddenRows","getPrintOptions":"getPrintOptions","getSheetDisplayOptions":"getSheetDisplayOptions","getSheetPrintOptions":"getSheetPrintOptions"}}],"CustomViewChartDisplayOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomViewChartDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","magnification":"magnification","sizeWithWindow":"sizeWithWindow","visibility":"visibility","reset":"reset"}}],"CustomViewCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomViewCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"CustomViewDisplayOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomViewDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","magnificationInCurrentView":"magnificationInCurrentView","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showZeroValues":"showZeroValues","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"CustomViewWindowOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/CustomViewWindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","boundsInPixels":"boundsInPixels","maximized":"maximized","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","showFormulaBar":"showFormulaBar","showStatusBar":"showStatusBar","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"DataBarConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DataBarConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","axisColor":"axisColor","axisPosition":"axisPosition","barBorderColor":"barBorderColor","barColor":"barColor","barFillType":"barFillType","conditionType":"conditionType","direction":"direction","fillPercentMax":"fillPercentMax","fillPercentMin":"fillPercentMin","formula":"formula","maxPoint":"maxPoint","minPoint":"minPoint","negativeBarFormat":"negativeBarFormat","priority":"priority","regions":"regions","showBorder":"showBorder","showValue":"showValue","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DataLabel":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DataLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","height":"height","horizontalOverflow":"horizontalOverflow","isDeleted":"isDeleted","labelPosition":"labelPosition","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","separator":"separator","sheet":"sheet","showBubbleSize":"showBubbleSize","showCategoryName":"showCategoryName","showLegendKey":"showLegendKey","showPercentage":"showPercentage","showRange":"showRange","showSeriesName":"showSeriesName","showValue":"showValue","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","width":"width","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"DataPoint":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DataPoint","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyPicToEnd":"applyPicToEnd","applyPicToFront":"applyPicToFront","applyPicToSides":"applyPicToSides","border":"border","chart":"chart","dataLabel":"dataLabel","explosion":"explosion","fill":"fill","invertIfNegative":"invertIfNegative","markerBorder":"markerBorder","markerFill":"markerFill","markerSize":"markerSize","markerStyle":"markerStyle","owner":"owner","setAsTotal":"setAsTotal","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"DataPointCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DataPointCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item"}}],"DataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"DataValidationRuleCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DataValidationRuleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","findRule":"findRule","getAllReferences":"getAllReferences","item":"item","remove":"remove","removeItem":"removeItem","staticInit":"staticInit"}}],"DatePeriodFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DatePeriodFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","value":"value"}}],"DateRange":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DateRange","k":"class","s":"classes","m":{"constructor":"constructor","end":"end","start":"start","$t":"$t"}}],"DateRangeFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DateRangeFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start"}}],"DateTimeConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DateTimeConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","dateOperator":"dateOperator","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DiamondShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DiamondShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"DisplayOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showZeroValues":"showZeroValues","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"DisplayOptionsBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DisplayOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","visibility":"visibility","reset":"reset"}}],"DisplayUnitLabel":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DisplayUnitLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"DisplayValueCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DisplayValueCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"DivideByZeroException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DivideByZeroException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"DocumentEncryptedException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentEncryptedException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"DocumentProperties":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentProperties","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","author":"author","category":"category","comments":"comments","company":"company","keywords":"keywords","manager":"manager","status":"status","subject":"subject","title":"title"}}],"DocumentsCoreLocaleBg":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleCs":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleDa":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleDe":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleEn":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleEs":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleFr":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleHu":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleIt":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleJa":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleNb":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleNl":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocalePl":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocalePt":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleRo":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleRu":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleSv":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleTr":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleZhHans":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DocumentsCoreLocaleZhHant":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DocumentsCoreLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","LE_ArgumentOutOfRangeException_ValueError":"LE_ArgumentOutOfRangeException_ValueError","LE_DocumentEncryptedException_DefaultMessage":"LE_DocumentEncryptedException_DefaultMessage","LE_EncryptionAlgorithmNotSupportedException_DefaultMessage":"LE_EncryptionAlgorithmNotSupportedException_DefaultMessage","LE_FormatException_TypeError":"LE_FormatException_TypeError","LE_InvalidPasswordException_DefaultMessage":"LE_InvalidPasswordException_DefaultMessage"}}],"DuplicateConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DuplicateConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"DynamicValuesFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/DynamicValuesFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"EllipseShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/EllipseShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"EndOfStreamException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/EndOfStreamException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"ErrorBars":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ErrorBars","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","direction":"direction","endStyle":"endStyle","errorValueType":"errorValueType","fill":"fill","owner":"owner","sheet":"sheet","value":"value","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet"}}],"ErrorsConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ErrorsConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"ErrorValue":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ErrorValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","argumentOrFunctionNotAvailable":"argumentOrFunctionNotAvailable","circularity":"circularity","divisionByZero":"divisionByZero","emptyCellRangeIntersection":"emptyCellRangeIntersection","invalidCellReference":"invalidCellReference","valueRangeOverflow":"valueRangeOverflow","wrongFunctionName":"wrongFunctionName","wrongOperandType":"wrongOperandType","toString":"toString"}}],"ExcelCalcErrorValue":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelCalcErrorValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","code":"code","errorValue":"errorValue","message":"message","toString":"toString"}}],"ExcelCalcFunction":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelCalcFunction","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxArgs":"maxArgs","minArgs":"minArgs","name":"name","canParameterBeEnumerable":"canParameterBeEnumerable","doesParameterAllowIntermediateResultArray":"doesParameterAllowIntermediateResultArray","getArguments":"getArguments","performEvaluation":"performEvaluation"}}],"ExcelCalcNumberStack":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelCalcNumberStack","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","owningCell":"owningCell","clear":"clear","count":"count","peek":"peek","pop":"pop","push":"push","reset":"reset"}}],"ExcelCalcValue":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelCalcValue","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","isArray":"isArray","isArrayGroup":"isArrayGroup","isBoolean":"isBoolean","isDateTime":"isDateTime","isDBNull":"isDBNull","isError":"isError","isNull":"isNull","isReference":"isReference","isString":"isString","value":"value","compareTo":"compareTo","getResolvedValue":"getResolvedValue","isSameValue":"isSameValue","toArrayProxy":"toArrayProxy","toArrayProxyGroup":"toArrayProxyGroup","toBoolean":"toBoolean","toByte":"toByte","toChar":"toChar","toDateTime":"toDateTime","toDecimal":"toDecimal","toDouble":"toDouble","toErrorValue":"toErrorValue","toInt":"toInt","toInt16":"toInt16","toInt32":"toInt32","toInt64":"toInt64","toReference":"toReference","toSingle":"toSingle","toString":"toString","toString1":"toString1","areValuesEqual":"areValuesEqual","dateTimeToExcelDate":"dateTimeToExcelDate","excelDateToDateTime":"excelDateToDateTime"}}],"ExcelLocaleBg":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleCs":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleDa":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleDe":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleEn":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleEs":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleFr":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleHu":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleIt":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleJa":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","String":"String","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleNb":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleNl":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocalePl":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocalePt":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleRo":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleRu":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Axis_NoCrossAxis1":"LE_Axis_NoCrossAxis1","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartGradientFill_EmptyStops1":"LE_ChartGradientFill_EmptyStops1","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidConditionalFormatFormula1":"LE_FormulaParseException_InvalidConditionalFormatFormula1","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_GradientStop_InvalidPosition1":"LE_GradientStop_InvalidPosition1","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleSv":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleTr":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleZhHans":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"ExcelLocaleZhHant":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ExcelLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","DefaultTotalLabel":"DefaultTotalLabel","Error_AnchoredReference":"Error_AnchoredReference","Error_ExplicitThis":"Error_ExplicitThis","Error_ExternalRange":"Error_ExternalRange","Error_FormulaNotSupported":"Error_FormulaNotSupported","Error_Internal":"Error_Internal","Error_InvalidFunction":"Error_InvalidFunction","Error_InvalidFunctionArgCountTooFew":"Error_InvalidFunctionArgCountTooFew","Error_InvalidFunctionArgCountTooMany":"Error_InvalidFunctionArgCountTooMany","Error_InvalidNumberSystemDigit":"Error_InvalidNumberSystemDigit","Error_InvalidOperand":"Error_InvalidOperand","Error_InvalidOperatorArgCount":"Error_InvalidOperatorArgCount","Error_InvalidReference":"Error_InvalidReference","Error_Location":"Error_Location","Error_MethodNotSupported":"Error_MethodNotSupported","Error_NoCurrentRangeElement":"Error_NoCurrentRangeElement","Error_NullFunctionResult":"Error_NullFunctionResult","Error_NullOperand":"Error_NullOperand","Error_ParseRef":"Error_ParseRef","Error_RangeFromLast":"Error_RangeFromLast","Error_RangeFromNull":"Error_RangeFromNull","Error_RangeFromRefBase":"Error_RangeFromRefBase","Error_RangeLast":"Error_RangeLast","Error_RangeNormalizeScope":"Error_RangeNormalizeScope","Error_RangeToNull":"Error_RangeToNull","Error_RangeToRefBase":"Error_RangeToRefBase","Error_RangeTuple":"Error_RangeTuple","Error_RangeValidateCount":"Error_RangeValidateCount","Error_ReadOnlyReference":"Error_ReadOnlyReference","Error_ReferenceNotEumerable":"Error_ReferenceNotEumerable","Error_RefMalformed":"Error_RefMalformed","Error_RP_ContainsBase":"Error_RP_ContainsBase","Error_RP_ContainsTarget":"Error_RP_ContainsTarget","Error_RP_EmptyElement":"Error_RP_EmptyElement","Error_RP_EmptyReference":"Error_RP_EmptyReference","Error_RP_MalformedExtra":"Error_RP_MalformedExtra","Error_RP_MalformedUnexpected":"Error_RP_MalformedUnexpected","Error_RP_MergeRelativeBase":"Error_RP_MergeRelativeBase","Error_RP_MissingCloseParenthesis":"Error_RP_MissingCloseParenthesis","Error_RP_MissingEndQuotes":"Error_RP_MissingEndQuotes","Error_RT_Expected":"Error_RT_Expected","Error_RT_InvalidScope":"Error_RT_InvalidScope","Error_RT_InvalidScope_CharactersAfterClosingQuotes":"Error_RT_InvalidScope_CharactersAfterClosingQuotes","Error_RT_InvalidTuple_CharactersAfterScopeEnd":"Error_RT_InvalidTuple_CharactersAfterScopeEnd","Error_RT_InvalidTuple_MissingCloseParenthesis":"Error_RT_InvalidTuple_MissingCloseParenthesis","Error_RT_InvalidTuple_MissingEndQuotes":"Error_RT_InvalidTuple_MissingEndQuotes","Error_RT_InvalidTuple_NamePortionEmpty":"Error_RT_InvalidTuple_NamePortionEmpty","Error_RT_InvalidTuple_ScopeIndexLarge":"Error_RT_InvalidTuple_ScopeIndexLarge","Error_RT_InvalidTuple_UnescapedCharacter":"Error_RT_InvalidTuple_UnescapedCharacter","Error_RT_NullRefName":"Error_RT_NullRefName","Error_RT_Unexpected":"Error_RT_Unexpected","Error_ScopeAllNotLast":"Error_ScopeAllNotLast","Error_UCErrorCode_Div":"Error_UCErrorCode_Div","Error_UCErrorCode_Fail":"Error_UCErrorCode_Fail","Error_UCErrorCode_NA":"Error_UCErrorCode_NA","Error_UCErrorCode_Name":"Error_UCErrorCode_Name","Error_UCErrorCode_Null":"Error_UCErrorCode_Null","Error_UCErrorCode_Num":"Error_UCErrorCode_Num","Error_UCErrorCode_Ok":"Error_UCErrorCode_Ok","Error_UCErrorCode_Reference":"Error_UCErrorCode_Reference","Error_UCErrorCode_Unknown":"Error_UCErrorCode_Unknown","Error_UCErrorCode_Value":"Error_UCErrorCode_Value","Error_UnexpectedScope":"Error_UnexpectedScope","Error_UnknownRange":"Error_UnknownRange","Error_UnknownRefType":"Error_UnknownRefType","Error_UnknownScope":"Error_UnknownScope","Error_UnresolvedExternal":"Error_UnresolvedExternal","Func_abs_Arg_0":"Func_abs_Arg_0","Func_abs_ArgDesc_0":"Func_abs_ArgDesc_0","Func_abs_Category":"Func_abs_Category","Func_abs_CategoryURL":"Func_abs_CategoryURL","Func_abs_Desc":"Func_abs_Desc","Func_acos_Arg_0":"Func_acos_Arg_0","Func_acos_ArgDesc_0":"Func_acos_ArgDesc_0","Func_acos_Category":"Func_acos_Category","Func_acos_CategoryURL":"Func_acos_CategoryURL","Func_acos_Desc":"Func_acos_Desc","Func_acosh_Arg_0":"Func_acosh_Arg_0","Func_acosh_ArgDesc_0":"Func_acosh_ArgDesc_0","Func_acosh_Category":"Func_acosh_Category","Func_acosh_CategoryURL":"Func_acosh_CategoryURL","Func_acosh_Desc":"Func_acosh_Desc","Func_and_Arg_0":"Func_and_Arg_0","Func_and_ArgDesc_0":"Func_and_ArgDesc_0","Func_and_Category":"Func_and_Category","Func_and_CategoryURL":"Func_and_CategoryURL","Func_and_Desc":"Func_and_Desc","Func_asin_Arg_0":"Func_asin_Arg_0","Func_asin_ArgDesc_0":"Func_asin_ArgDesc_0","Func_asin_Category":"Func_asin_Category","Func_asin_CategoryURL":"Func_asin_CategoryURL","Func_asin_Desc":"Func_asin_Desc","Func_asinh_Arg_0":"Func_asinh_Arg_0","Func_asinh_ArgDesc_0":"Func_asinh_ArgDesc_0","Func_asinh_Category":"Func_asinh_Category","Func_asinh_CategoryURL":"Func_asinh_CategoryURL","Func_asinh_Desc":"Func_asinh_Desc","Func_atan_Arg_0":"Func_atan_Arg_0","Func_atan_ArgDesc_0":"Func_atan_ArgDesc_0","Func_atan_Category":"Func_atan_Category","Func_atan_CategoryURL":"Func_atan_CategoryURL","Func_atan_Desc":"Func_atan_Desc","Func_atan2_Arg_0":"Func_atan2_Arg_0","Func_atan2_Arg_1":"Func_atan2_Arg_1","Func_atan2_ArgDesc_0":"Func_atan2_ArgDesc_0","Func_atan2_ArgDesc_1":"Func_atan2_ArgDesc_1","Func_atan2_Category":"Func_atan2_Category","Func_atan2_CategoryURL":"Func_atan2_CategoryURL","Func_atan2_Desc":"Func_atan2_Desc","Func_atanh_Arg_0":"Func_atanh_Arg_0","Func_atanh_ArgDesc_0":"Func_atanh_ArgDesc_0","Func_atanh_Category":"Func_atanh_Category","Func_atanh_CategoryURL":"Func_atanh_CategoryURL","Func_atanh_Desc":"Func_atanh_Desc","Func_avedev_Arg_0":"Func_avedev_Arg_0","Func_avedev_ArgDesc_0":"Func_avedev_ArgDesc_0","Func_avedev_Category":"Func_avedev_Category","Func_avedev_CategoryURL":"Func_avedev_CategoryURL","Func_avedev_Desc":"Func_avedev_Desc","Func_average_Arg_0":"Func_average_Arg_0","Func_average_ArgDesc_0":"Func_average_ArgDesc_0","Func_average_Category":"Func_average_Category","Func_average_CategoryURL":"Func_average_CategoryURL","Func_average_Desc":"Func_average_Desc","Func_bin2dec_Arg_0":"Func_bin2dec_Arg_0","Func_bin2dec_ArgDesc_0":"Func_bin2dec_ArgDesc_0","Func_bin2dec_Category":"Func_bin2dec_Category","Func_bin2dec_CategoryURL":"Func_bin2dec_CategoryURL","Func_bin2dec_Desc":"Func_bin2dec_Desc","Func_bin2hex_Arg_0":"Func_bin2hex_Arg_0","Func_bin2hex_Arg_1":"Func_bin2hex_Arg_1","Func_bin2hex_ArgDesc_0":"Func_bin2hex_ArgDesc_0","Func_bin2hex_ArgDesc_1":"Func_bin2hex_ArgDesc_1","Func_bin2hex_Category":"Func_bin2hex_Category","Func_bin2hex_CategoryURL":"Func_bin2hex_CategoryURL","Func_bin2hex_Desc":"Func_bin2hex_Desc","Func_bin2oct_Arg_0":"Func_bin2oct_Arg_0","Func_bin2oct_Arg_1":"Func_bin2oct_Arg_1","Func_bin2oct_ArgDesc_0":"Func_bin2oct_ArgDesc_0","Func_bin2oct_ArgDesc_1":"Func_bin2oct_ArgDesc_1","Func_bin2oct_Category":"Func_bin2oct_Category","Func_bin2oct_CategoryURL":"Func_bin2oct_CategoryURL","Func_bin2oct_Desc":"Func_bin2oct_Desc","Func_binomdist_Arg_0":"Func_binomdist_Arg_0","Func_binomdist_Arg_1":"Func_binomdist_Arg_1","Func_binomdist_Arg_2":"Func_binomdist_Arg_2","Func_binomdist_Arg_3":"Func_binomdist_Arg_3","Func_binomdist_ArgDesc_0":"Func_binomdist_ArgDesc_0","Func_binomdist_ArgDesc_1":"Func_binomdist_ArgDesc_1","Func_binomdist_ArgDesc_2":"Func_binomdist_ArgDesc_2","Func_binomdist_ArgDesc_3":"Func_binomdist_ArgDesc_3","Func_binomdist_Category":"Func_binomdist_Category","Func_binomdist_CategoryURL":"Func_binomdist_CategoryURL","Func_binomdist_Desc":"Func_binomdist_Desc","Func_CategoryURL_Template":"Func_CategoryURL_Template","Func_ceiling_Arg_0":"Func_ceiling_Arg_0","Func_ceiling_Arg_1":"Func_ceiling_Arg_1","Func_ceiling_ArgDesc_0":"Func_ceiling_ArgDesc_0","Func_ceiling_ArgDesc_1":"Func_ceiling_ArgDesc_1","Func_ceiling_Category":"Func_ceiling_Category","Func_ceiling_CategoryURL":"Func_ceiling_CategoryURL","Func_ceiling_Desc":"Func_ceiling_Desc","Func_char_Arg_0":"Func_char_Arg_0","Func_char_ArgDesc_0":"Func_char_ArgDesc_0","Func_char_Category":"Func_char_Category","Func_char_CategoryURL":"Func_char_CategoryURL","Func_char_Desc":"Func_char_Desc","Func_choose_Arg_0":"Func_choose_Arg_0","Func_choose_Arg_1":"Func_choose_Arg_1","Func_choose_ArgDesc_0":"Func_choose_ArgDesc_0","Func_choose_ArgDesc_1":"Func_choose_ArgDesc_1","Func_choose_Category":"Func_choose_Category","Func_choose_CategoryURL":"Func_choose_CategoryURL","Func_choose_Desc":"Func_choose_Desc","Func_code_Arg_0":"Func_code_Arg_0","Func_code_ArgDesc_0":"Func_code_ArgDesc_0","Func_code_Category":"Func_code_Category","Func_code_CategoryURL":"Func_code_CategoryURL","Func_code_Desc":"Func_code_Desc","Func_combin_Arg_0":"Func_combin_Arg_0","Func_combin_Arg_1":"Func_combin_Arg_1","Func_combin_ArgDesc_0":"Func_combin_ArgDesc_0","Func_combin_ArgDesc_1":"Func_combin_ArgDesc_1","Func_combin_Category":"Func_combin_Category","Func_combin_CategoryURL":"Func_combin_CategoryURL","Func_combin_Desc":"Func_combin_Desc","Func_combina_Arg_0":"Func_combina_Arg_0","Func_combina_Arg_1":"Func_combina_Arg_1","Func_combina_ArgDesc_0":"Func_combina_ArgDesc_0","Func_combina_ArgDesc_1":"Func_combina_ArgDesc_1","Func_combina_Category":"Func_combina_Category","Func_combina_CategoryURL":"Func_combina_CategoryURL","Func_combina_Desc":"Func_combina_Desc","Func_complex_Arg_0":"Func_complex_Arg_0","Func_complex_Arg_1":"Func_complex_Arg_1","Func_complex_Arg_2":"Func_complex_Arg_2","Func_complex_ArgDesc_0":"Func_complex_ArgDesc_0","Func_complex_ArgDesc_1":"Func_complex_ArgDesc_1","Func_complex_ArgDesc_2":"Func_complex_ArgDesc_2","Func_complex_Category":"Func_complex_Category","Func_complex_CategoryURL":"Func_complex_CategoryURL","Func_complex_Desc":"Func_complex_Desc","Func_concatenate_Arg_0":"Func_concatenate_Arg_0","Func_concatenate_ArgDesc_0":"Func_concatenate_ArgDesc_0","Func_concatenate_Category":"Func_concatenate_Category","Func_concatenate_CategoryURL":"Func_concatenate_CategoryURL","Func_concatenate_Desc":"Func_concatenate_Desc","Func_convert_Arg_0":"Func_convert_Arg_0","Func_convert_Arg_1":"Func_convert_Arg_1","Func_convert_Arg_2":"Func_convert_Arg_2","Func_convert_ArgDesc_0":"Func_convert_ArgDesc_0","Func_convert_ArgDesc_1":"Func_convert_ArgDesc_1","Func_convert_ArgDesc_2":"Func_convert_ArgDesc_2","Func_convert_Category":"Func_convert_Category","Func_convert_CategoryURL":"Func_convert_CategoryURL","Func_convert_Desc":"Func_convert_Desc","Func_cos_Arg_0":"Func_cos_Arg_0","Func_cos_ArgDesc_0":"Func_cos_ArgDesc_0","Func_cos_Category":"Func_cos_Category","Func_cos_CategoryURL":"Func_cos_CategoryURL","Func_cos_Desc":"Func_cos_Desc","Func_cosh_Arg_0":"Func_cosh_Arg_0","Func_cosh_ArgDesc_0":"Func_cosh_ArgDesc_0","Func_cosh_Category":"Func_cosh_Category","Func_cosh_CategoryURL":"Func_cosh_CategoryURL","Func_cosh_Desc":"Func_cosh_Desc","Func_count_Arg_0":"Func_count_Arg_0","Func_count_ArgDesc_0":"Func_count_ArgDesc_0","Func_count_Category":"Func_count_Category","Func_count_CategoryURL":"Func_count_CategoryURL","Func_count_Desc":"Func_count_Desc","Func_counta_Arg_0":"Func_counta_Arg_0","Func_counta_ArgDesc_0":"Func_counta_ArgDesc_0","Func_counta_Category":"Func_counta_Category","Func_counta_CategoryURL":"Func_counta_CategoryURL","Func_counta_Desc":"Func_counta_Desc","Func_critbinom_Arg_0":"Func_critbinom_Arg_0","Func_critbinom_Arg_1":"Func_critbinom_Arg_1","Func_critbinom_Arg_2":"Func_critbinom_Arg_2","Func_critbinom_ArgDesc_0":"Func_critbinom_ArgDesc_0","Func_critbinom_ArgDesc_1":"Func_critbinom_ArgDesc_1","Func_critbinom_ArgDesc_2":"Func_critbinom_ArgDesc_2","Func_critbinom_Category":"Func_critbinom_Category","Func_critbinom_CategoryURL":"Func_critbinom_CategoryURL","Func_critbinom_Desc":"Func_critbinom_Desc","Func_date_Arg_0":"Func_date_Arg_0","Func_date_Arg_1":"Func_date_Arg_1","Func_date_Arg_2":"Func_date_Arg_2","Func_date_ArgDesc_0":"Func_date_ArgDesc_0","Func_date_ArgDesc_1":"Func_date_ArgDesc_1","Func_date_ArgDesc_2":"Func_date_ArgDesc_2","Func_date_Category":"Func_date_Category","Func_date_CategoryURL":"Func_date_CategoryURL","Func_date_Desc":"Func_date_Desc","Func_dateadd_Arg_0":"Func_dateadd_Arg_0","Func_dateadd_Arg_1":"Func_dateadd_Arg_1","Func_dateadd_Arg_2":"Func_dateadd_Arg_2","Func_dateadd_ArgDesc_0":"Func_dateadd_ArgDesc_0","Func_dateadd_ArgDesc_1":"Func_dateadd_ArgDesc_1","Func_dateadd_ArgDesc_2":"Func_dateadd_ArgDesc_2","Func_dateadd_Category":"Func_dateadd_Category","Func_dateadd_CategoryURL":"Func_dateadd_CategoryURL","Func_dateadd_Desc":"Func_dateadd_Desc","Func_datediff_Arg_0":"Func_datediff_Arg_0","Func_datediff_Arg_1":"Func_datediff_Arg_1","Func_datediff_Arg_2":"Func_datediff_Arg_2","Func_datediff_ArgDesc_0":"Func_datediff_ArgDesc_0","Func_datediff_ArgDesc_1":"Func_datediff_ArgDesc_1","Func_datediff_ArgDesc_2":"Func_datediff_ArgDesc_2","Func_datediff_Category":"Func_datediff_Category","Func_datediff_CategoryURL":"Func_datediff_CategoryURL","Func_datediff_Desc":"Func_datediff_Desc","Func_datevalue_Arg_0":"Func_datevalue_Arg_0","Func_datevalue_ArgDesc_0":"Func_datevalue_ArgDesc_0","Func_datevalue_Category":"Func_datevalue_Category","Func_datevalue_CategoryURL":"Func_datevalue_CategoryURL","Func_datevalue_Desc":"Func_datevalue_Desc","Func_day_Arg_0":"Func_day_Arg_0","Func_day_ArgDesc_0":"Func_day_ArgDesc_0","Func_day_Category":"Func_day_Category","Func_day_CategoryURL":"Func_day_CategoryURL","Func_day_Desc":"Func_day_Desc","Func_days360_Arg_0":"Func_days360_Arg_0","Func_days360_Arg_1":"Func_days360_Arg_1","Func_days360_Arg_2":"Func_days360_Arg_2","Func_days360_ArgDesc_0":"Func_days360_ArgDesc_0","Func_days360_ArgDesc_1":"Func_days360_ArgDesc_1","Func_days360_ArgDesc_2":"Func_days360_ArgDesc_2","Func_days360_Category":"Func_days360_Category","Func_days360_CategoryURL":"Func_days360_CategoryURL","Func_days360_Desc":"Func_days360_Desc","Func_db_Arg_0":"Func_db_Arg_0","Func_db_Arg_1":"Func_db_Arg_1","Func_db_Arg_2":"Func_db_Arg_2","Func_db_Arg_3":"Func_db_Arg_3","Func_db_Arg_4":"Func_db_Arg_4","Func_db_ArgDesc_0":"Func_db_ArgDesc_0","Func_db_ArgDesc_1":"Func_db_ArgDesc_1","Func_db_ArgDesc_2":"Func_db_ArgDesc_2","Func_db_ArgDesc_3":"Func_db_ArgDesc_3","Func_db_ArgDesc_4":"Func_db_ArgDesc_4","Func_db_Category":"Func_db_Category","Func_db_CategoryURL":"Func_db_CategoryURL","Func_db_Desc":"Func_db_Desc","Func_dbnull_Category":"Func_dbnull_Category","Func_dbnull_CategoryURL":"Func_dbnull_CategoryURL","Func_dbnull_Desc":"Func_dbnull_Desc","Func_ddb_Arg_0":"Func_ddb_Arg_0","Func_ddb_Arg_1":"Func_ddb_Arg_1","Func_ddb_Arg_2":"Func_ddb_Arg_2","Func_ddb_Arg_3":"Func_ddb_Arg_3","Func_ddb_Arg_4":"Func_ddb_Arg_4","Func_ddb_ArgDesc_0":"Func_ddb_ArgDesc_0","Func_ddb_ArgDesc_1":"Func_ddb_ArgDesc_1","Func_ddb_ArgDesc_2":"Func_ddb_ArgDesc_2","Func_ddb_ArgDesc_3":"Func_ddb_ArgDesc_3","Func_ddb_ArgDesc_4":"Func_ddb_ArgDesc_4","Func_ddb_Category":"Func_ddb_Category","Func_ddb_CategoryURL":"Func_ddb_CategoryURL","Func_ddb_Desc":"Func_ddb_Desc","Func_dec2bin_Arg_0":"Func_dec2bin_Arg_0","Func_dec2bin_Arg_1":"Func_dec2bin_Arg_1","Func_dec2bin_ArgDesc_0":"Func_dec2bin_ArgDesc_0","Func_dec2bin_ArgDesc_1":"Func_dec2bin_ArgDesc_1","Func_dec2bin_Category":"Func_dec2bin_Category","Func_dec2bin_CategoryURL":"Func_dec2bin_CategoryURL","Func_dec2bin_Desc":"Func_dec2bin_Desc","Func_dec2hex_Arg_0":"Func_dec2hex_Arg_0","Func_dec2hex_Arg_1":"Func_dec2hex_Arg_1","Func_dec2hex_ArgDesc_0":"Func_dec2hex_ArgDesc_0","Func_dec2hex_ArgDesc_1":"Func_dec2hex_ArgDesc_1","Func_dec2hex_Category":"Func_dec2hex_Category","Func_dec2hex_CategoryURL":"Func_dec2hex_CategoryURL","Func_dec2hex_Desc":"Func_dec2hex_Desc","Func_dec2oct_Arg_0":"Func_dec2oct_Arg_0","Func_dec2oct_Arg_1":"Func_dec2oct_Arg_1","Func_dec2oct_ArgDesc_0":"Func_dec2oct_ArgDesc_0","Func_dec2oct_ArgDesc_1":"Func_dec2oct_ArgDesc_1","Func_dec2oct_Category":"Func_dec2oct_Category","Func_dec2oct_CategoryURL":"Func_dec2oct_CategoryURL","Func_dec2oct_Desc":"Func_dec2oct_Desc","Func_degrees_Arg_0":"Func_degrees_Arg_0","Func_degrees_ArgDesc_0":"Func_degrees_ArgDesc_0","Func_degrees_Category":"Func_degrees_Category","Func_degrees_CategoryURL":"Func_degrees_CategoryURL","Func_degrees_Desc":"Func_degrees_Desc","Func_delta_Arg_0":"Func_delta_Arg_0","Func_delta_Arg_1":"Func_delta_Arg_1","Func_delta_ArgDesc_0":"Func_delta_ArgDesc_0","Func_delta_ArgDesc_1":"Func_delta_ArgDesc_1","Func_delta_Category":"Func_delta_Category","Func_delta_CategoryURL":"Func_delta_CategoryURL","Func_delta_Desc":"Func_delta_Desc","Func_dollarde_Arg_0":"Func_dollarde_Arg_0","Func_dollarde_Arg_1":"Func_dollarde_Arg_1","Func_dollarde_ArgDesc_0":"Func_dollarde_ArgDesc_0","Func_dollarde_ArgDesc_1":"Func_dollarde_ArgDesc_1","Func_dollarde_Category":"Func_dollarde_Category","Func_dollarde_CategoryURL":"Func_dollarde_CategoryURL","Func_dollarde_Desc":"Func_dollarde_Desc","Func_dollarfr_Arg_0":"Func_dollarfr_Arg_0","Func_dollarfr_Arg_1":"Func_dollarfr_Arg_1","Func_dollarfr_ArgDesc_0":"Func_dollarfr_ArgDesc_0","Func_dollarfr_ArgDesc_1":"Func_dollarfr_ArgDesc_1","Func_dollarfr_Category":"Func_dollarfr_Category","Func_dollarfr_CategoryURL":"Func_dollarfr_CategoryURL","Func_dollarfr_Desc":"Func_dollarfr_Desc","Func_edate_Arg_0":"Func_edate_Arg_0","Func_edate_Arg_1":"Func_edate_Arg_1","Func_edate_ArgDesc_0":"Func_edate_ArgDesc_0","Func_edate_ArgDesc_1":"Func_edate_ArgDesc_1","Func_edate_Category":"Func_edate_Category","Func_edate_CategoryURL":"Func_edate_CategoryURL","Func_edate_Desc":"Func_edate_Desc","Func_eomonth_Arg_0":"Func_eomonth_Arg_0","Func_eomonth_Arg_1":"Func_eomonth_Arg_1","Func_eomonth_ArgDesc_0":"Func_eomonth_ArgDesc_0","Func_eomonth_ArgDesc_1":"Func_eomonth_ArgDesc_1","Func_eomonth_Category":"Func_eomonth_Category","Func_eomonth_CategoryURL":"Func_eomonth_CategoryURL","Func_eomonth_Desc":"Func_eomonth_Desc","Func_errortype_Arg_0":"Func_errortype_Arg_0","Func_errortype_ArgDesc_0":"Func_errortype_ArgDesc_0","Func_errortype_Category":"Func_errortype_Category","Func_errortype_CategoryURL":"Func_errortype_CategoryURL","Func_errortype_Desc":"Func_errortype_Desc","Func_even_Arg_0":"Func_even_Arg_0","Func_even_ArgDesc_0":"Func_even_ArgDesc_0","Func_even_Category":"Func_even_Category","Func_even_CategoryURL":"Func_even_CategoryURL","Func_even_Desc":"Func_even_Desc","Func_exp_Arg_0":"Func_exp_Arg_0","Func_exp_ArgDesc_0":"Func_exp_ArgDesc_0","Func_exp_Category":"Func_exp_Category","Func_exp_CategoryURL":"Func_exp_CategoryURL","Func_exp_Desc":"Func_exp_Desc","Func_fact_Arg_0":"Func_fact_Arg_0","Func_fact_ArgDesc_0":"Func_fact_ArgDesc_0","Func_fact_Category":"Func_fact_Category","Func_fact_CategoryURL":"Func_fact_CategoryURL","Func_fact_Desc":"Func_fact_Desc","Func_factdouble_Arg_0":"Func_factdouble_Arg_0","Func_factdouble_ArgDesc_0":"Func_factdouble_ArgDesc_0","Func_factdouble_Category":"Func_factdouble_Category","Func_factdouble_CategoryURL":"Func_factdouble_CategoryURL","Func_factdouble_Desc":"Func_factdouble_Desc","Func_false_Category":"Func_false_Category","Func_false_CategoryURL":"Func_false_CategoryURL","Func_false_Desc":"Func_false_Desc","Func_find_Arg_0":"Func_find_Arg_0","Func_find_Arg_1":"Func_find_Arg_1","Func_find_Arg_2":"Func_find_Arg_2","Func_find_ArgDesc_0":"Func_find_ArgDesc_0","Func_find_ArgDesc_1":"Func_find_ArgDesc_1","Func_find_ArgDesc_2":"Func_find_ArgDesc_2","Func_find_Category":"Func_find_Category","Func_find_CategoryURL":"Func_find_CategoryURL","Func_find_Desc":"Func_find_Desc","Func_fixed_Arg_0":"Func_fixed_Arg_0","Func_fixed_Arg_1":"Func_fixed_Arg_1","Func_fixed_Arg_2":"Func_fixed_Arg_2","Func_fixed_ArgDesc_0":"Func_fixed_ArgDesc_0","Func_fixed_ArgDesc_1":"Func_fixed_ArgDesc_1","Func_fixed_ArgDesc_2":"Func_fixed_ArgDesc_2","Func_fixed_Category":"Func_fixed_Category","Func_fixed_CategoryURL":"Func_fixed_CategoryURL","Func_fixed_Desc":"Func_fixed_Desc","Func_floor_Arg_0":"Func_floor_Arg_0","Func_floor_Arg_1":"Func_floor_Arg_1","Func_floor_ArgDesc_0":"Func_floor_ArgDesc_0","Func_floor_ArgDesc_1":"Func_floor_ArgDesc_1","Func_floor_Category":"Func_floor_Category","Func_floor_CategoryURL":"Func_floor_CategoryURL","Func_floor_Desc":"Func_floor_Desc","Func_fv_Arg_0":"Func_fv_Arg_0","Func_fv_Arg_1":"Func_fv_Arg_1","Func_fv_Arg_2":"Func_fv_Arg_2","Func_fv_Arg_3":"Func_fv_Arg_3","Func_fv_Arg_4":"Func_fv_Arg_4","Func_fv_ArgDesc_0":"Func_fv_ArgDesc_0","Func_fv_ArgDesc_1":"Func_fv_ArgDesc_1","Func_fv_ArgDesc_2":"Func_fv_ArgDesc_2","Func_fv_ArgDesc_3":"Func_fv_ArgDesc_3","Func_fv_ArgDesc_4":"Func_fv_ArgDesc_4","Func_fv_Category":"Func_fv_Category","Func_fv_CategoryURL":"Func_fv_CategoryURL","Func_fv_Desc":"Func_fv_Desc","Func_gcd_Arg_0":"Func_gcd_Arg_0","Func_gcd_ArgDesc_0":"Func_gcd_ArgDesc_0","Func_gcd_Category":"Func_gcd_Category","Func_gcd_CategoryURL":"Func_gcd_CategoryURL","Func_gcd_Desc":"Func_gcd_Desc","Func_gestep_Arg_0":"Func_gestep_Arg_0","Func_gestep_Arg_1":"Func_gestep_Arg_1","Func_gestep_ArgDesc_0":"Func_gestep_ArgDesc_0","Func_gestep_ArgDesc_1":"Func_gestep_ArgDesc_1","Func_gestep_Category":"Func_gestep_Category","Func_gestep_CategoryURL":"Func_gestep_CategoryURL","Func_gestep_Desc":"Func_gestep_Desc","Func_hex2bin_Arg_0":"Func_hex2bin_Arg_0","Func_hex2bin_Arg_1":"Func_hex2bin_Arg_1","Func_hex2bin_ArgDesc_0":"Func_hex2bin_ArgDesc_0","Func_hex2bin_ArgDesc_1":"Func_hex2bin_ArgDesc_1","Func_hex2bin_Category":"Func_hex2bin_Category","Func_hex2bin_CategoryURL":"Func_hex2bin_CategoryURL","Func_hex2bin_Desc":"Func_hex2bin_Desc","Func_hex2dec_Arg_0":"Func_hex2dec_Arg_0","Func_hex2dec_ArgDesc_0":"Func_hex2dec_ArgDesc_0","Func_hex2dec_Category":"Func_hex2dec_Category","Func_hex2dec_CategoryURL":"Func_hex2dec_CategoryURL","Func_hex2dec_Desc":"Func_hex2dec_Desc","Func_hex2oct_Arg_0":"Func_hex2oct_Arg_0","Func_hex2oct_Arg_1":"Func_hex2oct_Arg_1","Func_hex2oct_ArgDesc_0":"Func_hex2oct_ArgDesc_0","Func_hex2oct_ArgDesc_1":"Func_hex2oct_ArgDesc_1","Func_hex2oct_Category":"Func_hex2oct_Category","Func_hex2oct_CategoryURL":"Func_hex2oct_CategoryURL","Func_hex2oct_Desc":"Func_hex2oct_Desc","Func_hour_Arg_0":"Func_hour_Arg_0","Func_hour_ArgDesc_0":"Func_hour_ArgDesc_0","Func_hour_Category":"Func_hour_Category","Func_hour_CategoryURL":"Func_hour_CategoryURL","Func_hour_Desc":"Func_hour_Desc","Func_if_Arg_0":"Func_if_Arg_0","Func_if_Arg_1":"Func_if_Arg_1","Func_if_Arg_2":"Func_if_Arg_2","Func_if_ArgDesc_0":"Func_if_ArgDesc_0","Func_if_ArgDesc_1":"Func_if_ArgDesc_1","Func_if_ArgDesc_2":"Func_if_ArgDesc_2","Func_if_Category":"Func_if_Category","Func_if_CategoryURL":"Func_if_CategoryURL","Func_if_Desc":"Func_if_Desc","Func_iferror_Arg_0":"Func_iferror_Arg_0","Func_iferror_Arg_1":"Func_iferror_Arg_1","Func_iferror_ArgDesc_0":"Func_iferror_ArgDesc_0","Func_iferror_ArgDesc_1":"Func_iferror_ArgDesc_1","Func_iferror_Category":"Func_iferror_Category","Func_iferror_CategoryURL":"Func_iferror_CategoryURL","Func_iferror_Desc":"Func_iferror_Desc","Func_imabs_Arg_0":"Func_imabs_Arg_0","Func_imabs_ArgDesc_0":"Func_imabs_ArgDesc_0","Func_imabs_Category":"Func_imabs_Category","Func_imabs_CategoryURL":"Func_imabs_CategoryURL","Func_imabs_Desc":"Func_imabs_Desc","Func_imaginary_Arg_0":"Func_imaginary_Arg_0","Func_imaginary_ArgDesc_0":"Func_imaginary_ArgDesc_0","Func_imaginary_Category":"Func_imaginary_Category","Func_imaginary_CategoryURL":"Func_imaginary_CategoryURL","Func_imaginary_Desc":"Func_imaginary_Desc","Func_imargument_Arg_0":"Func_imargument_Arg_0","Func_imargument_ArgDesc_0":"Func_imargument_ArgDesc_0","Func_imargument_Category":"Func_imargument_Category","Func_imargument_CategoryURL":"Func_imargument_CategoryURL","Func_imargument_Desc":"Func_imargument_Desc","Func_imconjugate_Arg_0":"Func_imconjugate_Arg_0","Func_imconjugate_ArgDesc_0":"Func_imconjugate_ArgDesc_0","Func_imconjugate_Category":"Func_imconjugate_Category","Func_imconjugate_CategoryURL":"Func_imconjugate_CategoryURL","Func_imconjugate_Desc":"Func_imconjugate_Desc","Func_imcos_Arg_0":"Func_imcos_Arg_0","Func_imcos_ArgDesc_0":"Func_imcos_ArgDesc_0","Func_imcos_Category":"Func_imcos_Category","Func_imcos_CategoryURL":"Func_imcos_CategoryURL","Func_imcos_Desc":"Func_imcos_Desc","Func_imdiv_Arg_0":"Func_imdiv_Arg_0","Func_imdiv_Arg_1":"Func_imdiv_Arg_1","Func_imdiv_ArgDesc_0":"Func_imdiv_ArgDesc_0","Func_imdiv_ArgDesc_1":"Func_imdiv_ArgDesc_1","Func_imdiv_Category":"Func_imdiv_Category","Func_imdiv_CategoryURL":"Func_imdiv_CategoryURL","Func_imdiv_Desc":"Func_imdiv_Desc","Func_imexp_Arg_0":"Func_imexp_Arg_0","Func_imexp_ArgDesc_0":"Func_imexp_ArgDesc_0","Func_imexp_Category":"Func_imexp_Category","Func_imexp_CategoryURL":"Func_imexp_CategoryURL","Func_imexp_Desc":"Func_imexp_Desc","Func_imln_Arg_0":"Func_imln_Arg_0","Func_imln_ArgDesc_0":"Func_imln_ArgDesc_0","Func_imln_Category":"Func_imln_Category","Func_imln_CategoryURL":"Func_imln_CategoryURL","Func_imln_Desc":"Func_imln_Desc","Func_imlog10_Arg_0":"Func_imlog10_Arg_0","Func_imlog10_ArgDesc_0":"Func_imlog10_ArgDesc_0","Func_imlog10_Category":"Func_imlog10_Category","Func_imlog10_CategoryURL":"Func_imlog10_CategoryURL","Func_imlog10_Desc":"Func_imlog10_Desc","Func_imlog2_Arg_0":"Func_imlog2_Arg_0","Func_imlog2_ArgDesc_0":"Func_imlog2_ArgDesc_0","Func_imlog2_Category":"Func_imlog2_Category","Func_imlog2_CategoryURL":"Func_imlog2_CategoryURL","Func_imlog2_Desc":"Func_imlog2_Desc","Func_impower_Arg_0":"Func_impower_Arg_0","Func_impower_Arg_1":"Func_impower_Arg_1","Func_impower_ArgDesc_0":"Func_impower_ArgDesc_0","Func_impower_ArgDesc_1":"Func_impower_ArgDesc_1","Func_impower_Category":"Func_impower_Category","Func_impower_CategoryURL":"Func_impower_CategoryURL","Func_impower_Desc":"Func_impower_Desc","Func_improduct_Arg_0":"Func_improduct_Arg_0","Func_improduct_ArgDesc_0":"Func_improduct_ArgDesc_0","Func_improduct_Category":"Func_improduct_Category","Func_improduct_CategoryURL":"Func_improduct_CategoryURL","Func_improduct_Desc":"Func_improduct_Desc","Func_imreal_Arg_0":"Func_imreal_Arg_0","Func_imreal_ArgDesc_0":"Func_imreal_ArgDesc_0","Func_imreal_Category":"Func_imreal_Category","Func_imreal_CategoryURL":"Func_imreal_CategoryURL","Func_imreal_Desc":"Func_imreal_Desc","Func_imsin_Arg_0":"Func_imsin_Arg_0","Func_imsin_ArgDesc_0":"Func_imsin_ArgDesc_0","Func_imsin_Category":"Func_imsin_Category","Func_imsin_CategoryURL":"Func_imsin_CategoryURL","Func_imsin_Desc":"Func_imsin_Desc","Func_imsqrt_Arg_0":"Func_imsqrt_Arg_0","Func_imsqrt_ArgDesc_0":"Func_imsqrt_ArgDesc_0","Func_imsqrt_Category":"Func_imsqrt_Category","Func_imsqrt_CategoryURL":"Func_imsqrt_CategoryURL","Func_imsqrt_Desc":"Func_imsqrt_Desc","Func_imsub_Arg_0":"Func_imsub_Arg_0","Func_imsub_Arg_1":"Func_imsub_Arg_1","Func_imsub_ArgDesc_0":"Func_imsub_ArgDesc_0","Func_imsub_ArgDesc_1":"Func_imsub_ArgDesc_1","Func_imsub_Category":"Func_imsub_Category","Func_imsub_CategoryURL":"Func_imsub_CategoryURL","Func_imsub_Desc":"Func_imsub_Desc","Func_imsum_Arg_0":"Func_imsum_Arg_0","Func_imsum_ArgDesc_0":"Func_imsum_ArgDesc_0","Func_imsum_Category":"Func_imsum_Category","Func_imsum_CategoryURL":"Func_imsum_CategoryURL","Func_imsum_Desc":"Func_imsum_Desc","Func_info_Arg_0":"Func_info_Arg_0","Func_info_ArgDesc_0":"Func_info_ArgDesc_0","Func_info_Category":"Func_info_Category","Func_info_CategoryURL":"Func_info_CategoryURL","Func_info_Desc":"Func_info_Desc","Func_int_Arg_0":"Func_int_Arg_0","Func_int_ArgDesc_0":"Func_int_ArgDesc_0","Func_int_Category":"Func_int_Category","Func_int_CategoryURL":"Func_int_CategoryURL","Func_int_Desc":"Func_int_Desc","Func_intrate_Arg_0":"Func_intrate_Arg_0","Func_intrate_Arg_1":"Func_intrate_Arg_1","Func_intrate_Arg_2":"Func_intrate_Arg_2","Func_intrate_Arg_3":"Func_intrate_Arg_3","Func_intrate_Arg_4":"Func_intrate_Arg_4","Func_intrate_ArgDesc_0":"Func_intrate_ArgDesc_0","Func_intrate_ArgDesc_1":"Func_intrate_ArgDesc_1","Func_intrate_ArgDesc_2":"Func_intrate_ArgDesc_2","Func_intrate_ArgDesc_3":"Func_intrate_ArgDesc_3","Func_intrate_ArgDesc_4":"Func_intrate_ArgDesc_4","Func_intrate_Category":"Func_intrate_Category","Func_intrate_CategoryURL":"Func_intrate_CategoryURL","Func_intrate_Desc":"Func_intrate_Desc","Func_ipmt_Arg_0":"Func_ipmt_Arg_0","Func_ipmt_Arg_1":"Func_ipmt_Arg_1","Func_ipmt_Arg_2":"Func_ipmt_Arg_2","Func_ipmt_Arg_3":"Func_ipmt_Arg_3","Func_ipmt_Arg_4":"Func_ipmt_Arg_4","Func_ipmt_Arg_5":"Func_ipmt_Arg_5","Func_ipmt_ArgDesc_0":"Func_ipmt_ArgDesc_0","Func_ipmt_ArgDesc_1":"Func_ipmt_ArgDesc_1","Func_ipmt_ArgDesc_2":"Func_ipmt_ArgDesc_2","Func_ipmt_ArgDesc_3":"Func_ipmt_ArgDesc_3","Func_ipmt_ArgDesc_4":"Func_ipmt_ArgDesc_4","Func_ipmt_ArgDesc_5":"Func_ipmt_ArgDesc_5","Func_ipmt_Category":"Func_ipmt_Category","Func_ipmt_CategoryURL":"Func_ipmt_CategoryURL","Func_ipmt_Desc":"Func_ipmt_Desc","Func_irr_Arg_0":"Func_irr_Arg_0","Func_irr_Arg_1":"Func_irr_Arg_1","Func_irr_ArgDesc_0":"Func_irr_ArgDesc_0","Func_irr_ArgDesc_1":"Func_irr_ArgDesc_1","Func_irr_Category":"Func_irr_Category","Func_irr_CategoryURL":"Func_irr_CategoryURL","Func_irr_Desc":"Func_irr_Desc","Func_isblank_Arg_0":"Func_isblank_Arg_0","Func_isblank_ArgDesc_0":"Func_isblank_ArgDesc_0","Func_isblank_Category":"Func_isblank_Category","Func_isblank_CategoryURL":"Func_isblank_CategoryURL","Func_isblank_Desc":"Func_isblank_Desc","Func_isdbnull_Arg_0":"Func_isdbnull_Arg_0","Func_isdbnull_ArgDesc_0":"Func_isdbnull_ArgDesc_0","Func_isdbnull_Category":"Func_isdbnull_Category","Func_isdbnull_CategoryURL":"Func_isdbnull_CategoryURL","Func_isdbnull_Desc":"Func_isdbnull_Desc","Func_iserr_Arg_0":"Func_iserr_Arg_0","Func_iserr_ArgDesc_0":"Func_iserr_ArgDesc_0","Func_iserr_Category":"Func_iserr_Category","Func_iserr_CategoryURL":"Func_iserr_CategoryURL","Func_iserr_Desc":"Func_iserr_Desc","Func_iserror_Arg_0":"Func_iserror_Arg_0","Func_iserror_ArgDesc_0":"Func_iserror_ArgDesc_0","Func_iserror_Category":"Func_iserror_Category","Func_iserror_CategoryURL":"Func_iserror_CategoryURL","Func_iserror_Desc":"Func_iserror_Desc","Func_iseven_Arg_0":"Func_iseven_Arg_0","Func_iseven_ArgDesc_0":"Func_iseven_ArgDesc_0","Func_iseven_Category":"Func_iseven_Category","Func_iseven_CategoryURL":"Func_iseven_CategoryURL","Func_iseven_Desc":"Func_iseven_Desc","Func_islogical_Arg_0":"Func_islogical_Arg_0","Func_islogical_ArgDesc_0":"Func_islogical_ArgDesc_0","Func_islogical_Category":"Func_islogical_Category","Func_islogical_CategoryURL":"Func_islogical_CategoryURL","Func_islogical_Desc":"Func_islogical_Desc","Func_isna_Arg_0":"Func_isna_Arg_0","Func_isna_ArgDesc_0":"Func_isna_ArgDesc_0","Func_isna_Category":"Func_isna_Category","Func_isna_CategoryURL":"Func_isna_CategoryURL","Func_isna_Desc":"Func_isna_Desc","Func_isnontext_Arg_0":"Func_isnontext_Arg_0","Func_isnontext_ArgDesc_0":"Func_isnontext_ArgDesc_0","Func_isnontext_Category":"Func_isnontext_Category","Func_isnontext_CategoryURL":"Func_isnontext_CategoryURL","Func_isnontext_Desc":"Func_isnontext_Desc","Func_isnull_Arg_0":"Func_isnull_Arg_0","Func_isnull_ArgDesc_0":"Func_isnull_ArgDesc_0","Func_isnull_Category":"Func_isnull_Category","Func_isnull_CategoryURL":"Func_isnull_CategoryURL","Func_isnull_Desc":"Func_isnull_Desc","Func_isnumber_Arg_0":"Func_isnumber_Arg_0","Func_isnumber_ArgDesc_0":"Func_isnumber_ArgDesc_0","Func_isnumber_Category":"Func_isnumber_Category","Func_isnumber_CategoryURL":"Func_isnumber_CategoryURL","Func_isnumber_Desc":"Func_isnumber_Desc","Func_isodd_Arg_0":"Func_isodd_Arg_0","Func_isodd_ArgDesc_0":"Func_isodd_ArgDesc_0","Func_isodd_Category":"Func_isodd_Category","Func_isodd_CategoryURL":"Func_isodd_CategoryURL","Func_isodd_Desc":"Func_isodd_Desc","Func_isref_Arg_0":"Func_isref_Arg_0","Func_isref_ArgDesc_0":"Func_isref_ArgDesc_0","Func_isref_Category":"Func_isref_Category","Func_isref_CategoryURL":"Func_isref_CategoryURL","Func_isref_Desc":"Func_isref_Desc","Func_istext_Arg_0":"Func_istext_Arg_0","Func_istext_ArgDesc_0":"Func_istext_ArgDesc_0","Func_istext_Category":"Func_istext_Category","Func_istext_CategoryURL":"Func_istext_CategoryURL","Func_istext_Desc":"Func_istext_Desc","Func_lcm_Arg_0":"Func_lcm_Arg_0","Func_lcm_ArgDesc_0":"Func_lcm_ArgDesc_0","Func_lcm_Category":"Func_lcm_Category","Func_lcm_CategoryURL":"Func_lcm_CategoryURL","Func_lcm_Desc":"Func_lcm_Desc","Func_left_Arg_0":"Func_left_Arg_0","Func_left_Arg_1":"Func_left_Arg_1","Func_left_ArgDesc_0":"Func_left_ArgDesc_0","Func_left_ArgDesc_1":"Func_left_ArgDesc_1","Func_left_Category":"Func_left_Category","Func_left_CategoryURL":"Func_left_CategoryURL","Func_left_Desc":"Func_left_Desc","Func_len_Arg_0":"Func_len_Arg_0","Func_len_ArgDesc_0":"Func_len_ArgDesc_0","Func_len_Category":"Func_len_Category","Func_len_CategoryURL":"Func_len_CategoryURL","Func_len_Desc":"Func_len_Desc","Func_ln_Arg_0":"Func_ln_Arg_0","Func_ln_ArgDesc_0":"Func_ln_ArgDesc_0","Func_ln_Category":"Func_ln_Category","Func_ln_CategoryURL":"Func_ln_CategoryURL","Func_ln_Desc":"Func_ln_Desc","Func_log_Arg_0":"Func_log_Arg_0","Func_log_Arg_1":"Func_log_Arg_1","Func_log_ArgDesc_0":"Func_log_ArgDesc_0","Func_log_ArgDesc_1":"Func_log_ArgDesc_1","Func_log_Category":"Func_log_Category","Func_log_CategoryURL":"Func_log_CategoryURL","Func_log_Desc":"Func_log_Desc","Func_log10_Arg_0":"Func_log10_Arg_0","Func_log10_ArgDesc_0":"Func_log10_ArgDesc_0","Func_log10_Category":"Func_log10_Category","Func_log10_CategoryURL":"Func_log10_CategoryURL","Func_log10_Desc":"Func_log10_Desc","Func_lower_Arg_0":"Func_lower_Arg_0","Func_lower_ArgDesc_0":"Func_lower_ArgDesc_0","Func_lower_Category":"Func_lower_Category","Func_lower_CategoryURL":"Func_lower_CategoryURL","Func_lower_Desc":"Func_lower_Desc","Func_max_Arg_0":"Func_max_Arg_0","Func_max_ArgDesc_0":"Func_max_ArgDesc_0","Func_max_Category":"Func_max_Category","Func_max_CategoryURL":"Func_max_CategoryURL","Func_max_Desc":"Func_max_Desc","Func_median_Arg_0":"Func_median_Arg_0","Func_median_ArgDesc_0":"Func_median_ArgDesc_0","Func_median_Category":"Func_median_Category","Func_median_CategoryURL":"Func_median_CategoryURL","Func_median_Desc":"Func_median_Desc","Func_mid_Arg_0":"Func_mid_Arg_0","Func_mid_Arg_1":"Func_mid_Arg_1","Func_mid_Arg_2":"Func_mid_Arg_2","Func_mid_ArgDesc_0":"Func_mid_ArgDesc_0","Func_mid_ArgDesc_1":"Func_mid_ArgDesc_1","Func_mid_ArgDesc_2":"Func_mid_ArgDesc_2","Func_mid_Category":"Func_mid_Category","Func_mid_CategoryURL":"Func_mid_CategoryURL","Func_mid_Desc":"Func_mid_Desc","Func_min_Arg_0":"Func_min_Arg_0","Func_min_ArgDesc_0":"Func_min_ArgDesc_0","Func_min_Category":"Func_min_Category","Func_min_CategoryURL":"Func_min_CategoryURL","Func_min_Desc":"Func_min_Desc","Func_minute_Arg_0":"Func_minute_Arg_0","Func_minute_ArgDesc_0":"Func_minute_ArgDesc_0","Func_minute_Category":"Func_minute_Category","Func_minute_CategoryURL":"Func_minute_CategoryURL","Func_minute_Desc":"Func_minute_Desc","Func_mod_Arg_0":"Func_mod_Arg_0","Func_mod_Arg_1":"Func_mod_Arg_1","Func_mod_ArgDesc_0":"Func_mod_ArgDesc_0","Func_mod_ArgDesc_1":"Func_mod_ArgDesc_1","Func_mod_Category":"Func_mod_Category","Func_mod_CategoryURL":"Func_mod_CategoryURL","Func_mod_Desc":"Func_mod_Desc","Func_month_Arg_0":"Func_month_Arg_0","Func_month_ArgDesc_0":"Func_month_ArgDesc_0","Func_month_Category":"Func_month_Category","Func_month_CategoryURL":"Func_month_CategoryURL","Func_month_Desc":"Func_month_Desc","Func_mround_Arg_0":"Func_mround_Arg_0","Func_mround_Arg_1":"Func_mround_Arg_1","Func_mround_ArgDesc_0":"Func_mround_ArgDesc_0","Func_mround_ArgDesc_1":"Func_mround_ArgDesc_1","Func_mround_Category":"Func_mround_Category","Func_mround_CategoryURL":"Func_mround_CategoryURL","Func_mround_Desc":"Func_mround_Desc","Func_multinomial_Arg_0":"Func_multinomial_Arg_0","Func_multinomial_ArgDesc_0":"Func_multinomial_ArgDesc_0","Func_multinomial_Category":"Func_multinomial_Category","Func_multinomial_CategoryURL":"Func_multinomial_CategoryURL","Func_multinomial_Desc":"Func_multinomial_Desc","Func_n_Arg_0":"Func_n_Arg_0","Func_n_ArgDesc_0":"Func_n_ArgDesc_0","Func_n_Category":"Func_n_Category","Func_n_CategoryURL":"Func_n_CategoryURL","Func_n_Desc":"Func_n_Desc","Func_na_Category":"Func_na_Category","Func_na_CategoryURL":"Func_na_CategoryURL","Func_na_Desc":"Func_na_Desc","Func_networkdays_Arg_0":"Func_networkdays_Arg_0","Func_networkdays_Arg_1":"Func_networkdays_Arg_1","Func_networkdays_Arg_2":"Func_networkdays_Arg_2","Func_networkdays_ArgDesc_0":"Func_networkdays_ArgDesc_0","Func_networkdays_ArgDesc_1":"Func_networkdays_ArgDesc_1","Func_networkdays_ArgDesc_2":"Func_networkdays_ArgDesc_2","Func_networkdays_Category":"Func_networkdays_Category","Func_networkdays_CategoryURL":"Func_networkdays_CategoryURL","Func_networkdays_Desc":"Func_networkdays_Desc","Func_not_Arg_0":"Func_not_Arg_0","Func_not_ArgDesc_0":"Func_not_ArgDesc_0","Func_not_Category":"Func_not_Category","Func_not_CategoryURL":"Func_not_CategoryURL","Func_not_Desc":"Func_not_Desc","Func_now_Category":"Func_now_Category","Func_now_CategoryURL":"Func_now_CategoryURL","Func_now_Desc":"Func_now_Desc","Func_nper_Arg_0":"Func_nper_Arg_0","Func_nper_Arg_1":"Func_nper_Arg_1","Func_nper_Arg_2":"Func_nper_Arg_2","Func_nper_Arg_3":"Func_nper_Arg_3","Func_nper_Arg_4":"Func_nper_Arg_4","Func_nper_ArgDesc_0":"Func_nper_ArgDesc_0","Func_nper_ArgDesc_1":"Func_nper_ArgDesc_1","Func_nper_ArgDesc_2":"Func_nper_ArgDesc_2","Func_nper_ArgDesc_3":"Func_nper_ArgDesc_3","Func_nper_ArgDesc_4":"Func_nper_ArgDesc_4","Func_nper_Category":"Func_nper_Category","Func_nper_CategoryURL":"Func_nper_CategoryURL","Func_nper_Desc":"Func_nper_Desc","Func_npv_Arg_0":"Func_npv_Arg_0","Func_npv_Arg_1":"Func_npv_Arg_1","Func_npv_ArgDesc_0":"Func_npv_ArgDesc_0","Func_npv_ArgDesc_1":"Func_npv_ArgDesc_1","Func_npv_Category":"Func_npv_Category","Func_npv_CategoryURL":"Func_npv_CategoryURL","Func_npv_Desc":"Func_npv_Desc","Func_null_Category":"Func_null_Category","Func_null_CategoryURL":"Func_null_CategoryURL","Func_null_Desc":"Func_null_Desc","Func_oct2bin_Arg_0":"Func_oct2bin_Arg_0","Func_oct2bin_Arg_1":"Func_oct2bin_Arg_1","Func_oct2bin_ArgDesc_0":"Func_oct2bin_ArgDesc_0","Func_oct2bin_ArgDesc_1":"Func_oct2bin_ArgDesc_1","Func_oct2bin_Category":"Func_oct2bin_Category","Func_oct2bin_CategoryURL":"Func_oct2bin_CategoryURL","Func_oct2bin_Desc":"Func_oct2bin_Desc","Func_oct2dec_Arg_0":"Func_oct2dec_Arg_0","Func_oct2dec_ArgDesc_0":"Func_oct2dec_ArgDesc_0","Func_oct2dec_Category":"Func_oct2dec_Category","Func_oct2dec_CategoryURL":"Func_oct2dec_CategoryURL","Func_oct2dec_Desc":"Func_oct2dec_Desc","Func_oct2hex_Arg_0":"Func_oct2hex_Arg_0","Func_oct2hex_Arg_1":"Func_oct2hex_Arg_1","Func_oct2hex_ArgDesc_0":"Func_oct2hex_ArgDesc_0","Func_oct2hex_ArgDesc_1":"Func_oct2hex_ArgDesc_1","Func_oct2hex_Category":"Func_oct2hex_Category","Func_oct2hex_CategoryURL":"Func_oct2hex_CategoryURL","Func_oct2hex_Desc":"Func_oct2hex_Desc","Func_odd_Arg_0":"Func_odd_Arg_0","Func_odd_ArgDesc_0":"Func_odd_ArgDesc_0","Func_odd_Category":"Func_odd_Category","Func_odd_CategoryURL":"Func_odd_CategoryURL","Func_odd_Desc":"Func_odd_Desc","Func_or_Arg_0":"Func_or_Arg_0","Func_or_ArgDesc_0":"Func_or_ArgDesc_0","Func_or_Category":"Func_or_Category","Func_or_CategoryURL":"Func_or_CategoryURL","Func_or_Desc":"Func_or_Desc","Func_pi_Category":"Func_pi_Category","Func_pi_CategoryURL":"Func_pi_CategoryURL","Func_pi_Desc":"Func_pi_Desc","Func_pmt_Arg_0":"Func_pmt_Arg_0","Func_pmt_Arg_1":"Func_pmt_Arg_1","Func_pmt_Arg_2":"Func_pmt_Arg_2","Func_pmt_Arg_3":"Func_pmt_Arg_3","Func_pmt_Arg_4":"Func_pmt_Arg_4","Func_pmt_ArgDesc_0":"Func_pmt_ArgDesc_0","Func_pmt_ArgDesc_1":"Func_pmt_ArgDesc_1","Func_pmt_ArgDesc_2":"Func_pmt_ArgDesc_2","Func_pmt_ArgDesc_3":"Func_pmt_ArgDesc_3","Func_pmt_ArgDesc_4":"Func_pmt_ArgDesc_4","Func_pmt_Category":"Func_pmt_Category","Func_pmt_CategoryURL":"Func_pmt_CategoryURL","Func_pmt_Desc":"Func_pmt_Desc","Func_power_Arg_0":"Func_power_Arg_0","Func_power_Arg_1":"Func_power_Arg_1","Func_power_ArgDesc_0":"Func_power_ArgDesc_0","Func_power_ArgDesc_1":"Func_power_ArgDesc_1","Func_power_Category":"Func_power_Category","Func_power_CategoryURL":"Func_power_CategoryURL","Func_power_Desc":"Func_power_Desc","Func_ppmt_Arg_0":"Func_ppmt_Arg_0","Func_ppmt_Arg_1":"Func_ppmt_Arg_1","Func_ppmt_Arg_2":"Func_ppmt_Arg_2","Func_ppmt_Arg_3":"Func_ppmt_Arg_3","Func_ppmt_Arg_4":"Func_ppmt_Arg_4","Func_ppmt_Arg_5":"Func_ppmt_Arg_5","Func_ppmt_ArgDesc_0":"Func_ppmt_ArgDesc_0","Func_ppmt_ArgDesc_1":"Func_ppmt_ArgDesc_1","Func_ppmt_ArgDesc_2":"Func_ppmt_ArgDesc_2","Func_ppmt_ArgDesc_3":"Func_ppmt_ArgDesc_3","Func_ppmt_ArgDesc_4":"Func_ppmt_ArgDesc_4","Func_ppmt_ArgDesc_5":"Func_ppmt_ArgDesc_5","Func_ppmt_Category":"Func_ppmt_Category","Func_ppmt_CategoryURL":"Func_ppmt_CategoryURL","Func_ppmt_Desc":"Func_ppmt_Desc","Func_product_Arg_0":"Func_product_Arg_0","Func_product_ArgDesc_0":"Func_product_ArgDesc_0","Func_product_Category":"Func_product_Category","Func_product_CategoryURL":"Func_product_CategoryURL","Func_product_Desc":"Func_product_Desc","Func_pv_Arg_0":"Func_pv_Arg_0","Func_pv_Arg_1":"Func_pv_Arg_1","Func_pv_Arg_2":"Func_pv_Arg_2","Func_pv_Arg_3":"Func_pv_Arg_3","Func_pv_Arg_4":"Func_pv_Arg_4","Func_pv_ArgDesc_0":"Func_pv_ArgDesc_0","Func_pv_ArgDesc_1":"Func_pv_ArgDesc_1","Func_pv_ArgDesc_2":"Func_pv_ArgDesc_2","Func_pv_ArgDesc_3":"Func_pv_ArgDesc_3","Func_pv_ArgDesc_4":"Func_pv_ArgDesc_4","Func_pv_Category":"Func_pv_Category","Func_pv_CategoryURL":"Func_pv_CategoryURL","Func_pv_Desc":"Func_pv_Desc","Func_quotient_Arg_0":"Func_quotient_Arg_0","Func_quotient_Arg_1":"Func_quotient_Arg_1","Func_quotient_ArgDesc_0":"Func_quotient_ArgDesc_0","Func_quotient_ArgDesc_1":"Func_quotient_ArgDesc_1","Func_quotient_Category":"Func_quotient_Category","Func_quotient_CategoryURL":"Func_quotient_CategoryURL","Func_quotient_Desc":"Func_quotient_Desc","Func_radians_Arg_0":"Func_radians_Arg_0","Func_radians_ArgDesc_0":"Func_radians_ArgDesc_0","Func_radians_Category":"Func_radians_Category","Func_radians_CategoryURL":"Func_radians_CategoryURL","Func_radians_Desc":"Func_radians_Desc","Func_rand_Category":"Func_rand_Category","Func_rand_CategoryURL":"Func_rand_CategoryURL","Func_rand_Desc":"Func_rand_Desc","Func_randbetween_Arg_0":"Func_randbetween_Arg_0","Func_randbetween_Arg_1":"Func_randbetween_Arg_1","Func_randbetween_ArgDesc_0":"Func_randbetween_ArgDesc_0","Func_randbetween_ArgDesc_1":"Func_randbetween_ArgDesc_1","Func_randbetween_Category":"Func_randbetween_Category","Func_randbetween_CategoryURL":"Func_randbetween_CategoryURL","Func_randbetween_Desc":"Func_randbetween_Desc","Func_rate_Arg_0":"Func_rate_Arg_0","Func_rate_Arg_1":"Func_rate_Arg_1","Func_rate_Arg_2":"Func_rate_Arg_2","Func_rate_Arg_3":"Func_rate_Arg_3","Func_rate_Arg_4":"Func_rate_Arg_4","Func_rate_Arg_5":"Func_rate_Arg_5","Func_rate_ArgDesc_0":"Func_rate_ArgDesc_0","Func_rate_ArgDesc_1":"Func_rate_ArgDesc_1","Func_rate_ArgDesc_2":"Func_rate_ArgDesc_2","Func_rate_ArgDesc_3":"Func_rate_ArgDesc_3","Func_rate_ArgDesc_4":"Func_rate_ArgDesc_4","Func_rate_ArgDesc_5":"Func_rate_ArgDesc_5","Func_rate_Category":"Func_rate_Category","Func_rate_CategoryURL":"Func_rate_CategoryURL","Func_rate_Desc":"Func_rate_Desc","Func_replace_Arg_0":"Func_replace_Arg_0","Func_replace_Arg_1":"Func_replace_Arg_1","Func_replace_Arg_2":"Func_replace_Arg_2","Func_replace_Arg_3":"Func_replace_Arg_3","Func_replace_ArgDesc_0":"Func_replace_ArgDesc_0","Func_replace_ArgDesc_1":"Func_replace_ArgDesc_1","Func_replace_ArgDesc_2":"Func_replace_ArgDesc_2","Func_replace_ArgDesc_3":"Func_replace_ArgDesc_3","Func_replace_Category":"Func_replace_Category","Func_replace_CategoryURL":"Func_replace_CategoryURL","Func_replace_Desc":"Func_replace_Desc","Func_rept_Arg_0":"Func_rept_Arg_0","Func_rept_Arg_1":"Func_rept_Arg_1","Func_rept_ArgDesc_0":"Func_rept_ArgDesc_0","Func_rept_ArgDesc_1":"Func_rept_ArgDesc_1","Func_rept_Category":"Func_rept_Category","Func_rept_CategoryURL":"Func_rept_CategoryURL","Func_rept_Desc":"Func_rept_Desc","Func_right_Arg_0":"Func_right_Arg_0","Func_right_Arg_1":"Func_right_Arg_1","Func_right_ArgDesc_0":"Func_right_ArgDesc_0","Func_right_ArgDesc_1":"Func_right_ArgDesc_1","Func_right_Category":"Func_right_Category","Func_right_CategoryURL":"Func_right_CategoryURL","Func_right_Desc":"Func_right_Desc","Func_roman_Arg_0":"Func_roman_Arg_0","Func_roman_Arg_1":"Func_roman_Arg_1","Func_roman_ArgDesc_0":"Func_roman_ArgDesc_0","Func_roman_ArgDesc_1":"Func_roman_ArgDesc_1","Func_roman_Category":"Func_roman_Category","Func_roman_CategoryURL":"Func_roman_CategoryURL","Func_roman_Desc":"Func_roman_Desc","Func_round_Arg_0":"Func_round_Arg_0","Func_round_Arg_1":"Func_round_Arg_1","Func_round_Arg_2":"Func_round_Arg_2","Func_round_ArgDesc_0":"Func_round_ArgDesc_0","Func_round_ArgDesc_1":"Func_round_ArgDesc_1","Func_round_ArgDesc_2":"Func_round_ArgDesc_2","Func_round_Category":"Func_round_Category","Func_round_CategoryURL":"Func_round_CategoryURL","Func_round_Desc":"Func_round_Desc","Func_rounddown_Arg_0":"Func_rounddown_Arg_0","Func_rounddown_Arg_1":"Func_rounddown_Arg_1","Func_rounddown_ArgDesc_0":"Func_rounddown_ArgDesc_0","Func_rounddown_ArgDesc_1":"Func_rounddown_ArgDesc_1","Func_rounddown_Category":"Func_rounddown_Category","Func_rounddown_CategoryURL":"Func_rounddown_CategoryURL","Func_rounddown_Desc":"Func_rounddown_Desc","Func_roundup_Arg_0":"Func_roundup_Arg_0","Func_roundup_Arg_1":"Func_roundup_Arg_1","Func_roundup_ArgDesc_0":"Func_roundup_ArgDesc_0","Func_roundup_ArgDesc_1":"Func_roundup_ArgDesc_1","Func_roundup_Category":"Func_roundup_Category","Func_roundup_CategoryURL":"Func_roundup_CategoryURL","Func_roundup_Desc":"Func_roundup_Desc","Func_search_Arg_0":"Func_search_Arg_0","Func_search_Arg_1":"Func_search_Arg_1","Func_search_Arg_2":"Func_search_Arg_2","Func_search_ArgDesc_0":"Func_search_ArgDesc_0","Func_search_ArgDesc_1":"Func_search_ArgDesc_1","Func_search_ArgDesc_2":"Func_search_ArgDesc_2","Func_search_Category":"Func_search_Category","Func_search_CategoryURL":"Func_search_CategoryURL","Func_search_Desc":"Func_search_Desc","Func_searchb_Arg_0":"Func_searchb_Arg_0","Func_searchb_Arg_1":"Func_searchb_Arg_1","Func_searchb_Arg_2":"Func_searchb_Arg_2","Func_searchb_ArgDesc_0":"Func_searchb_ArgDesc_0","Func_searchb_ArgDesc_1":"Func_searchb_ArgDesc_1","Func_searchb_ArgDesc_2":"Func_searchb_ArgDesc_2","Func_searchb_Category":"Func_searchb_Category","Func_searchb_CategoryURL":"Func_searchb_CategoryURL","Func_searchb_Desc":"Func_searchb_Desc","Func_second_Arg_0":"Func_second_Arg_0","Func_second_ArgDesc_0":"Func_second_ArgDesc_0","Func_second_Category":"Func_second_Category","Func_second_CategoryURL":"Func_second_CategoryURL","Func_second_Desc":"Func_second_Desc","Func_seriessum_Arg_0":"Func_seriessum_Arg_0","Func_seriessum_Arg_1":"Func_seriessum_Arg_1","Func_seriessum_Arg_2":"Func_seriessum_Arg_2","Func_seriessum_Arg_3":"Func_seriessum_Arg_3","Func_seriessum_ArgDesc_0":"Func_seriessum_ArgDesc_0","Func_seriessum_ArgDesc_1":"Func_seriessum_ArgDesc_1","Func_seriessum_ArgDesc_2":"Func_seriessum_ArgDesc_2","Func_seriessum_ArgDesc_3":"Func_seriessum_ArgDesc_3","Func_seriessum_Category":"Func_seriessum_Category","Func_seriessum_CategoryURL":"Func_seriessum_CategoryURL","Func_seriessum_Desc":"Func_seriessum_Desc","Func_sign_Arg_0":"Func_sign_Arg_0","Func_sign_ArgDesc_0":"Func_sign_ArgDesc_0","Func_sign_Category":"Func_sign_Category","Func_sign_CategoryURL":"Func_sign_CategoryURL","Func_sign_Desc":"Func_sign_Desc","Func_sin_Arg_0":"Func_sin_Arg_0","Func_sin_ArgDesc_0":"Func_sin_ArgDesc_0","Func_sin_Category":"Func_sin_Category","Func_sin_CategoryURL":"Func_sin_CategoryURL","Func_sin_Desc":"Func_sin_Desc","Func_sinh_Arg_0":"Func_sinh_Arg_0","Func_sinh_ArgDesc_0":"Func_sinh_ArgDesc_0","Func_sinh_Category":"Func_sinh_Category","Func_sinh_CategoryURL":"Func_sinh_CategoryURL","Func_sinh_Desc":"Func_sinh_Desc","Func_sln_Arg_0":"Func_sln_Arg_0","Func_sln_Arg_1":"Func_sln_Arg_1","Func_sln_Arg_2":"Func_sln_Arg_2","Func_sln_ArgDesc_0":"Func_sln_ArgDesc_0","Func_sln_ArgDesc_1":"Func_sln_ArgDesc_1","Func_sln_ArgDesc_2":"Func_sln_ArgDesc_2","Func_sln_Category":"Func_sln_Category","Func_sln_CategoryURL":"Func_sln_CategoryURL","Func_sln_Desc":"Func_sln_Desc","Func_sqrt_Arg_0":"Func_sqrt_Arg_0","Func_sqrt_ArgDesc_0":"Func_sqrt_ArgDesc_0","Func_sqrt_Category":"Func_sqrt_Category","Func_sqrt_CategoryURL":"Func_sqrt_CategoryURL","Func_sqrt_Desc":"Func_sqrt_Desc","Func_sqrtpi_Arg_0":"Func_sqrtpi_Arg_0","Func_sqrtpi_ArgDesc_0":"Func_sqrtpi_ArgDesc_0","Func_sqrtpi_Category":"Func_sqrtpi_Category","Func_sqrtpi_CategoryURL":"Func_sqrtpi_CategoryURL","Func_sqrtpi_Desc":"Func_sqrtpi_Desc","Func_stdev_Arg_0":"Func_stdev_Arg_0","Func_stdev_ArgDesc_0":"Func_stdev_ArgDesc_0","Func_stdev_Category":"Func_stdev_Category","Func_stdev_CategoryURL":"Func_stdev_CategoryURL","Func_stdev_Desc":"Func_stdev_Desc","Func_subtotal_Arg_0":"Func_subtotal_Arg_0","Func_subtotal_Arg_1":"Func_subtotal_Arg_1","Func_subtotal_ArgDesc_0":"Func_subtotal_ArgDesc_0","Func_subtotal_ArgDesc_1":"Func_subtotal_ArgDesc_1","Func_subtotal_Category":"Func_subtotal_Category","Func_subtotal_CategoryURL":"Func_subtotal_CategoryURL","Func_subtotal_Desc":"Func_subtotal_Desc","Func_sum_Arg_0":"Func_sum_Arg_0","Func_sum_ArgDesc_0":"Func_sum_ArgDesc_0","Func_sum_Category":"Func_sum_Category","Func_sum_CategoryURL":"Func_sum_CategoryURL","Func_sum_Desc":"Func_sum_Desc","Func_syd_Arg_0":"Func_syd_Arg_0","Func_syd_Arg_1":"Func_syd_Arg_1","Func_syd_Arg_2":"Func_syd_Arg_2","Func_syd_Arg_3":"Func_syd_Arg_3","Func_syd_ArgDesc_0":"Func_syd_ArgDesc_0","Func_syd_ArgDesc_1":"Func_syd_ArgDesc_1","Func_syd_ArgDesc_2":"Func_syd_ArgDesc_2","Func_syd_ArgDesc_3":"Func_syd_ArgDesc_3","Func_syd_Category":"Func_syd_Category","Func_syd_CategoryURL":"Func_syd_CategoryURL","Func_syd_Desc":"Func_syd_Desc","Func_tan_Arg_0":"Func_tan_Arg_0","Func_tan_ArgDesc_0":"Func_tan_ArgDesc_0","Func_tan_Category":"Func_tan_Category","Func_tan_CategoryURL":"Func_tan_CategoryURL","Func_tan_Desc":"Func_tan_Desc","Func_tanh_Arg_0":"Func_tanh_Arg_0","Func_tanh_ArgDesc_0":"Func_tanh_ArgDesc_0","Func_tanh_Category":"Func_tanh_Category","Func_tanh_CategoryURL":"Func_tanh_CategoryURL","Func_tanh_Desc":"Func_tanh_Desc","Func_text_Arg_0":"Func_text_Arg_0","Func_text_Arg_1":"Func_text_Arg_1","Func_text_ArgDesc_0":"Func_text_ArgDesc_0","Func_text_ArgDesc_1":"Func_text_ArgDesc_1","Func_text_Category":"Func_text_Category","Func_text_CategoryURL":"Func_text_CategoryURL","Func_text_Desc":"Func_text_Desc","Func_time_Arg_0":"Func_time_Arg_0","Func_time_Arg_1":"Func_time_Arg_1","Func_time_Arg_2":"Func_time_Arg_2","Func_time_ArgDesc_0":"Func_time_ArgDesc_0","Func_time_ArgDesc_1":"Func_time_ArgDesc_1","Func_time_ArgDesc_2":"Func_time_ArgDesc_2","Func_time_Category":"Func_time_Category","Func_time_CategoryURL":"Func_time_CategoryURL","Func_time_Desc":"Func_time_Desc","Func_timevalue_Arg_0":"Func_timevalue_Arg_0","Func_timevalue_ArgDesc_0":"Func_timevalue_ArgDesc_0","Func_timevalue_Category":"Func_timevalue_Category","Func_timevalue_CategoryURL":"Func_timevalue_CategoryURL","Func_timevalue_Desc":"Func_timevalue_Desc","Func_today_Category":"Func_today_Category","Func_today_CategoryURL":"Func_today_CategoryURL","Func_today_Desc":"Func_today_Desc","Func_trim_Arg_0":"Func_trim_Arg_0","Func_trim_ArgDesc_0":"Func_trim_ArgDesc_0","Func_trim_Category":"Func_trim_Category","Func_trim_CategoryURL":"Func_trim_CategoryURL","Func_trim_Desc":"Func_trim_Desc","Func_true_Category":"Func_true_Category","Func_true_CategoryURL":"Func_true_CategoryURL","Func_true_Desc":"Func_true_Desc","Func_trunc_Arg_0":"Func_trunc_Arg_0","Func_trunc_Arg_1":"Func_trunc_Arg_1","Func_trunc_ArgDesc_0":"Func_trunc_ArgDesc_0","Func_trunc_ArgDesc_1":"Func_trunc_ArgDesc_1","Func_trunc_Category":"Func_trunc_Category","Func_trunc_CategoryURL":"Func_trunc_CategoryURL","Func_trunc_Desc":"Func_trunc_Desc","Func_type_Arg_0":"Func_type_Arg_0","Func_type_ArgDesc_0":"Func_type_ArgDesc_0","Func_type_Category":"Func_type_Category","Func_type_CategoryURL":"Func_type_CategoryURL","Func_type_Desc":"Func_type_Desc","Func_upper_Arg_0":"Func_upper_Arg_0","Func_upper_ArgDesc_0":"Func_upper_ArgDesc_0","Func_upper_Category":"Func_upper_Category","Func_upper_CategoryURL":"Func_upper_CategoryURL","Func_upper_Desc":"Func_upper_Desc","Func_value_Arg_0":"Func_value_Arg_0","Func_value_ArgDesc_0":"Func_value_ArgDesc_0","Func_value_Category":"Func_value_Category","Func_value_CategoryURL":"Func_value_CategoryURL","Func_value_Desc":"Func_value_Desc","Func_var_Arg_0":"Func_var_Arg_0","Func_var_ArgDesc_0":"Func_var_ArgDesc_0","Func_var_Category":"Func_var_Category","Func_var_CategoryURL":"Func_var_CategoryURL","Func_var_Desc":"Func_var_Desc","Func_weekday_Arg_0":"Func_weekday_Arg_0","Func_weekday_Arg_1":"Func_weekday_Arg_1","Func_weekday_ArgDesc_0":"Func_weekday_ArgDesc_0","Func_weekday_ArgDesc_1":"Func_weekday_ArgDesc_1","Func_weekday_Category":"Func_weekday_Category","Func_weekday_CategoryURL":"Func_weekday_CategoryURL","Func_weekday_Desc":"Func_weekday_Desc","Func_weeknum_Arg_0":"Func_weeknum_Arg_0","Func_weeknum_Arg_1":"Func_weeknum_Arg_1","Func_weeknum_ArgDesc_0":"Func_weeknum_ArgDesc_0","Func_weeknum_ArgDesc_1":"Func_weeknum_ArgDesc_1","Func_weeknum_Category":"Func_weeknum_Category","Func_weeknum_CategoryURL":"Func_weeknum_CategoryURL","Func_weeknum_Desc":"Func_weeknum_Desc","Func_workday_Arg_0":"Func_workday_Arg_0","Func_workday_Arg_1":"Func_workday_Arg_1","Func_workday_Arg_2":"Func_workday_Arg_2","Func_workday_ArgDesc_0":"Func_workday_ArgDesc_0","Func_workday_ArgDesc_1":"Func_workday_ArgDesc_1","Func_workday_ArgDesc_2":"Func_workday_ArgDesc_2","Func_workday_Category":"Func_workday_Category","Func_workday_CategoryURL":"Func_workday_CategoryURL","Func_workday_Desc":"Func_workday_Desc","Func_year_Arg_0":"Func_year_Arg_0","Func_year_ArgDesc_0":"Func_year_ArgDesc_0","Func_year_Category":"Func_year_Category","Func_year_CategoryURL":"Func_year_CategoryURL","Func_year_Desc":"Func_year_Desc","Func_yearfrac_Arg_0":"Func_yearfrac_Arg_0","Func_yearfrac_Arg_1":"Func_yearfrac_Arg_1","Func_yearfrac_Arg_2":"Func_yearfrac_Arg_2","Func_yearfrac_ArgDesc_0":"Func_yearfrac_ArgDesc_0","Func_yearfrac_ArgDesc_1":"Func_yearfrac_ArgDesc_1","Func_yearfrac_ArgDesc_2":"Func_yearfrac_ArgDesc_2","Func_yearfrac_Category":"Func_yearfrac_Category","Func_yearfrac_CategoryURL":"Func_yearfrac_CategoryURL","Func_yearfrac_Desc":"Func_yearfrac_Desc","GenerateTableColumnName":"GenerateTableColumnName","GenerateTableName":"GenerateTableName","LD_Chart_AxisDisplayUnits":"LD_Chart_AxisDisplayUnits","LD_Fallback_ChartEx_Line1":"LD_Fallback_ChartEx_Line1","LD_Fallback_ChartEx_Line2":"LD_Fallback_ChartEx_Line2","LE_AllMustHavGuidsIfAnyHasThem":"LE_AllMustHavGuidsIfAnyHasThem","LE_ArgumentException_AnchorCellFromOtherWorksheet":"LE_ArgumentException_AnchorCellFromOtherWorksheet","LE_ArgumentException_ArrayFormulaMustHaveSingleRegion":"LE_ArgumentException_ArrayFormulaMustHaveSingleRegion","LE_ArgumentException_ArrayTooSmall":"LE_ArgumentException_ArrayTooSmall","LE_ArgumentException_CannotAddStandardTableStyle":"LE_ArgumentException_CannotAddStandardTableStyle","LE_ArgumentException_CannotApplyDVRuleToTotalCell":"LE_ArgumentException_CannotApplyDVRuleToTotalCell","LE_ArgumentException_CannotCreateEmptyColorInfo":"LE_ArgumentException_CannotCreateEmptyColorInfo","LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_CellMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_CellShiftedOffWorksheet":"LE_ArgumentException_CellShiftedOffWorksheet","LE_ArgumentException_CellsInTableFromOtherWorksheet":"LE_ArgumentException_CellsInTableFromOtherWorksheet","LE_ArgumentException_CellValueStringLength":"LE_ArgumentException_CellValueStringLength","LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell":"LE_ArgumentException_ColumnFormulaAlreadyAppliedToCell","LE_ArgumentException_ColumnFromDifferentWorksheet":"LE_ArgumentException_ColumnFromDifferentWorksheet","LE_ArgumentException_ColumnInputCellFromOtherWorksheet":"LE_ArgumentException_ColumnInputCellFromOtherWorksheet","LE_ArgumentException_ColumnNotInTable":"LE_ArgumentException_ColumnNotInTable","LE_ArgumentException_ColumnRemovedFromWorksheet":"LE_ArgumentException_ColumnRemovedFromWorksheet","LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange":"LE_ArgumentException_ColumnsToRepeatAtLeftOutsideRange","LE_ArgumentException_CommentTooLong":"LE_ArgumentException_CommentTooLong","LE_ArgumentException_CustomViewNameAlreadyExists":"LE_ArgumentException_CustomViewNameAlreadyExists","LE_ArgumentException_DefaultTableStyleNotInWorkbook":"LE_ArgumentException_DefaultTableStyleNotInWorkbook","LE_ArgumentException_DisplayTextTooLong":"LE_ArgumentException_DisplayTextTooLong","LE_ArgumentException_DuplicateDisplayValue":"LE_ArgumentException_DuplicateDisplayValue","LE_ArgumentException_DuplicateFixedDateGroup":"LE_ArgumentException_DuplicateFixedDateGroup","LE_ArgumentException_DuplicateTableStyle":"LE_ArgumentException_DuplicateTableStyle","LE_ArgumentException_DuplicateTableStyleName_Existing":"LE_ArgumentException_DuplicateTableStyleName_Existing","LE_ArgumentException_DuplicateTableStyleName_New":"LE_ArgumentException_DuplicateTableStyleName_New","LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle":"LE_ArgumentException_DuplicateWorksheetProtectedRangeTitle","LE_ArgumentException_DV_ArrayFormulaCannotBeUsed":"LE_ArgumentException_DV_ArrayFormulaCannotBeUsed","LE_ArgumentException_DV_CellFromOtherWorksheet":"LE_ArgumentException_DV_CellFromOtherWorksheet","LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference":"LE_ArgumentException_DV_ConstraintFormulaMustBeNumberOrReference","LE_ArgumentException_DV_FormulaCannotBeNull":"LE_ArgumentException_DV_FormulaCannotBeNull","LE_ArgumentException_DV_FormulaCannotFindNamedReference":"LE_ArgumentException_DV_FormulaCannotFindNamedReference","LE_ArgumentException_DV_FormulaCannotFindWorksheetReference":"LE_ArgumentException_DV_FormulaCannotFindWorksheetReference","LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook":"LE_ArgumentException_DV_FormulaCannotReferenceOtherWorkbook","LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat":"LE_ArgumentException_DV_FormulaInvalidForWorkbookFormat","LE_ArgumentException_DV_InvalidAddress":"LE_ArgumentException_DV_InvalidAddress","LE_ArgumentException_DV_InvalidExcelDate":"LE_ArgumentException_DV_InvalidExcelDate","LE_ArgumentException_DV_InvalidFormula":"LE_ArgumentException_DV_InvalidFormula","LE_ArgumentException_DV_InvalidMessageLength":"LE_ArgumentException_DV_InvalidMessageLength","LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString":"LE_ArgumentException_DV_ListFormulaCannotHaveEmptyString","LE_ArgumentException_DV_ListFormulaMustBeStringOrReference":"LE_ArgumentException_DV_ListFormulaMustBeStringOrReference","LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional":"LE_ArgumentException_DV_ListFormulaReferenceMustBeOneDimensional","LE_ArgumentException_DV_LowerGreaterThanUpperContraint":"LE_ArgumentException_DV_LowerGreaterThanUpperContraint","LE_ArgumentException_DV_MustHaveOneAcceptedValue":"LE_ArgumentException_DV_MustHaveOneAcceptedValue","LE_ArgumentException_DV_ReferencesAlreadyContainDVs":"LE_ArgumentException_DV_ReferencesAlreadyContainDVs","LE_ArgumentException_DV_ReferencesFromOtherWorksheet":"LE_ArgumentException_DV_ReferencesFromOtherWorksheet","LE_ArgumentException_DV_RegionFromOtherWorksheet":"LE_ArgumentException_DV_RegionFromOtherWorksheet","LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet":"LE_ArgumentException_DV_RuleAppliedOnOtherWorksheet","LE_ArgumentException_DV_UpperLessThanLowerContraint":"LE_ArgumentException_DV_UpperLessThanLowerContraint","LE_ArgumentException_EditRangeAlreadyOwned":"LE_ArgumentException_EditRangeAlreadyOwned","LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet":"LE_ArgumentException_EditRangeHasRangeFromOtherWorksheet","LE_ArgumentException_EmptyCustomList":"LE_ArgumentException_EmptyCustomList","LE_ArgumentException_EndIndexLessThanZero":"LE_ArgumentException_EndIndexLessThanZero","LE_ArgumentException_FileDoesntContainsWorkbookStream":"LE_ArgumentException_FileDoesntContainsWorkbookStream","LE_ArgumentException_FormulaReferencesInvalidCells":"LE_ArgumentException_FormulaReferencesInvalidCells","LE_ArgumentException_HashSetFull":"LE_ArgumentException_HashSetFull","LE_ArgumentException_HyperlinkAlreadyOwned":"LE_ArgumentException_HyperlinkAlreadyOwned","LE_ArgumentException_HyperlinkSourceFromOtherWorksheet":"LE_ArgumentException_HyperlinkSourceFromOtherWorksheet","LE_ArgumentException_HyperlinkTargetFromOtherWorkbook":"LE_ArgumentException_HyperlinkTargetFromOtherWorkbook","LE_ArgumentException_InfiniteColumnWidth":"LE_ArgumentException_InfiniteColumnWidth","LE_ArgumentException_Interval":"LE_ArgumentException_Interval","LE_ArgumentException_IntervalStr":"LE_ArgumentException_IntervalStr","LE_ArgumentException_InvalidCellAddress":"LE_ArgumentException_InvalidCellAddress","LE_ArgumentException_InvalidCommentPositioningMode":"LE_ArgumentException_InvalidCommentPositioningMode","LE_ArgumentException_InvalidCustomFilterOperandNumber":"LE_ArgumentException_InvalidCustomFilterOperandNumber","LE_ArgumentException_InvalidCustomFilterOperator":"LE_ArgumentException_InvalidCustomFilterOperator","LE_ArgumentException_InvalidDatePeriodFilterValue":"LE_ArgumentException_InvalidDatePeriodFilterValue","LE_ArgumentException_InvalidDpi":"LE_ArgumentException_InvalidDpi","LE_ArgumentException_InvalidExcelDate":"LE_ArgumentException_InvalidExcelDate","LE_ArgumentException_InvalidFileFormat":"LE_ArgumentException_InvalidFileFormat","LE_ArgumentException_InvalidFormula":"LE_ArgumentException_InvalidFormula","LE_ArgumentException_InvalidGradientStopColor":"LE_ArgumentException_InvalidGradientStopColor","LE_ArgumentException_InvalidNamedReferenceName":"LE_ArgumentException_InvalidNamedReferenceName","LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem":"LE_ArgumentException_InvalidPaletteColor_EmptyOrSystem","LE_ArgumentException_InvalidPaletteColor_NonOpaque":"LE_ArgumentException_InvalidPaletteColor_NonOpaque","LE_ArgumentException_InvalidReferencesString":"LE_ArgumentException_InvalidReferencesString","LE_ArgumentException_InvalidRegionAddress":"LE_ArgumentException_InvalidRegionAddress","LE_ArgumentException_InvalidRowOrColumnRange":"LE_ArgumentException_InvalidRowOrColumnRange","LE_ArgumentException_InvalidSeriesValues":"LE_ArgumentException_InvalidSeriesValues","LE_ArgumentException_InvalidTarget":"LE_ArgumentException_InvalidTarget","LE_ArgumentException_InvalidTopOrBottomFilterValue":"LE_ArgumentException_InvalidTopOrBottomFilterValue","LE_ArgumentException_InvalidWorksheetName":"LE_ArgumentException_InvalidWorksheetName","LE_ArgumentException_InvalidWorksheetNameStartingQuote":"LE_ArgumentException_InvalidWorksheetNameStartingQuote","LE_ArgumentException_LessThanTwoGradientStops":"LE_ArgumentException_LessThanTwoGradientStops","LE_ArgumentException_NamedReferenceNameTooLong":"LE_ArgumentException_NamedReferenceNameTooLong","LE_ArgumentException_NaNDefaultColumnWidth":"LE_ArgumentException_NaNDefaultColumnWidth","LE_ArgumentException_NewRegionOverlapsFilterArea":"LE_ArgumentException_NewRegionOverlapsFilterArea","LE_ArgumentException_NewTableRegionCannotMoveHeaders":"LE_ArgumentException_NewTableRegionCannotMoveHeaders","LE_ArgumentException_NewTableRegionFromWrongWorksheet":"LE_ArgumentException_NewTableRegionFromWrongWorksheet","LE_ArgumentException_NewTableRegionMustHaveDataRows":"LE_ArgumentException_NewTableRegionMustHaveDataRows","LE_ArgumentException_NewTableRegionOverlapOld":"LE_ArgumentException_NewTableRegionOverlapOld","LE_ArgumentException_NewTableRegionOverlapsBlockingValue":"LE_ArgumentException_NewTableRegionOverlapsBlockingValue","LE_ArgumentException_NewTableRegionOverlapsMergedRegion":"LE_ArgumentException_NewTableRegionOverlapsMergedRegion","LE_ArgumentException_NewTableRegionOverlapsOtherTable":"LE_ArgumentException_NewTableRegionOverlapsOtherTable","LE_ArgumentException_NoRegionsInArray":"LE_ArgumentException_NoRegionsInArray","LE_ArgumentException_NotEnum":"LE_ArgumentException_NotEnum","LE_ArgumentException_NotSupportedCodePage":"LE_ArgumentException_NotSupportedCodePage","LE_ArgumentException_NPer":"LE_ArgumentException_NPer","LE_ArgumentException_NPerFunction":"LE_ArgumentException_NPerFunction","LE_ArgumentException_PA_PrintAreasCannotOverlap":"LE_ArgumentException_PA_PrintAreasCannotOverlap","LE_ArgumentException_ParentStyleFromOtherWorkbook":"LE_ArgumentException_ParentStyleFromOtherWorkbook","LE_ArgumentException_PB_CantInsertBreakAtIndex":"LE_ArgumentException_PB_CantInsertBreakAtIndex","LE_ArgumentException_PB_CantSetBreakAtIndex":"LE_ArgumentException_PB_CantSetBreakAtIndex","LE_ArgumentException_PB_MustBeWithinPrintArea":"LE_ArgumentException_PB_MustBeWithinPrintArea","LE_ArgumentException_PB_PageBreakCantBeA1Cell":"LE_ArgumentException_PB_PageBreakCantBeA1Cell","LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn":"LE_ArgumentException_PB_PageBreakCantBeBeforeLeftColumn","LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow":"LE_ArgumentException_PB_PageBreakCantBeBeforeTopRow","LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance":"LE_ArgumentException_PB_PageBreaksCannotAddExistingInstance","LE_ArgumentException_PB_PageBreaksCannotOverlap":"LE_ArgumentException_PB_PageBreaksCannotOverlap","LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas":"LE_ArgumentException_PB_PrintAreaMustBeInPrintAreas","LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet":"LE_ArgumentException_PB_PrintAreaMustBeOnSameWorksheet","LE_ArgumentException_Pmt":"LE_ArgumentException_Pmt","LE_ArgumentException_PrintAreaShiftedOffWorksheet":"LE_ArgumentException_PrintAreaShiftedOffWorksheet","LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange":"LE_ArgumentException_RangeFromOtherWorksheetThanProtectedRange","LE_ArgumentException_RegionMustBeOnSameWorksheet":"LE_ArgumentException_RegionMustBeOnSameWorksheet","LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection":"LE_ArgumentException_RegionMustBeOnSameWorksheetAsReferencesCollection","LE_ArgumentException_RegionsFromMixedWorksheets":"LE_ArgumentException_RegionsFromMixedWorksheets","LE_ArgumentException_RegionShiftedOffWorksheet":"LE_ArgumentException_RegionShiftedOffWorksheet","LE_ArgumentException_RegionsShiftedOffWorksheet":"LE_ArgumentException_RegionsShiftedOffWorksheet","LE_ArgumentException_RowFromDifferentWorksheet":"LE_ArgumentException_RowFromDifferentWorksheet","LE_ArgumentException_RowInputCellFromOtherWorksheet":"LE_ArgumentException_RowInputCellFromOtherWorksheet","LE_ArgumentException_RowRemovedFromWorksheet":"LE_ArgumentException_RowRemovedFromWorksheet","LE_ArgumentException_SelectedWorksheetFromOtherWorkbook":"LE_ArgumentException_SelectedWorksheetFromOtherWorkbook","LE_ArgumentException_ShapeCannotBeAdded":"LE_ArgumentException_ShapeCannotBeAdded","LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink":"LE_ArgumentException_SourceFromOtherWorksheetThanHyperlink","LE_ArgumentException_StartIndexLessThanZero":"LE_ArgumentException_StartIndexLessThanZero","LE_ArgumentException_StyleNameAlreadyExists":"LE_ArgumentException_StyleNameAlreadyExists","LE_ArgumentException_StyleNameTooLong":"LE_ArgumentException_StyleNameTooLong","LE_ArgumentException_TableColumnRemovedFromTable":"LE_ArgumentException_TableColumnRemovedFromTable","LE_ArgumentException_TableStyleFromOtherWorkbook":"LE_ArgumentException_TableStyleFromOtherWorkbook","LE_ArgumentException_TargetTooLong":"LE_ArgumentException_TargetTooLong","LE_ArgumentException_TextLengthGreaterThanMax":"LE_ArgumentException_TextLengthGreaterThanMax","LE_ArgumentException_ToolTipTooLong":"LE_ArgumentException_ToolTipTooLong","LE_ArgumentException_TopLeftWindowBounds":"LE_ArgumentException_TopLeftWindowBounds","LE_ArgumentException_WeekdayFirst":"LE_ArgumentException_WeekdayFirst","LE_ArgumentException_WidthHeightWindowBounds":"LE_ArgumentException_WidthHeightWindowBounds","LE_ArgumentException_WorksheetNameAlreadyExists":"LE_ArgumentException_WorksheetNameAlreadyExists","LE_ArgumentException_WorksheetNameTooLong":"LE_ArgumentException_WorksheetNameTooLong","LE_ArgumentException_WorksheetProtectedRangeTitleTooLong":"LE_ArgumentException_WorksheetProtectedRangeTitleTooLong","LE_ArgumentException_WorksheetScopeFromOtherWorkbook":"LE_ArgumentException_WorksheetScopeFromOtherWorkbook","LE_ArgumentNullException_AnchorCell":"LE_ArgumentNullException_AnchorCell","LE_ArgumentNullException_CustomViewName":"LE_ArgumentNullException_CustomViewName","LE_ArgumentNullException_Encoder":"LE_ArgumentNullException_Encoder","LE_ArgumentNullException_FindNamedReference":"LE_ArgumentNullException_FindNamedReference","LE_ArgumentNullException_FormulaCantBeNull":"LE_ArgumentNullException_FormulaCantBeNull","LE_ArgumentNullException_HiddenColumn":"LE_ArgumentNullException_HiddenColumn","LE_ArgumentNullException_HiddenRow":"LE_ArgumentNullException_HiddenRow","LE_ArgumentNullException_Image":"LE_ArgumentNullException_Image","LE_ArgumentNullException_NamedReferenceNameCantBeNull":"LE_ArgumentNullException_NamedReferenceNameCantBeNull","LE_ArgumentNullException_SaveStream":"LE_ArgumentNullException_SaveStream","LE_ArgumentNullException_SelectedWorksheet":"LE_ArgumentNullException_SelectedWorksheet","LE_ArgumentNullException_Shape":"LE_ArgumentNullException_Shape","LE_ArgumentNullException_SourceFont":"LE_ArgumentNullException_SourceFont","LE_ArgumentNullException_SourceFormatting":"LE_ArgumentNullException_SourceFormatting","LE_ArgumentNullException_StyleName":"LE_ArgumentNullException_StyleName","LE_ArgumentNullException_UnformattedString":"LE_ArgumentNullException_UnformattedString","LE_ArgumentNullException_Workbook":"LE_ArgumentNullException_Workbook","LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor":"LE_ArgumentNullException_WorkbookRequiredToResolveThemeColor","LE_ArgumentNullException_WorksheetName":"LE_ArgumentNullException_WorksheetName","LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull":"LE_ArgumentNullException_WorksheetProtectedRangeTitleCantBeNull","LE_ArgumentNullException_WorksheetScope":"LE_ArgumentNullException_WorksheetScope","LE_ArgumentOutOfRange_RelativeColumnIndex":"LE_ArgumentOutOfRange_RelativeColumnIndex","LE_ArgumentOutOfRange_RelativeRowIndex":"LE_ArgumentOutOfRange_RelativeRowIndex","LE_ArgumentOutOfRangeException_AnchorPosition":"LE_ArgumentOutOfRangeException_AnchorPosition","LE_ArgumentOutOfRangeException_BadInsertIndex":"LE_ArgumentOutOfRangeException_BadInsertIndex","LE_ArgumentOutOfRangeException_BadRemoveAtIndex":"LE_ArgumentOutOfRangeException_BadRemoveAtIndex","LE_ArgumentOutOfRangeException_CollectionIndex":"LE_ArgumentOutOfRangeException_CollectionIndex","LE_ArgumentOutOfRangeException_ColumnWidth":"LE_ArgumentOutOfRangeException_ColumnWidth","LE_ArgumentOutOfRangeException_DefaultColumnWidth":"LE_ArgumentOutOfRangeException_DefaultColumnWidth","LE_ArgumentOutOfRangeException_DefaultFontHeight":"LE_ArgumentOutOfRangeException_DefaultFontHeight","LE_ArgumentOutOfRangeException_DefaultRowHeight":"LE_ArgumentOutOfRangeException_DefaultRowHeight","LE_ArgumentOutOfRangeException_DuplicateItemSorted":"LE_ArgumentOutOfRangeException_DuplicateItemSorted","LE_ArgumentOutOfRangeException_FirstVisibleTabIndex":"LE_ArgumentOutOfRangeException_FirstVisibleTabIndex","LE_ArgumentOutOfRangeException_FontHeight":"LE_ArgumentOutOfRangeException_FontHeight","LE_ArgumentOutOfRangeException_GroupAddedToSelf":"LE_ArgumentOutOfRangeException_GroupAddedToSelf","LE_ArgumentOutOfRangeException_Indent":"LE_ArgumentOutOfRangeException_Indent","LE_ArgumentOutOfRangeException_IndexNegative":"LE_ArgumentOutOfRangeException_IndexNegative","LE_ArgumentOutOfRangeException_InvalidCollectionIndex":"LE_ArgumentOutOfRangeException_InvalidCollectionIndex","LE_ArgumentOutOfRangeException_InvalidColorInfoTint":"LE_ArgumentOutOfRangeException_InvalidColorInfoTint","LE_ArgumentOutOfRangeException_InvalidColumnCount":"LE_ArgumentOutOfRangeException_InvalidColumnCount","LE_ArgumentOutOfRangeException_InvalidColumnIndex":"LE_ArgumentOutOfRangeException_InvalidColumnIndex","LE_ArgumentOutOfRangeException_InvalidGradientStopOffset":"LE_ArgumentOutOfRangeException_InvalidGradientStopOffset","LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient":"LE_ArgumentOutOfRangeException_InvalidRelativeRectangleValueForGradient","LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions":"LE_ArgumentOutOfRangeException_InvalidRemoveAtIndex_SortConditions","LE_ArgumentOutOfRangeException_InvalidRowCount":"LE_ArgumentOutOfRangeException_InvalidRowCount","LE_ArgumentOutOfRangeException_InvalidRowIndex":"LE_ArgumentOutOfRangeException_InvalidRowIndex","LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent":"LE_ArgumentOutOfRangeException_InvalidTableStyleAreaStripeExtent","LE_ArgumentOutOfRangeException_LeftPaneWidth":"LE_ArgumentOutOfRangeException_LeftPaneWidth","LE_ArgumentOutOfRangeException_LengthMustBePositive":"LE_ArgumentOutOfRangeException_LengthMustBePositive","LE_ArgumentOutOfRangeException_MagnificationLevel":"LE_ArgumentOutOfRangeException_MagnificationLevel","LE_ArgumentOutOfRangeException_Margins":"LE_ArgumentOutOfRangeException_Margins","LE_ArgumentOutOfRangeException_MaxPagesHorizontally":"LE_ArgumentOutOfRangeException_MaxPagesHorizontally","LE_ArgumentOutOfRangeException_MaxPagesVertically":"LE_ArgumentOutOfRangeException_MaxPagesVertically","LE_ArgumentOutOfRangeException_MaxRecursionIterations":"LE_ArgumentOutOfRangeException_MaxRecursionIterations","LE_ArgumentOutOfRangeException_MaxSortConditions":"LE_ArgumentOutOfRangeException_MaxSortConditions","LE_ArgumentOutOfRangeException_NegativeStartIndex":"LE_ArgumentOutOfRangeException_NegativeStartIndex","LE_ArgumentOutOfRangeException_NumberOfCopies":"LE_ArgumentOutOfRangeException_NumberOfCopies","LE_ArgumentOutOfRangeException_Per":"LE_ArgumentOutOfRangeException_Per","LE_ArgumentOutOfRangeException_Rate":"LE_ArgumentOutOfRangeException_Rate","LE_ArgumentOutOfRangeException_Resolution":"LE_ArgumentOutOfRangeException_Resolution","LE_ArgumentOutOfRangeException_RowHeight":"LE_ArgumentOutOfRangeException_RowHeight","LE_ArgumentOutOfRangeException_ScalingFactor":"LE_ArgumentOutOfRangeException_ScalingFactor","LE_ArgumentOutOfRangeException_StartPageNumber":"LE_ArgumentOutOfRangeException_StartPageNumber","LE_ArgumentOutOfRangeException_TabBarWidth":"LE_ArgumentOutOfRangeException_TabBarWidth","LE_ArgumentOutOfRangeException_TopPaneHeight":"LE_ArgumentOutOfRangeException_TopPaneHeight","LE_AutoColorNotAllowed":"LE_AutoColorNotAllowed","LE_Axis_MajorMinorUnit":"LE_Axis_MajorMinorUnit","LE_Axis_NoCrossAxis":"LE_Axis_NoCrossAxis","LE_Biff8SerializerNotLoaded":"LE_Biff8SerializerNotLoaded","LE_CategoryAxisBinning_BinWidthAndNumberOfBins":"LE_CategoryAxisBinning_BinWidthAndNumberOfBins","LE_ChartGradientFill_EmptyStops":"LE_ChartGradientFill_EmptyStops","LE_ChartObject_DifferentChart":"LE_ChartObject_DifferentChart","LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange":"LE_ColumnsToRepeatAtLeftAreOutsideAvailableRange","LE_ComboChartGroupCollection_DoesNotExist":"LE_ComboChartGroupCollection_DoesNotExist","LE_FillPercentInvalid":"LE_FillPercentInvalid","LE_FormatLimitError_Indent":"LE_FormatLimitError_Indent","LE_FormatLimitError_MacroWorkbook":"LE_FormatLimitError_MacroWorkbook","LE_FormatLimitError_MaxColumnIndex":"LE_FormatLimitError_MaxColumnIndex","LE_FormatLimitError_MaxRowIndex":"LE_FormatLimitError_MaxRowIndex","LE_FormulaParseException_ArrayContainsConstants":"LE_FormulaParseException_ArrayContainsConstants","LE_FormulaParseException_ArrayHasEmptyFirstRow":"LE_FormulaParseException_ArrayHasEmptyFirstRow","LE_FormulaParseException_ArrayHasMisalignedRows":"LE_FormulaParseException_ArrayHasMisalignedRows","LE_FormulaParseException_CellReferenceAfterWorkbookName":"LE_FormulaParseException_CellReferenceAfterWorkbookName","LE_FormulaParseException_ExtraExpressions":"LE_FormulaParseException_ExtraExpressions","LE_FormulaParseException_FunctionMissingClosingParen":"LE_FormulaParseException_FunctionMissingClosingParen","LE_FormulaParseException_FunctionNestingTooDeep":"LE_FormulaParseException_FunctionNestingTooDeep","LE_FormulaParseException_IncorrectNumberOfArguments":"LE_FormulaParseException_IncorrectNumberOfArguments","LE_FormulaParseException_InvalidArguments":"LE_FormulaParseException_InvalidArguments","LE_FormulaParseException_InvalidConditionalFormatFormula":"LE_FormulaParseException_InvalidConditionalFormatFormula","LE_FormulaParseException_InvalidErrorValue":"LE_FormulaParseException_InvalidErrorValue","LE_FormulaParseException_InvalidFileNameInBrackets":"LE_FormulaParseException_InvalidFileNameInBrackets","LE_FormulaParseException_InvalidStructuredTableReference":"LE_FormulaParseException_InvalidStructuredTableReference","LE_FormulaParseException_InvalidWorkbookName":"LE_FormulaParseException_InvalidWorkbookName","LE_FormulaParseException_InvalidWorksheetName":"LE_FormulaParseException_InvalidWorksheetName","LE_FormulaParseException_MacroFunctionNotAllowed":"LE_FormulaParseException_MacroFunctionNotAllowed","LE_FormulaParseException_Message_PortionWithError":"LE_FormulaParseException_Message_PortionWithError","LE_FormulaParseException_MissingArgumentAfterBinary":"LE_FormulaParseException_MissingArgumentAfterBinary","LE_FormulaParseException_MissingArgumentAfterParen":"LE_FormulaParseException_MissingArgumentAfterParen","LE_FormulaParseException_MissingArgumentAfterUnary":"LE_FormulaParseException_MissingArgumentAfterUnary","LE_FormulaParseException_MissingArgumentBeforeBinary":"LE_FormulaParseException_MissingArgumentBeforeBinary","LE_FormulaParseException_NamedReferenceRefsNeedSheetName":"LE_FormulaParseException_NamedReferenceRefsNeedSheetName","LE_FormulaParseException_NoElementAfterArraySerapator":"LE_FormulaParseException_NoElementAfterArraySerapator","LE_FormulaParseException_NoEqualsSign":"LE_FormulaParseException_NoEqualsSign","LE_FormulaParseException_NoExclamationAfterWorkbookName":"LE_FormulaParseException_NoExclamationAfterWorkbookName","LE_FormulaParseException_NoExclamationAfterWorksheetName":"LE_FormulaParseException_NoExclamationAfterWorksheetName","LE_FormulaParseException_NoExpressions":"LE_FormulaParseException_NoExpressions","LE_FormulaParseException_NoFileNameAfterBracket":"LE_FormulaParseException_NoFileNameAfterBracket","LE_FormulaParseException_NoValidTermAfterWorkbookName":"LE_FormulaParseException_NoValidTermAfterWorkbookName","LE_FormulaParseException_NoValidTermAfterWorksheetName":"LE_FormulaParseException_NoValidTermAfterWorksheetName","LE_FormulaParseException_NoWorksheetAfterWorkbookName":"LE_FormulaParseException_NoWorksheetAfterWorkbookName","LE_FormulaParseException_StringConstantLengthTooLong":"LE_FormulaParseException_StringConstantLengthTooLong","LE_FormulaParseException_TooLong":"LE_FormulaParseException_TooLong","LE_FormulaParseException_UnknownFunction":"LE_FormulaParseException_UnknownFunction","LE_FormulaParseException_UnmatchedOpenBracket":"LE_FormulaParseException_UnmatchedOpenBracket","LE_FormulaParseException_UnmatchedOpenParen":"LE_FormulaParseException_UnmatchedOpenParen","LE_FormulaParseException_UnmatchedOpenSquareBracket":"LE_FormulaParseException_UnmatchedOpenSquareBracket","LE_FormulaParseException_WorkbookNameMissingEndQuote":"LE_FormulaParseException_WorkbookNameMissingEndQuote","LE_FormulaParseException_WorksheetRangeMissingEndingName":"LE_FormulaParseException_WorksheetRangeMissingEndingName","LE_GradientStop_InvalidPosition":"LE_GradientStop_InvalidPosition","LE_IconSetInvalid":"LE_IconSetInvalid","LE_IndexOutOfRangeException_ArrayBounds":"LE_IndexOutOfRangeException_ArrayBounds","LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed":"LE_InvalidEnumArgumentException_DefaultPatternCannotBeUsed","LE_InvalidLineWeight":"LE_InvalidLineWeight","LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell":"LE_InvalidOperationException_AnchorCommentBeforeApplyingToCell","LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection":"LE_InvalidOperationException_AnchorShapeBeforeAddingToCollection","LE_InvalidOperationException_ArrayFormulaAlreadyApplied":"LE_InvalidOperationException_ArrayFormulaAlreadyApplied","LE_InvalidOperationException_ArrayFormulaAppliedInTable":"LE_InvalidOperationException_ArrayFormulaAppliedInTable","LE_InvalidOperationException_ArrayFormulaInMergedCell":"LE_InvalidOperationException_ArrayFormulaInMergedCell","LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet":"LE_InvalidOperationException_BottomRightAnchorFromOtherWorksheet","LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged":"LE_InvalidOperationException_BuiltInStyleNameCannotBeChanged","LE_InvalidOperationException_CannotAddColorsToPaletteDirectly":"LE_InvalidOperationException_CannotAddColorsToPaletteDirectly","LE_InvalidOperationException_CannotAddParagraphDirectly":"LE_InvalidOperationException_CannotAddParagraphDirectly","LE_InvalidOperationException_CannotAddTableDirectly":"LE_InvalidOperationException_CannotAddTableDirectly","LE_InvalidOperationException_CannotAddTableToRemovedWorksheet":"LE_InvalidOperationException_CannotAddTableToRemovedWorksheet","LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileHeaderRowIsHidden","LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden":"LE_InvalidOperationException_CannotApplyFilterWhileUIIsHidden","LE_InvalidOperationException_CannotInsertTableRow_LossOfData":"LE_InvalidOperationException_CannotInsertTableRow_LossOfData","LE_InvalidOperationException_CannotInsertTableRow_LossOfObject":"LE_InvalidOperationException_CannotInsertTableRow_LossOfObject","LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue":"LE_InvalidOperationException_CannotInsertTableRow_SplitBlockingValue","LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion":"LE_InvalidOperationException_CannotInsertTableRow_SplitMergedRegion","LE_InvalidOperationException_CannotInsertTableRow_SplitTable":"LE_InvalidOperationException_CannotInsertTableRow_SplitTable","LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet":"LE_InvalidOperationException_CannotInsertTableRow_TableOnBottomOfWorksheet","LE_InvalidOperationException_CannotModifyKeysCollection":"LE_InvalidOperationException_CannotModifyKeysCollection","LE_InvalidOperationException_CannotModifyStandardTableStyle":"LE_InvalidOperationException_CannotModifyStandardTableStyle","LE_InvalidOperationException_CannotModifyValuesCollection":"LE_InvalidOperationException_CannotModifyValuesCollection","LE_InvalidOperationException_CannotMoveDisconnectedWorksheet":"LE_InvalidOperationException_CannotMoveDisconnectedWorksheet","LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly":"LE_InvalidOperationException_CannotRemoveColorsToPaletteDirectly","LE_InvalidOperationException_CannotRemoveNormalStyle":"LE_InvalidOperationException_CannotRemoveNormalStyle","LE_InvalidOperationException_CannotSetParentStyleOnStyle":"LE_InvalidOperationException_CannotSetParentStyleOnStyle","LE_InvalidOperationException_CannotShift_LossOfData":"LE_InvalidOperationException_CannotShift_LossOfData","LE_InvalidOperationException_CannotShift_LossOfObject":"LE_InvalidOperationException_CannotShift_LossOfObject","LE_InvalidOperationException_CannotShift_SplitBlockingValue":"LE_InvalidOperationException_CannotShift_SplitBlockingValue","LE_InvalidOperationException_CannotShift_SplitMergedRegion":"LE_InvalidOperationException_CannotShift_SplitMergedRegion","LE_InvalidOperationException_CannotShift_SplitTable":"LE_InvalidOperationException_CannotShift_SplitTable","LE_InvalidOperationException_CantAddChartInChart":"LE_InvalidOperationException_CantAddChartInChart","LE_InvalidOperationException_CantAddCustomView":"LE_InvalidOperationException_CantAddCustomView","LE_InvalidOperationException_CantAddDataTable":"LE_InvalidOperationException_CantAddDataTable","LE_InvalidOperationException_CantAddMergedRegion":"LE_InvalidOperationException_CantAddMergedRegion","LE_InvalidOperationException_CantAddNamedReference":"LE_InvalidOperationException_CantAddNamedReference","LE_InvalidOperationException_CantAddWorksheet":"LE_InvalidOperationException_CantAddWorksheet","LE_InvalidOperationException_CantApplyRemovedCustomView":"LE_InvalidOperationException_CantApplyRemovedCustomView","LE_InvalidOperationException_CantChangeArrayFormula":"LE_InvalidOperationException_CantChangeArrayFormula","LE_InvalidOperationException_CantChangeDataTable":"LE_InvalidOperationException_CantChangeDataTable","LE_InvalidOperationException_CantModifyCollection":"LE_InvalidOperationException_CantModifyCollection","LE_InvalidOperationException_CantOverlapArrayFormula":"LE_InvalidOperationException_CantOverlapArrayFormula","LE_InvalidOperationException_CantOverlapDataTableInterior":"LE_InvalidOperationException_CantOverlapDataTableInterior","LE_InvalidOperationException_CantSaveEditRangeWithoutRange":"LE_InvalidOperationException_CantSaveEditRangeWithoutRange","LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets":"LE_InvalidOperationException_CantSaveWithNoVisibleWorksheets","LE_InvalidOperationException_CantSaveWithNoWorksheets":"LE_InvalidOperationException_CantSaveWithNoWorksheets","LE_InvalidOperationException_CantSetCircularityErrorDirectly":"LE_InvalidOperationException_CantSetCircularityErrorDirectly","LE_InvalidOperationException_CantSetDataTableDirectly":"LE_InvalidOperationException_CantSetDataTableDirectly","LE_InvalidOperationException_CantSetFormulaDirectly":"LE_InvalidOperationException_CantSetFormulaDirectly","LE_InvalidOperationException_CellsInTableMinSize":"LE_InvalidOperationException_CellsInTableMinSize","LE_InvalidOperationException_ChartNotSupported":"LE_InvalidOperationException_ChartNotSupported","LE_InvalidOperationException_ClearUnknownShapeData":"LE_InvalidOperationException_ClearUnknownShapeData","LE_InvalidOperationException_CollectionLongerThanMaxValue":"LE_InvalidOperationException_CollectionLongerThanMaxValue","LE_InvalidOperationException_CollectionModifiedWhileEnumerating":"LE_InvalidOperationException_CollectionModifiedWhileEnumerating","LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell":"LE_InvalidOperationException_CurrentTableRowAddressNeedsOriginCell","LE_InvalidOperationException_CustomViewNoVisibleWorksheets":"LE_InvalidOperationException_CustomViewNoVisibleWorksheets","LE_InvalidOperationException_DataTableAppliedInTable":"LE_InvalidOperationException_DataTableAppliedInTable","LE_InvalidOperationException_DataTableFormulaCannotBeApplied":"LE_InvalidOperationException_DataTableFormulaCannotBeApplied","LE_InvalidOperationException_DataTableInMergedCell":"LE_InvalidOperationException_DataTableInMergedCell","LE_InvalidOperationException_DataTableRemoved":"LE_InvalidOperationException_DataTableRemoved","LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill":"LE_InvalidOperationException_DeprecatedFillColorSetWithGradientFill","LE_InvalidOperationException_EncryptedWorkbooksNotSupported":"LE_InvalidOperationException_EncryptedWorkbooksNotSupported","LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat":"LE_InvalidOperationException_ExtensionDoesntMatchCurrentFormat","LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue":"LE_InvalidOperationException_FixedValuesFilterMustAcceptAValue","LE_InvalidOperationException_FormattedStringAlreadyOwned":"LE_InvalidOperationException_FormattedStringAlreadyOwned","LE_InvalidOperationException_FormattedStringNotOwned":"LE_InvalidOperationException_FormattedStringNotOwned","LE_InvalidOperationException_FormattedTextAlreadyOwned":"LE_InvalidOperationException_FormattedTextAlreadyOwned","LE_InvalidOperationException_FormulaAlreadyOwned":"LE_InvalidOperationException_FormulaAlreadyOwned","LE_InvalidOperationException_FormulaReferencesInvalidCells":"LE_InvalidOperationException_FormulaReferencesInvalidCells","LE_InvalidOperationException_GetBoundsBeforeAnchorsSet":"LE_InvalidOperationException_GetBoundsBeforeAnchorsSet","LE_InvalidOperationException_HiddenWorksheetCannotBeSelected":"LE_InvalidOperationException_HiddenWorksheetCannotBeSelected","LE_InvalidOperationException_HyperlinkSealed":"LE_InvalidOperationException_HyperlinkSealed","LE_InvalidOperationException_ImageDisposed":"LE_InvalidOperationException_ImageDisposed","LE_InvalidOperationException_InputCellsBothNull":"LE_InvalidOperationException_InputCellsBothNull","LE_InvalidOperationException_InputCellsInTable":"LE_InvalidOperationException_InputCellsInTable","LE_InvalidOperationException_InputCellsSame":"LE_InvalidOperationException_InputCellsSame","LE_InvalidOperationException_InvalidCharacterRange":"LE_InvalidOperationException_InvalidCharacterRange","LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea":"LE_InvalidOperationException_InvalidFormatOptionsInWholeTableArea","LE_InvalidOperationException_InvalidFormatString":"LE_InvalidOperationException_InvalidFormatString","LE_InvalidOperationException_InvalidFormatString_GetTextCall":"LE_InvalidOperationException_InvalidFormatString_GetTextCall","LE_InvalidOperationException_InvalidForWorkbookFormat":"LE_InvalidOperationException_InvalidForWorkbookFormat","LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty":"LE_InvalidOperationException_InvalidHeaderRowAreaFormatProperty","LE_InvalidOperationException_InvalidTableStyleAreaFontProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFontProperty","LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions":"LE_InvalidOperationException_InvalidTableStyleAreaFormatOptions","LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty":"LE_InvalidOperationException_InvalidTableStyleAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsCellColumnAreaFormatProperty","LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty":"LE_InvalidOperationException_InvalidTotalsRowAreaFormatProperty","LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty":"LE_InvalidOperationException_InvalidWholeTableAreaFormatProperty","LE_InvalidOperationException_LastColumnBeforeFirst":"LE_InvalidOperationException_LastColumnBeforeFirst","LE_InvalidOperationException_LastRowBeforeFirst":"LE_InvalidOperationException_LastRowBeforeFirst","LE_InvalidOperationException_MaxCellFormats":"LE_InvalidOperationException_MaxCellFormats","LE_InvalidOperationException_MaxColors":"LE_InvalidOperationException_MaxColors","LE_InvalidOperationException_MaxColumns":"LE_InvalidOperationException_MaxColumns","LE_InvalidOperationException_MaxFonts":"LE_InvalidOperationException_MaxFonts","LE_InvalidOperationException_MaxFormattedStrings":"LE_InvalidOperationException_MaxFormattedStrings","LE_InvalidOperationException_MaxRows":"LE_InvalidOperationException_MaxRows","LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn":"LE_InvalidOperationException_MergedCellCrossesDataTableLeftColumn","LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell":"LE_InvalidOperationException_MergedCellCrossesDataTableTopLeftCell","LE_InvalidOperationException_MergedCellCrossesDataTableTopRow":"LE_InvalidOperationException_MergedCellCrossesDataTableTopRow","LE_InvalidOperationException_MergedCellsAppliedInTable":"LE_InvalidOperationException_MergedCellsAppliedInTable","LE_InvalidOperationException_NamedReferenceNameAlreadyExists":"LE_InvalidOperationException_NamedReferenceNameAlreadyExists","LE_InvalidOperationException_NoRegionHasBeenSpecified":"LE_InvalidOperationException_NoRegionHasBeenSpecified","LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds":"LE_InvalidOperationException_NoWorksheetContextToSetShapeBounds","LE_InvalidOperationException_OverlappingTable":"LE_InvalidOperationException_OverlappingTable","LE_InvalidOperationException_ReadOnlyFont":"LE_InvalidOperationException_ReadOnlyFont","LE_InvalidOperationException_ReadOnlyFormat":"LE_InvalidOperationException_ReadOnlyFormat","LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell":"LE_InvalidOperationException_RelativeR1C1AddressNeedsOriginCell","LE_InvalidOperationException_ResizedTableMustBeOnWorksheet":"LE_InvalidOperationException_ResizedTableMustBeOnWorksheet","LE_InvalidOperationException_ResolvedFormatCannotBeModified":"LE_InvalidOperationException_ResolvedFormatCannotBeModified","LE_InvalidOperationException_ShapeCantChangeOrientation":"LE_InvalidOperationException_ShapeCantChangeOrientation","LE_InvalidOperationException_ShapeFillSolidIsImmutable":"LE_InvalidOperationException_ShapeFillSolidIsImmutable","LE_InvalidOperationException_ShapeInAnotherCollection":"LE_InvalidOperationException_ShapeInAnotherCollection","LE_InvalidOperationException_ShapeOutlineSolidIsImmutable":"LE_InvalidOperationException_ShapeOutlineSolidIsImmutable","LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden":"LE_InvalidOperationException_ShowFilterUIWhileHeaderRowHidden","LE_InvalidOperationException_SystemColorsAccessedFromWrongThread":"LE_InvalidOperationException_SystemColorsAccessedFromWrongThread","LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable":"LE_InvalidOperationException_TableReferenceMustBeUsedFromInsideTable","LE_InvalidOperationException_TableReferenceToMissingTable":"LE_InvalidOperationException_TableReferenceToMissingTable","LE_InvalidOperationException_TableReferenceToMissingTableColumn":"LE_InvalidOperationException_TableReferenceToMissingTableColumn","LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet":"LE_InvalidOperationException_TopLeftAnchorFromOtherWorksheet","LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow":"LE_InvalidOperationException_TotalsRowCannotBeShownInLastRow","LE_InvalidOperationException_UnknownBIFFFormat":"LE_InvalidOperationException_UnknownBIFFFormat","LE_InvalidOperationException_UnsupportedBIFFFormat":"LE_InvalidOperationException_UnsupportedBIFFFormat","LE_InvalidOperationException_WorkbookDataViolatesFormatLimits":"LE_InvalidOperationException_WorkbookDataViolatesFormatLimits","LE_InvalidRegion":"LE_InvalidRegion","LE_InvalidValueType":"LE_InvalidValueType","LE_LocationNotSingleRowOrColumn":"LE_LocationNotSingleRowOrColumn","LE_LocationOrDataAreaInvalid":"LE_LocationOrDataAreaInvalid","LE_LocationWorksheetMismatch":"LE_LocationWorksheetMismatch","LE_NotSingleTargetFormula":"LE_NotSingleTargetFormula","LE_NotSupportedException_CellType":"LE_NotSupportedException_CellType","LE_NotSupportedException_NoPackageFactory":"LE_NotSupportedException_NoPackageFactory","LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements":"LE_OpenPackagingNonConformanceException_ContainsDublinCoreRefinements","LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute":"LE_OpenPackagingNonConformanceException_ContainsXmlLanguageAttribute","LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed":"LE_OpenPackagingNonConformanceException_CorePropertiesRelationshipAlreadyProcessed","LE_OpenPackagingNonConformanceException_DuplicatePartName":"LE_OpenPackagingNonConformanceException_DuplicatePartName","LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace":"LE_OpenPackagingNonConformanceException_UsesMarkupCompatibilityNamespace","LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition":"LE_OpenPackagingNonConformanceException_XmlContainsDocumentTypeDefinition","LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid":"LE_OpenPackagingNonConformanceException_XsiTypeAttributeInvalid","LE_OpenXmlSerializerNotLoaded":"LE_OpenXmlSerializerNotLoaded","LE_PercentageValueOutOfRange":"LE_PercentageValueOutOfRange","LE_PercentileValueOutOfRange":"LE_PercentileValueOutOfRange","LE_PercentRangeInvalid":"LE_PercentRangeInvalid","LE_RowsToRepeatAtTopAreOutsideAvailableRange":"LE_RowsToRepeatAtTopAreOutsideAvailableRange","LE_Serialization_NoPrimaryCategoryAxis":"LE_Serialization_NoPrimaryCategoryAxis","LE_Serialization_NoPrimaryValueAxis":"LE_Serialization_NoPrimaryValueAxis","LE_Series_ChartType_ChartEx":"LE_Series_ChartType_ChartEx","LE_Series_ChartType_InvalidForComboChart":"LE_Series_ChartType_InvalidForComboChart","LE_Series_ChartType_NonCombo":"LE_Series_ChartType_NonCombo","LE_Series_Explosion_OutOfRange":"LE_Series_Explosion_OutOfRange","LE_Series_InvalidAxisGroup":"LE_Series_InvalidAxisGroup","LE_Series_InvalidSeriesTypeForComboChart":"LE_Series_InvalidSeriesTypeForComboChart","LE_Series_NoPrimaryAxis":"LE_Series_NoPrimaryAxis","LE_Series_OwningSeries_NotClusteredColumn":"LE_Series_OwningSeries_NotClusteredColumn","LE_Series_OwningSeries_NotParetoLine":"LE_Series_OwningSeries_NotParetoLine","LE_Series_OwningSeries_Same":"LE_Series_OwningSeries_Same","LE_Series_SeriesType_ChartEx":"LE_Series_SeriesType_ChartEx","LE_Series_SeriesType_NonCombo":"LE_Series_SeriesType_NonCombo","LE_SetValue_Formula":"LE_SetValue_Formula","LE_SetValue_NonNumeric":"LE_SetValue_NonNumeric","LE_SetValue_Numeric":"LE_SetValue_Numeric","LE_WorksheetChart_ChartType_ChartEx_CannotTransition":"LE_WorksheetChart_ChartType_ChartEx_CannotTransition","LE_WorksheetChart_ChartType_ComboChart_From":"LE_WorksheetChart_ChartType_ComboChart_From","LE_WorksheetChart_ChartType_ComboChart_To":"LE_WorksheetChart_ChartType_ComboChart_To","LE_WorksheetChart_ComboChart_NotEnoughSeries":"LE_WorksheetChart_ComboChart_NotEnoughSeries","LE_WorksheetChart_MissingRequiredAxis_StockCharts":"LE_WorksheetChart_MissingRequiredAxis_StockCharts","LE_WorksheetChart_NotEnoughSeries":"LE_WorksheetChart_NotEnoughSeries","LE_WorksheetChart_Save_Series":"LE_WorksheetChart_Save_Series","LE_WorksheetChart_Save_Series_Pareto":"LE_WorksheetChart_Save_Series_Pareto","LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes":"LE_WorksheetChart_SetComboChartSourceData_InvalidChartTypes","LE_WorksheetChart_SetComboChartSourceData_NotAComboChart":"LE_WorksheetChart_SetComboChartSourceData_NotAComboChart","LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported":"LE_WorksheetChart_SetComboChartSourceData_SeriesChartTypesNotSupported","LE_WorksheetChart_SetSourceData_NotEnoughSeries":"LE_WorksheetChart_SetSourceData_NotEnoughSeries","LE_WorksheetChart_SetSourceData_TooManyAxes":"LE_WorksheetChart_SetSourceData_TooManyAxes","LE_WorksheetChart_StockChartNotSupported":"LE_WorksheetChart_StockChartNotSupported","LE_WorksheetChart_UnknownChartNotSupported":"LE_WorksheetChart_UnknownChartNotSupported","LER_ArgumentOutOfRangeException_OutlineLevel":"LER_ArgumentOutOfRangeException_OutlineLevel","LER_Exception_KeyNotFound":"LER_Exception_KeyNotFound","LER_Exception_MergedRegionsOverlap":"LER_Exception_MergedRegionsOverlap","TableHeaderRowDescription":"TableHeaderRowDescription","TableInsertRowDescription":"TableInsertRowDescription","TableTotalsRowDescription":"TableTotalsRowDescription","Value_UCErrorCode_Div":"Value_UCErrorCode_Div","Value_UCErrorCode_Fail":"Value_UCErrorCode_Fail","Value_UCErrorCode_NA":"Value_UCErrorCode_NA","Value_UCErrorCode_Name":"Value_UCErrorCode_Name","Value_UCErrorCode_Null":"Value_UCErrorCode_Null","Value_UCErrorCode_Num":"Value_UCErrorCode_Num","Value_UCErrorCode_Ok":"Value_UCErrorCode_Ok","Value_UCErrorCode_Reference":"Value_UCErrorCode_Reference","Value_UCErrorCode_Unknown":"Value_UCErrorCode_Unknown","Value_UCErrorCode_Value":"Value_UCErrorCode_Value","WorkbookColorInfo_Automatic_Description":"WorkbookColorInfo_Automatic_Description","WorkbookColorInfo_Description":"WorkbookColorInfo_Description","WorkbookColorInfo_WithTint_Description":"WorkbookColorInfo_WithTint_Description","WorksheetShapeSerialization_GroupName":"WorksheetShapeSerialization_GroupName","WorksheetShapeSerialization_ImageName":"WorksheetShapeSerialization_ImageName","WorksheetShapeSerialization_ShapeName":"WorksheetShapeSerialization_ShapeName"}}],"FillFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FillFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fill":"fill"}}],"FillSortCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FillSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fill":"fill","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"Filter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Filter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"FixedDateGroup":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FixedDateGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start","type":"type","value":"value","equals":"equals","getHashCode":"getHashCode","getRange":"getRange"}}],"FixedDateGroupCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FixedDateGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"FixedValuesFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FixedValuesFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","calendarType":"calendarType","includeBlanks":"includeBlanks","dateGroups":"dateGroups","displayValues":"displayValues"}}],"FontColorFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FontColorFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fontColorInfo":"fontColorInfo"}}],"FontColorSortCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FontColorSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fontColorInfo":"fontColorInfo","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"FormattedFontBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedFontBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedString":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedString","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","unformattedString":"unformattedString","clone":"clone","equals":"equals","getFont":"getFont","getFormattingRuns":"getFormattingRuns","getHashCode":"getHashCode","toString":"toString"}}],"FormattedStringFont":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedStringFont","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","formattedString":"formattedString","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedText":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedText","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","verticalAlignment":"verticalAlignment","clone":"clone","getFont":"getFont","getFormattingRuns":"getFormattingRuns","paragraphs":"paragraphs","toString":"toString"}}],"FormattedTextFont":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedTextFont","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bold":"bold","colorInfo":"colorInfo","formattedText":"formattedText","height":"height","italic":"italic","length":"length","name":"name","startIndex":"startIndex","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"FormattedTextParagraph":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedTextParagraph","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignment":"alignment","formattedText":"formattedText","startIndex":"startIndex","unformattedString":"unformattedString"}}],"FormattedTextParagraphCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormattedTextParagraphCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"Formula":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Formula","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyTo":"applyTo","toString":"toString","areEqual":"areEqual","parse":"parse","staticInit":"staticInit"}}],"FormulaConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormulaConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","formula":"formula","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"FormulaParseException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FormulaParseException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","charIndexOfError":"charIndexOfError","formulaValue":"formulaValue","portionWithError":"portionWithError"}}],"FrozenPaneSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/FrozenPaneSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","frozenColumns":"frozenColumns","frozenRows":"frozenRows","reset":"reset","resetCore":"resetCore"}}],"GeographicMapColors":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/GeographicMapColors","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maximum":"maximum","midpoint":"midpoint","minimum":"minimum","seriesColor":"seriesColor"}}],"GeographicMapSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/GeographicMapSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","area":"area","attribution":"attribution","colors":"colors","cultureLanguage":"cultureLanguage","cultureRegion":"cultureRegion","labels":"labels","projection":"projection"}}],"GradientStop":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/GradientStop","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","position":"position"}}],"HeartShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/HeartShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"HiddenColumnCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/HiddenColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","worksheet":"worksheet","add_1":"add_1","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"HiddenRowCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/HiddenRowCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","worksheet":"worksheet","add_1":"add_1","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"HorizontalPageBreak":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/HorizontalPageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstRowOnPage":"firstRowOnPage","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"HorizontalPageBreakCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/HorizontalPageBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"IconCriterion":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IconCriterion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comparison":"comparison","formula":"formula","icon":"icon","iconSet":"iconSet","value":"value","valueType":"valueType","setFormula":"setFormula","setValue":"setValue"}}],"IconFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IconFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","iconIndex":"iconIndex","iconSet":"iconSet"}}],"IconSetConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IconSetConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","formula":"formula","iconSet":"iconSet","isCustom":"isCustom","isReverseOrder":"isReverseOrder","priority":"priority","regions":"regions","showValue":"showValue","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","iconCriteria":"iconCriteria","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"IconSetCriterionCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IconSetCriterionCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","getEnumeratorObject":"getEnumeratorObject","item":"item"}}],"IconSortCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IconSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","iconIndex":"iconIndex","iconSet":"iconSet","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"InvalidCastException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/InvalidCastException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"InvalidEnumArgumentException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/InvalidEnumArgumentException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"IOException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IOException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"IrregularSeal1Shape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IrregularSeal1Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"IrregularSeal2Shape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/IrregularSeal2Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"KeyNotFoundException":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/KeyNotFoundException","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"LeaderLines":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/LeaderLines","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"Legend":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Legend","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","defaultFontFill":"defaultFontFill","fill":"fill","height":"height","left":"left","overlay":"overlay","owner":"owner","position":"position","rotation":"rotation","sheet":"sheet","textDirection":"textDirection","top":"top","width":"width","workbook":"workbook","worksheet":"worksheet","legendEntries":"legendEntries"}}],"LegendEntries":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/LegendEntries","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item"}}],"LegendEntry":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/LegendEntry","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","font":"font","fontFill":"fontFill","isDeleted":"isDeleted","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","del":"del"}}],"LightningBoltShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/LightningBoltShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"LimitedValueDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/LimitedValueDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"LineShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/LineShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"ListDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ListDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showDropdown":"showDropdown","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","clone":"clone","getValuesFormula":"getValuesFormula","isEquivalentTo":"isEquivalentTo","setValues":"setValues","setValuesFormula":"setValuesFormula"}}],"NamedReference":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/NamedReference","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","formula":"formula","isSimpleReferenceFormula":"isSimpleReferenceFormula","name":"name","referencedCell":"referencedCell","referencedRegion":"referencedRegion","referencedRegions":"referencedRegions","scope":"scope","setFormula":"setFormula","toString":"toString"}}],"NamedReferenceBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/NamedReferenceBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","name":"name","scope":"scope"}}],"NamedReferenceCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/NamedReferenceCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","workbook":"workbook","add":"add","clear":"clear","contains":"contains","find":"find","findAll":"findAll","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"NegativeBarFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/NegativeBarFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","barBorderColor":"barBorderColor","barBorderColorType":"barBorderColorType","barColor":"barColor","barColorType":"barColorType"}}],"NoBlanksConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/NoBlanksConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"NoErrorsConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/NoErrorsConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"OneConstraintDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/OneConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","validationOperator":"validationOperator","clone":"clone","getConstraintFormula":"getConstraintFormula","isEquivalentTo":"isEquivalentTo","setConstraint":"setConstraint","setConstraintFormula":"setConstraintFormula"}}],"OperatorConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/OperatorConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","operand1":"operand1","operand2":"operand2","operator":"operator","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setOperand1":"setOperand1","setOperand1Formula":"setOperand1Formula","setOperand2":"setOperand2","setOperand2Formula":"setOperand2Formula","setRegions":"setRegions","staticInit":"staticInit"}}],"OrderedSortCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/OrderedSortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"PageBreak":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"PageBreakCollection$1":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PageBreakCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"PaneSettingsBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PaneSettingsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","reset":"reset","resetCore":"resetCore"}}],"PentagonShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PentagonShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"PlotArea":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PlotArea","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","height":"height","left":"left","owner":"owner","position":"position","roundedCorners":"roundedCorners","sheet":"sheet","top":"top","width":"width","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"PrintAreasCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PrintAreasCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"PrintOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PrintOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","centerHorizontally":"centerHorizontally","centerVertically":"centerVertically","columnsToRepeatAtLeft":"columnsToRepeatAtLeft","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","maxPagesHorizontally":"maxPagesHorizontally","maxPagesVertically":"maxPagesVertically","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","pageOrder":"pageOrder","paperSize":"paperSize","printErrors":"printErrors","printGridlines":"printGridlines","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","printRowAndColumnHeaders":"printRowAndColumnHeaders","resolution":"resolution","rightMargin":"rightMargin","rowsToRepeatAtTop":"rowsToRepeatAtTop","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","scalingFactor":"scalingFactor","scalingType":"scalingType","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","clearPageBreaks":"clearPageBreaks","horizontalPageBreaks":"horizontalPageBreaks","insertPageBreak":"insertPageBreak","printAreas":"printAreas","reset":"reset","verticalPageBreaks":"verticalPageBreaks"}}],"PrintOptionsBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/PrintOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignHeadersAndFootersWithMargins":"alignHeadersAndFootersWithMargins","bottomMargin":"bottomMargin","draftQuality":"draftQuality","footer":"footer","footerMargin":"footerMargin","header":"header","headerMargin":"headerMargin","leftMargin":"leftMargin","numberOfCopies":"numberOfCopies","orientation":"orientation","orientationResolved":"orientationResolved","pageNumbering":"pageNumbering","paperSize":"paperSize","printErrors":"printErrors","printInBlackAndWhite":"printInBlackAndWhite","printNotes":"printNotes","resolution":"resolution","rightMargin":"rightMargin","scaleHeadersAndFootersWithDocument":"scaleHeadersAndFootersWithDocument","startPageNumber":"startPageNumber","topMargin":"topMargin","verticalResolution":"verticalResolution","reset":"reset"}}],"RankConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RankConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","isPercent":"isPercent","priority":"priority","rank":"rank","regions":"regions","stopIfTrue":"stopIfTrue","topBottom":"topBottom","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"RectangleShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RectangleShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"RelativeDateRangeFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RelativeDateRangeFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","duration":"duration","end":"end","offset":"offset","start":"start"}}],"RelativeIndex":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RelativeIndex","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","index":"index","compareTo":"compareTo"}}],"RelativeIndexSortSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RelativeIndexSortSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","sortConditions":"sortConditions"}}],"RepeatTitleRange":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RepeatTitleRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","endIndex":"endIndex","startIndex":"startIndex","equals":"equals","getHashCode":"getHashCode","toString":"toString"}}],"RightTriangleShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RightTriangleShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"RowColumnBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RowColumnBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","worksheet":"worksheet","getResolvedCellFormat":"getResolvedCellFormat"}}],"RowColumnCollectionBase$1":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/RowColumnCollectionBase-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l"}}],"Series":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Series","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","applyPicToEnd":"applyPicToEnd","applyPicToFront":"applyPicToFront","applyPicToSides":"applyPicToSides","axisBinning":"axisBinning","axisGroup":"axisGroup","barShape":"barShape","barShapeResolved":"barShapeResolved","border":"border","boxAndWhiskerSettings":"boxAndWhiskerSettings","bubbleSizes":"bubbleSizes","chart":"chart","chartType":"chartType","dataLabels":"dataLabels","errorBars":"errorBars","explosion":"explosion","fill":"fill","geographicMapSettings":"geographicMapSettings","invertIfNegative":"invertIfNegative","leaderLines":"leaderLines","line":"line","markerBorder":"markerBorder","markerFill":"markerFill","markerSize":"markerSize","markerStyle":"markerStyle","name":"name","owner":"owner","owningSeries":"owningSeries","pictureType":"pictureType","pictureUnit":"pictureUnit","plotOrder":"plotOrder","sheet":"sheet","showDataLabels":"showDataLabels","showWaterfallConnectorLines":"showWaterfallConnectorLines","smooth":"smooth","type":"type","values":"values","workbook":"workbook","worksheet":"worksheet","xValues":"xValues","dataPointCollection":"dataPointCollection","trendlineCollection":"trendlineCollection"}}],"SeriesCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SeriesCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"SeriesDataLabels":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SeriesDataLabels","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","dataLabelsRange":"dataLabelsRange","defaultFont":"defaultFont","fill":"fill","formula":"formula","height":"height","horizontalOverflow":"horizontalOverflow","isDeleted":"isDeleted","labelPosition":"labelPosition","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","parentLabelLayout":"parentLabelLayout","position":"position","readingOrder":"readingOrder","rotation":"rotation","separator":"separator","sheet":"sheet","showBubbleSize":"showBubbleSize","showCategoryName":"showCategoryName","showLeaderLines":"showLeaderLines","showLegendKey":"showLegendKey","showPercentage":"showPercentage","showRange":"showRange","showSeriesName":"showSeriesName","showValue":"showValue","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","width":"width","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setDataLabelsRange":"setDataLabelsRange","setFormula":"setFormula","staticInit":"staticInit"}}],"SeriesName":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SeriesName","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","toString":"toString"}}],"SeriesValues":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SeriesValues","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"SeriesValuesBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SeriesValuesBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"ShapeFill":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ShapeFill","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeFillSolid":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ShapeFillSolid","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeOutline":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ShapeOutline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"ShapeOutlineSolid":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ShapeOutlineSolid","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorInfo":"colorInfo","fromColor":"fromColor","fromColorInfo":"fromColorInfo"}}],"Sheet":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Sheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","hasProtectionPassword":"hasProtectionPassword","isProtected":"isProtected","name":"name","selected":"selected","sheetIndex":"sheetIndex","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","moveToSheetIndex":"moveToSheetIndex","unprotect":"unprotect","staticInit":"staticInit"}}],"SheetCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SheetCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"SheetProtection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SortCondition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SortCondition","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","sortDirection":"sortDirection","equals":"equals","getHashCode":"getHashCode"}}],"SortConditionCollection$1":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SortConditionCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","addItem":"addItem","addRange":"addRange","clear":"clear","contains":"contains","indexOf":"indexOf","insert":"insert","insertRange":"insertRange","item":"item","remove":"remove","removeAt":"removeAt","removeItem":"removeItem","replaceAll":"replaceAll"}}],"SortSettings$1":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SortSettings-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","sortConditions":"sortConditions"}}],"Sparkline":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Sparkline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","dataRegion":"dataRegion","dataRegionName":"dataRegionName","location":"location"}}],"SparklineCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SparklineCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"SparklineGroup":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SparklineGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","colorAxis":"colorAxis","colorFirstPoint":"colorFirstPoint","colorHighPoint":"colorHighPoint","colorLastPoint":"colorLastPoint","colorLowPoint":"colorLowPoint","colorMarkers":"colorMarkers","colorNegativePoints":"colorNegativePoints","colorSeries":"colorSeries","dateAxis":"dateAxis","dateRange":"dateRange","dateRangeFormula":"dateRangeFormula","displayBlanksAs":"displayBlanksAs","displayHidden":"displayHidden","displayXAxis":"displayXAxis","firstPoint":"firstPoint","guid":"guid","highPoint":"highPoint","lastPoint":"lastPoint","lineWeight":"lineWeight","lowPoint":"lowPoint","markers":"markers","negativePoints":"negativePoints","rightToLeft":"rightToLeft","type":"type","verticalAxisMax":"verticalAxisMax","verticalAxisMaxType":"verticalAxisMaxType","verticalAxisMin":"verticalAxisMin","verticalAxisMinType":"verticalAxisMinType","workbook":"workbook","worksheet":"worksheet","setDateRange":"setDateRange","sparklines":"sparklines","staticInit":"staticInit"}}],"SparklineGroupCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/SparklineGroupCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","generateGuidsForGroups":"generateGuidsForGroups","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"StandardTableStyleCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/StandardTableStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","item":"item","staticInit":"staticInit"}}],"StraightConnector1Shape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/StraightConnector1Shape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"TextOperatorConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TextOperatorConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","text":"text","textFormula":"textFormula","textOperator":"textOperator","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","setTextFormula":"setTextFormula","staticInit":"staticInit"}}],"ThresholdConditionBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ThresholdConditionBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","conditionType":"conditionType","formula":"formula","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setFormula":"setFormula","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"TickLabels":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TickLabels","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alignment":"alignment","chart":"chart","fill":"fill","font":"font","multiLevel":"multiLevel","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","offset":"offset","owner":"owner","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","textDirection":"textDirection","workbook":"workbook","worksheet":"worksheet"}}],"TopOrBottomFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TopOrBottomFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","value":"value"}}],"Trendline":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Trendline","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","backward":"backward","chart":"chart","forward":"forward","intercept":"intercept","label":"label","legendEntry":"legendEntry","line":"line","name":"name","order":"order","owner":"owner","period":"period","sheet":"sheet","trendlineType":"trendlineType","workbook":"workbook","worksheet":"worksheet"}}],"TrendlineCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TrendlineCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","count":"count","isReadOnly":"isReadOnly","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","getEnumeratorObject":"getEnumeratorObject","indexOf":"indexOf","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"TrendlineLabel":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TrendlineLabel","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","defaultFont":"defaultFont","displayEquation":"displayEquation","displayRSquared":"displayRSquared","fill":"fill","formula":"formula","horizontalOverflow":"horizontalOverflow","left":"left","numberFormat":"numberFormat","numberFormatLinked":"numberFormatLinked","owner":"owner","position":"position","readingOrder":"readingOrder","rotation":"rotation","sheet":"sheet","text":"text","textDirection":"textDirection","top":"top","verticalAlignment":"verticalAlignment","verticalOverflow":"verticalOverflow","workbook":"workbook","worksheet":"worksheet","wrapText":"wrapText","setFormula":"setFormula","staticInit":"staticInit"}}],"TrendlineLine":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TrendlineLine","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","fill":"fill","lineStyle":"lineStyle","owner":"owner","sheet":"sheet","widthInPoints":"widthInPoints","workbook":"workbook","worksheet":"worksheet","staticInit":"staticInit"}}],"TwoConstraintDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/TwoConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","validationOperator":"validationOperator","clone":"clone","getLowerConstraintFormula":"getLowerConstraintFormula","getUpperConstraintFormula":"getUpperConstraintFormula","isEquivalentTo":"isEquivalentTo","setLowerConstraint":"setLowerConstraint","setLowerConstraintFormula":"setLowerConstraintFormula","setUpperConstraint":"setUpperConstraint","setUpperConstraintFormula":"setUpperConstraintFormula"}}],"UnfrozenPaneSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/UnfrozenPaneSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnInLeftPane":"firstColumnInLeftPane","firstColumnInRightPane":"firstColumnInRightPane","firstRowInBottomPane":"firstRowInBottomPane","firstRowInTopPane":"firstRowInTopPane","leftPaneWidth":"leftPaneWidth","topPaneHeight":"topPaneHeight","reset":"reset","resetCore":"resetCore"}}],"UniqueConditionalFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/UniqueConditionalFormat","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","conditionType":"conditionType","priority":"priority","regions":"regions","stopIfTrue":"stopIfTrue","workbook":"workbook","worksheet":"worksheet","setFirstPriority":"setFirstPriority","setLastPriority":"setLastPriority","setRegions":"setRegions","staticInit":"staticInit"}}],"UnknownShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/UnknownShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"UpDownBar":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/UpDownBar","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","barType":"barType","border":"border","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","workbook":"workbook","worksheet":"worksheet"}}],"UpDownBars":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/UpDownBars","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","chart":"chart","downBar":"downBar","gapWidth":"gapWidth","owner":"owner","sheet":"sheet","upBar":"upBar","workbook":"workbook","worksheet":"worksheet"}}],"ValueConstraintDataValidationRule":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/ValueConstraintDataValidationRule","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowNull":"allowNull","errorMessageDescription":"errorMessageDescription","errorMessageTitle":"errorMessageTitle","errorStyle":"errorStyle","imeMode":"imeMode","inputMessageDescription":"inputMessageDescription","inputMessageTitle":"inputMessageTitle","showErrorMessageForInvalidValue":"showErrorMessageForInvalidValue","showInputMessage":"showInputMessage","validationCriteria":"validationCriteria","clone":"clone","isEquivalentTo":"isEquivalentTo"}}],"VerticalPageBreak":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/VerticalPageBreak","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumnOnPage":"firstColumnOnPage","printArea":"printArea","equals":"equals","getHashCode":"getHashCode"}}],"VerticalPageBreakCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/VerticalPageBreakCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","indexOf":"indexOf","item":"item","remove":"remove","removeAt":"removeAt"}}],"Wall":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Wall","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","border":"border","chart":"chart","fill":"fill","owner":"owner","sheet":"sheet","thickness":"thickness","type":"type","workbook":"workbook","worksheet":"worksheet"}}],"WindowOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"Workbook":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Workbook","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxExcel2007CellFormatCount":"maxExcel2007CellFormatCount","maxExcel2007ColumnCount":"maxExcel2007ColumnCount","maxExcel2007RowCount":"maxExcel2007RowCount","maxExcelCellFormatCount":"maxExcelCellFormatCount","maxExcelColumnCount":"maxExcelColumnCount","maxExcelRowCount":"maxExcelRowCount","maxExcelWorkbookFonts":"maxExcelWorkbookFonts","calculationMode":"calculationMode","cellReferenceMode":"cellReferenceMode","culture":"culture","currentFormat":"currentFormat","dateSystem":"dateSystem","defaultTableStyle":"defaultTableStyle","documentProperties":"documentProperties","editingCulture":"editingCulture","hasProtectionPassword":"hasProtectionPassword","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isProtected":"isProtected","isSaving":"isSaving","iterativeCalculationsEnabled":"iterativeCalculationsEnabled","maxChangeInIteration":"maxChangeInIteration","maxColumnCount":"maxColumnCount","maxRecursionIterations":"maxRecursionIterations","maxRowCount":"maxRowCount","precision":"precision","protection":"protection","recalculateBeforeSave":"recalculateBeforeSave","saveExternalLinkedValues":"saveExternalLinkedValues","screenDpi":"screenDpi","shouldRemoveCarriageReturnsOnSave":"shouldRemoveCarriageReturnsOnSave","validateFormatStrings":"validateFormatStrings","windowOptions":"windowOptions","systemDpi":"systemDpi","_d9":"_d9","cancelAsyncCalculations":"cancelAsyncCalculations","characterWidth256thsToPixels":"characterWidth256thsToPixels","clearConnectionData":"clearConnectionData","clearPivotTableData":"clearPivotTableData","clearVbaData":"clearVbaData","createNewWorkbookFont":"createNewWorkbookFont","createNewWorksheetCellFormat":"createNewWorksheetCellFormat","customTableStyles":"customTableStyles","customViews":"customViews","getTable":"getTable","isValidFunctionName":"isValidFunctionName","namedReferences":"namedReferences","palette":"palette","pixelsToCharacterWidth256ths":"pixelsToCharacterWidth256ths","protect":"protect","recalculate":"recalculate","recalculateAsync":"recalculateAsync","registerUserDefinedFunction":"registerUserDefinedFunction","resumeCalculations":"resumeCalculations","save":"save","setCurrentFormat":"setCurrentFormat","sheets":"sheets","standardTableStyles":"standardTableStyles","styles":"styles","suspendCalculations":"suspendCalculations","unprotect":"unprotect","worksheets":"worksheets","getMaxColumnCount":"getMaxColumnCount","getMaxRowCount":"getMaxRowCount","getWorkbookFormat":"getWorkbookFormat","isWorkbookEncrypted":"isWorkbookEncrypted","load":"load","staticInit":"staticInit"}}],"WorkbookColorInfo":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookColorInfo","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","isAutomatic":"isAutomatic","themeColorType":"themeColorType","tint":"tint","transform":"transform","automatic":"automatic","equals":"equals","getHashCode":"getHashCode","getResolvedColor":"getResolvedColor","toString":"toString"}}],"WorkbookColorPalette":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookColorPalette","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","isCustom":"isCustom","contains":"contains","getEnumerator":"getEnumerator","getIndexOfNearestColor":"getIndexOfNearestColor","item":"item","reset":"reset"}}],"WorkbookColorTransform":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookColorTransform","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alpha":"alpha","luminanceModulation":"luminanceModulation","luminanceOffset":"luminanceOffset","shade":"shade"}}],"WorkbookLoadOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookLoadOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","autoResumeCalculations":"autoResumeCalculations","culture":"culture","isDuplicateFormulaParsingOptimized":"isDuplicateFormulaParsingOptimized","screenDpi":"screenDpi","userDefinedFunctions":"userDefinedFunctions","staticInit":"staticInit"}}],"WorkbookOptionsBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookOptionsBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","staticInit":"staticInit"}}],"WorkbookProtection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowEditStructure":"allowEditStructure","allowEditWindows":"allowEditWindows"}}],"WorkbookSaveOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookSaveOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","type":"type","staticInit":"staticInit"}}],"WorkbookStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookStyle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","isBuiltIn":"isBuiltIn","name":"name","styleFormat":"styleFormat","reset":"reset","staticInit":"staticInit"}}],"WorkbookStyleCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookStyleCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","normalStyle":"normalStyle","_u":"_u","addUserDefinedStyle":"addUserDefinedStyle","clear":"clear","contains":"contains","item":"item","remove":"remove","removeAt":"removeAt","reset":"reset","staticInit":"staticInit"}}],"WorkbookWindowOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorkbookWindowOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","boundsInTwips":"boundsInTwips","firstVisibleTabIndex":"firstVisibleTabIndex","minimized":"minimized","objectDisplayStyle":"objectDisplayStyle","scrollBars":"scrollBars","selectedSheet":"selectedSheet","selectedWorksheet":"selectedWorksheet","tabBarVisible":"tabBarVisible","tabBarWidth":"tabBarWidth","reset":"reset"}}],"Worksheet":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/Worksheet","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","defaultColumnWidth":"defaultColumnWidth","defaultRowHeight":"defaultRowHeight","displayOptions":"displayOptions","filterSettings":"filterSettings","hasProtectionPassword":"hasProtectionPassword","index":"index","isProtected":"isProtected","name":"name","printOptions":"printOptions","protection":"protection","selected":"selected","sheetIndex":"sheetIndex","sortSettings":"sortSettings","tabColorInfo":"tabColorInfo","type":"type","workbook":"workbook","_ey":"_ey","clearConditionalFormattingData":"clearConditionalFormattingData","columns":"columns","conditionalFormats":"conditionalFormats","dataTables":"dataTables","dataValidationRules":"dataValidationRules","deleteCells":"deleteCells","getCell":"getCell","getCellConditionalFormat":"getCellConditionalFormat","getDefaultColumnWidth":"getDefaultColumnWidth","getRegion":"getRegion","getRegions":"getRegions","hideColumns":"hideColumns","hideRows":"hideRows","hyperlinks":"hyperlinks","insertCells":"insertCells","mergedCellsRegions":"mergedCellsRegions","moveToIndex":"moveToIndex","moveToSheetIndex":"moveToSheetIndex","protect":"protect","rows":"rows","setDefaultColumnWidth":"setDefaultColumnWidth","shapes":"shapes","sparklineGroups":"sparklineGroups","tables":"tables","unhideColumns":"unhideColumns","unhideRows":"unhideRows","unprotect":"unprotect","staticInit":"staticInit"}}],"WorksheetCell":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetCell","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","associatedDataTable":"associatedDataTable","associatedMergedCellsRegion":"associatedMergedCellsRegion","associatedTable":"associatedTable","cellFormat":"cellFormat","columnIndex":"columnIndex","comment":"comment","dataValidationRule":"dataValidationRule","formula":"formula","hasCellFormat":"hasCellFormat","hasComment":"hasComment","rowIndex":"rowIndex","value":"value","worksheet":"worksheet","applyFormula":"applyFormula","clearComment":"clearComment","equals":"equals","getBoundsInTwips":"getBoundsInTwips","getHashCode":"getHashCode","getHyperlink":"getHyperlink","getResolvedCellFormat":"getResolvedCellFormat","getText":"getText","toString":"toString","validateValue":"validateValue","getCellAddressString":"getCellAddressString","isCellTypeSupported":"isCellTypeSupported"}}],"WorksheetCellCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetCellCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","item":"item"}}],"WorksheetCellComment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetCellComment","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","author":"author","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","cell":"cell","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetChart":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetChart","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","autoScaling":"autoScaling","backWall":"backWall","barShape":"barShape","barShapeResolved":"barShapeResolved","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","chartArea":"chartArea","chartTitle":"chartTitle","chartType":"chartType","depthPercent":"depthPercent","displayBlanksAs":"displayBlanksAs","doughnutHoleSize":"doughnutHoleSize","dropLines":"dropLines","fill":"fill","firstSliceAngle":"firstSliceAngle","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","floor":"floor","gapDepth":"gapDepth","gapWidth":"gapWidth","heightPercent":"heightPercent","highLowLines":"highLowLines","legend":"legend","outline":"outline","perspective":"perspective","plotArea":"plotArea","plotVisibleOnly":"plotVisibleOnly","positioningMode":"positioningMode","rightAngleAxes":"rightAngleAxes","rotationX":"rotationX","rotationY":"rotationY","secondPlotSize":"secondPlotSize","seriesLines":"seriesLines","seriesOverlap":"seriesOverlap","sheet":"sheet","sideWall":"sideWall","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","upDownBars":"upDownBars","varyColors":"varyColors","visible":"visible","wallDefault":"wallDefault","worksheet":"worksheet","axisCollection":"axisCollection","clearUnknownData":"clearUnknownData","comboChartGroups":"comboChartGroups","getBoundsInTwips":"getBoundsInTwips","seriesCollection":"seriesCollection","setBoundsInTwips":"setBoundsInTwips","setComboChartSourceData":"setComboChartSourceData","setSourceData":"setSourceData","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt"}}],"WorksheetColumn":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetColumn","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","width":"width","worksheet":"worksheet","autoFitWidth":"autoFitWidth","calculateAutoFitWidth":"calculateAutoFitWidth","getResolvedCellFormat":"getResolvedCellFormat","getWidth":"getWidth","setWidth":"setWidth"}}],"WorksheetColumnCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","insert":"insert","item":"item","remove":"remove","staticInit":"staticInit"}}],"WorksheetDataTable":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetDataTable","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellsInTable":"cellsInTable","columnInputCell":"columnInputCell","rowInputCell":"rowInputCell","worksheet":"worksheet"}}],"WorksheetDataTableCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetDataTableCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetDisplayOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetDisplayOptions","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","frozenPaneSettings":"frozenPaneSettings","gridlineColor":"gridlineColor","magnificationInNormalView":"magnificationInNormalView","magnificationInPageBreakView":"magnificationInPageBreakView","magnificationInPageLayoutView":"magnificationInPageLayoutView","orderColumnsRightToLeft":"orderColumnsRightToLeft","panesAreFrozen":"panesAreFrozen","showExpansionIndicatorBelowGroupedRows":"showExpansionIndicatorBelowGroupedRows","showExpansionIndicatorToRightOfGroupedColumns":"showExpansionIndicatorToRightOfGroupedColumns","showFormulasInCells":"showFormulasInCells","showGridlines":"showGridlines","showOutlineSymbols":"showOutlineSymbols","showRowAndColumnHeaders":"showRowAndColumnHeaders","showRulerInPageLayoutView":"showRulerInPageLayoutView","showWhitespaceInPageLayoutView":"showWhitespaceInPageLayoutView","showZeroValues":"showZeroValues","tabColorInfo":"tabColorInfo","unfrozenPaneSettings":"unfrozenPaneSettings","view":"view","visibility":"visibility","clearSelection":"clearSelection","reset":"reset"}}],"WorksheetFilterSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetFilterSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","region":"region","sortAndFilterAreaRegion":"sortAndFilterAreaRegion","sortSettings":"sortSettings","applyAverageFilter":"applyAverageFilter","applyCustomFilter":"applyCustomFilter","applyDatePeriodFilter":"applyDatePeriodFilter","applyFillFilter":"applyFillFilter","applyFixedValuesFilter":"applyFixedValuesFilter","applyFontColorFilter":"applyFontColorFilter","applyIconFilter":"applyIconFilter","applyRelativeDateRangeFilter":"applyRelativeDateRangeFilter","applyTopOrBottomFilter":"applyTopOrBottomFilter","applyYearToDateFilter":"applyYearToDateFilter","clearFilter":"clearFilter","clearFilters":"clearFilters","clearRegion":"clearRegion","getFilter":"getFilter","reapplyFilters":"reapplyFilters","reapplySortConditions":"reapplySortConditions","setRegion":"setRegion","staticInit":"staticInit"}}],"WorksheetHyperlink":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetHyperlink","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","displayText":"displayText","isSealed":"isSealed","sourceAddress":"sourceAddress","sourceCell":"sourceCell","sourceRegion":"sourceRegion","target":"target","targetAddress":"targetAddress","targetCell":"targetCell","targetNamedReference":"targetNamedReference","targetRegion":"targetRegion","toolTip":"toolTip","worksheet":"worksheet","toString":"toString"}}],"WorksheetHyperlinkCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetHyperlinkCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetImage":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetImage","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetItemCollection$1":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetItemCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l"}}],"WorksheetMergedCellsRegion":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetMergedCellsRegion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","comment":"comment","firstColumn":"firstColumn","firstRow":"firstRow","formula":"formula","lastColumn":"lastColumn","lastRow":"lastRow","value":"value","worksheet":"worksheet","applyArrayFormula":"applyArrayFormula","applyFormula":"applyFormula","equals":"equals","formatAsTable":"formatAsTable","getBoundsInTwips":"getBoundsInTwips","getEnumerator":"getEnumerator","getHashCode":"getHashCode","getResolvedCellFormat":"getResolvedCellFormat","toString":"toString"}}],"WorksheetMergedCellsRegionCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetMergedCellsRegionCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","isOverlappingWithMergedRegion":"isOverlappingWithMergedRegion","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetProtectedRange":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetProtectedRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","hasPassword":"hasPassword","isProtected":"isProtected","ranges":"ranges","title":"title","worksheet":"worksheet","unprotect":"unprotect"}}],"WorksheetProtectedRangeCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetProtectedRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","insert":"insert","item":"item","remove":"remove","removeAt":"removeAt"}}],"WorksheetProtection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetProtection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","allowDeletingColumns":"allowDeletingColumns","allowDeletingRows":"allowDeletingRows","allowEditObjects":"allowEditObjects","allowEditScenarios":"allowEditScenarios","allowFiltering":"allowFiltering","allowFormattingCells":"allowFormattingCells","allowFormattingColumns":"allowFormattingColumns","allowFormattingRows":"allowFormattingRows","allowInsertingColumns":"allowInsertingColumns","allowInsertingHyperlinks":"allowInsertingHyperlinks","allowInsertingRows":"allowInsertingRows","allowSorting":"allowSorting","allowUsingPivotTables":"allowUsingPivotTables","selectionMode":"selectionMode","allowedEditRanges":"allowedEditRanges"}}],"WorksheetReferenceCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetReferenceCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellsCount":"cellsCount","worksheet":"worksheet","add":"add","clear":"clear","contains":"contains","getEnumerator":"getEnumerator","remove":"remove","toString":"toString"}}],"WorksheetRegion":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetRegion","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","firstColumn":"firstColumn","firstRow":"firstRow","lastColumn":"lastColumn","lastRow":"lastRow","worksheet":"worksheet","applyArrayFormula":"applyArrayFormula","applyFormula":"applyFormula","equals":"equals","formatAsTable":"formatAsTable","getBoundsInTwips":"getBoundsInTwips","getEnumerator":"getEnumerator","getHashCode":"getHashCode","toString":"toString"}}],"WorksheetRow":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetRow","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellFormat":"cellFormat","height":"height","hidden":"hidden","index":"index","outlineLevel":"outlineLevel","worksheet":"worksheet","_cm":"_cm","_co":"_co","_cp":"_cp","applyCellFormula":"applyCellFormula","cells":"cells","getCellAssociatedDataTable":"getCellAssociatedDataTable","getCellAssociatedMergedCellsRegion":"getCellAssociatedMergedCellsRegion","getCellAssociatedTable":"getCellAssociatedTable","getCellBoundsInTwips":"getCellBoundsInTwips","getCellComment":"getCellComment","getCellConditionalFormat":"getCellConditionalFormat","getCellFormat":"getCellFormat","getCellFormula":"getCellFormula","getCellHyperlink":"getCellHyperlink","getCellText":"getCellText","getCellValue":"getCellValue","getResolvedCellFormat":"getResolvedCellFormat","setCellComment":"setCellComment","setCellValue":"setCellValue","validateCellValue":"validateCellValue"}}],"WorksheetRowCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetRowCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","maxCount":"maxCount","_l":"_l","insert":"insert","item":"item","remove":"remove","staticInit":"staticInit"}}],"WorksheetShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetShape","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetShapeCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","addChart":"addChart","clear":"clear","contains":"contains","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetShapeGroup":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetShapeGroup","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeGroupBase":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetShapeGroupBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","shapes":"shapes","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetShapeWithText":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetShapeWithText","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","bottomRightCornerCell":"bottomRightCornerCell","bottomRightCornerPosition":"bottomRightCornerPosition","fill":"fill","flippedHorizontally":"flippedHorizontally","flippedVertically":"flippedVertically","outline":"outline","positioningMode":"positioningMode","sheet":"sheet","text":"text","topLeftCornerCell":"topLeftCornerCell","topLeftCornerPosition":"topLeftCornerPosition","visible":"visible","worksheet":"worksheet","clearUnknownData":"clearUnknownData","getBoundsInTwips":"getBoundsInTwips","setBoundsInTwips":"setBoundsInTwips","createPredefinedShape":"createPredefinedShape","staticInit":"staticInit"}}],"WorksheetSortSettings":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetSortSettings","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","caseSensitive":"caseSensitive","region":"region","sortType":"sortType","clearRegion":"clearRegion","reapplySortConditions":"reapplySortConditions","setRegion":"setRegion","sortConditions":"sortConditions"}}],"WorksheetTable":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetTable","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","comment":"comment","dataAreaRegion":"dataAreaRegion","displayBandedColumns":"displayBandedColumns","displayBandedRows":"displayBandedRows","displayFirstColumnFormatting":"displayFirstColumnFormatting","displayLastColumnFormatting":"displayLastColumnFormatting","headerRowRegion":"headerRowRegion","isFilterUIVisible":"isFilterUIVisible","isHeaderRowVisible":"isHeaderRowVisible","isTotalsRowVisible":"isTotalsRowVisible","name":"name","scope":"scope","sortSettings":"sortSettings","style":"style","totalsRowRegion":"totalsRowRegion","wholeTableRegion":"wholeTableRegion","worksheet":"worksheet","areaFormats":"areaFormats","clearFilters":"clearFilters","clearSortConditions":"clearSortConditions","columns":"columns","deleteColumns":"deleteColumns","deleteDataRows":"deleteDataRows","insertColumns":"insertColumns","insertDataRows":"insertDataRows","reapplyFilters":"reapplyFilters","reapplySortConditions":"reapplySortConditions","resize":"resize","toString":"toString","staticInit":"staticInit"}}],"WorksheetTableAreaFormatsCollection$1":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetTableAreaFormatsCollection-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","getEnumerator":"getEnumerator","hasFormat":"hasFormat","item":"item"}}],"WorksheetTableCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetTableCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","add":"add","clear":"clear","contains":"contains","exists":"exists","indexOf":"indexOf","item":"item","remove_1":"remove_1","removeAt":"removeAt","staticInit":"staticInit"}}],"WorksheetTableColumn":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetTableColumn","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","columnFormula":"columnFormula","dataAreaRegion":"dataAreaRegion","filter":"filter","headerCell":"headerCell","index":"index","name":"name","sortCondition":"sortCondition","table":"table","totalCell":"totalCell","totalFormula":"totalFormula","totalLabel":"totalLabel","wholeColumnRegion":"wholeColumnRegion","applyAverageFilter":"applyAverageFilter","applyCustomFilter":"applyCustomFilter","applyDatePeriodFilter":"applyDatePeriodFilter","applyFillFilter":"applyFillFilter","applyFixedValuesFilter":"applyFixedValuesFilter","applyFontColorFilter":"applyFontColorFilter","applyIconFilter":"applyIconFilter","applyRelativeDateRangeFilter":"applyRelativeDateRangeFilter","applyTopOrBottomFilter":"applyTopOrBottomFilter","applyYearToDateFilter":"applyYearToDateFilter","areaFormats":"areaFormats","clearFilter":"clearFilter","setColumnFormula":"setColumnFormula"}}],"WorksheetTableColumnCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetTableColumnCollection","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","count":"count","contains":"contains","indexOf":"indexOf","item":"item"}}],"WorksheetTableStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/WorksheetTableStyle","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","alternateColumnStripeWidth":"alternateColumnStripeWidth","alternateRowStripeHeight":"alternateRowStripeHeight","columnStripeWidth":"columnStripeWidth","isCustom":"isCustom","name":"name","rowStripeHeight":"rowStripeHeight","areaFormats":"areaFormats","clone":"clone"}}],"XValues":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/XValues","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","getValues":"getValues"}}],"YearToDateFilter":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/classes/YearToDateFilter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","end":"end","start":"start"}}],"IExcelCalcFormula":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/interfaces/IExcelCalcFormula","k":"interface","s":"interfaces","m":{"baseReference":"baseReference","dynamicReferences":"dynamicReferences","formulaString":"formulaString","hasAlwaysDirty":"hasAlwaysDirty","staticReferences":"staticReferences","addDynamicReferenceI":"addDynamicReferenceI","evaluate":"evaluate"}}],"IExcelCalcReference":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/interfaces/IExcelCalcReference","k":"interface","s":"interfaces","m":{"absoluteName":"absoluteName","context":"context","elementName":"elementName","formula":"formula","isEnumerable":"isEnumerable","normalizedAbsoluteName":"normalizedAbsoluteName","references":"references","value":"value","containsReference":"containsReference","createReference":"createReference","isSubsetReference":"isSubsetReference"}}],"IExcelCalcReferenceCollection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/interfaces/IExcelCalcReferenceCollection","k":"interface","s":"interfaces"}],"ISortable":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/interfaces/ISortable","k":"interface","s":"interfaces","m":{"index":"index"}}],"IWorkbookFont":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/interfaces/IWorkbookFont","k":"interface","s":"interfaces","m":{"_bold$i":"_bold$i","_italic$i":"_italic$i","_strikeout$i":"_strikeout$i","bold":"bold","colorInfo":"colorInfo","height":"height","italic":"italic","name":"name","strikeout":"strikeout","superscriptSubscriptStyle":"superscriptSubscriptStyle","underlineStyle":"underlineStyle","setFontFormatting":"setFontFormatting"}}],"IWorksheetCellFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/interfaces/IWorksheetCellFormat","k":"interface","s":"interfaces","m":{"_hidden$i":"_hidden$i","_locked$i":"_locked$i","_shrinkToFit$i":"_shrinkToFit$i","_wrapText$i":"_wrapText$i","alignment":"alignment","bottomBorderColorInfo":"bottomBorderColorInfo","bottomBorderStyle":"bottomBorderStyle","diagonalBorderColorInfo":"diagonalBorderColorInfo","diagonalBorders":"diagonalBorders","diagonalBorderStyle":"diagonalBorderStyle","fill":"fill","font":"font","formatOptions":"formatOptions","formatString":"formatString","hidden":"hidden","indent":"indent","leftBorderColorInfo":"leftBorderColorInfo","leftBorderStyle":"leftBorderStyle","locked":"locked","rightBorderColorInfo":"rightBorderColorInfo","rightBorderStyle":"rightBorderStyle","rotation":"rotation","shrinkToFit":"shrinkToFit","style":"style","topBorderColorInfo":"topBorderColorInfo","topBorderStyle":"topBorderStyle","verticalAlignment":"verticalAlignment","wrapText":"wrapText","setFormatting":"setFormatting"}}],"AverageFilterType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/AverageFilterType","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","BelowAverage":"BelowAverage"}}],"AxisCrosses":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/AxisCrosses","k":"enum","s":"enums","m":{"Automatic":"Automatic","Custom":"Custom","Maximum":"Maximum","Minimum":"Minimum"}}],"AxisGroup":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/AxisGroup","k":"enum","s":"enums","m":{"Primary":"Primary","Secondary":"Secondary"}}],"AxisPosition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/AxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","Left":"Left","Right":"Right","Top":"Top"}}],"AxisType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/AxisType","k":"enum","s":"enums","m":{"Category":"Category","SeriesAxis":"SeriesAxis","Value":"Value"}}],"BarShape":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/BarShape","k":"enum","s":"enums","m":{"Box":"Box","ConeToMax":"ConeToMax","ConeToPoint":"ConeToPoint","Cylinder":"Cylinder","PyramidToMax":"PyramidToMax","PyramidToPoint":"PyramidToPoint"}}],"BorderLineStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/BorderLineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"CalculationMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/CalculationMode","k":"enum","s":"enums","m":{"Automatic":"Automatic","AutomaticExceptForDataTables":"AutomaticExceptForDataTables","Manual":"Manual"}}],"CalendarType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/CalendarType","k":"enum","s":"enums","m":{"Gregorian":"Gregorian","GregorianArabic":"GregorianArabic","GregorianMeFrench":"GregorianMeFrench","GregorianUs":"GregorianUs","GregorianXlitEnglish":"GregorianXlitEnglish","GregorianXlitFrench":"GregorianXlitFrench","Hebrew":"Hebrew","Hijri":"Hijri","Japan":"Japan","Korea":"Korea","None":"None","Saka":"Saka","Taiwan":"Taiwan","Thai":"Thai"}}],"CategoryType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/CategoryType","k":"enum","s":"enums","m":{"AutomaticScale":"AutomaticScale","CategoryScale":"CategoryScale","TimeScale":"TimeScale"}}],"CellBorderLineStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/CellBorderLineStyle","k":"enum","s":"enums","m":{"DashDot":"DashDot","DashDotDot":"DashDotDot","Dashed":"Dashed","Default":"Default","Dotted":"Dotted","double1":"double1","Hair":"Hair","Medium":"Medium","MediumDashDot":"MediumDashDot","MediumDashDotDot":"MediumDashDotDot","MediumDashed":"MediumDashed","None":"None","SlantedDashDot":"SlantedDashDot","Thick":"Thick","Thin":"Thin"}}],"CellReferenceMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/CellReferenceMode","k":"enum","s":"enums","m":{"A1":"A1","R1C1":"R1C1"}}],"ChartType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ChartType","k":"enum","s":"enums","m":{"Area":"Area","Area3D":"Area3D","Area3DStacked":"Area3DStacked","Area3DStacked100":"Area3DStacked100","AreaStacked":"AreaStacked","AreaStacked100":"AreaStacked100","Bar3DClustered":"Bar3DClustered","Bar3DStacked":"Bar3DStacked","Bar3DStacked100":"Bar3DStacked100","BarClustered":"BarClustered","BarOfPie":"BarOfPie","BarStacked":"BarStacked","BarStacked100":"BarStacked100","BoxAndWhisker":"BoxAndWhisker","Bubble":"Bubble","Bubble3DEffect":"Bubble3DEffect","Column3D":"Column3D","Column3DClustered":"Column3DClustered","Column3DStacked":"Column3DStacked","Column3DStacked100":"Column3DStacked100","ColumnClustered":"ColumnClustered","ColumnStacked":"ColumnStacked","ColumnStacked100":"ColumnStacked100","Combo":"Combo","ConeBarClustered":"ConeBarClustered","ConeBarStacked":"ConeBarStacked","ConeBarStacked100":"ConeBarStacked100","ConeCol":"ConeCol","ConeColClustered":"ConeColClustered","ConeColStacked":"ConeColStacked","ConeColStacked100":"ConeColStacked100","CylinderBarClustered":"CylinderBarClustered","CylinderBarStacked":"CylinderBarStacked","CylinderBarStacked100":"CylinderBarStacked100","CylinderCol":"CylinderCol","CylinderColClustered":"CylinderColClustered","CylinderColStacked":"CylinderColStacked","CylinderColStacked100":"CylinderColStacked100","Doughnut":"Doughnut","DoughnutExploded":"DoughnutExploded","Funnel":"Funnel","Histogram":"Histogram","Line":"Line","Line3D":"Line3D","LineMarkers":"LineMarkers","LineMarkersStacked":"LineMarkersStacked","LineMarkersStacked100":"LineMarkersStacked100","LineStacked":"LineStacked","LineStacked100":"LineStacked100","Pareto":"Pareto","Pie":"Pie","Pie3D":"Pie3D","Pie3DExploded":"Pie3DExploded","PieExploded":"PieExploded","PieOfPie":"PieOfPie","PyramidBarClustered":"PyramidBarClustered","PyramidBarStacked":"PyramidBarStacked","PyramidBarStacked100":"PyramidBarStacked100","PyramidCol":"PyramidCol","PyramidColClustered":"PyramidColClustered","PyramidColStacked":"PyramidColStacked","PyramidColStacked100":"PyramidColStacked100","Radar":"Radar","RadarFilled":"RadarFilled","RadarMarkers":"RadarMarkers","RegionMap":"RegionMap","StockHLC":"StockHLC","StockOHLC":"StockOHLC","StockVHLC":"StockVHLC","StockVOHLC":"StockVOHLC","Sunburst":"Sunburst","Surface":"Surface","SurfaceTopView":"SurfaceTopView","SurfaceTopViewWireframe":"SurfaceTopViewWireframe","SurfaceWireframe":"SurfaceWireframe","Treemap":"Treemap","Unknown":"Unknown","Waterfall":"Waterfall","XYScatter":"XYScatter","XYScatterLines":"XYScatterLines","XYScatterLinesNoMarkers":"XYScatterLinesNoMarkers","XYScatterSmooth":"XYScatterSmooth","XYScatterSmoothNoMarkers":"XYScatterSmoothNoMarkers"}}],"ColorScaleCriterionThreshold":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ColorScaleCriterionThreshold","k":"enum","s":"enums","m":{"Maximum":"Maximum","Midpoint":"Midpoint","Minimum":"Minimum"}}],"ColorScaleType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ColorScaleType","k":"enum","s":"enums","m":{"ThreeColor":"ThreeColor","TwoColor":"TwoColor"}}],"ConditionalOperator":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ConditionalOperator","k":"enum","s":"enums","m":{"And":"And","Or":"Or"}}],"DataBarAxisPosition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataBarAxisPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Midpoint":"Midpoint","None":"None"}}],"DataBarDirection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataBarDirection","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"DataBarFillType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataBarFillType","k":"enum","s":"enums","m":{"Gradient":"Gradient","SolidColor":"SolidColor"}}],"DataBarNegativeBarColorType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataBarNegativeBarColorType","k":"enum","s":"enums","m":{"Color":"Color","SameAsPositive":"SameAsPositive"}}],"DataLabelPosition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataLabelPosition","k":"enum","s":"enums","m":{"Above":"Above","Below":"Below","BestFit":"BestFit","Center":"Center","Custom":"Custom","Default":"Default","InsideBase":"InsideBase","InsideEnd":"InsideEnd","Left":"Left","OutsideEnd":"OutsideEnd","Right":"Right"}}],"DataValidationCriteria":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataValidationCriteria","k":"enum","s":"enums","m":{"Date":"Date","Decimal":"Decimal","TextLength":"TextLength","Time":"Time","WholeNumber":"WholeNumber"}}],"DataValidationErrorStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataValidationErrorStyle","k":"enum","s":"enums","m":{"Information":"Information","Stop":"Stop","Warning":"Warning"}}],"DataValidationImeMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DataValidationImeMode","k":"enum","s":"enums","m":{"Disabled":"Disabled","FullAlpha":"FullAlpha","FullHangul":"FullHangul","FullKatakana":"FullKatakana","HalfAlpha":"HalfAlpha","HalfHangul":"HalfHangul","HalfKatakana":"HalfKatakana","Hiragana":"Hiragana","NoControl":"NoControl","Off":"Off","On":"On"}}],"DatePeriodFilterType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DatePeriodFilterType","k":"enum","s":"enums","m":{"Month":"Month","Quarter":"Quarter"}}],"DateSystem":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DateSystem","k":"enum","s":"enums","m":{"From1900":"From1900","From1904":"From1904"}}],"DiagonalBorders":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DiagonalBorders","k":"enum","s":"enums","m":{"All":"All","Default":"Default","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","None":"None"}}],"DisplayBlanksAs":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DisplayBlanksAs","k":"enum","s":"enums","m":{"Interpolated":"Interpolated","NotPlotted":"NotPlotted","Zero":"Zero"}}],"DisplayUnit":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/DisplayUnit","k":"enum","s":"enums","m":{"Custom":"Custom","HundredMillions":"HundredMillions","Hundreds":"Hundreds","HundredThousands":"HundredThousands","MillionMillions":"MillionMillions","Millions":"Millions","None":"None","Percentage":"Percentage","TenMillions":"TenMillions","TenThousands":"TenThousands","ThousandMillions":"ThousandMillions","Thousands":"Thousands"}}],"ElementPosition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ElementPosition","k":"enum","s":"enums","m":{"Automatic":"Automatic","Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Left":"Left","LeftBottom":"LeftBottom","LeftTop":"LeftTop","Right":"Right","RightBottom":"RightBottom","RightTop":"RightTop","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"EndStyleCap":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/EndStyleCap","k":"enum","s":"enums","m":{"Cap":"Cap","NoCap":"NoCap"}}],"ErrorBarDirection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ErrorBarDirection","k":"enum","s":"enums","m":{"Both":"Both","Minus":"Minus","Plus":"Plus"}}],"ErrorValueType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ErrorValueType","k":"enum","s":"enums","m":{"FixedValue":"FixedValue","Percentage":"Percentage","StandardDeviation":"StandardDeviation","StandardError":"StandardError"}}],"ExcelCalcErrorCode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ExcelCalcErrorCode","k":"enum","s":"enums","m":{"Circularity":"Circularity","Div":"Div","NA":"NA","Name1":"Name1","Null":"Null","Num":"Num","Reference":"Reference","Value":"Value"}}],"ExcelComparisonOperator":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ExcelComparisonOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"FillPatternStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FillPatternStyle","k":"enum","s":"enums","m":{"Default":"Default","DiagonalCrosshatch":"DiagonalCrosshatch","DiagonalStripe":"DiagonalStripe","Gray12percent":"Gray12percent","Gray25percent":"Gray25percent","Gray50percent":"Gray50percent","Gray6percent":"Gray6percent","Gray75percent":"Gray75percent","HorizontalStripe":"HorizontalStripe","None":"None","ReverseDiagonalStripe":"ReverseDiagonalStripe","Solid":"Solid","ThickDiagonalCrosshatch":"ThickDiagonalCrosshatch","ThinDiagonalCrosshatch":"ThinDiagonalCrosshatch","ThinDiagonalStripe":"ThinDiagonalStripe","ThinHorizontalCrosshatch":"ThinHorizontalCrosshatch","ThinHorizontalStripe":"ThinHorizontalStripe","ThinReverseDiagonalStripe":"ThinReverseDiagonalStripe","ThinVerticalStripe":"ThinVerticalStripe","VerticalStripe":"VerticalStripe"}}],"FixedDateGroupType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FixedDateGroupType","k":"enum","s":"enums","m":{"Day":"Day","Hour":"Hour","Minute":"Minute","Month":"Month","Second":"Second","Year":"Year"}}],"FontSuperscriptSubscriptStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FontSuperscriptSubscriptStyle","k":"enum","s":"enums","m":{"Default":"Default","None":"None","Subscript":"Subscript","Superscript":"Superscript"}}],"FontUnderlineStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FontUnderlineStyle","k":"enum","s":"enums","m":{"Default":"Default","double1":"double1","DoubleAccounting":"DoubleAccounting","None":"None","Single":"Single","SingleAccounting":"SingleAccounting"}}],"FormatConditionAboveBelow":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionAboveBelow","k":"enum","s":"enums","m":{"AboveAverage":"AboveAverage","AboveStandardDeviation":"AboveStandardDeviation","BelowAverage":"BelowAverage","BelowStandardDeviation":"BelowStandardDeviation","EqualAboveAverage":"EqualAboveAverage","EqualBelowAverage":"EqualBelowAverage"}}],"FormatConditionIcon":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionIcon","k":"enum","s":"enums","m":{"BlackCircle":"BlackCircle","BlackCircleWithBorder":"BlackCircleWithBorder","CircleWithOneWhiteQuarter":"CircleWithOneWhiteQuarter","CircleWithThreeWhiteQuarters":"CircleWithThreeWhiteQuarters","CircleWithTwoWhiteQuarters":"CircleWithTwoWhiteQuarters","FourBars":"FourBars","FourFilledBoxes":"FourFilledBoxes","GoldStar":"GoldStar","GrayCircle":"GrayCircle","GrayDownArrow":"GrayDownArrow","GrayDownInclineArrow":"GrayDownInclineArrow","GraySideArrow":"GraySideArrow","GrayUpArrow":"GrayUpArrow","GrayUpInclineArrow":"GrayUpInclineArrow","GreenCheck":"GreenCheck","GreenCheckSymbol":"GreenCheckSymbol","GreenCircle":"GreenCircle","GreenFlag":"GreenFlag","GreenTrafficLight":"GreenTrafficLight","GreenUpArrow":"GreenUpArrow","GreenUpTriangle":"GreenUpTriangle","HalfGoldStar":"HalfGoldStar","NoCellIcon":"NoCellIcon","OneBar":"OneBar","OneFilledBox":"OneFilledBox","PinkCircle":"PinkCircle","RedCircle":"RedCircle","RedCircleWithBorder":"RedCircleWithBorder","RedCross":"RedCross","RedCrossSymbol":"RedCrossSymbol","RedDiamond":"RedDiamond","RedDownArrow":"RedDownArrow","RedDownTriangle":"RedDownTriangle","RedFlag":"RedFlag","RedTrafficLight":"RedTrafficLight","SilverStar":"SilverStar","ThreeBars":"ThreeBars","ThreeFilledBoxes":"ThreeFilledBoxes","TwoBars":"TwoBars","TwoFilledBoxes":"TwoFilledBoxes","WhiteCircleAllWhiteQuarters":"WhiteCircleAllWhiteQuarters","YellowCircle":"YellowCircle","YellowDash":"YellowDash","YellowDownInclineArrow":"YellowDownInclineArrow","YellowExclamation":"YellowExclamation","YellowExclamationSymbol":"YellowExclamationSymbol","YellowFlag":"YellowFlag","YellowSideArrow":"YellowSideArrow","YellowTrafficLight":"YellowTrafficLight","YellowTriangle":"YellowTriangle","YellowUpInclineArrow":"YellowUpInclineArrow","ZeroBars":"ZeroBars","ZeroFilledBoxes":"ZeroFilledBoxes"}}],"FormatConditionIconSet":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionIconSet","k":"enum","s":"enums","m":{"IconSet3Arrows":"IconSet3Arrows","IconSet3ArrowsGray":"IconSet3ArrowsGray","IconSet3Flags":"IconSet3Flags","IconSet3Signs":"IconSet3Signs","IconSet3Stars":"IconSet3Stars","IconSet3Symbols":"IconSet3Symbols","IconSet3Symbols2":"IconSet3Symbols2","IconSet3TrafficLights1":"IconSet3TrafficLights1","IconSet3TrafficLights2":"IconSet3TrafficLights2","IconSet3Triangles":"IconSet3Triangles","IconSet4Arrows":"IconSet4Arrows","IconSet4ArrowsGray":"IconSet4ArrowsGray","IconSet4Rating":"IconSet4Rating","IconSet4RedToBlack":"IconSet4RedToBlack","IconSet4TrafficLights":"IconSet4TrafficLights","IconSet5Arrows":"IconSet5Arrows","IconSet5ArrowsGray":"IconSet5ArrowsGray","IconSet5Boxes":"IconSet5Boxes","IconSet5Quarters":"IconSet5Quarters","IconSet5Rating":"IconSet5Rating","IconSetNoIcon":"IconSetNoIcon"}}],"FormatConditionOperator":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionOperator","k":"enum","s":"enums","m":{"Between":"Between","Equal":"Equal","Greater":"Greater","GreaterEqual":"GreaterEqual","Less":"Less","LessEqual":"LessEqual","NotBetween":"NotBetween","NotEqual":"NotEqual"}}],"FormatConditionTextOperator":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionTextOperator","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Contains":"Contains","DoesNotContain":"DoesNotContain","EndsWith":"EndsWith"}}],"FormatConditionTimePeriod":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionTimePeriod","k":"enum","s":"enums","m":{"LastMonth":"LastMonth","LastSevenDays":"LastSevenDays","LastWeek":"LastWeek","NextMonth":"NextMonth","NextWeek":"NextWeek","ThisMonth":"ThisMonth","ThisWeek":"ThisWeek","Today":"Today","Tomorrow":"Tomorrow","Yesterday":"Yesterday"}}],"FormatConditionTopBottom":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionTopBottom","k":"enum","s":"enums","m":{"Bottom":"Bottom","Top":"Top"}}],"FormatConditionType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionType","k":"enum","s":"enums","m":{"Average":"Average","Blanks":"Blanks","CellValue":"CellValue","ColorScale":"ColorScale","DataBar":"DataBar","DuplicateValues":"DuplicateValues","Errors":"Errors","Expression":"Expression","IconSets":"IconSets","NoBlanks":"NoBlanks","NoErrors":"NoErrors","Rank":"Rank","TextString":"TextString","TimePeriod":"TimePeriod","UniqueValues":"UniqueValues"}}],"FormatConditionValueType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/FormatConditionValueType","k":"enum","s":"enums","m":{"AutomaticMaximum":"AutomaticMaximum","AutomaticMinimum":"AutomaticMinimum","Formula":"Formula","HighestValue":"HighestValue","LowestValue":"LowestValue","Number":"Number","Percentage":"Percentage","Percentile":"Percentile"}}],"GeographicMapLabels":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/GeographicMapLabels","k":"enum","s":"enums","m":{"BestFit":"BestFit","None":"None","ShowAll":"ShowAll"}}],"GeographicMappingArea":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/GeographicMappingArea","k":"enum","s":"enums","m":{"CountryOrRegion":"CountryOrRegion","County":"County","DataOnly":"DataOnly","MultipleCountriesOrRegions":"MultipleCountriesOrRegions","PostalCode":"PostalCode","State":"State","World":"World"}}],"GeographicMapProjection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/GeographicMapProjection","k":"enum","s":"enums","m":{"Albers":"Albers","Mercator":"Mercator","Miller":"Miller","Robinson":"Robinson"}}],"GeographicMapSeriesColor":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/GeographicMapSeriesColor","k":"enum","s":"enums","m":{"Diverging":"Diverging","Sequential":"Sequential"}}],"GradientType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/GradientType","k":"enum","s":"enums","m":{"Linear":"Linear","Path":"Path","Radial":"Radial","Rectangular":"Rectangular"}}],"GridLineType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/GridLineType","k":"enum","s":"enums","m":{"Major":"Major","Minor":"Minor"}}],"HorizontalCellAlignment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/HorizontalCellAlignment","k":"enum","s":"enums","m":{"Center":"Center","CenterAcrossSelection":"CenterAcrossSelection","Default":"Default","Distributed":"Distributed","Fill":"Fill","General":"General","Justify":"Justify","Left":"Left","Right":"Right"}}],"HorizontalTextAlignment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/HorizontalTextAlignment","k":"enum","s":"enums","m":{"Center":"Center","Distributed":"Distributed","Justified":"Justified","JustifiedLow":"JustifiedLow","Left":"Left","Right":"Right","ThaiDistributed":"ThaiDistributed"}}],"LegendPosition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/LegendPosition","k":"enum","s":"enums","m":{"Bottom":"Bottom","BottomLeft":"BottomLeft","BottomRight":"BottomRight","Custom":"Custom","Default":"Default","Left":"Left","Right":"Right","Top":"Top","TopLeft":"TopLeft","TopRight":"TopRight"}}],"LineStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/LineStyle","k":"enum","s":"enums","m":{"Dash":"Dash","DashDot":"DashDot","Dot":"Dot","LargeDash":"LargeDash","LargeDashDot":"LargeDashDot","LargeDashDotDot":"LargeDashDotDot","None":"None","Solid":"Solid","SysDash":"SysDash","SysDashDot":"SysDashDot","SysDashDotDot":"SysDashDotDot","SysDot":"SysDot"}}],"MarkerStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/MarkerStyle","k":"enum","s":"enums","m":{"Automatic":"Automatic","Circle":"Circle","Dash":"Dash","Diamond":"Diamond","Dot":"Dot","None":"None","Picture":"Picture","Plus":"Plus","Square":"Square","Star":"Star","Triangle":"Triangle","X":"X"}}],"ObjectDisplayStyle":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ObjectDisplayStyle","k":"enum","s":"enums","m":{"HideAll":"HideAll","ShowAll":"ShowAll","ShowPlaceholders":"ShowPlaceholders"}}],"OneConstraintDataValidationOperator":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/OneConstraintDataValidationOperator","k":"enum","s":"enums","m":{"EqualTo":"EqualTo","GreaterThan":"GreaterThan","GreaterThanOrEqualTo":"GreaterThanOrEqualTo","LessThan":"LessThan","LessThanOrEqualTo":"LessThanOrEqualTo","NotEqualTo":"NotEqualTo"}}],"OpenPackagingNonConformanceReason":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/OpenPackagingNonConformanceReason","k":"enum","s":"enums","m":{"Conformant":"Conformant","ContentTypeHasComments":"ContentTypeHasComments","ContentTypeHasInvalidSyntax":"ContentTypeHasInvalidSyntax","ContentTypeHasInvalidWhitespace":"ContentTypeHasInvalidWhitespace","ContentTypeHasParameters":"ContentTypeHasParameters","ContentTypeMissing":"ContentTypeMissing","CouldNotGetPackagePart":"CouldNotGetPackagePart","DuplicateName":"DuplicateName","GrowthHintChanged":"GrowthHintChanged","NameDerivesFromExistingPartName":"NameDerivesFromExistingPartName","NameDoesNotStartWithForwardSlash":"NameDoesNotStartWithForwardSlash","NameEndsWithForwardSlash":"NameEndsWithForwardSlash","NameMissing":"NameMissing","RelationshipIdInvalid":"RelationshipIdInvalid","RelationshipNameInvalid":"RelationshipNameInvalid","RelationshipTargetInvalid":"RelationshipTargetInvalid","RelationshipTargetNotRelativeReference":"RelationshipTargetNotRelativeReference","RelationshipTargetsOtherRelationship":"RelationshipTargetsOtherRelationship","RelationshipTypeInvalid":"RelationshipTypeInvalid","SegmentEmpty":"SegmentEmpty","SegmentEndsWithDotCharacter":"SegmentEndsWithDotCharacter","SegmentHasNonPCharCharacters":"SegmentHasNonPCharCharacters","SegmentHasPercentEncodedSlashCharacters":"SegmentHasPercentEncodedSlashCharacters","SegmentHasPercentEncodedUnreservedCharacters":"SegmentHasPercentEncodedUnreservedCharacters","SegmentMissingNonDotCharacter":"SegmentMissingNonDotCharacter","XmlContentDrawsOnUndefinedNamespace":"XmlContentDrawsOnUndefinedNamespace","XmlContentInvalidForSchema":"XmlContentInvalidForSchema","XmlEncodingUnsupported":"XmlEncodingUnsupported"}}],"Orientation":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/Orientation","k":"enum","s":"enums","m":{"Default":"Default","Landscape":"Landscape","Portrait":"Portrait"}}],"PageNumbering":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PageNumbering","k":"enum","s":"enums","m":{"Automatic":"Automatic","UseStartPageNumber":"UseStartPageNumber"}}],"PageOrder":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PageOrder","k":"enum","s":"enums","m":{"DownThenOver":"DownThenOver","OverThenDown":"OverThenDown"}}],"PaperSize":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PaperSize","k":"enum","s":"enums","m":{"A2":"A2","A3":"A3","A3Extra":"A3Extra","A3ExtraTransverse":"A3ExtraTransverse","A3Rotated":"A3Rotated","A3Transverse":"A3Transverse","A4":"A4","A4Extra":"A4Extra","A4Plus":"A4Plus","A4Rotated":"A4Rotated","A4Small":"A4Small","A4Transverse":"A4Transverse","A5":"A5","A5Extra":"A5Extra","A5Rotated":"A5Rotated","A5Transverse":"A5Transverse","A6":"A6","A6Rotated":"A6Rotated","B4ISO_1":"B4ISO_1","B4ISO_2":"B4ISO_2","B4JIS":"B4JIS","B4JISRotated":"B4JISRotated","B5ISO":"B5ISO","B5ISOExtra":"B5ISOExtra","B5JIS":"B5JIS","B5JISRotated":"B5JISRotated","B5JISTransverse":"B5JISTransverse","B6ISO":"B6ISO","B6JIS":"B6JIS","B6JISRotated":"B6JISRotated","C":"C","D":"D","DblJapanesePostcard":"DblJapanesePostcard","DblJapanesePostcardRotated":"DblJapanesePostcardRotated","E":"E","Envelope10":"Envelope10","Envelope11":"Envelope11","Envelope12":"Envelope12","Envelope14":"Envelope14","Envelope9":"Envelope9","EnvelopeC3":"EnvelopeC3","EnvelopeC4":"EnvelopeC4","EnvelopeC5":"EnvelopeC5","EnvelopeC6":"EnvelopeC6","EnvelopeC6C5":"EnvelopeC6C5","EnvelopeDL":"EnvelopeDL","EnvelopeInvite":"EnvelopeInvite","EnvelopeItaly":"EnvelopeItaly","EnvelopeMonarch":"EnvelopeMonarch","Executive":"Executive","Folio":"Folio","GermanLegalFanfold":"GermanLegalFanfold","GermanStandardFanfold":"GermanStandardFanfold","JapanesePostcard":"JapanesePostcard","JapanesePostcardRotated":"JapanesePostcardRotated","Ledger":"Ledger","Legal":"Legal","LegalExtra":"LegalExtra","Letter":"Letter","LetterExtra":"LetterExtra","LetterExtraTransverse":"LetterExtraTransverse","LetterPlus":"LetterPlus","LetterRotated":"LetterRotated","LetterSmall":"LetterSmall","LetterTransverse":"LetterTransverse","Note":"Note","Quarto":"Quarto","Size10x11":"Size10x11","Size10x14":"Size10x14","Size11x17":"Size11x17","Size12x11":"Size12x11","Size15x11":"Size15x11","Size634Envelope":"Size634Envelope","Size9x11":"Size9x11","Statement":"Statement","SuperAA4":"SuperAA4","SuperBA3":"SuperBA3","Tabloid":"Tabloid","TabloidExtra":"TabloidExtra","Undefined":"Undefined","USStandardFanfold":"USStandardFanfold"}}],"ParentLabelLayout":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ParentLabelLayout","k":"enum","s":"enums","m":{"Banner":"Banner","None":"None","Overlapping":"Overlapping"}}],"PatternType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PatternType","k":"enum","s":"enums","m":{"Pattern10Percent":"Pattern10Percent","Pattern20Percent":"Pattern20Percent","Pattern25Percent":"Pattern25Percent","Pattern30Percent":"Pattern30Percent","Pattern40Percent":"Pattern40Percent","Pattern50Percent":"Pattern50Percent","Pattern5Percent":"Pattern5Percent","Pattern60Percent":"Pattern60Percent","Pattern70Percent":"Pattern70Percent","Pattern75Percent":"Pattern75Percent","Pattern80Percent":"Pattern80Percent","Pattern90Percent":"Pattern90Percent","PatternCross":"PatternCross","PatternDarkDownwardDiagonal":"PatternDarkDownwardDiagonal","PatternDarkHorizontal":"PatternDarkHorizontal","PatternDarkUpwardDiagonal":"PatternDarkUpwardDiagonal","PatternDarkVertical":"PatternDarkVertical","PatternDashedDownwardDiagonal":"PatternDashedDownwardDiagonal","PatternDashedHorizontal":"PatternDashedHorizontal","PatternDashedUpwardDiagonal":"PatternDashedUpwardDiagonal","PatternDashedVertical":"PatternDashedVertical","PatternDiagonalBrick":"PatternDiagonalBrick","PatternDiagonalCross":"PatternDiagonalCross","PatternDivot":"PatternDivot","PatternDottedDiamond":"PatternDottedDiamond","PatternDottedGrid":"PatternDottedGrid","PatternDownwardDiagonal":"PatternDownwardDiagonal","PatternHorizontal":"PatternHorizontal","PatternHorizontalBrick":"PatternHorizontalBrick","PatternLargeCheckerBoard":"PatternLargeCheckerBoard","PatternLargeConfetti":"PatternLargeConfetti","PatternLargeGrid":"PatternLargeGrid","PatternLightDownwardDiagonal":"PatternLightDownwardDiagonal","PatternLightHorizontal":"PatternLightHorizontal","PatternLightUpwardDiagonal":"PatternLightUpwardDiagonal","PatternLightVertical":"PatternLightVertical","PatternMixed":"PatternMixed","PatternNarrowHorizontal":"PatternNarrowHorizontal","PatternNarrowVertical":"PatternNarrowVertical","PatternOutlinedDiamond":"PatternOutlinedDiamond","PatternPlaid":"PatternPlaid","PatternShingle":"PatternShingle","PatternSmallCheckerBoard":"PatternSmallCheckerBoard","PatternSmallConfetti":"PatternSmallConfetti","PatternSmallGrid":"PatternSmallGrid","PatternSolidDiamond":"PatternSolidDiamond","PatternSphere":"PatternSphere","PatternTrellis":"PatternTrellis","PatternUpwardDiagonal":"PatternUpwardDiagonal","PatternVertical":"PatternVertical","PatternWave":"PatternWave","PatternWeave":"PatternWeave","PatternWideDownwardDiagonal":"PatternWideDownwardDiagonal","PatternWideUpwardDiagonal":"PatternWideUpwardDiagonal","PatternZigZag":"PatternZigZag"}}],"PictureType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PictureType","k":"enum","s":"enums","m":{"Scale":"Scale","Stack":"Stack","Stretch":"Stretch"}}],"PositioningOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PositioningOptions","k":"enum","s":"enums","m":{"None":"None","TreatAllRowsAndColumnsAsVisible":"TreatAllRowsAndColumnsAsVisible"}}],"Precision":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/Precision","k":"enum","s":"enums","m":{"UseDisplayValues":"UseDisplayValues","UseRealCellValues":"UseRealCellValues"}}],"PredefinedShapeType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PredefinedShapeType","k":"enum","s":"enums","m":{"Diamond":"Diamond","Ellipse":"Ellipse","Heart":"Heart","IrregularSeal1":"IrregularSeal1","IrregularSeal2":"IrregularSeal2","LightningBolt":"LightningBolt","Line":"Line","Pentagon":"Pentagon","Rectangle":"Rectangle","RightTriangle":"RightTriangle","StraightConnector1":"StraightConnector1"}}],"PrintErrors":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PrintErrors","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDashes":"PrintAsDashes","PrintAsDisplayed":"PrintAsDisplayed","PrintAsNA":"PrintAsNA"}}],"PrintNotes":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/PrintNotes","k":"enum","s":"enums","m":{"DontPrint":"DontPrint","PrintAsDisplayed":"PrintAsDisplayed","PrintAtEndOfSheet":"PrintAtEndOfSheet"}}],"QuartileCalculation":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/QuartileCalculation","k":"enum","s":"enums","m":{"ExclusiveMedian":"ExclusiveMedian","InclusiveMedian":"InclusiveMedian"}}],"ReadingOrder":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ReadingOrder","k":"enum","s":"enums","m":{"Context":"Context","LeftToRight":"LeftToRight","RightToLeft":"RightToLeft"}}],"RelativeDateRangeDuration":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/RelativeDateRangeDuration","k":"enum","s":"enums","m":{"Day":"Day","Month":"Month","Quarter":"Quarter","Week":"Week","Year":"Year"}}],"RelativeDateRangeOffset":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/RelativeDateRangeOffset","k":"enum","s":"enums","m":{"Current":"Current","Next":"Next","Previous":"Previous"}}],"ScaleType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ScaleType","k":"enum","s":"enums","m":{"Linear":"Linear","Logarithmic":"Logarithmic"}}],"ScalingType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ScalingType","k":"enum","s":"enums","m":{"FitToPages":"FitToPages","UseScalingFactor":"UseScalingFactor"}}],"ScrollBars":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ScrollBars","k":"enum","s":"enums","m":{"Both":"Both","Horizontal":"Horizontal","None":"None","Vertical":"Vertical"}}],"SeriesType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SeriesType","k":"enum","s":"enums","m":{"Area":"Area","Bar":"Bar","Bubble":"Bubble","Line":"Line","Pie":"Pie","Radar":"Radar","Scatter":"Scatter","Surface":"Surface"}}],"SeriesValuesColorBy":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SeriesValuesColorBy","k":"enum","s":"enums","m":{"NumericalValue":"NumericalValue","SecondaryCategory":"SecondaryCategory"}}],"ShapePositioningMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ShapePositioningMode","k":"enum","s":"enums","m":{"DontMoveOrSizeWithCells":"DontMoveOrSizeWithCells","MoveAndSizeWithCells":"MoveAndSizeWithCells","MoveWithCells":"MoveWithCells"}}],"SheetType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SheetType","k":"enum","s":"enums","m":{"Chartsheet":"Chartsheet","Worksheet":"Worksheet"}}],"SortDirection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SortDirection","k":"enum","s":"enums","m":{"Ascending":"Ascending","Descending":"Descending"}}],"SparklineAxisMinMax":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SparklineAxisMinMax","k":"enum","s":"enums","m":{"Custom":"Custom","Group":"Group","Individual":"Individual"}}],"SparklineDisplayBlanksAs":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SparklineDisplayBlanksAs","k":"enum","s":"enums","m":{"Gap":"Gap","Span":"Span","Zero":"Zero"}}],"SparklineType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/SparklineType","k":"enum","s":"enums","m":{"Column":"Column","Line":"Line","Stacked":"Stacked","WinLoss":"WinLoss"}}],"TextDirection":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TextDirection","k":"enum","s":"enums","m":{"EastAsianVertical":"EastAsianVertical","Horizontal":"Horizontal","MongolianVertical":"MongolianVertical","Vertical":"Vertical","Vertical270":"Vertical270","WordArtVertical":"WordArtVertical","WordArtVerticalRtl":"WordArtVerticalRtl"}}],"TextFormatMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TextFormatMode","k":"enum","s":"enums","m":{"AsDisplayed":"AsDisplayed","IgnoreCellWidth":"IgnoreCellWidth"}}],"TextHorizontalOverflow":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TextHorizontalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Overflow":"Overflow"}}],"TextVerticalOverflow":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TextVerticalOverflow","k":"enum","s":"enums","m":{"Clip":"Clip","Ellipsis":"Ellipsis","Overflow":"Overflow"}}],"ThresholdComparison":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/ThresholdComparison","k":"enum","s":"enums","m":{"Greater":"Greater","GreaterEqual":"GreaterEqual"}}],"TickLabelAlignment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TickLabelAlignment","k":"enum","s":"enums","m":{"Center":"Center","Left":"Left","Right":"Right"}}],"TickLabelPosition":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TickLabelPosition","k":"enum","s":"enums","m":{"High":"High","Low":"Low","NextToAxis":"NextToAxis","None":"None"}}],"TickMark":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TickMark","k":"enum","s":"enums","m":{"Cross":"Cross","Inside":"Inside","None":"None","Outside":"Outside"}}],"TimeUnit":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TimeUnit","k":"enum","s":"enums","m":{"Days":"Days","Months":"Months","Years":"Years"}}],"TopOrBottomFilterType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TopOrBottomFilterType","k":"enum","s":"enums","m":{"BottomPercentage":"BottomPercentage","BottomValues":"BottomValues","TopPercentage":"TopPercentage","TopValues":"TopValues"}}],"TrendlinePolynomialOrder":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TrendlinePolynomialOrder","k":"enum","s":"enums","m":{"Fifth":"Fifth","Fourth":"Fourth","Second":"Second","Sixth":"Sixth","Third":"Third"}}],"TrendlineType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TrendlineType","k":"enum","s":"enums","m":{"Exponential":"Exponential","Linear":"Linear","Logarithmic":"Logarithmic","MovingAverage":"MovingAverage","Polynomial":"Polynomial","Power":"Power"}}],"TwoConstraintDataValidationOperator":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/TwoConstraintDataValidationOperator","k":"enum","s":"enums","m":{"Between":"Between","NotBetween":"NotBetween"}}],"UpDownBarType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/UpDownBarType","k":"enum","s":"enums","m":{"Down":"Down","Up":"Up"}}],"VerticalCellAlignment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/VerticalCellAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Default":"Default","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"VerticalTextAlignment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/VerticalTextAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Top":"Top"}}],"VerticalTitleAlignment":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/VerticalTitleAlignment","k":"enum","s":"enums","m":{"Bottom":"Bottom","Center":"Center","Distributed":"Distributed","Justify":"Justify","Top":"Top"}}],"WallType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WallType","k":"enum","s":"enums","m":{"All":"All","Back":"Back","Floor":"Floor","Side":"Side"}}],"WorkbookEncryptionMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorkbookEncryptionMode","k":"enum","s":"enums","m":{"Agile":"Agile","Standard":"Standard"}}],"WorkbookFormat":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorkbookFormat","k":"enum","s":"enums","m":{"Excel2007":"Excel2007","Excel2007MacroEnabled":"Excel2007MacroEnabled","Excel2007MacroEnabledTemplate":"Excel2007MacroEnabledTemplate","Excel2007Template":"Excel2007Template","Excel97To2003":"Excel97To2003","Excel97To2003Template":"Excel97To2003Template","StrictOpenXml":"StrictOpenXml"}}],"WorkbookThemeColorType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorkbookThemeColorType","k":"enum","s":"enums","m":{"Accent1":"Accent1","Accent2":"Accent2","Accent3":"Accent3","Accent4":"Accent4","Accent5":"Accent5","Accent6":"Accent6","Dark1":"Dark1","Dark2":"Dark2","FollowedHyperlink":"FollowedHyperlink","Hyperlink":"Hyperlink","Light1":"Light1","Light2":"Light2"}}],"WorksheetCellFormatOptions":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetCellFormatOptions","k":"enum","s":"enums","m":{"All":"All","ApplyAlignmentFormatting":"ApplyAlignmentFormatting","ApplyBorderFormatting":"ApplyBorderFormatting","ApplyFillFormatting":"ApplyFillFormatting","ApplyFontFormatting":"ApplyFontFormatting","ApplyNumberFormatting":"ApplyNumberFormatting","ApplyProtectionFormatting":"ApplyProtectionFormatting","None":"None"}}],"WorksheetColumnWidthUnit":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetColumnWidthUnit","k":"enum","s":"enums","m":{"Character":"Character","Character256th":"Character256th","CharacterPaddingExcluded":"CharacterPaddingExcluded","Pixel":"Pixel","Point":"Point","Twip":"Twip"}}],"WorksheetProtectedSelectionMode":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetProtectedSelectionMode","k":"enum","s":"enums","m":{"AllCells":"AllCells","NoCells":"NoCells","UnlockedCells":"UnlockedCells"}}],"WorksheetSortType":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetSortType","k":"enum","s":"enums","m":{"Columns":"Columns","Rows":"Rows"}}],"WorksheetTableArea":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetTableArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderRow":"HeaderRow","TotalsRow":"TotalsRow","WholeTable":"WholeTable"}}],"WorksheetTableColumnArea":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetTableColumnArea","k":"enum","s":"enums","m":{"DataArea":"DataArea","HeaderCell":"HeaderCell","TotalCell":"TotalCell"}}],"WorksheetTableStyleArea":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetTableStyleArea","k":"enum","s":"enums","m":{"AlternateColumnStripe":"AlternateColumnStripe","AlternateRowStripe":"AlternateRowStripe","ColumnStripe":"ColumnStripe","FirstColumn":"FirstColumn","FirstHeaderCell":"FirstHeaderCell","FirstTotalCell":"FirstTotalCell","HeaderRow":"HeaderRow","LastColumn":"LastColumn","LastHeaderCell":"LastHeaderCell","LastTotalCell":"LastTotalCell","RowStripe":"RowStripe","TotalRow":"TotalRow","WholeTable":"WholeTable"}}],"WorksheetView":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetView","k":"enum","s":"enums","m":{"Normal":"Normal","PageBreakPreview":"PageBreakPreview","PageLayout":"PageLayout"}}],"WorksheetVisibility":[{"p":"igniteui-webcomponents-excel","u":"/api/webcomponents/igniteui-webcomponents-excel/7.0.0/enums/WorksheetVisibility","k":"enum","s":"enums","m":{"Hidden":"Hidden","StrongHidden":"StrongHidden","Visible":"Visible"}}],"Fdc3ContextType":[{"p":"igniteui-webcomponents-fdc3","u":"/api/webcomponents/igniteui-webcomponents-fdc3/7.0.0/enums/Fdc3ContextType","k":"enum","s":"enums","m":{"Contact":"Contact","ContactList":"ContactList","Instrument":"Instrument","InstrumentList":"InstrumentList","Organization":"Organization","OrganizationList":"OrganizationList","Portfolio":"Portfolio","Position":"Position","Unknown":"Unknown"}}],"Fdc3IntentType":[{"p":"igniteui-webcomponents-fdc3","u":"/api/webcomponents/igniteui-webcomponents-fdc3/7.0.0/enums/Fdc3IntentType","k":"enum","s":"enums","m":{"All":"All","None":"None","StartCall":"StartCall","StartChat":"StartChat","Unknown":"Unknown","ViewAnalysis":"ViewAnalysis","ViewChart":"ViewChart","ViewContact":"ViewContact","ViewInstrument":"ViewInstrument","ViewNews":"ViewNews","ViewQuote":"ViewQuote"}}],"IgcAlignLinearGraphLabelEventArgs":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcAlignLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","height":"height","i":"i","label":"label","offsetX":"offsetX","offsetY":"offsetY","value":"value","width":"width"}}],"IgcAlignRadialGaugeLabelEventArgs":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcAlignRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","angle":"angle","endAngle":"endAngle","height":"height","i":"i","label":"label","offsetX":"offsetX","offsetY":"offsetY","startAngle":"startAngle","value":"value","width":"width"}}],"IgcBulletGraphComponent":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcBulletGraphComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualRanges":"actualRanges","contentRanges":"contentRanges","htmlTagName":"htmlTagName","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","animating":"animating","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBackgroundBrush":"scaleBackgroundBrush","scaleBackgroundOutline":"scaleBackgroundOutline","scaleBackgroundThickness":"scaleBackgroundThickness","scaleEndExtent":"scaleEndExtent","scaleStartExtent":"scaleStartExtent","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","targetValue":"targetValue","targetValueBreadth":"targetValueBreadth","targetValueBrush":"targetValueBrush","targetValueInnerExtent":"targetValueInnerExtent","targetValueName":"targetValueName","targetValueOuterExtent":"targetValueOuterExtent","targetValueOutline":"targetValueOutline","targetValueStrokeThickness":"targetValueStrokeThickness","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueBrush":"valueBrush","valueInnerExtent":"valueInnerExtent","valueName":"valueName","valueOuterExtent":"valueOuterExtent","valueOutline":"valueOutline","valueStrokeThickness":"valueStrokeThickness","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","containerResized":"containerResized","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getValueForPoint":"getValueForPoint","provideContainer":"provideContainer","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcFormatLinearGraphLabelEventArgs":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcFormatLinearGraphLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","i":"i","label":"label","value":"value"}}],"IgcFormatRadialGaugeLabelEventArgs":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcFormatRadialGaugeLabelEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","actualMaximumValue":"actualMaximumValue","actualMinimumValue":"actualMinimumValue","angle":"angle","endAngle":"endAngle","i":"i","label":"label","startAngle":"startAngle","value":"value"}}],"IgcLinearGaugeComponent":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcLinearGaugeComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualRanges":"actualRanges","contentRanges":"contentRanges","htmlTagName":"htmlTagName","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignLabel":"alignLabel","animating":"animating","backingBrush":"backingBrush","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingStrokeThickness":"backingStrokeThickness","font":"font","fontBrush":"fontBrush","formatLabel":"formatLabel","height":"height","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","isScaleInverted":"isScaleInverted","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","labelsPostInitial":"labelsPostInitial","labelsPreTerminal":"labelsPreTerminal","labelsVisible":"labelsVisible","maximumValue":"maximumValue","mergeViewports":"mergeViewports","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","needleBreadth":"needleBreadth","needleBrush":"needleBrush","needleInnerBaseWidth":"needleInnerBaseWidth","needleInnerExtent":"needleInnerExtent","needleInnerPointExtent":"needleInnerPointExtent","needleInnerPointWidth":"needleInnerPointWidth","needleName":"needleName","needleOuterBaseWidth":"needleOuterBaseWidth","needleOuterExtent":"needleOuterExtent","needleOuterPointExtent":"needleOuterPointExtent","needleOuterPointWidth":"needleOuterPointWidth","needleOutline":"needleOutline","needleShape":"needleShape","needleStrokeThickness":"needleStrokeThickness","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeBrushes":"rangeBrushes","rangeInnerExtent":"rangeInnerExtent","rangeOuterExtent":"rangeOuterExtent","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBrush":"scaleBrush","scaleEndExtent":"scaleEndExtent","scaleInnerExtent":"scaleInnerExtent","scaleOuterExtent":"scaleOuterExtent","scaleOutline":"scaleOutline","scaleStartExtent":"scaleStartExtent","scaleStrokeThickness":"scaleStrokeThickness","showToolTip":"showToolTip","showToolTipTimeout":"showToolTipTimeout","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","ticksPostInitial":"ticksPostInitial","ticksPreTerminal":"ticksPreTerminal","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","tooltipTemplate":"tooltipTemplate","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","containerResized":"containerResized","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getValueForPoint":"getValueForPoint","highlightNeedleContainsPoint":"highlightNeedleContainsPoint","needleContainsPoint":"needleContainsPoint","provideContainer":"provideContainer","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcLinearGraphRangeCollection":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcLinearGraphRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcLinearGraphRangeComponent":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcLinearGraphRangeComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brush":"brush","endValue":"endValue","i":"i","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","rangeInternal":"rangeInternal","startValue":"startValue","strokeThickness":"strokeThickness","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","findByName":"findByName","ngOnInit":"ngOnInit","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRadialGaugeComponent":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcRadialGaugeComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualRanges":"actualRanges","contentRanges":"contentRanges","htmlTagName":"htmlTagName","actualHighlightValueDisplayMode":"actualHighlightValueDisplayMode","actualHighlightValueOpacity":"actualHighlightValueOpacity","actualMaximumValue":"actualMaximumValue","actualMaximumValueChange":"actualMaximumValueChange","actualMinimumValue":"actualMinimumValue","actualMinimumValueChange":"actualMinimumValueChange","actualPixelScalingRatio":"actualPixelScalingRatio","alignHighlightLabel":"alignHighlightLabel","alignLabel":"alignLabel","alignSubtitle":"alignSubtitle","alignTitle":"alignTitle","animating":"animating","backingBrush":"backingBrush","backingCornerRadius":"backingCornerRadius","backingInnerExtent":"backingInnerExtent","backingOuterExtent":"backingOuterExtent","backingOutline":"backingOutline","backingOversweep":"backingOversweep","backingShape":"backingShape","backingStrokeThickness":"backingStrokeThickness","centerX":"centerX","centerY":"centerY","duplicateLabelOmissionStrategy":"duplicateLabelOmissionStrategy","font":"font","fontBrush":"fontBrush","formatHighlightLabel":"formatHighlightLabel","formatLabel":"formatLabel","formatSubtitle":"formatSubtitle","formatTitle":"formatTitle","height":"height","highlightLabelAngle":"highlightLabelAngle","highlightLabelBrush":"highlightLabelBrush","highlightLabelDisplaysValue":"highlightLabelDisplaysValue","highlightLabelExtent":"highlightLabelExtent","highlightLabelFormat":"highlightLabelFormat","highlightLabelFormatSpecifiers":"highlightLabelFormatSpecifiers","highlightLabelSnapsToNeedlePivot":"highlightLabelSnapsToNeedlePivot","highlightLabelText":"highlightLabelText","highlightLabelTextStyle":"highlightLabelTextStyle","highlightValue":"highlightValue","highlightValueChanged":"highlightValueChanged","highlightValueDisplayMode":"highlightValueDisplayMode","highlightValueOpacity":"highlightValueOpacity","interval":"interval","isHighlightNeedleDraggingConstrained":"isHighlightNeedleDraggingConstrained","isHighlightNeedleDraggingEnabled":"isHighlightNeedleDraggingEnabled","isNeedleDraggingConstrained":"isNeedleDraggingConstrained","isNeedleDraggingEnabled":"isNeedleDraggingEnabled","labelExtent":"labelExtent","labelFormat":"labelFormat","labelFormatSpecifiers":"labelFormatSpecifiers","labelInterval":"labelInterval","maximumValue":"maximumValue","minimumValue":"minimumValue","minorTickBrush":"minorTickBrush","minorTickCount":"minorTickCount","minorTickEndExtent":"minorTickEndExtent","minorTickStartExtent":"minorTickStartExtent","minorTickStrokeThickness":"minorTickStrokeThickness","needleBaseFeatureExtent":"needleBaseFeatureExtent","needleBaseFeatureWidthRatio":"needleBaseFeatureWidthRatio","needleBrush":"needleBrush","needleEndExtent":"needleEndExtent","needleEndWidthRatio":"needleEndWidthRatio","needleOutline":"needleOutline","needlePivotBrush":"needlePivotBrush","needlePivotInnerWidthRatio":"needlePivotInnerWidthRatio","needlePivotOutline":"needlePivotOutline","needlePivotShape":"needlePivotShape","needlePivotStrokeThickness":"needlePivotStrokeThickness","needlePivotWidthRatio":"needlePivotWidthRatio","needlePointFeatureExtent":"needlePointFeatureExtent","needlePointFeatureWidthRatio":"needlePointFeatureWidthRatio","needleShape":"needleShape","needleStartExtent":"needleStartExtent","needleStartWidthRatio":"needleStartWidthRatio","needleStrokeThickness":"needleStrokeThickness","opticalScalingEnabled":"opticalScalingEnabled","opticalScalingRatio":"opticalScalingRatio","opticalScalingSize":"opticalScalingSize","pixelScalingRatio":"pixelScalingRatio","radiusMultiplier":"radiusMultiplier","rangeBrushes":"rangeBrushes","rangeOutlines":"rangeOutlines","ranges":"ranges","scaleBrush":"scaleBrush","scaleEndAngle":"scaleEndAngle","scaleEndExtent":"scaleEndExtent","scaleOversweep":"scaleOversweep","scaleOversweepShape":"scaleOversweepShape","scaleStartAngle":"scaleStartAngle","scaleStartExtent":"scaleStartExtent","scaleSweepDirection":"scaleSweepDirection","subtitleAngle":"subtitleAngle","subtitleBrush":"subtitleBrush","subtitleDisplaysValue":"subtitleDisplaysValue","subtitleExtent":"subtitleExtent","subtitleFormat":"subtitleFormat","subtitleFormatSpecifiers":"subtitleFormatSpecifiers","subtitleSnapsToNeedlePivot":"subtitleSnapsToNeedlePivot","subtitleText":"subtitleText","subtitleTextStyle":"subtitleTextStyle","tickBrush":"tickBrush","tickEndExtent":"tickEndExtent","tickStartExtent":"tickStartExtent","tickStrokeThickness":"tickStrokeThickness","titleAngle":"titleAngle","titleBrush":"titleBrush","titleDisplaysValue":"titleDisplaysValue","titleExtent":"titleExtent","titleFormat":"titleFormat","titleFormatSpecifiers":"titleFormatSpecifiers","titleSnapsToNeedlePivot":"titleSnapsToNeedlePivot","titleText":"titleText","titleTextStyle":"titleTextStyle","transitionDuration":"transitionDuration","transitionProgress":"transitionProgress","value":"value","valueChanged":"valueChanged","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","containerResized":"containerResized","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","findByName":"findByName","flush":"flush","getPointForValue":"getPointForValue","getValueForPoint":"getValueForPoint","highlightNeedleContainsPoint":"highlightNeedleContainsPoint","needleContainsPoint":"needleContainsPoint","provideContainer":"provideContainer","scaleValue":"scaleValue","styleUpdated":"styleUpdated","unscaleValue":"unscaleValue","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcRadialGaugeRangeCollection":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcRadialGaugeRangeCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcRadialGaugeRangeComponent":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/classes/IgcRadialGaugeRangeComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","brush":"brush","endValue":"endValue","i":"i","innerEndExtent":"innerEndExtent","innerStartExtent":"innerStartExtent","name":"name","outerEndExtent":"outerEndExtent","outerStartExtent":"outerStartExtent","outline":"outline","rangeInternal":"rangeInternal","startValue":"startValue","strokeThickness":"strokeThickness","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"LinearGraphNeedleShape":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/LinearGraphNeedleShape","k":"enum","s":"enums","m":{"Custom":"Custom","Needle":"Needle","Rectangle":"Rectangle","Trapezoid":"Trapezoid","Triangle":"Triangle"}}],"LinearScaleOrientation":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/LinearScaleOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"RadialGaugeBackingShape":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/RadialGaugeBackingShape","k":"enum","s":"enums","m":{"Circular":"Circular","Fitted":"Fitted"}}],"RadialGaugeDuplicateLabelOmissionStrategy":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/RadialGaugeDuplicateLabelOmissionStrategy","k":"enum","s":"enums","m":{"OmitBoth":"OmitBoth","OmitFirst":"OmitFirst","OmitLast":"OmitLast","OmitNeither":"OmitNeither"}}],"RadialGaugeNeedleShape":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/RadialGaugeNeedleShape","k":"enum","s":"enums","m":{"Needle":"Needle","NeedleWithBulb":"NeedleWithBulb","None":"None","Rectangle":"Rectangle","RectangleWithBulb":"RectangleWithBulb","Trapezoid":"Trapezoid","TrapezoidWithBulb":"TrapezoidWithBulb","Triangle":"Triangle","TriangleWithBulb":"TriangleWithBulb"}}],"RadialGaugePivotShape":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/RadialGaugePivotShape","k":"enum","s":"enums","m":{"Circle":"Circle","CircleOverlay":"CircleOverlay","CircleOverlayWithHole":"CircleOverlayWithHole","CircleUnderlay":"CircleUnderlay","CircleUnderlayWithHole":"CircleUnderlayWithHole","CircleWithHole":"CircleWithHole","None":"None"}}],"RadialGaugeScaleOversweepShape":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/RadialGaugeScaleOversweepShape","k":"enum","s":"enums","m":{"Auto":"Auto","Circular":"Circular","Fitted":"Fitted"}}],"TitlesPosition":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/enums/TitlesPosition","k":"enum","s":"enums","m":{"ScaleEnd":"ScaleEnd","ScaleStart":"ScaleStart"}}],"BulletGraphStylingDefaults":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/variables/BulletGraphStylingDefaults","k":"variable","s":"variables"}],"LinearGaugeStylingDefaults":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/variables/LinearGaugeStylingDefaults","k":"variable","s":"variables"}],"RadialGaugeStylingDefaults":[{"p":"igniteui-webcomponents-gauges","u":"/api/webcomponents/igniteui-webcomponents-gauges/7.0.0/variables/RadialGaugeStylingDefaults","k":"variable","s":"variables"}],"IgcButtonClickEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcButtonClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcButtonGroupSelectionChangedEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcButtonGroupSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcCheckboxChangeEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcCheckboxChangeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","isChecked":"isChecked","isIndeterminate":"isIndeterminate"}}],"IgcColorEditorComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcColorEditorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","allowTextInput":"allowTextInput","baseTheme":"baseTheme","density":"density","gotFocus":"gotFocus","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","openAsChild":"openAsChild","openOnFocus":"openOnFocus","showClearButton":"showClearButton","textColor":"textColor","textStyle":"textStyle","useTopLayer":"useTopLayer","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","select":"select","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcColorEditorGotFocusEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcColorEditorGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcColorEditorLostFocusEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcColorEditorLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcColorEditorPanelClosedEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcColorEditorPanelClosedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcColorEditorPanelComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcColorEditorPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualPixelScalingRatio":"actualPixelScalingRatio","backgroundColor":"backgroundColor","baseTheme":"baseTheme","density":"density","focusColorBorderColor":"focusColorBorderColor","hoverBackgroundColor":"hoverBackgroundColor","pixelScalingRatio":"pixelScalingRatio","selectedColorBorderColor":"selectedColorBorderColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","textColor":"textColor","textStyle":"textStyle","value":"value","valueChanged":"valueChanged","valueChanging":"valueChanging","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","findByName":"findByName","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcColorEditorPanelSelectedValueChangedEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcColorEditorPanelSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcGotFocusEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcInputChangeEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcInputChangeEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","isCompositionInProgress":"isCompositionInProgress","value":"value"}}],"IgcLostFocusEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcMultiSliderComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualPixelScalingRatio":"actualPixelScalingRatio","areThumbCalloutsEnabled":"areThumbCalloutsEnabled","barBrush":"barBrush","barExtent":"barExtent","barOutline":"barOutline","barStrokeThickness":"barStrokeThickness","calloutBrush":"calloutBrush","calloutOutline":"calloutOutline","calloutStrokeThickness":"calloutStrokeThickness","calloutTextColor":"calloutTextColor","endInset":"endInset","isCustomBarProvided":"isCustomBarProvided","isCustomRangeThumbProvided":"isCustomRangeThumbProvided","isCustomShadeProvided":"isCustomShadeProvided","isCustomThumbProvided":"isCustomThumbProvided","max":"max","min":"min","orientation":"orientation","pixelScalingRatio":"pixelScalingRatio","rangeThumbBrush":"rangeThumbBrush","rangeThumbOutline":"rangeThumbOutline","rangeThumbRidgesBrush":"rangeThumbRidgesBrush","rangeThumbStrokeThickness":"rangeThumbStrokeThickness","resolvingToolTipValue":"resolvingToolTipValue","startInset":"startInset","step":"step","thumbBrush":"thumbBrush","thumbCalloutTextStyle":"thumbCalloutTextStyle","thumbHeight":"thumbHeight","thumbOutline":"thumbOutline","thumbRidgesBrush":"thumbRidgesBrush","thumbs":"thumbs","thumbStrokeThickness":"thumbStrokeThickness","thumbValueChanged":"thumbValueChanged","thumbValueChanging":"thumbValueChanging","thumbWidth":"thumbWidth","trackEndInset":"trackEndInset","trackStartInset":"trackStartInset","windowRect":"windowRect","yMax":"yMax","yMin":"yMin","yStep":"yStep","yTrackEndInset":"yTrackEndInset","yTrackStartInset":"yTrackStartInset","yValue":"yValue","yValueChanged":"yValueChanged","yValueChanging":"yValueChanging","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","flush":"flush","hide":"hide","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","provideContainer":"provideContainer","show":"show","trackDirty":"trackDirty","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcMultiSliderResolvingToolTipValueEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderResolvingToolTipValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","position":"position","value":"value"}}],"IgcMultiSliderThumb":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderThumb","k":"class","s":"classes","m":{"constructor":"constructor","propertyUpdated":"propertyUpdated","range":"range","rangePosition":"rangePosition","value":"value","findByName":"findByName","push":"push"}}],"IgcMultiSliderThumbCollection":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderThumbCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcMultiSliderThumbValueChangingEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderThumbValueChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","thumb":"thumb","value":"value"}}],"IgcMultiSliderTrackThumbRange":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderTrackThumbRange","k":"class","s":"classes","m":{"constructor":"constructor","higherThumb":"higherThumb","lowerThumb":"lowerThumb","maxWidth":"maxWidth","minWidth":"minWidth","position":"position","width":"width","findByName":"findByName"}}],"IgcMultiSliderYValueChangingEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcMultiSliderYValueChangingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","value":"value"}}],"IgcSelectedValueChangedEventArgs":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcSelectedValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcXButtonComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXButtonComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAmbientShadowColor":"actualAmbientShadowColor","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualDisabledBackgroundColor":"actualDisabledBackgroundColor","actualDisabledBorderColor":"actualDisabledBorderColor","actualDisabledElevation":"actualDisabledElevation","actualDisabledTextColor":"actualDisabledTextColor","actualDisableRipple":"actualDisableRipple","actualElevationMode":"actualElevationMode","actualFocusBackgroundColor":"actualFocusBackgroundColor","actualFocusElevation":"actualFocusElevation","actualFocusTextColor":"actualFocusTextColor","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualHoverElevation":"actualHoverElevation","actualHoverTextColor":"actualHoverTextColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualRestingElevation":"actualRestingElevation","actualRippleColor":"actualRippleColor","actualTextColor":"actualTextColor","actualUmbraShadowColor":"actualUmbraShadowColor","alignItems":"alignItems","ariaLabel":"ariaLabel","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","clicked":"clicked","clickTunneling":"clickTunneling","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","disabledBackgroundColor":"disabledBackgroundColor","disabledBorderColor":"disabledBorderColor","disabledElevation":"disabledElevation","disabledTextColor":"disabledTextColor","disableHover":"disableHover","disablePointer":"disablePointer","disableRipple":"disableRipple","disableTransitions":"disableTransitions","display":"display","displayType":"displayType","elevationMode":"elevationMode","fabBackgroundColor":"fabBackgroundColor","fabBorderColor":"fabBorderColor","fabBorderWidth":"fabBorderWidth","fabCornerRadiusBottomLeft":"fabCornerRadiusBottomLeft","fabCornerRadiusBottomRight":"fabCornerRadiusBottomRight","fabCornerRadiusTopLeft":"fabCornerRadiusTopLeft","fabCornerRadiusTopRight":"fabCornerRadiusTopRight","fabDisabledBackgroundColor":"fabDisabledBackgroundColor","fabDisabledBorderColor":"fabDisabledBorderColor","fabDisabledElevation":"fabDisabledElevation","fabDisabledTextColor":"fabDisabledTextColor","fabFocusBackgroundColor":"fabFocusBackgroundColor","fabFocusElevation":"fabFocusElevation","fabFocusTextColor":"fabFocusTextColor","fabHoverBackgroundColor":"fabHoverBackgroundColor","fabHoverElevation":"fabHoverElevation","fabHoverTextColor":"fabHoverTextColor","fabRestingElevation":"fabRestingElevation","fabRippleColor":"fabRippleColor","fabTextColor":"fabTextColor","fillAvailableSpace":"fillAvailableSpace","flatBackgroundColor":"flatBackgroundColor","flatBorderColor":"flatBorderColor","flatBorderWidth":"flatBorderWidth","flatCornerRadiusBottomLeft":"flatCornerRadiusBottomLeft","flatCornerRadiusBottomRight":"flatCornerRadiusBottomRight","flatCornerRadiusTopLeft":"flatCornerRadiusTopLeft","flatCornerRadiusTopRight":"flatCornerRadiusTopRight","flatDisabledBackgroundColor":"flatDisabledBackgroundColor","flatDisabledBorderColor":"flatDisabledBorderColor","flatDisabledElevation":"flatDisabledElevation","flatDisabledTextColor":"flatDisabledTextColor","flatFocusBackgroundColor":"flatFocusBackgroundColor","flatFocusElevation":"flatFocusElevation","flatFocusTextColor":"flatFocusTextColor","flatHoverBackgroundColor":"flatHoverBackgroundColor","flatHoverElevation":"flatHoverElevation","flatHoverTextColor":"flatHoverTextColor","flatRestingElevation":"flatRestingElevation","flatRippleColor":"flatRippleColor","flatTextColor":"flatTextColor","flexDirection":"flexDirection","flexGrow":"flexGrow","focusBackgroundColor":"focusBackgroundColor","focused":"focused","focusElevation":"focusElevation","focusTextColor":"focusTextColor","gotFocus":"gotFocus","horizontalContentAlignment":"horizontalContentAlignment","hoverBackgroundColor":"hoverBackgroundColor","hoverElevation":"hoverElevation","hoverTextColor":"hoverTextColor","iconBackgroundColor":"iconBackgroundColor","iconBorderColor":"iconBorderColor","iconBorderWidth":"iconBorderWidth","iconCornerRadiusBottomLeft":"iconCornerRadiusBottomLeft","iconCornerRadiusBottomRight":"iconCornerRadiusBottomRight","iconCornerRadiusTopLeft":"iconCornerRadiusTopLeft","iconCornerRadiusTopRight":"iconCornerRadiusTopRight","iconDisabledBackgroundColor":"iconDisabledBackgroundColor","iconDisabledBorderColor":"iconDisabledBorderColor","iconDisabledElevation":"iconDisabledElevation","iconDisabledTextColor":"iconDisabledTextColor","iconFocusBackgroundColor":"iconFocusBackgroundColor","iconFocusElevation":"iconFocusElevation","iconFocusTextColor":"iconFocusTextColor","iconHoverBackgroundColor":"iconHoverBackgroundColor","iconHoverElevation":"iconHoverElevation","iconHoverTextColor":"iconHoverTextColor","iconRestingElevation":"iconRestingElevation","iconRippleColor":"iconRippleColor","iconTextColor":"iconTextColor","id":"id","inputId":"inputId","isFocusStyleEnabled":"isFocusStyleEnabled","isHover":"isHover","lostFocus":"lostFocus","minHeight":"minHeight","minWidth":"minWidth","name":"name","outlinedBackgroundColor":"outlinedBackgroundColor","outlinedBorderColor":"outlinedBorderColor","outlinedBorderWidth":"outlinedBorderWidth","outlinedCornerRadiusBottomLeft":"outlinedCornerRadiusBottomLeft","outlinedCornerRadiusBottomRight":"outlinedCornerRadiusBottomRight","outlinedCornerRadiusTopLeft":"outlinedCornerRadiusTopLeft","outlinedCornerRadiusTopRight":"outlinedCornerRadiusTopRight","outlinedDisabledBackgroundColor":"outlinedDisabledBackgroundColor","outlinedDisabledBorderColor":"outlinedDisabledBorderColor","outlinedDisabledElevation":"outlinedDisabledElevation","outlinedDisabledTextColor":"outlinedDisabledTextColor","outlinedFocusBackgroundColor":"outlinedFocusBackgroundColor","outlinedFocusElevation":"outlinedFocusElevation","outlinedFocusTextColor":"outlinedFocusTextColor","outlinedHoverBackgroundColor":"outlinedHoverBackgroundColor","outlinedHoverElevation":"outlinedHoverElevation","outlinedHoverTextColor":"outlinedHoverTextColor","outlinedRestingElevation":"outlinedRestingElevation","outlinedRippleColor":"outlinedRippleColor","outlinedTextColor":"outlinedTextColor","raisedBackgroundColor":"raisedBackgroundColor","raisedBorderColor":"raisedBorderColor","raisedBorderWidth":"raisedBorderWidth","raisedCornerRadiusBottomLeft":"raisedCornerRadiusBottomLeft","raisedCornerRadiusBottomRight":"raisedCornerRadiusBottomRight","raisedCornerRadiusTopLeft":"raisedCornerRadiusTopLeft","raisedCornerRadiusTopRight":"raisedCornerRadiusTopRight","raisedDisabledBackgroundColor":"raisedDisabledBackgroundColor","raisedDisabledBorderColor":"raisedDisabledBorderColor","raisedDisabledElevation":"raisedDisabledElevation","raisedDisabledTextColor":"raisedDisabledTextColor","raisedFocusBackgroundColor":"raisedFocusBackgroundColor","raisedFocusElevation":"raisedFocusElevation","raisedFocusTextColor":"raisedFocusTextColor","raisedHoverBackgroundColor":"raisedHoverBackgroundColor","raisedHoverElevation":"raisedHoverElevation","raisedHoverTextColor":"raisedHoverTextColor","raisedRestingElevation":"raisedRestingElevation","raisedRippleColor":"raisedRippleColor","raisedTextColor":"raisedTextColor","restingElevation":"restingElevation","rippleColor":"rippleColor","stopPropagation":"stopPropagation","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","value":"value","verticalContentAlignment":"verticalContentAlignment","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureActualCornerRadius":"ensureActualCornerRadius","ensureCornerRadius":"ensureCornerRadius","ensureFabCornerRadius":"ensureFabCornerRadius","ensureFlatCornerRadius":"ensureFlatCornerRadius","ensureIconCornerRadius":"ensureIconCornerRadius","ensureOutlinedCornerRadius":"ensureOutlinedCornerRadius","ensureRaisedCornerRadius":"ensureRaisedCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXButtonGroupButtonCollection":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXButtonGroupButtonCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcXButtonGroupComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXButtonGroupComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualButtons":"actualButtons","contentButtons":"contentButtons","htmlTagName":"htmlTagName","actualDensity":"actualDensity","actualItemBackgroundColor":"actualItemBackgroundColor","actualItemBorderColor":"actualItemBorderColor","actualItemBorderWidth":"actualItemBorderWidth","actualItemCornerRadius":"actualItemCornerRadius","actualItemDisabledBackgroundColor":"actualItemDisabledBackgroundColor","actualItemDisabledBorderColor":"actualItemDisabledBorderColor","actualItemDisabledTextColor":"actualItemDisabledTextColor","actualItemHoverBackgroundColor":"actualItemHoverBackgroundColor","actualItemHoverTextColor":"actualItemHoverTextColor","actualItemTextColor":"actualItemTextColor","actualSelectedItemBackgroundColor":"actualSelectedItemBackgroundColor","actualSelectedItemHoverBackgroundColor":"actualSelectedItemHoverBackgroundColor","actualSelectedItemHoverTextColor":"actualSelectedItemHoverTextColor","actualSelectedItemTextColor":"actualSelectedItemTextColor","baseTheme":"baseTheme","buttons":"buttons","density":"density","disabled":"disabled","displayType":"displayType","flatItemBackgroundColor":"flatItemBackgroundColor","flatItemBorderColor":"flatItemBorderColor","flatItemBorderWidth":"flatItemBorderWidth","flatItemCornerRadius":"flatItemCornerRadius","flatItemDisabledBackgroundColor":"flatItemDisabledBackgroundColor","flatItemDisabledBorderColor":"flatItemDisabledBorderColor","flatItemDisabledTextColor":"flatItemDisabledTextColor","flatItemHoverBackgroundColor":"flatItemHoverBackgroundColor","flatItemHoverTextColor":"flatItemHoverTextColor","flatItemTextColor":"flatItemTextColor","flatSelectedItemBackgroundColor":"flatSelectedItemBackgroundColor","flatSelectedItemHoverBackgroundColor":"flatSelectedItemHoverBackgroundColor","flatSelectedItemHoverTextColor":"flatSelectedItemHoverTextColor","flatSelectedItemTextColor":"flatSelectedItemTextColor","id":"id","isMultiSelect":"isMultiSelect","itemBackgroundColor":"itemBackgroundColor","itemBorderColor":"itemBorderColor","itemBorderWidth":"itemBorderWidth","itemCornerRadius":"itemCornerRadius","itemDisabledBackgroundColor":"itemDisabledBackgroundColor","itemDisabledBorderColor":"itemDisabledBorderColor","itemDisabledTextColor":"itemDisabledTextColor","itemHoverBackgroundColor":"itemHoverBackgroundColor","itemHoverTextColor":"itemHoverTextColor","itemTextColor":"itemTextColor","orientation":"orientation","outlinedItemBackgroundColor":"outlinedItemBackgroundColor","outlinedItemBorderColor":"outlinedItemBorderColor","outlinedItemBorderWidth":"outlinedItemBorderWidth","outlinedItemCornerRadius":"outlinedItemCornerRadius","outlinedItemDisabledBackgroundColor":"outlinedItemDisabledBackgroundColor","outlinedItemDisabledBorderColor":"outlinedItemDisabledBorderColor","outlinedItemDisabledTextColor":"outlinedItemDisabledTextColor","outlinedItemHoverBackgroundColor":"outlinedItemHoverBackgroundColor","outlinedItemHoverTextColor":"outlinedItemHoverTextColor","outlinedItemTextColor":"outlinedItemTextColor","outlinedSelectedItemBackgroundColor":"outlinedSelectedItemBackgroundColor","outlinedSelectedItemHoverBackgroundColor":"outlinedSelectedItemHoverBackgroundColor","outlinedSelectedItemHoverTextColor":"outlinedSelectedItemHoverTextColor","outlinedSelectedItemTextColor":"outlinedSelectedItemTextColor","selectedIndices":"selectedIndices","selectedItemBackgroundColor":"selectedItemBackgroundColor","selectedItemHoverBackgroundColor":"selectedItemHoverBackgroundColor","selectedItemHoverTextColor":"selectedItemHoverTextColor","selectedItemTextColor":"selectedItemTextColor","selectionChanged":"selectionChanged","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXCalendarComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXCalendarComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","backgroundColor":"backgroundColor","baseTheme":"baseTheme","currentDateBorderColor":"currentDateBorderColor","currentDateTextColor":"currentDateTextColor","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","focusDateBackgroundColor":"focusDateBackgroundColor","focusDateTextColor":"focusDateTextColor","height":"height","hoverBackgroundColor":"hoverBackgroundColor","maxDate":"maxDate","minDate":"minDate","selectedDateBackgroundColor":"selectedDateBackgroundColor","selectedDateTextColor":"selectedDateTextColor","selectedFocusDateBackgroundColor":"selectedFocusDateBackgroundColor","selectedValueChanged":"selectedValueChanged","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","value":"value","valueChange":"valueChange","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXCheckboxComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXCheckboxComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBorderWidth":"actualBorderWidth","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualCornerRadius":"actualCornerRadius","actualTickColor":"actualTickColor","actualTickStrokeWidth":"actualTickStrokeWidth","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","ariaLabel":"ariaLabel","ariaLabelledBy":"ariaLabelledBy","baseTheme":"baseTheme","borderWidth":"borderWidth","change":"change","checked":"checked","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","cornerRadius":"cornerRadius","disabled":"disabled","disableRipple":"disableRipple","disableTransitions":"disableTransitions","focused":"focused","id":"id","indeterminate":"indeterminate","inputId":"inputId","labelId":"labelId","labelPosition":"labelPosition","name":"name","required":"required","tabIndex":"tabIndex","tickColor":"tickColor","tickStrokeWidth":"tickStrokeWidth","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","value":"value","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXDatePickerComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXDatePickerComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","allowTextInput":"allowTextInput","baseTheme":"baseTheme","changing":"changing","dateFormat":"dateFormat","density":"density","firstDayOfWeek":"firstDayOfWeek","firstWeekOfYear":"firstWeekOfYear","formatString":"formatString","gotFocus":"gotFocus","height":"height","iconColor":"iconColor","isDisabled":"isDisabled","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","maxDate":"maxDate","minDate":"minDate","openAsChild":"openAsChild","openOnFocus":"openOnFocus","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","showClearButton":"showClearButton","showTodayButton":"showTodayButton","showWeekNumbers":"showWeekNumbers","textColor":"textColor","textStyle":"textStyle","today":"today","useTopLayer":"useTopLayer","value":"value","valueChange":"valueChange","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","select":"select","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXIconComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXIconComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualFill":"actualFill","actualStroke":"actualStroke","actualStrokeWidth":"actualStrokeWidth","actualTextColor":"actualTextColor","actualViewBoxHeight":"actualViewBoxHeight","actualViewBoxLeft":"actualViewBoxLeft","actualViewBoxTop":"actualViewBoxTop","actualViewBoxWidth":"actualViewBoxWidth","ariaLabel":"ariaLabel","baseTheme":"baseTheme","dataURL":"dataURL","disabled":"disabled","fill":"fill","fillColors":"fillColors","height":"height","hoverFill":"hoverFill","hoverStroke":"hoverStroke","hoverStrokeThickness":"hoverStrokeThickness","hoverTextColor":"hoverTextColor","id":"id","isHover":"isHover","opacity":"opacity","primaryFillColor":"primaryFillColor","primaryStrokeColor":"primaryStrokeColor","secondaryFillColor":"secondaryFillColor","secondaryStrokeColor":"secondaryStrokeColor","source":"source","stroke":"stroke","strokeColors":"strokeColors","strokeWidth":"strokeWidth","svg":"svg","svgPath":"svgPath","sVGPaths":"sVGPaths","tabIndex":"tabIndex","textColor":"textColor","textStyle":"textStyle","viewBoxHeight":"viewBoxHeight","viewBoxLeft":"viewBoxLeft","viewBoxTop":"viewBoxTop","viewBoxWidth":"viewBoxWidth","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXInputComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXInputComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualDensity":"actualDensity","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","ariaLabel":"ariaLabel","baseTheme":"baseTheme","change":"change","changing":"changing","compositionEnd":"compositionEnd","density":"density","disabled":"disabled","for":"for","hasValue":"hasValue","hoverTextColor":"hoverTextColor","id":"id","includeLiterals":"includeLiterals","inputType":"inputType","isHover":"isHover","keyDown":"keyDown","keyPress":"keyPress","keyUp":"keyUp","mask":"mask","name":"name","placeholder":"placeholder","promptChar":"promptChar","readonly":"readonly","selectionEnd":"selectionEnd","selectionStart":"selectionStart","showSpinner":"showSpinner","tabIndex":"tabIndex","textAlignment":"textAlignment","textColor":"textColor","textStyle":"textStyle","value":"value","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","blur":"blur","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","select":"select","setSelectionRange":"setSelectionRange","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXInputGroupComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXInputGroupComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualInputs":"actualInputs","contentInputs":"contentInputs","htmlTagName":"htmlTagName","actualBackgroundColor":"actualBackgroundColor","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualIsExpanded":"actualIsExpanded","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderTypeBackgroundColor":"borderTypeBackgroundColor","borderTypeBorderColor":"borderTypeBorderColor","borderTypeBorderWidth":"borderTypeBorderWidth","borderTypeContentPaddingBottom":"borderTypeContentPaddingBottom","borderTypeContentPaddingLeft":"borderTypeContentPaddingLeft","borderTypeContentPaddingRight":"borderTypeContentPaddingRight","borderTypeContentPaddingTop":"borderTypeContentPaddingTop","borderTypeCornerRadiusBottomLeft":"borderTypeCornerRadiusBottomLeft","borderTypeCornerRadiusBottomRight":"borderTypeCornerRadiusBottomRight","borderTypeCornerRadiusTopLeft":"borderTypeCornerRadiusTopLeft","borderTypeCornerRadiusTopRight":"borderTypeCornerRadiusTopRight","borderTypeFocusBorderColor":"borderTypeFocusBorderColor","borderTypeFocusBorderWidth":"borderTypeFocusBorderWidth","borderTypeFocusUnderlineColor":"borderTypeFocusUnderlineColor","borderTypeFocusUnderlineOpacity":"borderTypeFocusUnderlineOpacity","borderTypeFocusUnderlineRippleOpacity":"borderTypeFocusUnderlineRippleOpacity","borderTypeHoverUnderlineColor":"borderTypeHoverUnderlineColor","borderTypeHoverUnderlineOpacity":"borderTypeHoverUnderlineOpacity","borderTypeHoverUnderlineWidth":"borderTypeHoverUnderlineWidth","borderTypeUnderlineColor":"borderTypeUnderlineColor","borderTypeUnderlineOpacity":"borderTypeUnderlineOpacity","borderTypeUnderlineRippleColor":"borderTypeUnderlineRippleColor","borderTypeUnderlineRippleOpacity":"borderTypeUnderlineRippleOpacity","borderTypeUnderlineRippleWidth":"borderTypeUnderlineRippleWidth","borderTypeUnderlineWidth":"borderTypeUnderlineWidth","borderWidth":"borderWidth","boxTypeBackgroundColor":"boxTypeBackgroundColor","boxTypeBorderColor":"boxTypeBorderColor","boxTypeBorderWidth":"boxTypeBorderWidth","boxTypeContentPaddingBottom":"boxTypeContentPaddingBottom","boxTypeContentPaddingLeft":"boxTypeContentPaddingLeft","boxTypeContentPaddingRight":"boxTypeContentPaddingRight","boxTypeContentPaddingTop":"boxTypeContentPaddingTop","boxTypeCornerRadiusBottomLeft":"boxTypeCornerRadiusBottomLeft","boxTypeCornerRadiusBottomRight":"boxTypeCornerRadiusBottomRight","boxTypeCornerRadiusTopLeft":"boxTypeCornerRadiusTopLeft","boxTypeCornerRadiusTopRight":"boxTypeCornerRadiusTopRight","boxTypeFocusBorderColor":"boxTypeFocusBorderColor","boxTypeFocusBorderWidth":"boxTypeFocusBorderWidth","boxTypeFocusUnderlineColor":"boxTypeFocusUnderlineColor","boxTypeFocusUnderlineOpacity":"boxTypeFocusUnderlineOpacity","boxTypeFocusUnderlineRippleOpacity":"boxTypeFocusUnderlineRippleOpacity","boxTypeHoverUnderlineColor":"boxTypeHoverUnderlineColor","boxTypeHoverUnderlineOpacity":"boxTypeHoverUnderlineOpacity","boxTypeHoverUnderlineWidth":"boxTypeHoverUnderlineWidth","boxTypeUnderlineColor":"boxTypeUnderlineColor","boxTypeUnderlineOpacity":"boxTypeUnderlineOpacity","boxTypeUnderlineRippleColor":"boxTypeUnderlineRippleColor","boxTypeUnderlineRippleOpacity":"boxTypeUnderlineRippleOpacity","boxTypeUnderlineRippleWidth":"boxTypeUnderlineRippleWidth","boxTypeUnderlineWidth":"boxTypeUnderlineWidth","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","density":"density","disabled":"disabled","displayType":"displayType","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","id":"id","inputHasValue":"inputHasValue","inputs":"inputs","isExpanded":"isExpanded","isFocused":"isFocused","isHovered":"isHovered","lineTypeBackgroundColor":"lineTypeBackgroundColor","lineTypeBorderColor":"lineTypeBorderColor","lineTypeBorderWidth":"lineTypeBorderWidth","lineTypeContentPaddingBottom":"lineTypeContentPaddingBottom","lineTypeContentPaddingLeft":"lineTypeContentPaddingLeft","lineTypeContentPaddingRight":"lineTypeContentPaddingRight","lineTypeContentPaddingTop":"lineTypeContentPaddingTop","lineTypeCornerRadiusBottomLeft":"lineTypeCornerRadiusBottomLeft","lineTypeCornerRadiusBottomRight":"lineTypeCornerRadiusBottomRight","lineTypeCornerRadiusTopLeft":"lineTypeCornerRadiusTopLeft","lineTypeCornerRadiusTopRight":"lineTypeCornerRadiusTopRight","lineTypeFocusBorderColor":"lineTypeFocusBorderColor","lineTypeFocusBorderWidth":"lineTypeFocusBorderWidth","lineTypeFocusUnderlineColor":"lineTypeFocusUnderlineColor","lineTypeFocusUnderlineOpacity":"lineTypeFocusUnderlineOpacity","lineTypeFocusUnderlineRippleOpacity":"lineTypeFocusUnderlineRippleOpacity","lineTypeHoverUnderlineColor":"lineTypeHoverUnderlineColor","lineTypeHoverUnderlineOpacity":"lineTypeHoverUnderlineOpacity","lineTypeHoverUnderlineWidth":"lineTypeHoverUnderlineWidth","lineTypeUnderlineColor":"lineTypeUnderlineColor","lineTypeUnderlineOpacity":"lineTypeUnderlineOpacity","lineTypeUnderlineRippleColor":"lineTypeUnderlineRippleColor","lineTypeUnderlineRippleOpacity":"lineTypeUnderlineRippleOpacity","lineTypeUnderlineRippleWidth":"lineTypeUnderlineRippleWidth","lineTypeUnderlineWidth":"lineTypeUnderlineWidth","searchTypeBackgroundColor":"searchTypeBackgroundColor","searchTypeBorderColor":"searchTypeBorderColor","searchTypeBorderWidth":"searchTypeBorderWidth","searchTypeContentPaddingBottom":"searchTypeContentPaddingBottom","searchTypeContentPaddingLeft":"searchTypeContentPaddingLeft","searchTypeContentPaddingRight":"searchTypeContentPaddingRight","searchTypeContentPaddingTop":"searchTypeContentPaddingTop","searchTypeCornerRadiusBottomLeft":"searchTypeCornerRadiusBottomLeft","searchTypeCornerRadiusBottomRight":"searchTypeCornerRadiusBottomRight","searchTypeCornerRadiusTopLeft":"searchTypeCornerRadiusTopLeft","searchTypeCornerRadiusTopRight":"searchTypeCornerRadiusTopRight","searchTypeFocusBorderColor":"searchTypeFocusBorderColor","searchTypeFocusBorderWidth":"searchTypeFocusBorderWidth","searchTypeFocusUnderlineColor":"searchTypeFocusUnderlineColor","searchTypeFocusUnderlineOpacity":"searchTypeFocusUnderlineOpacity","searchTypeFocusUnderlineRippleOpacity":"searchTypeFocusUnderlineRippleOpacity","searchTypeHoverUnderlineColor":"searchTypeHoverUnderlineColor","searchTypeHoverUnderlineOpacity":"searchTypeHoverUnderlineOpacity","searchTypeHoverUnderlineWidth":"searchTypeHoverUnderlineWidth","searchTypeUnderlineColor":"searchTypeUnderlineColor","searchTypeUnderlineOpacity":"searchTypeUnderlineOpacity","searchTypeUnderlineRippleColor":"searchTypeUnderlineRippleColor","searchTypeUnderlineRippleOpacity":"searchTypeUnderlineRippleOpacity","searchTypeUnderlineRippleWidth":"searchTypeUnderlineRippleWidth","searchTypeUnderlineWidth":"searchTypeUnderlineWidth","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","ensureActualContentPadding":"ensureActualContentPadding","ensureActualCornerRadius":"ensureActualCornerRadius","ensureBorderTypeContentPadding":"ensureBorderTypeContentPadding","ensureBorderTypeCornerRadius":"ensureBorderTypeCornerRadius","ensureBoxTypeContentPadding":"ensureBoxTypeContentPadding","ensureBoxTypeCornerRadius":"ensureBoxTypeCornerRadius","ensureContentPadding":"ensureContentPadding","ensureCornerRadius":"ensureCornerRadius","ensureLineTypeContentPadding":"ensureLineTypeContentPadding","ensureLineTypeCornerRadius":"ensureLineTypeCornerRadius","ensureSearchTypeContentPadding":"ensureSearchTypeContentPadding","ensureSearchTypeCornerRadius":"ensureSearchTypeCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXInputGroupInputCollection":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXInputGroupInputCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcXInputGroupItemComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXInputGroupItemComponent","k":"class","s":"classes","m":{"constructor":"constructor","name":"name","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcXLabelComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXLabelComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualDensity":"actualDensity","actualHighlightTextColor":"actualHighlightTextColor","actualHoverHighlightTextColor":"actualHoverHighlightTextColor","actualHoverTextColor":"actualHoverTextColor","actualTextColor":"actualTextColor","alignItems":"alignItems","alignSelf":"alignSelf","ariaLabel":"ariaLabel","baseTheme":"baseTheme","density":"density","disabled":"disabled","display":"display","flexDirection":"flexDirection","flexGrow":"flexGrow","for":"for","highlightTextColor":"highlightTextColor","hoverHighlightTextColor":"hoverHighlightTextColor","hoverTextColor":"hoverTextColor","id":"id","isHover":"isHover","name":"name","tabIndex":"tabIndex","text":"text","textColor":"textColor","textStyle":"textStyle","value":"value","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXPrefixComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXPrefixComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","ariaLabel":"ariaLabel","disabled":"disabled","id":"id","isHover":"isHover","name":"name","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXRippleComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXRippleComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualHoverColor":"actualHoverColor","actualRippleColor":"actualRippleColor","eventSource":"eventSource","height":"height","hoverColor":"hoverColor","isCentered":"isCentered","isDisabled":"isDisabled","isHoverEnabled":"isHoverEnabled","left":"left","position":"position","rippleColor":"rippleColor","rippleDuration":"rippleDuration","top":"top","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcXSuffixComponent":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/IgcXSuffixComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","ariaLabel":"ariaLabel","disabled":"disabled","id":"id","isHover":"isHover","name":"name","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","onAttachedToUI":"onAttachedToUI","onDetachedFromUI":"onDetachedFromUI","updateStyle":"updateStyle","_createFromInternal":"_createFromInternal","register":"register"}}],"XCalendarLocaleEn":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/classes/XCalendarLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","April_Full":"April_Full","April_Short":"April_Short","August_Full":"August_Full","August_Short":"August_Short","December_Full":"December_Full","December_Short":"December_Short","February_Full":"February_Full","February_Short":"February_Short","Friday_Full":"Friday_Full","Friday_Short":"Friday_Short","Friday_Single":"Friday_Single","January_Full":"January_Full","January_Short":"January_Short","July_Full":"July_Full","July_Short":"July_Short","June_Full":"June_Full","June_Short":"June_Short","March_Full":"March_Full","March_Short":"March_Short","May_Full":"May_Full","May_Short":"May_Short","Monday_Full":"Monday_Full","Monday_Short":"Monday_Short","Monday_Single":"Monday_Single","November_Full":"November_Full","November_Short":"November_Short","October_Full":"October_Full","October_Short":"October_Short","Saturday_Full":"Saturday_Full","Saturday_Short":"Saturday_Short","Saturday_Single":"Saturday_Single","September_Full":"September_Full","September_Short":"September_Short","Sunday_Full":"Sunday_Full","Sunday_Short":"Sunday_Short","Sunday_Single":"Sunday_Single","Thursday_Full":"Thursday_Full","Thursday_Short":"Thursday_Short","Thursday_Single":"Thursday_Single","Today":"Today","Tuesday_Full":"Tuesday_Full","Tuesday_Short":"Tuesday_Short","Tuesday_Single":"Tuesday_Single","Wednesday_Full":"Wednesday_Full","Wednesday_Short":"Wednesday_Short","Wednesday_Single":"Wednesday_Single"}}],"ButtonGroupOrientation":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/ButtonGroupOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","Vertical":"Vertical"}}],"DateFormats":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/DateFormats","k":"enum","s":"enums","m":{"DateLong":"DateLong","DateShort":"DateShort"}}],"FirstWeek":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/FirstWeek","k":"enum","s":"enums","m":{"FirstDay":"FirstDay","FirstFourDayWeek":"FirstFourDayWeek","FirstFullWeek":"FirstFullWeek"}}],"InputGroupDisplayType":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/InputGroupDisplayType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line","Search":"Search"}}],"InputShiftType":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/InputShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"LabelShiftType":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/LabelShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"MultiSliderOrientation":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/MultiSliderOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","TwoDimensional":"TwoDimensional","Vertical":"Vertical"}}],"MultiSliderThumbRangePosition":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/MultiSliderThumbRangePosition","k":"enum","s":"enums","m":{"PinnedHigher":"PinnedHigher","PinnedLower":"PinnedLower"}}],"PrefixShiftType":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/PrefixShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"SuffixShiftType":[{"p":"igniteui-webcomponents-inputs","u":"/api/webcomponents/igniteui-webcomponents-inputs/7.0.0/enums/SuffixShiftType","k":"enum","s":"enums","m":{"Border":"Border","Box":"Box","Line":"Line"}}],"IgcComboEditorComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcComboEditorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualBackgroundColor":"actualBackgroundColor","actualBaseTheme":"actualBaseTheme","actualBorderColor":"actualBorderColor","actualBorderWidth":"actualBorderWidth","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualCornerRadiusBottomLeft":"actualCornerRadiusBottomLeft","actualCornerRadiusBottomRight":"actualCornerRadiusBottomRight","actualCornerRadiusTopLeft":"actualCornerRadiusTopLeft","actualCornerRadiusTopRight":"actualCornerRadiusTopRight","actualDataSource":"actualDataSource","actualDensity":"actualDensity","actualFocusBorderColor":"actualFocusBorderColor","actualFocusBorderWidth":"actualFocusBorderWidth","actualFocusUnderlineColor":"actualFocusUnderlineColor","actualFocusUnderlineOpacity":"actualFocusUnderlineOpacity","actualFocusUnderlineRippleOpacity":"actualFocusUnderlineRippleOpacity","actualHoverUnderlineColor":"actualHoverUnderlineColor","actualHoverUnderlineOpacity":"actualHoverUnderlineOpacity","actualHoverUnderlineWidth":"actualHoverUnderlineWidth","actualLabelTextColor":"actualLabelTextColor","actualLabelVisible":"actualLabelVisible","actualNoMatchesFoundLabel":"actualNoMatchesFoundLabel","actualNoMatchesFoundLabelBackgroundColor":"actualNoMatchesFoundLabelBackgroundColor","actualNoMatchesFoundLabelTextColor":"actualNoMatchesFoundLabelTextColor","actualTextColor":"actualTextColor","actualUnderlineColor":"actualUnderlineColor","actualUnderlineOpacity":"actualUnderlineOpacity","actualUnderlineRippleColor":"actualUnderlineRippleColor","actualUnderlineRippleOpacity":"actualUnderlineRippleOpacity","actualUnderlineRippleWidth":"actualUnderlineRippleWidth","actualUnderlineWidth":"actualUnderlineWidth","actualValueField":"actualValueField","allowFilter":"allowFilter","backgroundColor":"backgroundColor","baseTheme":"baseTheme","borderColor":"borderColor","borderWidth":"borderWidth","change":"change","changing":"changing","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","cornerRadiusBottomLeft":"cornerRadiusBottomLeft","cornerRadiusBottomRight":"cornerRadiusBottomRight","cornerRadiusTopLeft":"cornerRadiusTopLeft","cornerRadiusTopRight":"cornerRadiusTopRight","dataSource":"dataSource","dataSourceDesiredProperties":"dataSourceDesiredProperties","density":"density","dropDownButtonVisible":"dropDownButtonVisible","fields":"fields","focusBorderColor":"focusBorderColor","focusBorderWidth":"focusBorderWidth","focusUnderlineColor":"focusUnderlineColor","focusUnderlineOpacity":"focusUnderlineOpacity","focusUnderlineRippleOpacity":"focusUnderlineRippleOpacity","gotFocus":"gotFocus","height":"height","hoverUnderlineColor":"hoverUnderlineColor","hoverUnderlineOpacity":"hoverUnderlineOpacity","hoverUnderlineWidth":"hoverUnderlineWidth","i":"i","isFixed":"isFixed","keyDown":"keyDown","label":"label","labelTextColor":"labelTextColor","labelTextStyle":"labelTextStyle","lostFocus":"lostFocus","noMatchesFoundLabel":"noMatchesFoundLabel","noMatchesFoundLabelBackgroundColor":"noMatchesFoundLabelBackgroundColor","noMatchesFoundLabelTextColor":"noMatchesFoundLabelTextColor","noMatchesFoundLabelTextStyle":"noMatchesFoundLabelTextStyle","openAsChild":"openAsChild","placeholder":"placeholder","selectedValueChanged":"selectedValueChanged","text":"text","textChange":"textChange","textColor":"textColor","textField":"textField","textStyle":"textStyle","textValueChanged":"textValueChanged","underlineColor":"underlineColor","underlineOpacity":"underlineOpacity","underlineRippleColor":"underlineRippleColor","underlineRippleOpacity":"underlineRippleOpacity","underlineRippleWidth":"underlineRippleWidth","underlineWidth":"underlineWidth","useTopLayer":"useTopLayer","value":"value","valueChange":"valueChange","valueField":"valueField","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","closeUp":"closeUp","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","dropDown":"dropDown","enableDisableFiltering":"enableDisableFiltering","ensureActualContentPadding":"ensureActualContentPadding","ensureActualCornerRadius":"ensureActualCornerRadius","ensureContentPadding":"ensureContentPadding","ensureCornerRadius":"ensureCornerRadius","exportSerializedVisualModel":"exportSerializedVisualModel","exportVisualModel":"exportVisualModel","findByName":"findByName","select":"select","selectGridRow":"selectGridRow","updateStyle":"updateStyle","verifyDisplayText":"verifyDisplayText","register":"register"}}],"IgcComboEditorGotFocusEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcComboEditorGotFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcComboEditorLostFocusEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcComboEditorLostFocusEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcComboEditorTextChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcComboEditorTextChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newText":"newText","oldText":"oldText"}}],"IgcComboEditorValueChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcComboEditorValueChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcLayoutPrimaryKeyValue":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcLayoutPrimaryKeyValue","k":"class","s":"classes","m":{"constructor":"constructor","key":"key","value":"value","equals":"equals","findByName":"findByName"}}],"IgcLayoutSelectedItemsCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcLayoutSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcLayoutSelectedKeysCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcLayoutSelectedKeysCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcListPanelActiveRowChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelActiveRowChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newActiveRow":"newActiveRow","oldActiveRow":"oldActiveRow"}}],"IgcListPanelComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","activationBorder":"activationBorder","activationBorderBottomWidth":"activationBorderBottomWidth","activationBorderLeftWidth":"activationBorderLeftWidth","activationBorderRightWidth":"activationBorderRightWidth","activationBorderTopWidth":"activationBorderTopWidth","activationMode":"activationMode","activeRow":"activeRow","activeRowChanged":"activeRowChanged","actualPrimaryKey":"actualPrimaryKey","actualPrimaryKeyChange":"actualPrimaryKeyChange","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","contentRefreshed":"contentRefreshed","dataSource":"dataSource","hasUnevenSizes":"hasUnevenSizes","height":"height","i":"i","isActiveRowStyleEnabled":"isActiveRowStyleEnabled","isCustomRowHeightEnabled":"isCustomRowHeightEnabled","itemClicked":"itemClicked","itemHeightRequested":"itemHeightRequested","itemRebind":"itemRebind","itemRecycled":"itemRecycled","itemSpacing":"itemSpacing","itemWidthRequested":"itemWidthRequested","normalBackground":"normalBackground","notifyOnAllSelectionChanges":"notifyOnAllSelectionChanges","orientation":"orientation","primaryKey":"primaryKey","rowHeight":"rowHeight","rowUpdating":"rowUpdating","schemaIncludedProperties":"schemaIncludedProperties","scrollbarBackground":"scrollbarBackground","scrollbarStyle":"scrollbarStyle","selectedBackground":"selectedBackground","selectedItems":"selectedItems","selectedItemsChanged":"selectedItemsChanged","selectedKeys":"selectedKeys","selectedKeysChanged":"selectedKeysChanged","selectionBehavior":"selectionBehavior","selectionChanged":"selectionChanged","selectionMode":"selectionMode","textColor":"textColor","width":"width","observedAttributes":"observedAttributes","_scrollTo":"_scrollTo","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","createLocalDataSource":"createLocalDataSource","dataIndexOfItem":"dataIndexOfItem","dataIndexOfPrimaryKey":"dataIndexOfPrimaryKey","deselectAllRows":"deselectAllRows","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","getFirstVisibleIndex":"getFirstVisibleIndex","getItemKey":"getItemKey","getLastVisibleIndex":"getLastVisibleIndex","getRowKey":"getRowKey","invalidateVisibleItems":"invalidateVisibleItems","moveViewportTo":"moveViewportTo","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","notifySizeChanged":"notifySizeChanged","onContentSizeChanged":"onContentSizeChanged","onScroll":"onScroll","onScrollStart":"onScrollStart","onScrollStop":"onScrollStop","scrollToLastRowByIndex":"scrollToLastRowByIndex","scrollToRowByIndex":"scrollToRowByIndex","selectAllRows":"selectAllRows","setScrollbarColor":"setScrollbarColor","setScrollbarStyle":"setScrollbarStyle","updateStyle":"updateStyle","register":"register"}}],"IgcListPanelContentRebindEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelContentRebindEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","rowObject":"rowObject"}}],"IgcListPanelContentRecycledEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelContentRecycledEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","rowObject":"rowObject"}}],"IgcListPanelContentRefreshedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcListPanelItemEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelItemEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","isDoubleClick":"isDoubleClick","isLeftButton":"isLeftButton","itemInfo":"itemInfo","listPanel":"listPanel"}}],"IgcListPanelItemModel":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelItemModel","k":"class","s":"classes","m":{"constructor":"constructor","dataRow":"dataRow","isActivated":"isActivated","isActivationSupported":"isActivationSupported","isModelDirty":"isModelDirty","isSelected":"isSelected","left":"left","rowHeight":"rowHeight","rowObject":"rowObject","top":"top","findByName":"findByName"}}],"IgcListPanelPrimaryKeyValue":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelPrimaryKeyValue","k":"class","s":"classes","m":{"constructor":"constructor","key":"key","value":"value","equals":"equals","findByName":"findByName"}}],"IgcListPanelSelectedItemsChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelSelectedItemsChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","addedItems":"addedItems","currentItems":"currentItems","removedItems":"removedItems"}}],"IgcListPanelSelectedItemsCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelSelectedItemsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcListPanelSelectedKeysChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelSelectedKeysChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","addedKeys":"addedKeys","currentKeys":"currentKeys","removedKeys":"removedKeys"}}],"IgcListPanelSelectedKeysCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelSelectedKeysCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcListPanelSelectionChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcListPanelTemplateHeightRequestedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelTemplateHeightRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dataItem":"dataItem","dataRow":"dataRow","height":"height"}}],"IgcListPanelTemplateItemUpdatingEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelTemplateItemUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","availableWidth":"availableWidth","content":"content","model":"model"}}],"IgcListPanelTemplateWidthRequestedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcListPanelTemplateWidthRequestedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","dataItem":"dataItem","dataRow":"dataRow","width":"width"}}],"IgcOnCollapsedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcOnCollapsedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcOnExpandedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcOnExpandedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcPropertyEditorDataSource":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorDataSource","k":"class","s":"classes","m":{"constructor":"constructor","context":"context","descriptionType":"descriptionType","findByName":"findByName"}}],"IgcPropertyEditorDescriptionObject":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorDescriptionObject","k":"class","s":"classes","m":{"constructor":"constructor","descriptionType":"descriptionType","properties":"properties","findByName":"findByName"}}],"IgcPropertyEditorDescriptionObjectCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorDescriptionObjectCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcPropertyEditorPanelComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualProperties":"actualProperties","contentProperties":"contentProperties","htmlTagName":"htmlTagName","actualDataSource":"actualDataSource","actualDescriptionContext":"actualDescriptionContext","actualRowHeight":"actualRowHeight","backgroundColor":"backgroundColor","cellTextStyle":"cellTextStyle","componentRenderer":"componentRenderer","descriptionContext":"descriptionContext","descriptionType":"descriptionType","height":"height","i":"i","isHorizontal":"isHorizontal","isIndirectModeEnabled":"isIndirectModeEnabled","isWrappingEnabled":"isWrappingEnabled","properties":"properties","rowHeight":"rowHeight","target":"target","textColor":"textColor","updateMode":"updateMode","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","findByName":"findByName","notifyClearItems":"notifyClearItems","notifyInsertItem":"notifyInsertItem","notifyRemoveItem":"notifyRemoveItem","notifySetItem":"notifySetItem","updateStyle":"updateStyle","register":"register"}}],"IgcPropertyEditorPropertyDescriptionButtonClickEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPropertyDescriptionButtonClickEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcPropertyEditorPropertyDescriptionChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPropertyDescriptionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue"}}],"IgcPropertyEditorPropertyDescriptionCoercingValueEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPropertyDescriptionCoercingValueEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","complexValue":"complexValue","complexValues":"complexValues","value":"value"}}],"IgcPropertyEditorPropertyDescriptionCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPropertyDescriptionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcPropertyEditorPropertyDescriptionComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPropertyDescriptionComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","buttonClicked":"buttonClicked","changed":"changed","coercedComplexValue":"coercedComplexValue","coercedComplexValues":"coercedComplexValues","coercedPrimitiveValue":"coercedPrimitiveValue","coercedValueType":"coercedValueType","coercingValue":"coercingValue","complexValue":"complexValue","complexValues":"complexValues","dropDownNames":"dropDownNames","dropDownValues":"dropDownValues","editorWidth":"editorWidth","elementDescriptionType":"elementDescriptionType","label":"label","labelWidth":"labelWidth","max":"max","min":"min","name":"name","primitiveValue":"primitiveValue","properties":"properties","propertyDescriptionType":"propertyDescriptionType","propertyPath":"propertyPath","shouldOverrideDefaultEditor":"shouldOverrideDefaultEditor","step":"step","subtitle":"subtitle","targetPropertyUpdating":"targetPropertyUpdating","useCoercedValue":"useCoercedValue","valueType":"valueType","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","propertyPath":"propertyPath","target":"target","value":"value"}}],"IgcToolActionButtonComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionButtonComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionButtonPairComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionButtonPairComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualLeftIconFill":"actualLeftIconFill","actualLeftIconStroke":"actualLeftIconStroke","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualRightIconFill":"actualRightIconFill","actualRightIconStroke":"actualRightIconStroke","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","cornerRadius":"cornerRadius","density":"density","disabledTextColor":"disabledTextColor","displayType":"displayType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","isToggleDisabled":"isToggleDisabled","leftCommandArgument":"leftCommandArgument","leftIconCollectionName":"leftIconCollectionName","leftIconFill":"leftIconFill","leftIconFillColors":"leftIconFillColors","leftIconName":"leftIconName","leftIconStroke":"leftIconStroke","leftIconStrokeColors":"leftIconStrokeColors","leftIconStrokeWidth":"leftIconStrokeWidth","leftIconViewBoxHeight":"leftIconViewBoxHeight","leftIconViewBoxLeft":"leftIconViewBoxLeft","leftIconViewBoxTop":"leftIconViewBoxTop","leftIconViewBoxWidth":"leftIconViewBoxWidth","leftIsDisabled":"leftIsDisabled","leftIsSelected":"leftIsSelected","leftTitle":"leftTitle","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","rightCommandArgument":"rightCommandArgument","rightIconCollectionName":"rightIconCollectionName","rightIconFill":"rightIconFill","rightIconFillColors":"rightIconFillColors","rightIconName":"rightIconName","rightIconStroke":"rightIconStroke","rightIconStrokeColors":"rightIconStrokeColors","rightIconStrokeWidth":"rightIconStrokeWidth","rightIconViewBoxHeight":"rightIconViewBoxHeight","rightIconViewBoxLeft":"rightIconViewBoxLeft","rightIconViewBoxTop":"rightIconViewBoxTop","rightIconViewBoxWidth":"rightIconViewBoxWidth","rightIsDisabled":"rightIsDisabled","rightIsSelected":"rightIsSelected","rightTitle":"rightTitle","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionCheckboxComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionCheckboxComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionCheckboxListComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionCheckboxListComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","dataMemberPath":"dataMemberPath","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","indexType":"indexType","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","primaryKey":"primaryKey","selectedKeys":"selectedKeys","selectedMemberPath":"selectedMemberPath","showSelectAll":"showSelectAll","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolActionColorEditorComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionColorEditorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionComboComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionComboComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","displayMemberPath":"displayMemberPath","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedValues":"selectedValues","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","valueMemberPath":"valueMemberPath","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionComponent","k":"class","s":"classes","m":{"constructor":"constructor","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal"}}],"IgcToolActionEventDetail":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionEventDetail","k":"class","s":"classes","m":{"constructor":"constructor","actionId":"actionId","actionType":"actionType","boolValue":"boolValue","dateTimeValue":"dateTimeValue","isModified":"isModified","numberValue":"numberValue","stringValue":"stringValue","untypedValue":"untypedValue","findByName":"findByName"}}],"IgcToolActionEventDetailCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionEventDetailCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolActionFieldSelectorAggregation":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionFieldSelectorAggregation","k":"class","s":"classes","m":{"constructor":"constructor","label":"label","name":"name","operand":"operand","findByName":"findByName"}}],"IgcToolActionFieldSelectorAggregationsCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionFieldSelectorAggregationsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolActionFieldSelectorComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionFieldSelectorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","aggregations":"aggregations","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","dataSource":"dataSource","density":"density","disabledTextColor":"disabledTextColor","fieldType":"fieldType","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","legendTarget":"legendTarget","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","selectedAggregations":"selectedAggregations","singleSelection":"singleSelection","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","updateDataSource":"updateDataSource","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionFieldSelectorSelectedAggregation":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionFieldSelectorSelectedAggregation","k":"class","s":"classes","m":{"constructor":"constructor","aggregationName":"aggregationName","aggregationOperand":"aggregationOperand","field":"field","findByName":"findByName"}}],"IgcToolActionFieldSelectorSelectedAggregationsCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionFieldSelectorSelectedAggregationsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolActionGroupHeaderComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionGroupHeaderComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualBackIconColor":"actualBackIconColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","backIconColor":"backIconColor","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionIconButtonComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionIconButtonComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionIconMenuComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionIconMenuComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualArrowStroke":"actualArrowStroke","actualBackground":"actualBackground","actualContentPaddingBottom":"actualContentPaddingBottom","actualContentPaddingLeft":"actualContentPaddingLeft","actualContentPaddingRight":"actualContentPaddingRight","actualContentPaddingTop":"actualContentPaddingTop","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualTooltipDelay":"actualTooltipDelay","afterId":"afterId","arrowStroke":"arrowStroke","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contentPaddingBottom":"contentPaddingBottom","contentPaddingLeft":"contentPaddingLeft","contentPaddingRight":"contentPaddingRight","contentPaddingTop":"contentPaddingTop","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","popupOpening":"popupOpening","showArrowIcon":"showArrowIcon","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","tooltipDelay":"tooltipDelay","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionLabelComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionLabelComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionNumberInputComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionNumberInputComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionPerformedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionPerformedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","detail":"detail","detailCollection":"detailCollection","isAggregate":"isAggregate"}}],"IgcToolActionPopupOpeningEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionPopupOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cancel":"cancel","sourceAction":"sourceAction"}}],"IgcToolActionRadioComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionRadioComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","afterId":"afterId","background":"background","beforeId":"beforeId","channel":"channel","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isChecked":"isChecked","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isManual":"isManual","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionSeparatorComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionSeparatorComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isGroupHeaderSeparator":"isGroupHeaderSeparator","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","size":"size","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionSubPanelComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionSubPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","itemSpacing":"itemSpacing","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolActionTextInputComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolActionTextInputComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actionId":"actionId","actions":"actions","actualActions":"actualActions","actualBackground":"actualBackground","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackground":"actualHoverBackground","actualIconFill":"actualIconFill","actualIconHeight":"actualIconHeight","actualIconStroke":"actualIconStroke","actualIconWidth":"actualIconWidth","actualPaddingBottom":"actualPaddingBottom","actualPaddingLeft":"actualPaddingLeft","actualPaddingRight":"actualPaddingRight","actualPaddingTop":"actualPaddingTop","actualSubtitleTextColor":"actualSubtitleTextColor","actualSubtitleTextStyle":"actualSubtitleTextStyle","actualTextColor":"actualTextColor","actualTextStyle":"actualTextStyle","afterId":"afterId","background":"background","beforeId":"beforeId","closeOnExecute":"closeOnExecute","commandArgument":"commandArgument","commandArgumentValue":"commandArgumentValue","commandId":"commandId","contentActions":"contentActions","contextBindings":"contextBindings","density":"density","disabledTextColor":"disabledTextColor","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackground":"hoverBackground","iconCollectionName":"iconCollectionName","iconFill":"iconFill","iconFillColors":"iconFillColors","iconHeight":"iconHeight","iconName":"iconName","iconStroke":"iconStroke","iconStrokeColors":"iconStrokeColors","iconStrokeWidth":"iconStrokeWidth","iconViewBoxHeight":"iconViewBoxHeight","iconViewBoxLeft":"iconViewBoxLeft","iconViewBoxTop":"iconViewBoxTop","iconViewBoxWidth":"iconViewBoxWidth","iconWidth":"iconWidth","isDisabled":"isDisabled","isHighlighted":"isHighlighted","isOpen":"isOpen","name":"name","onCommand":"onCommand","overlayId":"overlayId","paddingBottom":"paddingBottom","paddingLeft":"paddingLeft","paddingRight":"paddingRight","paddingTop":"paddingTop","parentId":"parentId","performed":"performed","subPanelRowHeight":"subPanelRowHeight","subtitle":"subtitle","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","textStyle":"textStyle","title":"title","titleHorizontalAlignment":"titleHorizontalAlignment","value":"value","visibility":"visibility","width":"width","observedAttributes":"observedAttributes","attributeChangedCallback":"attributeChangedCallback","closeSubmenu":"closeSubmenu","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","openSubMenu":"openSubMenu","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcToolbarComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolbarComponent","k":"class","s":"classes","m":{"constructor":"constructor","combinedActions":"combinedActions","contentActions":"contentActions","htmlTagName":"htmlTagName","actions":"actions","actualActions":"actualActions","autoGeneratedActions":"autoGeneratedActions","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","i":"i","iconFill":"iconFill","iconStroke":"iconStroke","isOpen":"isOpen","menuArrowStroke":"menuArrowStroke","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subMenuClosing":"subMenuClosing","subMenuOpening":"subMenuOpening","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","target":"target","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","closeSubmenus":"closeSubmenus","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushRefresh":"flushRefresh","getBoolContextItem":"getBoolContextItem","getBrushCollectionContextItem":"getBrushCollectionContextItem","getBrushContextItem":"getBrushContextItem","getColorContextItem":"getColorContextItem","getDataContextItem":"getDataContextItem","getDataURLFromCache":"getDataURLFromCache","getDesiredSize":"getDesiredSize","getDoubleContextItem":"getDoubleContextItem","getExternalDataContextItem":"getExternalDataContextItem","getExternalDoubleContextItem":"getExternalDoubleContextItem","getExternalIntContextItem":"getExternalIntContextItem","getIconFromCache":"getIconFromCache","getIconSource":"getIconSource","getIntContextItem":"getIntContextItem","getMultiPathSVGFromCache":"getMultiPathSVGFromCache","getStringContextItem":"getStringContextItem","onCommandStateChanged":"onCommandStateChanged","registerIconFromDataURL":"registerIconFromDataURL","registerIconFromText":"registerIconFromText","registerIconSource":"registerIconSource","registerMultiPathSVG":"registerMultiPathSVG","setBoolContextItem":"setBoolContextItem","setBrushCollectionContextItem":"setBrushCollectionContextItem","setBrushContextItem":"setBrushContextItem","setColorContextItem":"setColorContextItem","setDataContextItem":"setDataContextItem","setDoubleContextItem":"setDoubleContextItem","setExternalDataContextItem":"setExternalDataContextItem","setExternalDoubleContextItem":"setExternalDoubleContextItem","setExternalIntContextItem":"setExternalIntContextItem","setIntContextItem":"setIntContextItem","setStringContextItem":"setStringContextItem","updateStyle":"updateStyle","register":"register"}}],"IgcToolbarSubMenuClosingEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolbarSubMenuClosingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolbarSubMenuOpeningEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolbarSubMenuOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolCommandEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolCommandEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","closeOnExecute":"closeOnExecute","command":"command"}}],"IgcToolContextBinding":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolContextBinding","k":"class","s":"classes","m":{"constructor":"constructor","bindingMode":"bindingMode","contextKey":"contextKey","propertyName":"propertyName","propertyUpdated":"propertyUpdated","findByName":"findByName"}}],"IgcToolContextBindingCollection":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolContextBindingCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolPanelComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualActions":"actualActions","contentActions":"contentActions","htmlTagName":"htmlTagName","actions":"actions","actualBackgroundColor":"actualBackgroundColor","actualCheckedBackgroundColor":"actualCheckedBackgroundColor","actualCheckedBorderColor":"actualCheckedBorderColor","actualDensity":"actualDensity","actualDisabledTextColor":"actualDisabledTextColor","actualDropdownDelay":"actualDropdownDelay","actualGroupHeaderBackgroundColor":"actualGroupHeaderBackgroundColor","actualGroupHeaderSeparatorBackgroundColor":"actualGroupHeaderSeparatorBackgroundColor","actualGroupHeaderSubtitleTextColor":"actualGroupHeaderSubtitleTextColor","actualGroupHeaderTextColor":"actualGroupHeaderTextColor","actualHighlightColor":"actualHighlightColor","actualHighlightRadius":"actualHighlightRadius","actualHighlightWidth":"actualHighlightWidth","actualHoverBackgroundColor":"actualHoverBackgroundColor","actualIconFill":"actualIconFill","actualIconStroke":"actualIconStroke","actualMenuArrowStroke":"actualMenuArrowStroke","actualRowHeight":"actualRowHeight","actualSeparatorBackgroundColor":"actualSeparatorBackgroundColor","actualSeparatorHorizontalPaddingBottom":"actualSeparatorHorizontalPaddingBottom","actualSeparatorHorizontalPaddingLeft":"actualSeparatorHorizontalPaddingLeft","actualSeparatorHorizontalPaddingRight":"actualSeparatorHorizontalPaddingRight","actualSeparatorHorizontalPaddingTop":"actualSeparatorHorizontalPaddingTop","actualSeparatorVerticalPaddingBottom":"actualSeparatorVerticalPaddingBottom","actualSeparatorVerticalPaddingLeft":"actualSeparatorVerticalPaddingLeft","actualSeparatorVerticalPaddingRight":"actualSeparatorVerticalPaddingRight","actualSeparatorVerticalPaddingTop":"actualSeparatorVerticalPaddingTop","actualSubmenuBackgroundColor":"actualSubmenuBackgroundColor","actualSubtitleTextColor":"actualSubtitleTextColor","actualTextColor":"actualTextColor","actualToolTipBackgroundColor":"actualToolTipBackgroundColor","actualToolTipCornerRadius":"actualToolTipCornerRadius","actualToolTipElevation":"actualToolTipElevation","actualToolTipTextColor":"actualToolTipTextColor","actualUncheckedBackgroundColor":"actualUncheckedBackgroundColor","actualUncheckedBorderColor":"actualUncheckedBorderColor","backgroundColor":"backgroundColor","baseTheme":"baseTheme","cellTextStyle":"cellTextStyle","checkedBackgroundColor":"checkedBackgroundColor","checkedBorderColor":"checkedBorderColor","contentRefreshed":"contentRefreshed","density":"density","disabledTextColor":"disabledTextColor","dropdownClickBuffer":"dropdownClickBuffer","dropdownDelay":"dropdownDelay","groupHeaderBackgroundColor":"groupHeaderBackgroundColor","groupHeaderSeparatorBackgroundColor":"groupHeaderSeparatorBackgroundColor","groupHeaderSubtitleTextColor":"groupHeaderSubtitleTextColor","groupHeaderTextColor":"groupHeaderTextColor","groupHeaderTextStyle":"groupHeaderTextStyle","height":"height","highlightColor":"highlightColor","highlightRadius":"highlightRadius","highlightWidth":"highlightWidth","hoverBackgroundColor":"hoverBackgroundColor","i":"i","iconFill":"iconFill","iconStroke":"iconStroke","isOpen":"isOpen","itemSpacing":"itemSpacing","menuArrowStroke":"menuArrowStroke","nestedActionMode":"nestedActionMode","onCommand":"onCommand","orientation":"orientation","rowHeight":"rowHeight","scrollbarStyle":"scrollbarStyle","separatorBackgroundColor":"separatorBackgroundColor","separatorHorizontalPaddingBottom":"separatorHorizontalPaddingBottom","separatorHorizontalPaddingLeft":"separatorHorizontalPaddingLeft","separatorHorizontalPaddingRight":"separatorHorizontalPaddingRight","separatorHorizontalPaddingTop":"separatorHorizontalPaddingTop","separatorVerticalPaddingBottom":"separatorVerticalPaddingBottom","separatorVerticalPaddingLeft":"separatorVerticalPaddingLeft","separatorVerticalPaddingRight":"separatorVerticalPaddingRight","separatorVerticalPaddingTop":"separatorVerticalPaddingTop","showOnHover":"showOnHover","showTooltipOnHover":"showTooltipOnHover","stopPropagation":"stopPropagation","submenuBackgroundColor":"submenuBackgroundColor","subtitleTextColor":"subtitleTextColor","subtitleTextStyle":"subtitleTextStyle","textColor":"textColor","toolTipBackgroundColor":"toolTipBackgroundColor","toolTipCornerRadius":"toolTipCornerRadius","toolTipElevation":"toolTipElevation","toolTipTextColor":"toolTipTextColor","uncheckedBackgroundColor":"uncheckedBackgroundColor","uncheckedBorderColor":"uncheckedBorderColor","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","closeSubmenus":"closeSubmenus","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportSerializedVisualData":"exportSerializedVisualData","exportVisualData":"exportVisualData","findByName":"findByName","flushRefresh":"flushRefresh","getBoolContextItem":"getBoolContextItem","getBrushCollectionContextItem":"getBrushCollectionContextItem","getBrushContextItem":"getBrushContextItem","getColorContextItem":"getColorContextItem","getDataContextItem":"getDataContextItem","getDesiredSize":"getDesiredSize","getDoubleContextItem":"getDoubleContextItem","getIntContextItem":"getIntContextItem","getStringContextItem":"getStringContextItem","refresh":"refresh","setBoolContextItem":"setBoolContextItem","setBrushCollectionContextItem":"setBrushCollectionContextItem","setBrushContextItem":"setBrushContextItem","setColorContextItem":"setColorContextItem","setDataContextItem":"setDataContextItem","setDoubleContextItem":"setDoubleContextItem","setIntContextItem":"setIntContextItem","setStringContextItem":"setStringContextItem","updateStyle":"updateStyle","register":"register"}}],"IgcToolPanelContentRefreshedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolPanelContentRefreshedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcToolPanelContextChangedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolPanelContextChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","contextKey":"contextKey","newValue":"newValue","oldValue":"oldValue"}}],"IgcToolPanelContextSwappedEventArgs":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcToolPanelContextSwappedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcXExpansionPanelComponent":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/classes/IgcXExpansionPanelComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualAmbientShadowColor":"actualAmbientShadowColor","actualCaptionTextColor":"actualCaptionTextColor","actualDescriptionTextColor":"actualDescriptionTextColor","actualElevation":"actualElevation","actualHeaderBackgroundColor":"actualHeaderBackgroundColor","actualPenumbraShadowColor":"actualPenumbraShadowColor","actualUmbraShadowColor":"actualUmbraShadowColor","caption":"caption","captionCollapsedTextColor":"captionCollapsedTextColor","captionExpandedTextColor":"captionExpandedTextColor","captionTextColor":"captionTextColor","descriptionCollapsedTextColor":"descriptionCollapsedTextColor","descriptionExpandedTextColor":"descriptionExpandedTextColor","descriptionText":"descriptionText","descriptionTextColor":"descriptionTextColor","elevation":"elevation","expanded":"expanded","headerBackgroundColor":"headerBackgroundColor","headerCollapsedBackgroundColor":"headerCollapsedBackgroundColor","headerExpandedBackgroundColor":"headerExpandedBackgroundColor","height":"height","i":"i","onCollapsed":"onCollapsed","onExpanded":"onExpanded","width":"width","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","collapse":"collapse","connectedCallback":"connectedCallback","destroy":"destroy","disconnectedCallback":"disconnectedCallback","expand":"expand","findByName":"findByName","toggle":"toggle","updateStyle":"updateStyle","register":"register"}}],"ComboEditorCloneDataSourceFilterOperation":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ComboEditorCloneDataSourceFilterOperation","k":"enum","s":"enums","m":{"None":"None","TextToValue":"TextToValue","ValueToText":"ValueToText"}}],"ComboEditorSelectedItemChangeType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ComboEditorSelectedItemChangeType","k":"enum","s":"enums","m":{"Row":"Row","Text":"Text","Value":"Value"}}],"ListPanelActivationMode":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ListPanelActivationMode","k":"enum","s":"enums","m":{"Cell":"Cell","None":"None"}}],"ListPanelOrientation":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ListPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ListPanelSelectionBehavior":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ListPanelSelectionBehavior","k":"enum","s":"enums","m":{"ModifierBased":"ModifierBased","Toggle":"Toggle"}}],"ListPanelSelectionMode":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ListPanelSelectionMode","k":"enum","s":"enums","m":{"MultipleRow":"MultipleRow","None":"None","SingleRow":"SingleRow"}}],"NestedActionMode":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/NestedActionMode","k":"enum","s":"enums","m":{"Replace":"Replace"}}],"PropertyEditorPanelUpdateMode":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/PropertyEditorPanelUpdateMode","k":"enum","s":"enums","m":{"Auto":"Auto","ComponentRendererOverlay":"ComponentRendererOverlay","DataSeriesToDescriptionCustomizations":"DataSeriesToDescriptionCustomizations"}}],"PropertyEditorValueType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/PropertyEditorValueType","k":"enum","s":"enums","m":{"Array":"Array","boolean1":"boolean1","Brush":"Brush","BrushCollection":"BrushCollection","Button":"Button","Collection":"Collection","Color":"Color","ColorCollection":"ColorCollection","DataRef":"DataRef","Date":"Date","DoubleCollection":"DoubleCollection","EnumValue":"EnumValue","EventRef":"EventRef","Header":"Header","MethodRef":"MethodRef","Number":"Number","Point":"Point","Rect":"Rect","Separator":"Separator","Size":"Size","Slider":"Slider","StringValue":"StringValue","SubType":"SubType","TemplateRef":"TemplateRef","TimeSpan":"TimeSpan","Unhandled":"Unhandled"}}],"ToolActionButtonDisplayType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolActionButtonDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined","Raised":"Raised"}}],"ToolActionButtonGroupDisplayType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolActionButtonGroupDisplayType","k":"enum","s":"enums","m":{"Flat":"Flat","Outlined":"Outlined"}}],"ToolActionCheckboxListIndexType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolActionCheckboxListIndexType","k":"enum","s":"enums","m":{"DeSelected":"DeSelected","Selected":"Selected"}}],"ToolActionFieldSelectorEventType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolActionFieldSelectorEventType","k":"enum","s":"enums","m":{"AggregationChange":"AggregationChange","Change":"Change"}}],"ToolActionFieldSelectorType":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolActionFieldSelectorType","k":"enum","s":"enums","m":{"Label":"Label","Value":"Value"}}],"ToolbarOrientation":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolbarOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"ToolPanelOrientation":[{"p":"igniteui-webcomponents-layouts","u":"/api/webcomponents/igniteui-webcomponents-layouts/7.0.0/enums/ToolPanelOrientation","k":"enum","s":"enums","m":{"Horizontal":"Horizontal","HorizontalWrapped":"HorizontalWrapped","Vertical":"Vertical"}}],"IgcArcGISOnlineMapImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcArcGISOnlineMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","defaultTokenTimeout":"defaultTokenTimeout","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isMapPublic":"isMapPublic","mapServerUri":"mapServerUri","opacity":"opacity","password":"password","referer":"referer","refererUri":"refererUri","tokenGenerationEndPoint":"tokenGenerationEndPoint","userAgent":"userAgent","userName":"userName","userToken":"userToken","windowRect":"windowRect","acquireNewToken":"acquireNewToken","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcAzureMapsImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcAzureMapsImagery","k":"class","s":"classes","m":{"constructor":"constructor","apiKey":"apiKey","apiVersion":"apiVersion","cancellingImage":"cancellingImage","cultureName":"cultureName","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imageryStyle":"imageryStyle","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","localizedView":"localizedView","opacity":"opacity","referer":"referer","timestamp":"timestamp","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcBingMapsMapImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcBingMapsMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","actualBingImageryRestUri":"actualBingImageryRestUri","actualSubDomains":"actualSubDomains","actualTilePath":"actualTilePath","apiKey":"apiKey","bingImageryRestUri":"bingImageryRestUri","cancellingImage":"cancellingImage","cultureName":"cultureName","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imageryStyle":"imageryStyle","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isDeferredLoad":"isDeferredLoad","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isInitialized":"isInitialized","opacity":"opacity","referer":"referer","subDomains":"subDomains","tilePath":"tilePath","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","requestMapSettings":"requestMapSettings","_createFromInternal":"_createFromInternal"}}],"IgcCustomMapImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcCustomMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","getTileImageUri":"getTileImageUri","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcGeographicContourLineSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicContourLineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualFillScale":"actualFillScale","coercionMethods":"coercionMethods","fillScale":"fillScale","hasMarkers":"hasMarkers","isGeographic":"isGeographic","isLineContour":"isLineContour","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","valueMemberPath":"valueMemberPath","valueResolver":"valueResolver","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicHighDensityScatterSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicHighDensityScatterSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","heatMaximum":"heatMaximum","heatMaximumColor":"heatMaximumColor","heatMinimum":"heatMinimum","heatMinimumColor":"heatMinimumColor","isGeographic":"isGeographic","isPixel":"isPixel","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","mouseOverEnabled":"mouseOverEnabled","pointExtent":"pointExtent","progressiveLoad":"progressiveLoad","progressiveLoadStatusChanged":"progressiveLoadStatusChanged","progressiveStatus":"progressiveStatus","useBruteForce":"useBruteForce","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicMapComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicMapComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualSeries":"actualSeries","contentSeries":"contentSeries","htmlTagName":"htmlTagName","actualWindowScale":"actualWindowScale","actualWorldRect":"actualWorldRect","backgroundContent":"backgroundContent","backgroundTilingMode":"backgroundTilingMode","dataSource":"dataSource","height":"height","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","isMap":"isMap","legend":"legend","resizeBehavior":"resizeBehavior","series":"series","suppressZoomResetOnWorldRectChange":"suppressZoomResetOnWorldRectChange","useWorldRectForZoomBounds":"useWorldRectForZoomBounds","width":"width","windowScale":"windowScale","worldRect":"worldRect","xAxis":"xAxis","yAxis":"yAxis","zoomable":"zoomable","zoomIsReady":"zoomIsReady","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","bindData":"bindData","clearTileCache":"clearTileCache","connectedCallback":"connectedCallback","convertGeographicToZoom":"convertGeographicToZoom","deferredRefresh":"deferredRefresh","destroy":"destroy","disconnectedCallback":"disconnectedCallback","exportVisualData":"exportVisualData","findByName":"findByName","getActualWindowScaleHorizontal":"getActualWindowScaleHorizontal","getActualWindowScaleVertical":"getActualWindowScaleVertical","getCurrentActualWorldRect":"getCurrentActualWorldRect","getGeographicFromZoom":"getGeographicFromZoom","getGeographicPoint":"getGeographicPoint","getPixelPoint":"getPixelPoint","getWindowPoint":"getWindowPoint","getZoomFromGeographicPoints":"getZoomFromGeographicPoints","getZoomFromGeographicRect":"getZoomFromGeographicRect","getZoomRectFromGeoRect":"getZoomRectFromGeoRect","notifyContainerResized":"notifyContainerResized","styleUpdated":"styleUpdated","updateWorldRect":"updateWorldRect","updateZoomWindow":"updateZoomWindow","zoomToGeographic":"zoomToGeographic","register":"register"}}],"IgcGeographicMapImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcGeographicMapSeriesHostComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicMapSeriesHostComponent","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicMarkerSeriesBaseComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicMarkerSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicMarkerSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicMarkerSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicPolylineSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicPolylineSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isPolyline":"isPolyline","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureShapeStyle":"ensureShapeStyle","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicProportionalSymbolSeriesBaseComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicProportionalSymbolSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicProportionalSymbolSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicProportionalSymbolSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","labelMemberPath":"labelMemberPath","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerBrushBrightness":"markerBrushBrightness","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineBrightness":"markerOutlineBrightness","markerOutlineMode":"markerOutlineMode","markerOutlineUsesFillScale":"markerOutlineUsesFillScale","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","radiusMemberPath":"radiusMemberPath","radiusScale":"radiusScale","radiusScaleUseGlobalValues":"radiusScaleUseGlobalValues","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicScatterAreaSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicScatterAreaSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualColorScale":"actualColorScale","coercionMethods":"coercionMethods","colorMemberPath":"colorMemberPath","colorScale":"colorScale","hasMarkers":"hasMarkers","isArea":"isArea","isGeographic":"isGeographic","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","triangulationStatusChanged":"triangulationStatusChanged","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","updateActualColorScale":"updateActualColorScale","register":"register"}}],"IgcGeographicShapeSeriesBaseBaseComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicShapeSeriesBaseBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicShapeSeriesBaseComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicShapeSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicShapeSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicShapeSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isPolygon":"isPolygon","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFill":"shapeFill","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","shapeOpacity":"shapeOpacity","shapeStroke":"shapeStroke","shapeStrokeThickness":"shapeStrokeThickness","styleShape":"styleShape","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","ensureShapeStyle":"ensureShapeStyle","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicSymbolSeriesBaseComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicSymbolSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","markerBrush":"markerBrush","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicSymbolSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicSymbolSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","actualMarkerBrush":"actualMarkerBrush","actualMarkerOutline":"actualMarkerOutline","actualMarkerTemplate":"actualMarkerTemplate","assigningScatterMarkerStyle":"assigningScatterMarkerStyle","assigningScatterStyle":"assigningScatterStyle","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","hasOnlyMarkers":"hasOnlyMarkers","isCustomScatterMarkerStyleAllowed":"isCustomScatterMarkerStyleAllowed","isCustomScatterStyleAllowed":"isCustomScatterStyleAllowed","isGeographic":"isGeographic","itemSearchMode":"itemSearchMode","itemSearchThreshold":"itemSearchThreshold","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","markerBrush":"markerBrush","markerCollisionAvoidance":"markerCollisionAvoidance","markerFillMode":"markerFillMode","markerOutline":"markerOutline","markerOutlineMode":"markerOutlineMode","markerTemplate":"markerTemplate","markerThickness":"markerThickness","markerType":"markerType","maximumMarkers":"maximumMarkers","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicTileSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicTileSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","assigningShapeMarkerStyle":"assigningShapeMarkerStyle","assigningShapeStyle":"assigningShapeStyle","coercionMethods":"coercionMethods","databaseSource":"databaseSource","fillMemberPath":"fillMemberPath","fillScale":"fillScale","fillScaleUseGlobalValues":"fillScaleUseGlobalValues","hasMarkers":"hasMarkers","imageTilesReady":"imageTilesReady","isCustomShapeMarkerStyleAllowed":"isCustomShapeMarkerStyleAllowed","isCustomShapeStyleAllowed":"isCustomShapeStyleAllowed","isGeographic":"isGeographic","isTile":"isTile","itemSearchMode":"itemSearchMode","itemSearchPointsThreshold":"itemSearchPointsThreshold","itemSearchThreshold":"itemSearchThreshold","shapeDataSource":"shapeDataSource","shapefileDataSource":"shapefileDataSource","shapeFilterResolution":"shapeFilterResolution","shapeMemberPath":"shapeMemberPath","tileImagery":"tileImagery","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","clearTileCache":"clearTileCache","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","findByName":"findByName","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated","register":"register"}}],"IgcGeographicXYTriangulatingSeriesBaseComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicXYTriangulatingSeriesBaseComponent","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcGeographicXYTriangulatingSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcGeographicXYTriangulatingSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","coercionMethods":"coercionMethods","hasMarkers":"hasMarkers","isGeographic":"isGeographic","latitudeMemberPath":"latitudeMemberPath","longitudeMemberPath":"longitudeMemberPath","trianglesSource":"trianglesSource","triangleVertexMemberPath1":"triangleVertexMemberPath1","triangleVertexMemberPath2":"triangleVertexMemberPath2","triangleVertexMemberPath3":"triangleVertexMemberPath3","triangulationDataSource":"triangulationDataSource","visibleFromScale":"visibleFromScale","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","disconnectedCallback":"disconnectedCallback","getItem":"getItem","getItemSpan":"getItemSpan","getItemValue":"getItemValue","getMemberPathValue":"getMemberPathValue","getNextOrExactIndex":"getNextOrExactIndex","getPreviousOrExactIndex":"getPreviousOrExactIndex","getSeriesHighValue":"getSeriesHighValue","getSeriesHighValuePosition":"getSeriesHighValuePosition","getSeriesLowValue":"getSeriesLowValue","getSeriesLowValuePosition":"getSeriesLowValuePosition","getSeriesValue":"getSeriesValue","getSeriesValueBoundingBox":"getSeriesValueBoundingBox","getSeriesValueFromSeriesPixel":"getSeriesValueFromSeriesPixel","getSeriesValueMarkerBoundingBox":"getSeriesValueMarkerBoundingBox","getSeriesValuePosition":"getSeriesValuePosition","getSeriesValuePositionFromSeriesPixel":"getSeriesValuePositionFromSeriesPixel","notifyIndexedPropertiesChanged":"notifyIndexedPropertiesChanged","renderSeries":"renderSeries","styleUpdated":"styleUpdated"}}],"IgcImagesChangedEventArgs":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcImagesChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcImageTilesReadyEventArgs":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcImageTilesReadyEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcOpenStreetMapImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcOpenStreetMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","tilePath":"tilePath","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcSubDomainsCollection":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcSubDomainsCollection","k":"class","s":"classes","m":{"constructor":"constructor"}}],"IgcTileGeneratorMapImagery":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcTileGeneratorMapImagery","k":"class","s":"classes","m":{"constructor":"constructor","cancellingImage":"cancellingImage","deferralHandler":"deferralHandler","downloadingImage":"downloadingImage","geographicMap":"geographicMap","imagesChanged":"imagesChanged","imageTilesReady":"imageTilesReady","isHorizontalWrappingEnabled":"isHorizontalWrappingEnabled","opacity":"opacity","referer":"referer","tileGenerator":"tileGenerator","userAgent":"userAgent","windowRect":"windowRect","clearTileCache":"clearTileCache","findByName":"findByName","_createFromInternal":"_createFromInternal"}}],"IgcTileSeriesComponent":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/classes/IgcTileSeriesComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","isTile":"isTile","tileImagery":"tileImagery","observedAttributes":"observedAttributes","connectedCallback":"connectedCallback","deferredRefresh":"deferredRefresh","disconnectedCallback":"disconnectedCallback","findByName":"findByName","register":"register"}}],"AzureMapsImageryStyle":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/enums/AzureMapsImageryStyle","k":"enum","s":"enums","m":{"DarkGrey":"DarkGrey","HybridDarkGreyOverlay":"HybridDarkGreyOverlay","HybridRoadOverlay":"HybridRoadOverlay","LabelsDarkGreyOverlay":"LabelsDarkGreyOverlay","LabelsRoadOverlay":"LabelsRoadOverlay","Road":"Road","Satellite":"Satellite","TerraOverlay":"TerraOverlay","TrafficAbsoluteOverlay":"TrafficAbsoluteOverlay","TrafficDelayOverlay":"TrafficDelayOverlay","TrafficReducedOverlay":"TrafficReducedOverlay","TrafficRelativeDarkOverlay":"TrafficRelativeDarkOverlay","TrafficRelativeOverlay":"TrafficRelativeOverlay","WeatherInfraredOverlay":"WeatherInfraredOverlay","WeatherRadarOverlay":"WeatherRadarOverlay"}}],"BingMapsImageryStyle":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/enums/BingMapsImageryStyle","k":"enum","s":"enums","m":{"Aerial":"Aerial","AerialWithLabels":"AerialWithLabels","CanvasDark":"CanvasDark","CanvasGray":"CanvasGray","CanvasLight":"CanvasLight","Road":"Road"}}],"MapBackgroundTilingMode":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/enums/MapBackgroundTilingMode","k":"enum","s":"enums","m":{"Auto":"Auto","NonWrapped":"NonWrapped","Wrapped":"Wrapped"}}],"MapResizeBehavior":[{"p":"igniteui-webcomponents-maps","u":"/api/webcomponents/igniteui-webcomponents-maps/7.0.0/enums/MapResizeBehavior","k":"enum","s":"enums","m":{"Auto":"Auto","MaintainCenterPosition":"MaintainCenterPosition","MaintainTopLeftPosition":"MaintainTopLeftPosition"}}],"SpreadsheetChartAdapter":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapter","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetChartAdapterLocaleBg":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleCs":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleDa":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleDe":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleEn":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleEs":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleFr":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleHu":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleIt":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleJa":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleNb":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleNl":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocalePl":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocalePt":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleRo":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleRu":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType","LIT_DefaultChartTitle":"LIT_DefaultChartTitle"}}],"SpreadsheetChartAdapterLocaleSv":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleTr":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleZhHans":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"SpreadsheetChartAdapterLocaleZhHant":[{"p":"igniteui-webcomponents-spreadsheet-chart-adapter","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet-chart-adapter/7.0.0/classes/SpreadsheetChartAdapterLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","Error_CannotDetermineSeriesForChartType":"Error_CannotDetermineSeriesForChartType","Error_ChartTypeNotSupportedForRendering":"Error_ChartTypeNotSupportedForRendering","Error_ErrorSettingAxesForSeries":"Error_ErrorSettingAxesForSeries","Error_InvalidAxesCountOrTypeForChartType":"Error_InvalidAxesCountOrTypeForChartType","Error_UnsupportedSeriesType":"Error_UnsupportedSeriesType"}}],"ComboBoxListItem":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/ComboBoxListItem","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","dataValue":"dataValue","displayText":"displayText","tag":"tag","toString":"toString"}}],"EnumWrapper$1":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/EnumWrapper-1","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","enumValue":"enumValue","enumValueNameLocalized":"enumValueNameLocalized","toString":"toString"}}],"IgcSpreadsheetActionExecutedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetActionExecutedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","command":"command","commandParameter":"commandParameter"}}],"IgcSpreadsheetActionExecutingEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetActionExecutingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","command":"command","commandParameter":"commandParameter"}}],"IgcSpreadsheetActiveCellChangedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetActiveCellChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcSpreadsheetActivePaneChangedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetActivePaneChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcSpreadsheetActiveTableChangedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetActiveTableChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcSpreadsheetActiveWorksheetChangedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetActiveWorksheetChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","newValue":"newValue","oldValue":"oldValue"}}],"IgcSpreadsheetComponent":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetComponent","k":"class","s":"classes","m":{"constructor":"constructor","htmlTagName":"htmlTagName","activeCell":"activeCell","activeCellChanged":"activeCellChanged","activePane":"activePane","activePaneChanged":"activePaneChanged","activeSelection":"activeSelection","activeSelectionCellRangeFormat":"activeSelectionCellRangeFormat","activeTable":"activeTable","activeTableChanged":"activeTableChanged","activeWorksheet":"activeWorksheet","activeWorksheetChanged":"activeWorksheetChanged","allowAddWorksheet":"allowAddWorksheet","allowAsyncCalculations":"allowAsyncCalculations","allowDeleteWorksheet":"allowDeleteWorksheet","areGridlinesVisible":"areGridlinesVisible","areHeadersVisible":"areHeadersVisible","cellEditMode":"cellEditMode","chartAdapter":"chartAdapter","CommandExecuted":"CommandExecuted","CommandExecuting":"CommandExecuting","contextMenuOpening":"contextMenuOpening","editModeEntered":"editModeEntered","editModeEntering":"editModeEntering","editModeExited":"editModeExited","editModeExiting":"editModeExiting","editModeValidationError":"editModeValidationError","editRangePasswordNeeded":"editRangePasswordNeeded","enterKeyNavigationDirection":"enterKeyNavigationDirection","fixedDecimalPlaceCount":"fixedDecimalPlaceCount","height":"height","hyperlinkExecuting":"hyperlinkExecuting","isEnterKeyNavigationEnabled":"isEnterKeyNavigationEnabled","isFixedDecimalEnabled":"isFixedDecimalEnabled","isFormulaBarVisible":"isFormulaBarVisible","isInEditMode":"isInEditMode","isInEndMode":"isInEndMode","isPerformingAsyncCalculations":"isPerformingAsyncCalculations","isRenamingWorksheet":"isRenamingWorksheet","isScrollLocked":"isScrollLocked","isUndoEnabled":"isUndoEnabled","nameBoxWidth":"nameBoxWidth","panes":"panes","selectedWorksheets":"selectedWorksheets","selectionChanged":"selectionChanged","selectionMode":"selectionMode","undoManager":"undoManager","userPromptDisplaying":"userPromptDisplaying","validationInputMessagePosition":"validationInputMessagePosition","width":"width","workbook":"workbook","workbookDirtied":"workbookDirtied","zoomLevel":"zoomLevel","observedAttributes":"observedAttributes","afterContentInit":"afterContentInit","attributeChangedCallback":"attributeChangedCallback","connectedCallback":"connectedCallback","containerResized":"containerResized","destroy":"destroy","disconnectedCallback":"disconnectedCallback","executeAction":"executeAction","exportVisualData":"exportVisualData","findByName":"findByName","flush":"flush","styleUpdated":"styleUpdated","_createFromInternal":"_createFromInternal","register":"register"}}],"IgcSpreadsheetContextMenuOpeningEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetContextMenuOpeningEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","menuArea":"menuArea"}}],"IgcSpreadsheetEditModeEnteredEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetEditModeEnteredEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgcSpreadsheetEditModeEnteringEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetEditModeEnteringEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgcSpreadsheetEditModeExitedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetEditModeExitedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","cell":"cell"}}],"IgcSpreadsheetEditModeExitingEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetEditModeExitingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","acceptChanges":"acceptChanges","canCancel":"canCancel","cell":"cell","editText":"editText"}}],"IgcSpreadsheetEditModeValidationErrorEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetEditModeValidationErrorEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","action":"action","canStayInEditMode":"canStayInEditMode","cell":"cell","validationRule":"validationRule"}}],"IgcSpreadsheetEditRangePasswordNeededEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetEditRangePasswordNeededEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","ranges":"ranges","unprotect":"unprotect"}}],"IgcSpreadsheetHyperlinkExecutingEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetHyperlinkExecutingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","hyperlink":"hyperlink","workingDirectory":"workingDirectory"}}],"IgcSpreadsheetSelectionChangedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetSelectionChangedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","pane":"pane"}}],"IgcSpreadsheetUserPromptDisplayingEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetUserPromptDisplayingEventArgs","k":"class","s":"classes","m":{"constructor":"constructor","canCancel":"canCancel","cancel":"cancel","caption":"caption","displayMessage":"displayMessage","exception":"exception","message":"message","trigger":"trigger"}}],"IgcSpreadsheetWorkbookDirtiedEventArgs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/IgcSpreadsheetWorkbookDirtiedEventArgs","k":"class","s":"classes","m":{"constructor":"constructor"}}],"PaletteEntry":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/PaletteEntry","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","colorInfo":"colorInfo"}}],"SpreadsheetCell":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetCell","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","column":"column","row":"row","equals":"equals","equals1":"equals1","getHashCode":"getHashCode","toString":"toString","staticInit":"staticInit"}}],"SpreadsheetCellAreaVisualData":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetCellAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","columns":"columns","relativeBounds":"relativeBounds","rows":"rows","shapes":"shapes","serialize":"serialize"}}],"SpreadsheetCellAreaVisualDataList":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetCellAreaVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetCellRange":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetCellRange","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","empty":"empty","firstColumn":"firstColumn","firstRow":"firstRow","isEmpty":"isEmpty","isSingleCell":"isSingleCell","lastColumn":"lastColumn","lastRow":"lastRow","contains":"contains","equals":"equals","equals1":"equals1","getHashCode":"getHashCode","intersect":"intersect","intersectsWith":"intersectsWith","toString":"toString","union":"union","staticInit":"staticInit"}}],"SpreadsheetCellRangeFormat":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetCellRangeFormat","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","alignment":"alignment","fill":"fill","font":"font","formatString":"formatString","hidden":"hidden","indent":"indent","locked":"locked","rotation":"rotation","shrinkToFit":"shrinkToFit","style":"style","verticalAlignment":"verticalAlignment","wrapText":"wrapText","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","setBorders":"setBorders"}}],"SpreadsheetChartAdapterBase":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetChartAdapterBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetColumnScrollRegion":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetColumnScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetCss":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetCss","k":"class","s":"classes","m":{"constructor":"constructor","activateNextHiddenTabButton":"activateNextHiddenTabButton","activatePreviousHiddenTabButton":"activatePreviousHiddenTabButton","addNewWorksheetButton":"addNewWorksheetButton","automaticGridline":"automaticGridline","cellSelection":"cellSelection","cellSelectionHandle":"cellSelectionHandle","columnHeader":"columnHeader","columnHeaderArea":"columnHeaderArea","columnHeaderHover":"columnHeaderHover","columnHeaderSelected":"columnHeaderSelected","columnHeaderSelectedCells":"columnHeaderSelectedCells","columnSplitter":"columnSplitter","columnSplitterPreview":"columnSplitterPreview","dropDownButton":"dropDownButton","dropDownButtonOpen":"dropDownButtonOpen","filterDialog":"filterDialog","filterDialogButtons":"filterDialogButtons","filterDialogColumnName":"filterDialogColumnName","filterDialogCondition1":"filterDialogCondition1","filterDialogCondition2":"filterDialogCondition2","filterDialogConditionalOperator":"filterDialogConditionalOperator","filterDialogHintText":"filterDialogHintText","filterDialogShowRowsWhere":"filterDialogShowRowsWhere","formatCellsDialog":"formatCellsDialog","formatCellsDialogButtons":"formatCellsDialogButtons","formatCellsDialogColorPickerDropdownButton":"formatCellsDialogColorPickerDropdownButton","formatCellsDialogNumericSpinner":"formatCellsDialogNumericSpinner","formatCellsDialogTab":"formatCellsDialogTab","formatCellsDialogTable":"formatCellsDialogTable","formatCellsDialogTabs":"formatCellsDialogTabs","formulaBar":"formulaBar","formulaBarButtonContainer":"formulaBarButtonContainer","formulaBarCancelButton":"formulaBarCancelButton","formulaBarEnterButton":"formulaBarEnterButton","formulaBarExpandButton":"formulaBarExpandButton","formulaBarExpandButtonOpen":"formulaBarExpandButtonOpen","formulaBarTextAreaContainer":"formulaBarTextAreaContainer","formulaBarTextAreaSplitter":"formulaBarTextAreaSplitter","headerResizeLine":"headerResizeLine","inputMessage":"inputMessage","inputMessageContent":"inputMessageContent","inputMessageTitle":"inputMessageTitle","invalidData":"invalidData","nameBoxContainer":"nameBoxContainer","nameBoxSplitter":"nameBoxSplitter","paneArea":"paneArea","rowHeader":"rowHeader","rowHeaderArea":"rowHeaderArea","rowHeaderHover":"rowHeaderHover","rowHeaderSelected":"rowHeaderSelected","rowHeaderSelectedCells":"rowHeaderSelectedCells","rowSplitter":"rowSplitter","rowSplitterPreview":"rowSplitterPreview","scrollBarArrowDown":"scrollBarArrowDown","scrollBarArrowLeft":"scrollBarArrowLeft","scrollBarArrowRight":"scrollBarArrowRight","scrollBarArrowUp":"scrollBarArrowUp","scrollBarHorizontal":"scrollBarHorizontal","scrollBarThumbHorizontal":"scrollBarThumbHorizontal","scrollBarThumbVertical":"scrollBarThumbVertical","scrollBarTrackDown":"scrollBarTrackDown","scrollBarTrackLeft":"scrollBarTrackLeft","scrollBarTrackRight":"scrollBarTrackRight","scrollBarTrackUp":"scrollBarTrackUp","scrollBarVertical":"scrollBarVertical","scrollFirstTabButton":"scrollFirstTabButton","scrollLastTabButton":"scrollLastTabButton","scrollNextTabButton":"scrollNextTabButton","scrollPreviousTabButton":"scrollPreviousTabButton","selectAll":"selectAll","sortDialog":"sortDialog","sortDialogAddLevelButton":"sortDialogAddLevelButton","sortDialogCopyLevelButton":"sortDialogCopyLevelButton","sortDialogDeleteLevelButton":"sortDialogDeleteLevelButton","sortDialogMoveDownButton":"sortDialogMoveDownButton","sortDialogMoveUpButton":"sortDialogMoveUpButton","sortDialogMyDataHasHeaderCheckBox":"sortDialogMyDataHasHeaderCheckBox","sortDialogOkCancelButtonsArea":"sortDialogOkCancelButtonsArea","sortDialogOptionsButton":"sortDialogOptionsButton","sortDialogSortConditionActiveRow":"sortDialogSortConditionActiveRow","sortDialogSortConditionRow":"sortDialogSortConditionRow","sortDialogSortConditionsGridArea":"sortDialogSortConditionsGridArea","sortDialogSortConditionsGridHeader":"sortDialogSortConditionsGridHeader","sortDialogTopButtonsArea":"sortDialogTopButtonsArea","sortOptionsDialogCaseSensitiveCheckboxArea":"sortOptionsDialogCaseSensitiveCheckboxArea","sortOptionsDialogOkCancelButtonsArea":"sortOptionsDialogOkCancelButtonsArea","sortOptionsDialogOrientationArea":"sortOptionsDialogOrientationArea","splitterIntersection":"splitterIntersection","spreadsheet":"spreadsheet","tabAreaBackground":"tabAreaBackground","tabAreaBorder":"tabAreaBorder","tabAreaSplitter":"tabAreaSplitter","tabDropIndicator":"tabDropIndicator","tabItem":"tabItem","tabItemActive":"tabItemActive","tabItemArea":"tabItemArea","tabItemContent":"tabItemContent","tabItemDark":"tabItemDark","tabItemLight":"tabItemLight","tabItemProtected":"tabItemProtected","tabItemSelected":"tabItemSelected","tooltip":"tooltip","tooltipBody":"tooltipBody","tooltipTitle":"tooltipTitle","topOrBottomDialog":"topOrBottomDialog","topOrBottomDialogButtons":"topOrBottomDialogButtons","topOrBottomDialogInputArea":"topOrBottomDialogInputArea","topOrBottomDialogShow":"topOrBottomDialogShow"}}],"SpreadsheetHeaderAreaVisualData":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetHeaderAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","items":"items","relativeBounds":"relativeBounds","shapes":"shapes","serialize":"serialize"}}],"SpreadsheetHeaderAreaVisualDataList":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetHeaderAreaVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetLocaleBg":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_Text_SelectedColor":"SpreadsheetFontControl_Text_SelectedColor","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleCs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleDa":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleDe":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleEn":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleEs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleFr":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleHu":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleIt":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleJa":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_IntersectsMergedCells_Message1":"PasteError_IntersectsMergedCells_Message1","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Bold_Description":"Undo_Bold_Description","Undo_Bold_Title":"Undo_Bold_Title","Undo_Borders":"Undo_Borders","Undo_Borders_Description":"Undo_Borders_Description","Undo_Borders_Title":"Undo_Borders_Title","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_BottomAlignment_Description":"Undo_BottomAlignment_Description","Undo_BottomAlignment_Title":"Undo_BottomAlignment_Title","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_CenterAlignment_Description":"Undo_CenterAlignment_Description","Undo_CenterAlignment_Title":"Undo_CenterAlignment_Title","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellContents_Description":"Undo_ClearCellContents_Description","Undo_ClearCellContents_Title":"Undo_ClearCellContents_Title","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateNamedReference_Title":"Undo_CreateNamedReference_Title","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_Delete_Description":"Undo_Delete_Description","Undo_Delete_Title":"Undo_Delete_Title","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_EditCell_Description":"Undo_EditCell_Description","Undo_EditCell_Title":"Undo_EditCell_Title","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_Font_Description":"Undo_Font_Description","Undo_Font_Title":"Undo_Font_Title","Undo_FontSize":"Undo_FontSize","Undo_FontSize_Description":"Undo_FontSize_Description","Undo_FontSize_Title":"Undo_FontSize_Title","Undo_FormatCells":"Undo_FormatCells","Undo_FormatCells_Description":"Undo_FormatCells_Description","Undo_FormatCells_Title":"Undo_FormatCells_Title","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertCells_Description":"Undo_InsertCells_Description","Undo_InsertCells_Title":"Undo_InsertCells_Title","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertColumns_Description":"Undo_InsertColumns_Description","Undo_InsertColumns_Title":"Undo_InsertColumns_Title","Undo_InsertRows":"Undo_InsertRows","Undo_InsertRows_Description":"Undo_InsertRows_Description","Undo_InsertRows_Title":"Undo_InsertRows_Title","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_Italic_Description":"Undo_Italic_Description","Undo_Italic_Title":"Undo_Italic_Title","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_JustifyAlignment_Description":"Undo_JustifyAlignment_Description","Undo_JustifyAlignment_Title":"Undo_JustifyAlignment_Title","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_LeftAlignment_Description":"Undo_LeftAlignment_Description","Undo_LeftAlignment_Title":"Undo_LeftAlignment_Title","Undo_MergeCells":"Undo_MergeCells","Undo_MergeCells_Description":"Undo_MergeCells_Description","Undo_MergeCells_Title":"Undo_MergeCells_Title","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_MiddleAlignment_Description":"Undo_MiddleAlignment_Description","Undo_MiddleAlignment_Title":"Undo_MiddleAlignment_Title","Undo_Paste":"Undo_Paste","Undo_Paste_Description":"Undo_Paste_Description","Undo_Paste_Title":"Undo_Paste_Title","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeColumn_Description":"Undo_ResizeColumn_Description","Undo_ResizeColumn_Title":"Undo_ResizeColumn_Title","Undo_ResizeRow":"Undo_ResizeRow","Undo_ResizeRow_Description":"Undo_ResizeRow_Description","Undo_ResizeRow_Title":"Undo_ResizeRow_Title","Undo_RightAlignment":"Undo_RightAlignment","Undo_RightAlignment_Description":"Undo_RightAlignment_Description","Undo_RightAlignment_Title":"Undo_RightAlignment_Title","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Strikethrough_Description":"Undo_Strikethrough_Description","Undo_Strikethrough_Title":"Undo_Strikethrough_Title","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_TopAlignment_Description":"Undo_TopAlignment_Description","Undo_TopAlignment_Title":"Undo_TopAlignment_Title","Undo_Underline":"Undo_Underline","Undo_Underline_Description":"Undo_Underline_Description","Undo_Underline_Title":"Undo_Underline_Title","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_WrapText_Description":"Undo_WrapText_Description","Undo_WrapText_Title":"Undo_WrapText_Title","Undo_Zoom":"Undo_Zoom","Undo_Zoom_Description":"Undo_Zoom_Description","Undo_Zoom_Title":"Undo_Zoom_Title","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleNb":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleNl":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocalePl":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocalePt":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleRo":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleRu":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_Text_SelectedColor":"SpreadsheetFontControl_Text_SelectedColor","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleSv":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleTr":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleZhHans":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetLocaleZhHant":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","CellBorderLineStyle_DashDot":"CellBorderLineStyle_DashDot","CellBorderLineStyle_DashDotDot":"CellBorderLineStyle_DashDotDot","CellBorderLineStyle_Dashed":"CellBorderLineStyle_Dashed","CellBorderLineStyle_Default":"CellBorderLineStyle_Default","CellBorderLineStyle_Dotted":"CellBorderLineStyle_Dotted","CellBorderLineStyle_Double":"CellBorderLineStyle_Double","CellBorderLineStyle_Hair":"CellBorderLineStyle_Hair","CellBorderLineStyle_Medium":"CellBorderLineStyle_Medium","CellBorderLineStyle_MediumDashDot":"CellBorderLineStyle_MediumDashDot","CellBorderLineStyle_MediumDashDotDot":"CellBorderLineStyle_MediumDashDotDot","CellBorderLineStyle_MediumDashed":"CellBorderLineStyle_MediumDashed","CellBorderLineStyle_None":"CellBorderLineStyle_None","CellBorderLineStyle_SlantedDashDot":"CellBorderLineStyle_SlantedDashDot","CellBorderLineStyle_Thick":"CellBorderLineStyle_Thick","CellBorderLineStyle_Thin":"CellBorderLineStyle_Thin","CopyError_General_Message":"CopyError_General_Message","CopyError_InvalidSelection_Message":"CopyError_InvalidSelection_Message","CustomValidationInformationMessage":"CustomValidationInformationMessage","CustomValidationStopMessage":"CustomValidationStopMessage","CustomValidationWarningMessage":"CustomValidationWarningMessage","DefaultAutoFilterToolTip":"DefaultAutoFilterToolTip","DefaultChartTitle":"DefaultChartTitle","DefaultHyperlinkToolTip":"DefaultHyperlinkToolTip","DefaultValidationInformationMessage":"DefaultValidationInformationMessage","DefaultValidationStopMessage":"DefaultValidationStopMessage","DefaultValidationWarningMessage":"DefaultValidationWarningMessage","DeleteWorksheets_Message":"DeleteWorksheets_Message","Error_ChangePartOfDataTableError_Message":"Error_ChangePartOfDataTableError_Message","Error_DeletingLockedColumnCells_Message":"Error_DeletingLockedColumnCells_Message","Error_DeletingLockedRowCells_Message":"Error_DeletingLockedRowCells_Message","Error_IntersectsMergedCells_Message":"Error_IntersectsMergedCells_Message","Error_InvalidArrayFormulaLockedState_Message":"Error_InvalidArrayFormulaLockedState_Message","Error_InvalidHyperlinkAddress_Message":"Error_InvalidHyperlinkAddress_Message","Error_InvalidHyperlinkReference_Message":"Error_InvalidHyperlinkReference_Message","Error_InvalidProtectedWorksheetChange_Message":"Error_InvalidProtectedWorksheetChange_Message","Error_InvalidSortOrFilterRange_Message":"Error_InvalidSortOrFilterRange_Message","Error_LargeOperation_Message":"Error_LargeOperation_Message","Error_LargePasteOperation_Message":"Error_LargePasteOperation_Message","Error_NoSingleAllowedEditRange_Message":"Error_NoSingleAllowedEditRange_Message","ExcelComparisonOperator_BeginsWith_DisplayText":"ExcelComparisonOperator_BeginsWith_DisplayText","ExcelComparisonOperator_Contains_DisplayText":"ExcelComparisonOperator_Contains_DisplayText","ExcelComparisonOperator_DoesNotBeginWith_DisplayText":"ExcelComparisonOperator_DoesNotBeginWith_DisplayText","ExcelComparisonOperator_DoesNotContain_DisplayText":"ExcelComparisonOperator_DoesNotContain_DisplayText","ExcelComparisonOperator_DoesNotEndWith_DisplayText":"ExcelComparisonOperator_DoesNotEndWith_DisplayText","ExcelComparisonOperator_EndsWith_DisplayText":"ExcelComparisonOperator_EndsWith_DisplayText","ExcelComparisonOperator_Equals_DisplayText":"ExcelComparisonOperator_Equals_DisplayText","ExcelComparisonOperator_GreaterThan_DisplayText":"ExcelComparisonOperator_GreaterThan_DisplayText","ExcelComparisonOperator_GreaterThanOrEqual_DisplayText":"ExcelComparisonOperator_GreaterThanOrEqual_DisplayText","ExcelComparisonOperator_LessThan_DisplayText":"ExcelComparisonOperator_LessThan_DisplayText","ExcelComparisonOperator_LessThanOrEqual_DisplayText":"ExcelComparisonOperator_LessThanOrEqual_DisplayText","ExcelComparisonOperator_NotEqual_DisplayText":"ExcelComparisonOperator_NotEqual_DisplayText","ExcelTopOrBottomFilterDirection_Bottom_DisplayText":"ExcelTopOrBottomFilterDirection_Bottom_DisplayText","ExcelTopOrBottomFilterDirection_Top_DisplayText":"ExcelTopOrBottomFilterDirection_Top_DisplayText","ExcelTopOrBottomFilterTypes_Items_DisplayText":"ExcelTopOrBottomFilterTypes_Items_DisplayText","ExcelTopOrBottomFilterTypes_Percent_DisplayText":"ExcelTopOrBottomFilterTypes_Percent_DisplayText","FillPatternStyle_DiagonalCrosshatch":"FillPatternStyle_DiagonalCrosshatch","FillPatternStyle_DiagonalStripe":"FillPatternStyle_DiagonalStripe","FillPatternStyle_Gray12percent":"FillPatternStyle_Gray12percent","FillPatternStyle_Gray25percent":"FillPatternStyle_Gray25percent","FillPatternStyle_Gray50percent":"FillPatternStyle_Gray50percent","FillPatternStyle_Gray6percent":"FillPatternStyle_Gray6percent","FillPatternStyle_Gray75percent":"FillPatternStyle_Gray75percent","FillPatternStyle_HorizontalStripe":"FillPatternStyle_HorizontalStripe","FillPatternStyle_None":"FillPatternStyle_None","FillPatternStyle_ReverseDiagonalStripe":"FillPatternStyle_ReverseDiagonalStripe","FillPatternStyle_Solid":"FillPatternStyle_Solid","FillPatternStyle_ThickDiagonalCrosshatch":"FillPatternStyle_ThickDiagonalCrosshatch","FillPatternStyle_ThinDiagonalCrosshatch":"FillPatternStyle_ThinDiagonalCrosshatch","FillPatternStyle_ThinDiagonalStripe":"FillPatternStyle_ThinDiagonalStripe","FillPatternStyle_ThinHorizontalCrosshatch":"FillPatternStyle_ThinHorizontalCrosshatch","FillPatternStyle_ThinHorizontalStripe":"FillPatternStyle_ThinHorizontalStripe","FillPatternStyle_ThinReverseDiagonalStripe":"FillPatternStyle_ThinReverseDiagonalStripe","FillPatternStyle_ThinVerticalStripe":"FillPatternStyle_ThinVerticalStripe","FillPatternStyle_VerticalStripe":"FillPatternStyle_VerticalStripe","FilterDescription_AboveAverage":"FilterDescription_AboveAverage","FilterDescription_BelowAverage":"FilterDescription_BelowAverage","FilterDescription_BottomItems":"FilterDescription_BottomItems","FilterDescription_BottomPercent":"FilterDescription_BottomPercent","FilterDescription_CellFill_Named":"FilterDescription_CellFill_Named","FilterDescription_CellFill_NoFill":"FilterDescription_CellFill_NoFill","FilterDescription_CellFill_Unknown":"FilterDescription_CellFill_Unknown","FilterDescription_ComparisonItem_BeginsWith":"FilterDescription_ComparisonItem_BeginsWith","FilterDescription_ComparisonItem_Contains":"FilterDescription_ComparisonItem_Contains","FilterDescription_ComparisonItem_DoesNotBeginWith":"FilterDescription_ComparisonItem_DoesNotBeginWith","FilterDescription_ComparisonItem_DoesNotContain":"FilterDescription_ComparisonItem_DoesNotContain","FilterDescription_ComparisonItem_DoesNotEndWith":"FilterDescription_ComparisonItem_DoesNotEndWith","FilterDescription_ComparisonItem_EndsWith":"FilterDescription_ComparisonItem_EndsWith","FilterDescription_ComparisonItem_Equals":"FilterDescription_ComparisonItem_Equals","FilterDescription_ComparisonItem_GreaterThan":"FilterDescription_ComparisonItem_GreaterThan","FilterDescription_ComparisonItem_GreaterThanOrEqual":"FilterDescription_ComparisonItem_GreaterThanOrEqual","FilterDescription_ComparisonItem_LessThan":"FilterDescription_ComparisonItem_LessThan","FilterDescription_ComparisonItem_LessThanOrEqual":"FilterDescription_ComparisonItem_LessThanOrEqual","FilterDescription_ComparisonItem_NotEqual":"FilterDescription_ComparisonItem_NotEqual","FilterDescription_Custom_And":"FilterDescription_Custom_And","FilterDescription_Custom_Or":"FilterDescription_Custom_Or","FilterDescription_FixedValues":"FilterDescription_FixedValues","FilterDescription_FixedValues_Blanks":"FilterDescription_FixedValues_Blanks","FilterDescription_FixedValues_Day":"FilterDescription_FixedValues_Day","FilterDescription_FixedValues_Hour":"FilterDescription_FixedValues_Hour","FilterDescription_FixedValues_Minute":"FilterDescription_FixedValues_Minute","FilterDescription_FixedValues_Month":"FilterDescription_FixedValues_Month","FilterDescription_FixedValues_Second":"FilterDescription_FixedValues_Second","FilterDescription_FixedValues_Year":"FilterDescription_FixedValues_Year","FilterDescription_FontColor_Automatic":"FilterDescription_FontColor_Automatic","FilterDescription_FontColor_Named":"FilterDescription_FontColor_Named","FilterDescription_FontColor_Unknown":"FilterDescription_FontColor_Unknown","FilterDescription_MonthNumber":"FilterDescription_MonthNumber","FilterDescription_NoCellIcon":"FilterDescription_NoCellIcon","FilterDescription_QuarterNumber":"FilterDescription_QuarterNumber","FilterDescription_RelativeDate_CurrentDay":"FilterDescription_RelativeDate_CurrentDay","FilterDescription_RelativeDate_CurrentMonth":"FilterDescription_RelativeDate_CurrentMonth","FilterDescription_RelativeDate_CurrentQuarter":"FilterDescription_RelativeDate_CurrentQuarter","FilterDescription_RelativeDate_CurrentWeek":"FilterDescription_RelativeDate_CurrentWeek","FilterDescription_RelativeDate_CurrentYear":"FilterDescription_RelativeDate_CurrentYear","FilterDescription_RelativeDate_NextDay":"FilterDescription_RelativeDate_NextDay","FilterDescription_RelativeDate_NextMonth":"FilterDescription_RelativeDate_NextMonth","FilterDescription_RelativeDate_NextQuarter":"FilterDescription_RelativeDate_NextQuarter","FilterDescription_RelativeDate_NextWeek":"FilterDescription_RelativeDate_NextWeek","FilterDescription_RelativeDate_NextYear":"FilterDescription_RelativeDate_NextYear","FilterDescription_RelativeDate_PreviousDay":"FilterDescription_RelativeDate_PreviousDay","FilterDescription_RelativeDate_PreviousMonth":"FilterDescription_RelativeDate_PreviousMonth","FilterDescription_RelativeDate_PreviousQuarter":"FilterDescription_RelativeDate_PreviousQuarter","FilterDescription_RelativeDate_PreviousWeek":"FilterDescription_RelativeDate_PreviousWeek","FilterDescription_RelativeDate_PreviousYear":"FilterDescription_RelativeDate_PreviousYear","FilterDescription_TopItems":"FilterDescription_TopItems","FilterDescription_TopPercent":"FilterDescription_TopPercent","FilterDescription_WithCellIcon":"FilterDescription_WithCellIcon","FilterDescription_YearToDate":"FilterDescription_YearToDate","FilterDialog_And":"FilterDialog_And","FilterDialog_AsteriskHint":"FilterDialog_AsteriskHint","FilterDialog_Cancel":"FilterDialog_Cancel","FilterDialog_OK":"FilterDialog_OK","FilterDialog_Or":"FilterDialog_Or","FilterDialog_QuestionMarkHint":"FilterDialog_QuestionMarkHint","FilterDialog_ShowRowsWhere":"FilterDialog_ShowRowsWhere","FilterDialog_Title":"FilterDialog_Title","FormatCellsDialog_AlignmentTab_Text_Horizontal":"FormatCellsDialog_AlignmentTab_Text_Horizontal","FormatCellsDialog_AlignmentTab_Text_Indent":"FormatCellsDialog_AlignmentTab_Text_Indent","FormatCellsDialog_AlignmentTab_Text_JustifyDistributed":"FormatCellsDialog_AlignmentTab_Text_JustifyDistributed","FormatCellsDialog_AlignmentTab_Text_MergeCells":"FormatCellsDialog_AlignmentTab_Text_MergeCells","FormatCellsDialog_AlignmentTab_Text_RightToLeft":"FormatCellsDialog_AlignmentTab_Text_RightToLeft","FormatCellsDialog_AlignmentTab_Text_ShrinkToFit":"FormatCellsDialog_AlignmentTab_Text_ShrinkToFit","FormatCellsDialog_AlignmentTab_Text_TextAlignment":"FormatCellsDialog_AlignmentTab_Text_TextAlignment","FormatCellsDialog_AlignmentTab_Text_TextControl":"FormatCellsDialog_AlignmentTab_Text_TextControl","FormatCellsDialog_AlignmentTab_Text_TextDirection":"FormatCellsDialog_AlignmentTab_Text_TextDirection","FormatCellsDialog_AlignmentTab_Text_Vertical":"FormatCellsDialog_AlignmentTab_Text_Vertical","FormatCellsDialog_AlignmentTab_Text_WrapText":"FormatCellsDialog_AlignmentTab_Text_WrapText","FormatCellsDialog_AlignmentTabCaption":"FormatCellsDialog_AlignmentTabCaption","FormatCellsDialog_BorderTab_Text_Border":"FormatCellsDialog_BorderTab_Text_Border","FormatCellsDialog_BorderTab_Text_Color":"FormatCellsDialog_BorderTab_Text_Color","FormatCellsDialog_BorderTab_Text_Description":"FormatCellsDialog_BorderTab_Text_Description","FormatCellsDialog_BorderTab_Text_Line":"FormatCellsDialog_BorderTab_Text_Line","FormatCellsDialog_BorderTab_Text_PresetInside":"FormatCellsDialog_BorderTab_Text_PresetInside","FormatCellsDialog_BorderTab_Text_PresetNone":"FormatCellsDialog_BorderTab_Text_PresetNone","FormatCellsDialog_BorderTab_Text_PresetOutline":"FormatCellsDialog_BorderTab_Text_PresetOutline","FormatCellsDialog_BorderTab_Text_Presets":"FormatCellsDialog_BorderTab_Text_Presets","FormatCellsDialog_BorderTab_Text_SampleText":"FormatCellsDialog_BorderTab_Text_SampleText","FormatCellsDialog_BorderTab_Text_Style":"FormatCellsDialog_BorderTab_Text_Style","FormatCellsDialog_BorderTabCaption":"FormatCellsDialog_BorderTabCaption","FormatCellsDialog_Cancel":"FormatCellsDialog_Cancel","FormatCellsDialog_FillTab_Text_BackgroundColor":"FormatCellsDialog_FillTab_Text_BackgroundColor","FormatCellsDialog_FillTab_Text_PatternColor":"FormatCellsDialog_FillTab_Text_PatternColor","FormatCellsDialog_FillTab_Text_PatternStyle":"FormatCellsDialog_FillTab_Text_PatternStyle","FormatCellsDialog_FillTab_Text_Sample":"FormatCellsDialog_FillTab_Text_Sample","FormatCellsDialog_FillTabCaption":"FormatCellsDialog_FillTabCaption","FormatCellsDialog_FontTabCaption":"FormatCellsDialog_FontTabCaption","FormatCellsDialog_NumberTab_CategoryLabel":"FormatCellsDialog_NumberTab_CategoryLabel","FormatCellsDialog_NumberTab_DateFormatMasks":"FormatCellsDialog_NumberTab_DateFormatMasks","FormatCellsDialog_NumberTab_DecimalPlaces":"FormatCellsDialog_NumberTab_DecimalPlaces","FormatCellsDialog_NumberTab_SampleLabel":"FormatCellsDialog_NumberTab_SampleLabel","FormatCellsDialog_NumberTab_TimeFormatMasks":"FormatCellsDialog_NumberTab_TimeFormatMasks","FormatCellsDialog_NumberTabCaption":"FormatCellsDialog_NumberTabCaption","FormatCellsDialog_NumberTabInvalidMaskError":"FormatCellsDialog_NumberTabInvalidMaskError","FormatCellsDialog_OK":"FormatCellsDialog_OK","FormatCellsDialog_ProtectionTab_Text_Hidden":"FormatCellsDialog_ProtectionTab_Text_Hidden","FormatCellsDialog_ProtectionTab_Text_Locked":"FormatCellsDialog_ProtectionTab_Text_Locked","FormatCellsDialog_ProtectionTab_Text_Summary":"FormatCellsDialog_ProtectionTab_Text_Summary","FormatCellsDialog_ProtectionTabCaption":"FormatCellsDialog_ProtectionTabCaption","FormatCellsDialog_Title":"FormatCellsDialog_Title","FormatInfo_Accounting":"FormatInfo_Accounting","FormatInfo_Accounting_NumberFormat_Description":"FormatInfo_Accounting_NumberFormat_Description","FormatInfo_BlankDocument":"FormatInfo_BlankDocument","FormatInfo_Currency":"FormatInfo_Currency","FormatInfo_Currency_NumberFormat_Description":"FormatInfo_Currency_NumberFormat_Description","FormatInfo_Custom":"FormatInfo_Custom","FormatInfo_Custom_NumberFormat_Description":"FormatInfo_Custom_NumberFormat_Description","FormatInfo_Date":"FormatInfo_Date","FormatInfo_Date_NumberFormat_Description":"FormatInfo_Date_NumberFormat_Description","FormatInfo_FormatHeader_NegativeNumbers":"FormatInfo_FormatHeader_NegativeNumbers","FormatInfo_FormatHeader_Type":"FormatInfo_FormatHeader_Type","FormatInfo_Fraction":"FormatInfo_Fraction","FormatInfo_Fraction_Eighths":"FormatInfo_Fraction_Eighths","FormatInfo_Fraction_Halves":"FormatInfo_Fraction_Halves","FormatInfo_Fraction_Hundreths":"FormatInfo_Fraction_Hundreths","FormatInfo_Fraction_OneDigit":"FormatInfo_Fraction_OneDigit","FormatInfo_Fraction_Quarters":"FormatInfo_Fraction_Quarters","FormatInfo_Fraction_Sixteenths":"FormatInfo_Fraction_Sixteenths","FormatInfo_Fraction_Tenths":"FormatInfo_Fraction_Tenths","FormatInfo_Fraction_ThreeDigits":"FormatInfo_Fraction_ThreeDigits","FormatInfo_Fraction_TwoDigits":"FormatInfo_Fraction_TwoDigits","FormatInfo_General":"FormatInfo_General","FormatInfo_General_NumberFormat_Description":"FormatInfo_General_NumberFormat_Description","FormatInfo_Number":"FormatInfo_Number","FormatInfo_Number_NumberFormat_Description":"FormatInfo_Number_NumberFormat_Description","FormatInfo_Percentage":"FormatInfo_Percentage","FormatInfo_Percentage_NumberFormat_Description":"FormatInfo_Percentage_NumberFormat_Description","FormatInfo_ProjectBudget":"FormatInfo_ProjectBudget","FormatInfo_Scientific":"FormatInfo_Scientific","FormatInfo_Special":"FormatInfo_Special","FormatInfo_Special_NumberFormat_Description":"FormatInfo_Special_NumberFormat_Description","FormatInfo_Special_PhoneNumber":"FormatInfo_Special_PhoneNumber","FormatInfo_Special_SocialSecurityNumber":"FormatInfo_Special_SocialSecurityNumber","FormatInfo_Special_ZipCode":"FormatInfo_Special_ZipCode","FormatInfo_Special_ZipCodePlus4":"FormatInfo_Special_ZipCodePlus4","FormatInfo_Text":"FormatInfo_Text","FormatInfo_Text_NumberFormat_Description":"FormatInfo_Text_NumberFormat_Description","FormatInfo_Time":"FormatInfo_Time","FormatInfo_Time_NumberFormat_Description":"FormatInfo_Time_NumberFormat_Description","HorizontalCellAlignment_Center":"HorizontalCellAlignment_Center","HorizontalCellAlignment_CenterAcrossSelection":"HorizontalCellAlignment_CenterAcrossSelection","HorizontalCellAlignment_Default":"HorizontalCellAlignment_Default","HorizontalCellAlignment_Distributed":"HorizontalCellAlignment_Distributed","HorizontalCellAlignment_Fill":"HorizontalCellAlignment_Fill","HorizontalCellAlignment_General":"HorizontalCellAlignment_General","HorizontalCellAlignment_Justify":"HorizontalCellAlignment_Justify","HorizontalCellAlignment_Left":"HorizontalCellAlignment_Left","HorizontalCellAlignment_Right":"HorizontalCellAlignment_Right","Icon_BlackCircle":"Icon_BlackCircle","Icon_BlackCircleWithBorder":"Icon_BlackCircleWithBorder","Icon_CircleWithOneWhiteQuarter":"Icon_CircleWithOneWhiteQuarter","Icon_CircleWithThreeWhiteQuarters":"Icon_CircleWithThreeWhiteQuarters","Icon_CircleWithTwoWhiteQuarters":"Icon_CircleWithTwoWhiteQuarters","Icon_FourBars":"Icon_FourBars","Icon_FourFilledBoxes":"Icon_FourFilledBoxes","Icon_GoldStar":"Icon_GoldStar","Icon_GrayCircle":"Icon_GrayCircle","Icon_GrayDownArrow":"Icon_GrayDownArrow","Icon_GrayDownInclineArrow":"Icon_GrayDownInclineArrow","Icon_GraySideArrow":"Icon_GraySideArrow","Icon_GrayUpArrow":"Icon_GrayUpArrow","Icon_GrayUpInclineArrow":"Icon_GrayUpInclineArrow","Icon_GreenCheck":"Icon_GreenCheck","Icon_GreenCheckSymbol":"Icon_GreenCheckSymbol","Icon_GreenCircle":"Icon_GreenCircle","Icon_GreenFlag":"Icon_GreenFlag","Icon_GreenTrafficLight":"Icon_GreenTrafficLight","Icon_GreenUpArrow":"Icon_GreenUpArrow","Icon_GreenUpTriangle":"Icon_GreenUpTriangle","Icon_HalfGoldStar":"Icon_HalfGoldStar","Icon_OneBar":"Icon_OneBar","Icon_OneFilledBox":"Icon_OneFilledBox","Icon_PinkCircle":"Icon_PinkCircle","Icon_RedCircle":"Icon_RedCircle","Icon_RedCircleWithBorder":"Icon_RedCircleWithBorder","Icon_RedCross":"Icon_RedCross","Icon_RedCrossSymbol":"Icon_RedCrossSymbol","Icon_RedDiamond":"Icon_RedDiamond","Icon_RedDownArrow":"Icon_RedDownArrow","Icon_RedDownTriangle":"Icon_RedDownTriangle","Icon_RedFlag":"Icon_RedFlag","Icon_RedTrafficLight":"Icon_RedTrafficLight","Icon_SilverStar":"Icon_SilverStar","Icon_ThreeBars":"Icon_ThreeBars","Icon_ThreeFilledBoxes":"Icon_ThreeFilledBoxes","Icon_TwoBars":"Icon_TwoBars","Icon_TwoFilledBoxes":"Icon_TwoFilledBoxes","Icon_WhiteCircleAllWhiteQuarters":"Icon_WhiteCircleAllWhiteQuarters","Icon_YellowCircle":"Icon_YellowCircle","Icon_YellowDash":"Icon_YellowDash","Icon_YellowDownInclineArrow":"Icon_YellowDownInclineArrow","Icon_YellowExclamation":"Icon_YellowExclamation","Icon_YellowExclamationSymbol":"Icon_YellowExclamationSymbol","Icon_YellowFlag":"Icon_YellowFlag","Icon_YellowSideArrow":"Icon_YellowSideArrow","Icon_YellowTrafficLight":"Icon_YellowTrafficLight","Icon_YellowTriangle":"Icon_YellowTriangle","Icon_YellowUpInclineArrow":"Icon_YellowUpInclineArrow","Icon_ZeroBars":"Icon_ZeroBars","Icon_ZeroFilledBoxes":"Icon_ZeroFilledBoxes","InvalidCommand_MixedSelection_Message":"InvalidCommand_MixedSelection_Message","InvalidCommand_MultipleSelection_Message":"InvalidCommand_MultipleSelection_Message","InvalidCommand_OverlappingSelection_Message":"InvalidCommand_OverlappingSelection_Message","InvalidCommand_TableChangeWithMultipleSheetSelection_Message":"InvalidCommand_TableChangeWithMultipleSheetSelection_Message","InvalidDateTimeToolTip":"InvalidDateTimeToolTip","InvalidNameBoxValue_Message":"InvalidNameBoxValue_Message","LE_MissingTemplatePart":"LE_MissingTemplatePart","MenuItem_AllDatesInPeriod":"MenuItem_AllDatesInPeriod","MenuItem_AutoFit_Columns":"MenuItem_AutoFit_Columns","MenuItem_AutoFit_Rows":"MenuItem_AutoFit_Rows","MenuItem_Automatic":"MenuItem_Automatic","MenuItem_ClearContents":"MenuItem_ClearContents","MenuItem_ClearFilterEmpty":"MenuItem_ClearFilterEmpty","MenuItem_ClearFilterForColumn":"MenuItem_ClearFilterForColumn","MenuItem_ColorValue":"MenuItem_ColorValue","MenuItem_ConvertTableToRange":"MenuItem_ConvertTableToRange","MenuItem_Copy":"MenuItem_Copy","MenuItem_Cut":"MenuItem_Cut","MenuItem_DateFilters":"MenuItem_DateFilters","MenuItem_Delete":"MenuItem_Delete","MenuItem_DeleteCells":"MenuItem_DeleteCells","MenuItem_DeleteCells_Column":"MenuItem_DeleteCells_Column","MenuItem_DeleteCells_DeleteTableColumns":"MenuItem_DeleteCells_DeleteTableColumns","MenuItem_DeleteCells_DeleteTableRows":"MenuItem_DeleteCells_DeleteTableRows","MenuItem_DeleteCells_Row":"MenuItem_DeleteCells_Row","MenuItem_DeleteCells_ShiftLeft":"MenuItem_DeleteCells_ShiftLeft","MenuItem_DeleteCells_ShiftUp":"MenuItem_DeleteCells_ShiftUp","MenuItem_DeleteWorksheets":"MenuItem_DeleteWorksheets","MenuItem_Filter":"MenuItem_Filter","MenuItem_Filter_AboveAverage":"MenuItem_Filter_AboveAverage","MenuItem_Filter_After":"MenuItem_Filter_After","MenuItem_Filter_Before":"MenuItem_Filter_Before","MenuItem_Filter_BeginsWith":"MenuItem_Filter_BeginsWith","MenuItem_Filter_BelowAverage":"MenuItem_Filter_BelowAverage","MenuItem_Filter_Between":"MenuItem_Filter_Between","MenuItem_Filter_Contains":"MenuItem_Filter_Contains","MenuItem_Filter_Custom":"MenuItem_Filter_Custom","MenuItem_Filter_Day_Current":"MenuItem_Filter_Day_Current","MenuItem_Filter_Day_Next":"MenuItem_Filter_Day_Next","MenuItem_Filter_Day_Previous":"MenuItem_Filter_Day_Previous","MenuItem_Filter_DoesNotContain":"MenuItem_Filter_DoesNotContain","MenuItem_Filter_EndsWith":"MenuItem_Filter_EndsWith","MenuItem_Filter_Equals":"MenuItem_Filter_Equals","MenuItem_Filter_GreaterThan":"MenuItem_Filter_GreaterThan","MenuItem_Filter_GreaterThanOrEqual":"MenuItem_Filter_GreaterThanOrEqual","MenuItem_Filter_LessThan":"MenuItem_Filter_LessThan","MenuItem_Filter_LessThanOrEqual":"MenuItem_Filter_LessThanOrEqual","MenuItem_Filter_Month_Current":"MenuItem_Filter_Month_Current","MenuItem_Filter_Month_Next":"MenuItem_Filter_Month_Next","MenuItem_Filter_Month_Previous":"MenuItem_Filter_Month_Previous","MenuItem_Filter_NotEqual":"MenuItem_Filter_NotEqual","MenuItem_Filter_Quarter_Current":"MenuItem_Filter_Quarter_Current","MenuItem_Filter_Quarter_Next":"MenuItem_Filter_Quarter_Next","MenuItem_Filter_Quarter_Previous":"MenuItem_Filter_Quarter_Previous","MenuItem_Filter_QuarterNumber":"MenuItem_Filter_QuarterNumber","MenuItem_Filter_Top10":"MenuItem_Filter_Top10","MenuItem_Filter_Week_Current":"MenuItem_Filter_Week_Current","MenuItem_Filter_Week_Next":"MenuItem_Filter_Week_Next","MenuItem_Filter_Week_Previous":"MenuItem_Filter_Week_Previous","MenuItem_Filter_Year_Current":"MenuItem_Filter_Year_Current","MenuItem_Filter_Year_Next":"MenuItem_Filter_Year_Next","MenuItem_Filter_Year_Previous":"MenuItem_Filter_Year_Previous","MenuItem_Filter_YearToDate":"MenuItem_Filter_YearToDate","MenuItem_FilterByCellColor":"MenuItem_FilterByCellColor","MenuItem_FilterByCellFontColor":"MenuItem_FilterByCellFontColor","MenuItem_FilterByCellIcon":"MenuItem_FilterByCellIcon","MenuItem_FilterByCellValue":"MenuItem_FilterByCellValue","MenuItem_FilterByColor":"MenuItem_FilterByColor","MenuItem_FilterByFontColor":"MenuItem_FilterByFontColor","MenuItem_FilterByIcon":"MenuItem_FilterByIcon","MenuItem_GradientFill":"MenuItem_GradientFill","MenuItem_Hide":"MenuItem_Hide","MenuItem_Insert":"MenuItem_Insert","MenuItem_InsertCells":"MenuItem_InsertCells","MenuItem_InsertCells_AddTableColumn":"MenuItem_InsertCells_AddTableColumn","MenuItem_InsertCells_AddTableRow":"MenuItem_InsertCells_AddTableRow","MenuItem_InsertCells_Column":"MenuItem_InsertCells_Column","MenuItem_InsertCells_InsertTableColumns":"MenuItem_InsertCells_InsertTableColumns","MenuItem_InsertCells_InsertTableRows":"MenuItem_InsertCells_InsertTableRows","MenuItem_InsertCells_Row":"MenuItem_InsertCells_Row","MenuItem_InsertCells_ShiftDown":"MenuItem_InsertCells_ShiftDown","MenuItem_InsertCells_ShiftRight":"MenuItem_InsertCells_ShiftRight","MenuItem_InsertWorksheets":"MenuItem_InsertWorksheets","MenuItem_NoFill":"MenuItem_NoFill","MenuItem_NoIcon":"MenuItem_NoIcon","MenuItem_NumberFilters":"MenuItem_NumberFilters","MenuItem_OpenHyperlink":"MenuItem_OpenHyperlink","MenuItem_Paste":"MenuItem_Paste","MenuItem_PickFromDropDownList":"MenuItem_PickFromDropDownList","MenuItem_ReapplyFilter":"MenuItem_ReapplyFilter","MenuItem_RemoveHyperlink":"MenuItem_RemoveHyperlink","MenuItem_RemoveHyperlinks":"MenuItem_RemoveHyperlinks","MenuItem_RenameWorksheet":"MenuItem_RenameWorksheet","MenuItem_Select":"MenuItem_Select","MenuItem_Select_SelectEntireTableColumn":"MenuItem_Select_SelectEntireTableColumn","MenuItem_Select_SelectTableColumnData":"MenuItem_Select_SelectTableColumnData","MenuItem_Select_SelectTableRow":"MenuItem_Select_SelectTableRow","MenuItem_SelectAllWorksheets":"MenuItem_SelectAllWorksheets","MenuItem_ShowFormatCellsDialog":"MenuItem_ShowFormatCellsDialog","MenuItem_Sort":"MenuItem_Sort","MenuItem_Sort_Custom":"MenuItem_Sort_Custom","MenuItem_SortAscending_Date":"MenuItem_SortAscending_Date","MenuItem_SortAscending_Number":"MenuItem_SortAscending_Number","MenuItem_SortAscending_Text":"MenuItem_SortAscending_Text","MenuItem_SortByCellColor":"MenuItem_SortByCellColor","MenuItem_SortByCellColorHeader":"MenuItem_SortByCellColorHeader","MenuItem_SortByCellFontColor":"MenuItem_SortByCellFontColor","MenuItem_SortByCellIcon":"MenuItem_SortByCellIcon","MenuItem_SortByColor":"MenuItem_SortByColor","MenuItem_SortByFontColor":"MenuItem_SortByFontColor","MenuItem_SortByIcon":"MenuItem_SortByIcon","MenuItem_SortDescending_Date":"MenuItem_SortDescending_Date","MenuItem_SortDescending_Number":"MenuItem_SortDescending_Number","MenuItem_SortDescending_Text":"MenuItem_SortDescending_Text","MenuItem_Table":"MenuItem_Table","MenuItem_TextFilters":"MenuItem_TextFilters","MenuItem_ToggleTableTotalRow":"MenuItem_ToggleTableTotalRow","MenuItem_Unhide":"MenuItem_Unhide","MenuItem_UnselectWorksheets":"MenuItem_UnselectWorksheets","NewSheetName":"NewSheetName","PasteError_CellRangeSize_Message":"PasteError_CellRangeSize_Message","PasteError_General_Message":"PasteError_General_Message","PasteError_IntersectsMergedCells_Message":"PasteError_IntersectsMergedCells_Message","PasteError_InvalidSelectedSheetCount_Message":"PasteError_InvalidSelectedSheetCount_Message","PasteError_InvalidSourceRanges_Message":"PasteError_InvalidSourceRanges_Message","PasteError_MultipleSheetTables_Message":"PasteError_MultipleSheetTables_Message","PasteError_MultipleSourceAndTargetRanges_Message":"PasteError_MultipleSourceAndTargetRanges_Message","SheetNameError_Message_Invalid":"SheetNameError_Message_Invalid","SheetNameError_Message_NameIsUsed":"SheetNameError_Message_NameIsUsed","SortDialog_AddLevel":"SortDialog_AddLevel","SortDialog_Cancel":"SortDialog_Cancel","SortDialog_CellFill_Gradient":"SortDialog_CellFill_Gradient","SortDialog_CellFill_NoColor":"SortDialog_CellFill_NoColor","SortDialog_Color_RGB":"SortDialog_Color_RGB","SortDialog_Column_ColumnHeader":"SortDialog_Column_ColumnHeader","SortDialog_ColumnName":"SortDialog_ColumnName","SortDialog_ConditionalFormatIcon_NoCellIcon":"SortDialog_ConditionalFormatIcon_NoCellIcon","SortDialog_CopyLevel":"SortDialog_CopyLevel","SortDialog_DeleteLevel":"SortDialog_DeleteLevel","SortDialog_MoveDown":"SortDialog_MoveDown","SortDialog_MoveUp":"SortDialog_MoveUp","SortDialog_MyDataHasHeaders":"SortDialog_MyDataHasHeaders","SortDialog_OK":"SortDialog_OK","SortDialog_Options":"SortDialog_Options","SortDialog_Order_ColumnHeader":"SortDialog_Order_ColumnHeader","SortDialog_Row_ColumnHeader":"SortDialog_Row_ColumnHeader","SortDialog_RowName":"SortDialog_RowName","SortDialog_SortBy_Label":"SortDialog_SortBy_Label","SortDialog_SortConditionError_DuplicateItemSorted":"SortDialog_SortConditionError_DuplicateItemSorted","SortDialog_SortConditionError_FieldCannotBeNull":"SortDialog_SortConditionError_FieldCannotBeNull","SortDialog_SortDirection_CustomList":"SortDialog_SortDirection_CustomList","SortDialog_SortDirection_Date_Ascending":"SortDialog_SortDirection_Date_Ascending","SortDialog_SortDirection_Date_Descending":"SortDialog_SortDirection_Date_Descending","SortDialog_SortDirection_Number_Ascending":"SortDialog_SortDirection_Number_Ascending","SortDialog_SortDirection_Number_Descending":"SortDialog_SortDirection_Number_Descending","SortDialog_SortDirection_Text_Ascending":"SortDialog_SortDirection_Text_Ascending","SortDialog_SortDirection_Text_Descending":"SortDialog_SortDirection_Text_Descending","SortDialog_SortDirectionLeftOrRight_Ascending":"SortDialog_SortDirectionLeftOrRight_Ascending","SortDialog_SortDirectionLeftOrRight_Descending":"SortDialog_SortDirectionLeftOrRight_Descending","SortDialog_SortDirectionTopOrBottom_Ascending":"SortDialog_SortDirectionTopOrBottom_Ascending","SortDialog_SortDirectionTopOrBottom_Descending":"SortDialog_SortDirectionTopOrBottom_Descending","SortDialog_SortOn_ColumnHeader":"SortDialog_SortOn_ColumnHeader","SortDialog_Text_Automatic":"SortDialog_Text_Automatic","SortDialog_ThenBy_Label":"SortDialog_ThenBy_Label","SortDialog_Title":"SortDialog_Title","SortOptionsDialog_Cancel":"SortOptionsDialog_Cancel","SortOptionsDialog_CaseSensitive":"SortOptionsDialog_CaseSensitive","SortOptionsDialog_OK":"SortOptionsDialog_OK","SortOptionsDialog_Orientation":"SortOptionsDialog_Orientation","SortOptionsDialog_SortLeftToRight":"SortOptionsDialog_SortLeftToRight","SortOptionsDialog_SortTopToBottom":"SortOptionsDialog_SortTopToBottom","SortOptionsDialog_Title":"SortOptionsDialog_Title","SpreadsheetFontControl_ColorLabel":"SpreadsheetFontControl_ColorLabel","SpreadsheetFontControl_FontLabel":"SpreadsheetFontControl_FontLabel","SpreadsheetFontControl_FontStyle_Bold":"SpreadsheetFontControl_FontStyle_Bold","SpreadsheetFontControl_FontStyle_BoldItalic":"SpreadsheetFontControl_FontStyle_BoldItalic","SpreadsheetFontControl_FontStyle_Italic":"SpreadsheetFontControl_FontStyle_Italic","SpreadsheetFontControl_FontStyle_Regular":"SpreadsheetFontControl_FontStyle_Regular","SpreadsheetFontControl_FontStyleLabel":"SpreadsheetFontControl_FontStyleLabel","SpreadsheetFontControl_NormalFontLabel":"SpreadsheetFontControl_NormalFontLabel","SpreadsheetFontControl_SizeLabel":"SpreadsheetFontControl_SizeLabel","SpreadsheetFontControl_StrikethroughLabel":"SpreadsheetFontControl_StrikethroughLabel","SpreadsheetFontControl_SubscriptLabel":"SpreadsheetFontControl_SubscriptLabel","SpreadsheetFontControl_SuperscriptLabel":"SpreadsheetFontControl_SuperscriptLabel","SpreadsheetFontControl_Text_Automatic":"SpreadsheetFontControl_Text_Automatic","SpreadsheetFontControl_Text_Effects":"SpreadsheetFontControl_Text_Effects","SpreadsheetFontControl_Text_NoColor":"SpreadsheetFontControl_Text_NoColor","SpreadsheetFontControl_Text_Preview":"SpreadsheetFontControl_Text_Preview","SpreadsheetFontControl_UnderlineLabel":"SpreadsheetFontControl_UnderlineLabel","SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_CustomListSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FillSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_FontColorSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_IconSortCondition_DisplayText","SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText":"SpreadsheetSortDialogConditionTypes_OrderedSortCondition_DisplayText","SpreadsheetThemeColorPickerControl_Text_Automatic":"SpreadsheetThemeColorPickerControl_Text_Automatic","SpreadsheetThemeColorPickerControl_Text_NoColor":"SpreadsheetThemeColorPickerControl_Text_NoColor","SpreadsheetThemeColorPickerControl_Text_StandardColors":"SpreadsheetThemeColorPickerControl_Text_StandardColors","SpreadsheetThemeColorPickerControl_Text_ThemeColors":"SpreadsheetThemeColorPickerControl_Text_ThemeColors","String1":"String1","ToolTip_FormulaBarCancelButton":"ToolTip_FormulaBarCancelButton","ToolTip_FormulaBarEnterButton":"ToolTip_FormulaBarEnterButton","ToolTip_FormulaBarNameBox":"ToolTip_FormulaBarNameBox","ToolTip_FormulaBarTextEditor":"ToolTip_FormulaBarTextEditor","TopOrBottomDialog_Cancel":"TopOrBottomDialog_Cancel","TopOrBottomDialog_OK":"TopOrBottomDialog_OK","TopOrBottomDialog_Show":"TopOrBottomDialog_Show","TopOrBottomDialog_Title":"TopOrBottomDialog_Title","TotalRow_Average":"TotalRow_Average","TotalRow_Count":"TotalRow_Count","TotalRow_CountNumbers":"TotalRow_CountNumbers","TotalRow_Max":"TotalRow_Max","TotalRow_Min":"TotalRow_Min","TotalRow_None":"TotalRow_None","TotalRow_StdDev":"TotalRow_StdDev","TotalRow_Sum":"TotalRow_Sum","TotalRow_Var":"TotalRow_Var","Undo_AddTableColumn":"Undo_AddTableColumn","Undo_AddTableRow":"Undo_AddTableRow","Undo_AutoFilterOff":"Undo_AutoFilterOff","Undo_AutoFilterOn":"Undo_AutoFilterOn","Undo_Bold":"Undo_Bold","Undo_Borders":"Undo_Borders","Undo_BottomAlignment":"Undo_BottomAlignment","Undo_CenterAlignment":"Undo_CenterAlignment","Undo_ChangeTotalRowFormula":"Undo_ChangeTotalRowFormula","Undo_ChartAdd":"Undo_ChartAdd","Undo_ChartModify":"Undo_ChartModify","Undo_ChartRemove":"Undo_ChartRemove","Undo_ClearCellContents":"Undo_ClearCellContents","Undo_ClearCellFormats":"Undo_ClearCellFormats","Undo_ClearHyperlinks":"Undo_ClearHyperlinks","Undo_ClearShapes":"Undo_ClearShapes","Undo_ClearTables":"Undo_ClearTables","Undo_ConditionalFormat":"Undo_ConditionalFormat","Undo_ConvertTableToRange":"Undo_ConvertTableToRange","Undo_CreateNamedReference":"Undo_CreateNamedReference","Undo_CreateTable":"Undo_CreateTable","Undo_Cut":"Undo_Cut","Undo_Delete":"Undo_Delete","Undo_DeleteTableColumn":"Undo_DeleteTableColumn","Undo_DeleteTableRow":"Undo_DeleteTableRow","Undo_EditCell":"Undo_EditCell","Undo_Entry":"Undo_Entry","Undo_Filter":"Undo_Filter","Undo_Font":"Undo_Font","Undo_FontSize":"Undo_FontSize","Undo_FormatCells":"Undo_FormatCells","Undo_Group":"Undo_Group","Undo_Hyperlink":"Undo_Hyperlink","Undo_InsertCells":"Undo_InsertCells","Undo_InsertColumns":"Undo_InsertColumns","Undo_InsertRows":"Undo_InsertRows","Undo_InsertTableColumns":"Undo_InsertTableColumns","Undo_InsertTableRows":"Undo_InsertTableRows","Undo_Italic":"Undo_Italic","Undo_JustifyAlignment":"Undo_JustifyAlignment","Undo_LeftAlignment":"Undo_LeftAlignment","Undo_MergeCells":"Undo_MergeCells","Undo_MiddleAlignment":"Undo_MiddleAlignment","Undo_Paste":"Undo_Paste","Undo_Reapply":"Undo_Reapply","Undo_RemoveHyperlinks":"Undo_RemoveHyperlinks","Undo_RemoveTable":"Undo_RemoveTable","Undo_ResetOptions":"Undo_ResetOptions","Undo_ResizeColumn":"Undo_ResizeColumn","Undo_ResizeRow":"Undo_ResizeRow","Undo_RightAlignment":"Undo_RightAlignment","Undo_Shape":"Undo_Shape","Undo_ShapeAdd":"Undo_ShapeAdd","Undo_ShapeRemove":"Undo_ShapeRemove","Undo_ShowAll":"Undo_ShowAll","Undo_Sort":"Undo_Sort","Undo_SparklineAdd":"Undo_SparklineAdd","Undo_SparklineColorChange":"Undo_SparklineColorChange","Undo_SparklineDataChange":"Undo_SparklineDataChange","Undo_SparklineRemove":"Undo_SparklineRemove","Undo_SparklineStyleChange":"Undo_SparklineStyleChange","Undo_SparklineTypeChange":"Undo_SparklineTypeChange","Undo_Strikethrough":"Undo_Strikethrough","Undo_Style":"Undo_Style","Undo_TabColor":"Undo_TabColor","Undo_TableAutoExpansion":"Undo_TableAutoExpansion","Undo_ToggleTotalRow":"Undo_ToggleTotalRow","Undo_TopAlignment":"Undo_TopAlignment","Undo_Underline":"Undo_Underline","Undo_View":"Undo_View","Undo_WrapText":"Undo_WrapText","Undo_Zoom":"Undo_Zoom","VerticalCellAlignment_Bottom":"VerticalCellAlignment_Bottom","VerticalCellAlignment_Center":"VerticalCellAlignment_Center","VerticalCellAlignment_Default":"VerticalCellAlignment_Default","VerticalCellAlignment_Distributed":"VerticalCellAlignment_Distributed","VerticalCellAlignment_Justify":"VerticalCellAlignment_Justify","VerticalCellAlignment_Top":"VerticalCellAlignment_Top"}}],"SpreadsheetPane":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetPane","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","columnScrollRegion":"columnScrollRegion","rowScrollRegion":"rowScrollRegion","selection":"selection","visibleRange":"visibleRange","addListener":"addListener","d":"d","e":"e","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","scrollCellIntoView":"scrollCellIntoView","scrollColumnIntoView":"scrollColumnIntoView","scrollRangeIntoView":"scrollRangeIntoView","scrollRowIntoView":"scrollRowIntoView"}}],"SpreadsheetRowColumnVisualData":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetRowColumnVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","extent":"extent","index":"index","offset":"offset","serialize":"serialize"}}],"SpreadsheetRowColumnVisualDataList":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetRowColumnVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetRowScrollRegion":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetRowScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetScrollRegion":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetScrollRegion","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","actualExtent":"actualExtent","endIndex":"endIndex","isFrozen":"isFrozen","startIndex":"startIndex","addListener":"addListener","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener"}}],"SpreadsheetSelection":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetSelection","k":"class","s":"classes","m":{"constructor":"constructor","propertyChanged":"propertyChanged","$t":"$t","activeCell":"activeCell","activeCellRangeIndex":"activeCellRangeIndex","cellRanges":"cellRanges","cellRangesAddress":"cellRangesAddress","addActiveCellRange":"addActiveCellRange","addCellRange":"addCellRange","addListener":"addListener","clearCellRanges":"clearCellRanges","d":"d","onPropertyValueChanged":"onPropertyValueChanged","removeListener":"removeListener","replaceActiveCellRange":"replaceActiveCellRange","resetSelection":"resetSelection","setActiveCell":"setActiveCell","unselectRange":"unselectRange"}}],"SpreadsheetTabItemAreaVisualData":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetTabItemAreaVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","relativeBounds":"relativeBounds","tabs":"tabs","serialize":"serialize"}}],"SpreadsheetTabVisualData":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetTabVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","color":"color","isActive":"isActive","isEditing":"isEditing","isProtected":"isProtected","isSelected":"isSelected","relativeBounds":"relativeBounds","sheetIndex":"sheetIndex","serialize":"serialize"}}],"SpreadsheetTabVisualDataList":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetTabVisualDataList","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t"}}],"SpreadsheetVisualData":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetVisualData","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","cellAreas":"cellAreas","columnHeaderAreas":"columnHeaderAreas","rowHeaderAreas":"rowHeaderAreas","tabArea":"tabArea","serialize":"serialize"}}],"SpreadsheetVisualDataBase":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/SpreadsheetVisualDataBase","k":"class","s":"classes","m":{"constructor":"constructor","$t":"$t","serialize":"serialize"}}],"UndoLocaleBg":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleBg","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleCs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleCs","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleDa":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleDa","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleDe":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleDe","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleEn":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleEn","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleEs":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleEs","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleFr":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleFr","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleHu":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleHu","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleIt":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleIt","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleJa":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleJa","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleNb":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleNb","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleNl":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleNl","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocalePl":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocalePl","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocalePt":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocalePt","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleRo":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleRo","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleRu":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleRu","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleSv":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleSv","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleTr":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleTr","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleZhHans":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleZhHans","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"UndoLocaleZhHant":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/classes/UndoLocaleZhHant","k":"class","s":"classes","m":{"constructor":"constructor","AddItemDescription":"AddItemDescription","AddItemDescriptionDetailed":"AddItemDescriptionDetailed","AddRangeDescription":"AddRangeDescription","AddRangeDescriptionDetailed":"AddRangeDescriptionDetailed","FallbackTransactionDescription":"FallbackTransactionDescription","LE_AddOpenTransaction":"LE_AddOpenTransaction","LE_AddTransactionDirect":"LE_AddTransactionDirect","LE_AddUnitWhileTransactionOpen":"LE_AddUnitWhileTransactionOpen","LE_ArgumentIsNegative":"LE_ArgumentIsNegative","LE_CannotExecuteOpenTransaction":"LE_CannotExecuteOpenTransaction","LE_ChangeHistoryInMerge":"LE_ChangeHistoryInMerge","LE_ChangeHistoryInRemoveAll":"LE_ChangeHistoryInRemoveAll","LE_ChildTransactionNotInUnits":"LE_ChildTransactionNotInUnits","LE_ClosingOtherTransaction":"LE_ClosingOtherTransaction","LE_EndTransactionWhileSuspended":"LE_EndTransactionWhileSuspended","LE_EnumEnded":"LE_EnumEnded","LE_EnumFailedVersion":"LE_EnumFailedVersion","LE_EnumNotStarted":"LE_EnumNotStarted","LE_FactoryNullTransaction":"LE_FactoryNullTransaction","LE_HasOpenTransaction":"LE_HasOpenTransaction","LE_HistoryItemNotInCurrentHistory":"LE_HistoryItemNotInCurrentHistory","LE_InvalidTransactionOwner":"LE_InvalidTransactionOwner","LE_NeedAddRemoveAction":"LE_NeedAddRemoveAction","LE_NewTransactionWhileSuspended":"LE_NewTransactionWhileSuspended","LE_RangeCollectionAction":"LE_RangeCollectionAction","LE_ReferenceNotRegistered":"LE_ReferenceNotRegistered","LE_ReferenceRegisteredToOther":"LE_ReferenceRegisteredToOther","LE_RemoveAllFailedVersion":"LE_RemoveAllFailedVersion","LE_ResetCollectionAction":"LE_ResetCollectionAction","LE_TargetCollectionIsReadOnly":"LE_TargetCollectionIsReadOnly","LE_TransactionAlreadyOpened":"LE_TransactionAlreadyOpened","LE_TransactionClosed":"LE_TransactionClosed","LE_TransactionNotOpened":"LE_TransactionNotOpened","LE_TransactionNotStarted":"LE_TransactionNotStarted","LE_UndoManagerAsReference":"LE_UndoManagerAsReference","LE_UndoRedoInRollback":"LE_UndoRedoInRollback","LE_UndoRedoInTransaction":"LE_UndoRedoInTransaction","LE_UndoRedoInUndoRedo":"LE_UndoRedoInUndoRedo","LE_UndoRedoWhileSuspended":"LE_UndoRedoWhileSuspended","MoveItemDescription":"MoveItemDescription","MoveItemDescriptionDetailed":"MoveItemDescriptionDetailed","PropertyChangeDescription":"PropertyChangeDescription","PropertyChangeDescriptionDetailed":"PropertyChangeDescriptionDetailed","ReinitializeCollectionDescription":"ReinitializeCollectionDescription","ReinitializeCollectionDescriptionDetailed":"ReinitializeCollectionDescriptionDetailed","RemoveItemDescription":"RemoveItemDescription","RemoveItemDescriptionDetailed":"RemoveItemDescriptionDetailed","RemoveRangeDescription":"RemoveRangeDescription","RemoveRangeDescriptionDetailed":"RemoveRangeDescriptionDetailed","ReplaceItemDescription":"ReplaceItemDescription","ReplaceItemDescriptionDetailed":"ReplaceItemDescriptionDetailed"}}],"SpreadsheetAction":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetAction","k":"enum","s":"enums","m":{"ActivateAndSelectNextWorksheet":"ActivateAndSelectNextWorksheet","ActivateAndSelectPreviousWorksheet":"ActivateAndSelectPreviousWorksheet","ActivateNextOutOfViewWorksheet":"ActivateNextOutOfViewWorksheet","ActivateNextPane":"ActivateNextPane","ActivateNextWorksheet":"ActivateNextWorksheet","ActivatePreviousOutOfViewWorksheet":"ActivatePreviousOutOfViewWorksheet","ActivatePreviousPane":"ActivatePreviousPane","ActivatePreviousWorksheet":"ActivatePreviousWorksheet","AddNewWorksheet":"AddNewWorksheet","AddTableColumn":"AddTableColumn","AddTableRow":"AddTableRow","AlignHorizontalCenter":"AlignHorizontalCenter","AlignHorizontalJustify":"AlignHorizontalJustify","AlignHorizontalLeft":"AlignHorizontalLeft","AlignHorizontalRight":"AlignHorizontalRight","AlignVerticalBottom":"AlignVerticalBottom","AlignVerticalMiddle":"AlignVerticalMiddle","AlignVerticalTop":"AlignVerticalTop","AutoFitColumnWidth":"AutoFitColumnWidth","AutoFitRowHeight":"AutoFitRowHeight","CancelRenameWorksheet":"CancelRenameWorksheet","CellAbove":"CellAbove","CellBelow":"CellBelow","CellInNextSelectionRange":"CellInNextSelectionRange","CellInPreviousSelectionRange":"CellInPreviousSelectionRange","CellInSelectionAbove":"CellInSelectionAbove","CellInSelectionBelow":"CellInSelectionBelow","CellInSelectionLeft":"CellInSelectionLeft","CellInSelectionRight":"CellInSelectionRight","CellInTableLeft":"CellInTableLeft","CellInTableRight":"CellInTableRight","CellLeft":"CellLeft","CellPageAbove":"CellPageAbove","CellPageBelow":"CellPageBelow","CellPageLeft":"CellPageLeft","CellPageRight":"CellPageRight","CellRight":"CellRight","CellWithDataAbove":"CellWithDataAbove","CellWithDataBelow":"CellWithDataBelow","CellWithDataLeft":"CellWithDataLeft","CellWithDataRight":"CellWithDataRight","CircleInvalidData":"CircleInvalidData","ClearAllFilterAndSort":"ClearAllFilterAndSort","ClearContents":"ClearContents","ClearFilter":"ClearFilter","ClearFormats":"ClearFormats","ClearHyperlinks":"ClearHyperlinks","ClearValidationCircles":"ClearValidationCircles","CommitRenameWorksheet":"CommitRenameWorksheet","ConvertTableToRange":"ConvertTableToRange","Copy":"Copy","Cut":"Cut","DecreaseFontSize":"DecreaseFontSize","DecreaseIndentation":"DecreaseIndentation","DeleteCells":"DeleteCells","DeleteCellsShiftLeft":"DeleteCellsShiftLeft","DeleteCellsShiftUp":"DeleteCellsShiftUp","DeleteColumns":"DeleteColumns","DeleteRows":"DeleteRows","DeleteTableColumns":"DeleteTableColumns","DeleteTableRows":"DeleteTableRows","DeleteWorksheets":"DeleteWorksheets","EdgeCellWithDataAbove":"EdgeCellWithDataAbove","EdgeCellWithDataBelow":"EdgeCellWithDataBelow","EdgeCellWithDataLeft":"EdgeCellWithDataLeft","EdgeCellWithDataRight":"EdgeCellWithDataRight","EnterEditMode":"EnterEditMode","EnterEditModeAndClearValue":"EnterEditModeAndClearValue","EnterEndMode":"EnterEndMode","EnterKeyNavigation":"EnterKeyNavigation","ExitEditModeAndCreateArrayFormula":"ExitEditModeAndCreateArrayFormula","ExitEditModeAndDiscardChanges":"ExitEditModeAndDiscardChanges","ExitEditModeAndUpdateActiveCell":"ExitEditModeAndUpdateActiveCell","ExitEditModeAndUpdateSelectedCells":"ExitEditModeAndUpdateSelectedCells","ExitEndMode":"ExitEndMode","FilterByCellColor":"FilterByCellColor","FilterByCellFontColor":"FilterByCellFontColor","FilterByCellIcon":"FilterByCellIcon","FilterByCellValue":"FilterByCellValue","FirstCellInRow":"FirstCellInRow","FirstCellInView":"FirstCellInView","FirstCellInViewWithinSelection":"FirstCellInViewWithinSelection","FirstCellInWorksheet":"FirstCellInWorksheet","FirstScrollableCellInRow":"FirstScrollableCellInRow","FirstScrollableCellInWorksheet":"FirstScrollableCellInWorksheet","FirstUnlockedCell":"FirstUnlockedCell","FreezeFirstColumn":"FreezeFirstColumn","FreezeFirstRow":"FreezeFirstRow","HideColumns":"HideColumns","HideRows":"HideRows","IncreaseFontSize":"IncreaseFontSize","IncreaseIndentation":"IncreaseIndentation","InsertCells":"InsertCells","InsertCellsShiftDown":"InsertCellsShiftDown","InsertCellsShiftRight":"InsertCellsShiftRight","InsertColumns":"InsertColumns","InsertNewWorksheets":"InsertNewWorksheets","InsertRows":"InsertRows","InsertTableColumns":"InsertTableColumns","InsertTableRows":"InsertTableRows","LastCellInView":"LastCellInView","LastCellInViewWithinSelection":"LastCellInViewWithinSelection","LastUnlockedCell":"LastUnlockedCell","LastUsedCell":"LastUsedCell","LastUsedCellInRow":"LastUsedCellInRow","MergeCells":"MergeCells","MergeCellsAcross":"MergeCellsAcross","MergeCellsAndCenter":"MergeCellsAndCenter","OpenHyperlink":"OpenHyperlink","Paste":"Paste","PickFromDropDownList":"PickFromDropDownList","ReapplyFilterAndSort":"ReapplyFilterAndSort","Redo":"Redo","RemoveColumnScrollRegionSplit":"RemoveColumnScrollRegionSplit","RemoveHyperlinks":"RemoveHyperlinks","RemoveRowScrollRegionSplit":"RemoveRowScrollRegionSplit","RemoveScrollRegionSplits":"RemoveScrollRegionSplits","RenameWorksheet":"RenameWorksheet","ResetNameBoxWidth":"ResetNameBoxWidth","ScrollDown":"ScrollDown","ScrollLeft":"ScrollLeft","ScrollNextWorksheet":"ScrollNextWorksheet","ScrollPageAbove":"ScrollPageAbove","ScrollPageBelow":"ScrollPageBelow","ScrollPageLeft":"ScrollPageLeft","ScrollPageRight":"ScrollPageRight","ScrollPreviousWorksheet":"ScrollPreviousWorksheet","ScrollRight":"ScrollRight","ScrollToFirstWorksheet":"ScrollToFirstWorksheet","ScrollToLastWorksheet":"ScrollToLastWorksheet","ScrollUp":"ScrollUp","SelectActiveCellOnly":"SelectActiveCellOnly","SelectAllCells":"SelectAllCells","SelectAllWorksheets":"SelectAllWorksheets","SelectCellAbove":"SelectCellAbove","SelectCellBelow":"SelectCellBelow","SelectCellLeft":"SelectCellLeft","SelectCellPageAbove":"SelectCellPageAbove","SelectCellPageBelow":"SelectCellPageBelow","SelectCellPageLeft":"SelectCellPageLeft","SelectCellPageRight":"SelectCellPageRight","SelectCellRight":"SelectCellRight","SelectCellWithDataAbove":"SelectCellWithDataAbove","SelectCellWithDataBelow":"SelectCellWithDataBelow","SelectCellWithDataLeft":"SelectCellWithDataLeft","SelectCellWithDataRight":"SelectCellWithDataRight","SelectColumns":"SelectColumns","SelectCurrentArray":"SelectCurrentArray","SelectCurrentRegion":"SelectCurrentRegion","SelectEdgeCellWithDataAbove":"SelectEdgeCellWithDataAbove","SelectEdgeCellWithDataBelow":"SelectEdgeCellWithDataBelow","SelectEdgeCellWithDataLeft":"SelectEdgeCellWithDataLeft","SelectEdgeCellWithDataRight":"SelectEdgeCellWithDataRight","SelectEntireTableColumn":"SelectEntireTableColumn","SelectFirstCellInRow":"SelectFirstCellInRow","SelectFirstCellInView":"SelectFirstCellInView","SelectFirstCellInWorksheet":"SelectFirstCellInWorksheet","SelectFirstScrollableCellInRow":"SelectFirstScrollableCellInRow","SelectFirstScrollableCellInWorksheet":"SelectFirstScrollableCellInWorksheet","SelectLastCellInView":"SelectLastCellInView","SelectLastUsedCell":"SelectLastUsedCell","SelectLastUsedCellInRow":"SelectLastUsedCellInRow","SelectRows":"SelectRows","SelectTableColumnData":"SelectTableColumnData","SelectTableRow":"SelectTableRow","SelectVisibleCellsOnly":"SelectVisibleCellsOnly","ShiftEnterKeyNavigation":"ShiftEnterKeyNavigation","ShowCellDropDown":"ShowCellDropDown","ShowCustomSortDialog":"ShowCustomSortDialog","ShowFormatCellsDialog":"ShowFormatCellsDialog","SnapColumnScrollRegionSplit":"SnapColumnScrollRegionSplit","SnapRowScrollRegionSplit":"SnapRowScrollRegionSplit","SnapScrollRegionSplits":"SnapScrollRegionSplits","SortAscending":"SortAscending","SortByCellColor":"SortByCellColor","SortByCellFontColor":"SortByCellFontColor","SortByCellIcon":"SortByCellIcon","SortDescending":"SortDescending","SwitchToAddToSelectionMode":"SwitchToAddToSelectionMode","SwitchToExtendSelectionMode":"SwitchToExtendSelectionMode","SwitchToNormalSelectionMode":"SwitchToNormalSelectionMode","ToggleBold":"ToggleBold","ToggleCellEditMode":"ToggleCellEditMode","ToggleDoubleUnderline":"ToggleDoubleUnderline","ToggleFilter":"ToggleFilter","ToggleFreezePanes":"ToggleFreezePanes","ToggleItalic":"ToggleItalic","ToggleShowFormulasInCells":"ToggleShowFormulasInCells","ToggleSplitPanes":"ToggleSplitPanes","ToggleStrikeThrough":"ToggleStrikeThrough","ToggleSubscript":"ToggleSubscript","ToggleSuperscript":"ToggleSuperscript","ToggleTableTotalRow":"ToggleTableTotalRow","ToggleUnderline":"ToggleUnderline","ToggleWrapText":"ToggleWrapText","Undo":"Undo","UnhideColumns":"UnhideColumns","UnhideRows":"UnhideRows","UnmergeCells":"UnmergeCells","UnselectWorksheets":"UnselectWorksheets","ZoomIn":"ZoomIn","ZoomOut":"ZoomOut","ZoomTo100":"ZoomTo100","ZoomToSelection":"ZoomToSelection"}}],"SpreadsheetCellEditMode":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetCellEditMode","k":"enum","s":"enums","m":{"ArrowKeysNavigateBetweenCells":"ArrowKeysNavigateBetweenCells","ArrowKeysNavigateInCell":"ArrowKeysNavigateInCell","NotInEditMode":"NotInEditMode"}}],"SpreadsheetCellRangeBorders":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetCellRangeBorders","k":"enum","s":"enums","m":{"AllBorder":"AllBorder","BottomBorder":"BottomBorder","DiagonalDown":"DiagonalDown","DiagonalUp":"DiagonalUp","InsideBorder":"InsideBorder","InsideHorizontal":"InsideHorizontal","InsideVertical":"InsideVertical","LeftBorder":"LeftBorder","OutsideBorder":"OutsideBorder","RightBorder":"RightBorder","TopBorder":"TopBorder"}}],"SpreadsheetCellSelectionMode":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetCellSelectionMode","k":"enum","s":"enums","m":{"AddToSelection":"AddToSelection","ExtendSelection":"ExtendSelection","Normal":"Normal"}}],"SpreadsheetContextMenuArea":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetContextMenuArea","k":"enum","s":"enums","m":{"Cell":"Cell","Column":"Column","FormulaBarEditor":"FormulaBarEditor","InPlaceEditor":"InPlaceEditor","Row":"Row","SelectAllButton":"SelectAllButton","Tab":"Tab","TableCell":"TableCell"}}],"SpreadsheetEditModeValidationErrorAction":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetEditModeValidationErrorAction","k":"enum","s":"enums","m":{"AcceptChange":"AcceptChange","RevertChange":"RevertChange","ShowPrompt":"ShowPrompt","StayInEditMode":"StayInEditMode"}}],"SpreadsheetEnterKeyNavigationDirection":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetEnterKeyNavigationDirection","k":"enum","s":"enums","m":{"Down":"Down","Left":"Left","Right":"Right","Up":"Up"}}],"SpreadsheetFilterDialogOption":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetFilterDialogOption","k":"enum","s":"enums","m":{"BeginsWith":"BeginsWith","Between":"Between","Contains":"Contains","Custom":"Custom","DoesNotBeginWith":"DoesNotBeginWith","DoesNotContain":"DoesNotContain","DoesNotEndWith":"DoesNotEndWith","EndsWith":"EndsWith","Equals":"Equals","GreaterThan":"GreaterThan","GreaterThanOrEqual":"GreaterThanOrEqual","LessThan":"LessThan","LessThanOrEqual":"LessThanOrEqual","NotEqual":"NotEqual"}}],"SpreadsheetResourceId":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetResourceId","k":"enum","s":"enums","m":{"AddSheetButtonDisabledForeground":"AddSheetButtonDisabledForeground","AddSheetButtonForeground":"AddSheetButtonForeground","AddSheetButtonHotTrackForeground":"AddSheetButtonHotTrackForeground","AutomaticGridline":"AutomaticGridline","CellSelectionDragBorder":"CellSelectionDragBorder","CellSelectionDragBorderInHeader":"CellSelectionDragBorderInHeader","CellSelectionFill":"CellSelectionFill","CellSelectionHandleBorder":"CellSelectionHandleBorder","CellSelectionHandleFill":"CellSelectionHandleFill","CellSelectionInnerBorder":"CellSelectionInnerBorder","CellSelectionOuterBorder":"CellSelectionOuterBorder","ColumnHeaderBackground":"ColumnHeaderBackground","ColumnHeaderBorder":"ColumnHeaderBorder","ColumnHeaderForeground":"ColumnHeaderForeground","ColumnHeaderHotTrackBackground":"ColumnHeaderHotTrackBackground","ColumnHeaderHotTrackBorder":"ColumnHeaderHotTrackBorder","ColumnHeaderHotTrackForeground":"ColumnHeaderHotTrackForeground","ColumnHeaderHotTrackSelectedForeground":"ColumnHeaderHotTrackSelectedForeground","ColumnHeaderSelectedBackground":"ColumnHeaderSelectedBackground","ColumnHeaderSelectedBorder":"ColumnHeaderSelectedBorder","ColumnHeaderSelectedForeground":"ColumnHeaderSelectedForeground","ColumnHeaderWithSelectedCellsBackground":"ColumnHeaderWithSelectedCellsBackground","ColumnHeaderWithSelectedCellsBorder":"ColumnHeaderWithSelectedCellsBorder","ColumnHeaderWithSelectedCellsForeground":"ColumnHeaderWithSelectedCellsForeground","DropDownButtonBackground":"DropDownButtonBackground","DropDownButtonBorder":"DropDownButtonBorder","DropDownButtonForeground":"DropDownButtonForeground","DropDownButtonOpenBackground":"DropDownButtonOpenBackground","DropDownButtonOpenBorder":"DropDownButtonOpenBorder","DropDownButtonOpenForeground":"DropDownButtonOpenForeground","InputMessageBackground":"InputMessageBackground","InputMessageBorder":"InputMessageBorder","InputMessageForeground":"InputMessageForeground","InvalidDataBorder":"InvalidDataBorder","MultiSelectActiveCellBorder":"MultiSelectActiveCellBorder","ResizeColumnLine":"ResizeColumnLine","ResizeRowLine":"ResizeRowLine","RowHeaderBackground":"RowHeaderBackground","RowHeaderBorder":"RowHeaderBorder","RowHeaderForeground":"RowHeaderForeground","RowHeaderHotTrackBackground":"RowHeaderHotTrackBackground","RowHeaderHotTrackBorder":"RowHeaderHotTrackBorder","RowHeaderHotTrackForeground":"RowHeaderHotTrackForeground","RowHeaderHotTrackSelectedForeground":"RowHeaderHotTrackSelectedForeground","RowHeaderSelectedBackground":"RowHeaderSelectedBackground","RowHeaderSelectedBorder":"RowHeaderSelectedBorder","RowHeaderSelectedForeground":"RowHeaderSelectedForeground","RowHeaderWithSelectedCellsBackground":"RowHeaderWithSelectedCellsBackground","RowHeaderWithSelectedCellsBorder":"RowHeaderWithSelectedCellsBorder","RowHeaderWithSelectedCellsForeground":"RowHeaderWithSelectedCellsForeground","SelectAllBackground":"SelectAllBackground","SelectAllTriangleFill":"SelectAllTriangleFill","SelectAllTriangleHotTrackFill":"SelectAllTriangleHotTrackFill","SelectAllTriangleSelectedFill":"SelectAllTriangleSelectedFill","SelectedTabHighlight":"SelectedTabHighlight","SheetPaneSplitterBackground":"SheetPaneSplitterBackground","SheetPaneSplitterPreview":"SheetPaneSplitterPreview","TabAreaBackground":"TabAreaBackground","TabAreaBorder":"TabAreaBorder","TabAreaSplitterForeground":"TabAreaSplitterForeground","TabItemActiveBackground":"TabItemActiveBackground","TabItemActiveForeground":"TabItemActiveForeground","TabItemBackground":"TabItemBackground","TabItemForeground":"TabItemForeground","TabItemHotTrackBackground":"TabItemHotTrackBackground","TabItemHotTrackForeground":"TabItemHotTrackForeground","TabItemSelectedBackground":"TabItemSelectedBackground","TabItemSelectedForeground":"TabItemSelectedForeground","TabScrollButtonDisabledForeground":"TabScrollButtonDisabledForeground","TabScrollButtonForeground":"TabScrollButtonForeground","TabScrollButtonHotTrackForeground":"TabScrollButtonHotTrackForeground","UnselectCellsBorder":"UnselectCellsBorder","UnselectCellsFill":"UnselectCellsFill"}}],"SpreadsheetUserPromptTrigger":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/SpreadsheetUserPromptTrigger","k":"enum","s":"enums","m":{"ChangePartOfDataTable":"ChangePartOfDataTable","ClearCellContentError":"ClearCellContentError","ConflictingWorksheetName":"ConflictingWorksheetName","CopyError":"CopyError","CopyInvalidRanges":"CopyInvalidRanges","DeletingLockedColumnCells":"DeletingLockedColumnCells","DeletingLockedRowCells":"DeletingLockedRowCells","DeletingWorksheets":"DeletingWorksheets","EditError":"EditError","FormulaParseError":"FormulaParseError","General":"General","IntersectsMergedCells":"IntersectsMergedCells","InvalidArrayFormulaLockedState":"InvalidArrayFormulaLockedState","InvalidCommandForMixedCellSelections":"InvalidCommandForMixedCellSelections","InvalidCommandForMultipleSelections":"InvalidCommandForMultipleSelections","InvalidCommandForOverlappingSelections":"InvalidCommandForOverlappingSelections","InvalidHyperlinkAddress":"InvalidHyperlinkAddress","InvalidHyperlinkReference":"InvalidHyperlinkReference","InvalidNameBoxValue":"InvalidNameBoxValue","InvalidProtectedWorksheetChange":"InvalidProtectedWorksheetChange","InvalidSortOrFilterRange":"InvalidSortOrFilterRange","InvalidWorksheetName":"InvalidWorksheetName","LargeCopyOperation":"LargeCopyOperation","LargePasteOperation":"LargePasteOperation","NoSingleAllowedEditRange":"NoSingleAllowedEditRange","PasteCellRangeSize":"PasteCellRangeSize","PasteError":"PasteError","PasteIntersectsMergedCells":"PasteIntersectsMergedCells","PasteInvalidSheetCount":"PasteInvalidSheetCount","PasteInvalidSourceRanges":"PasteInvalidSourceRanges","PasteMultipleSheetsTables":"PasteMultipleSheetsTables","PasteMultipleSourceAndTargetRanges":"PasteMultipleSourceAndTargetRanges","TableChangeWithMultipleSelectedSheets":"TableChangeWithMultipleSelectedSheets"}}],"UndoExecuteReason":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/UndoExecuteReason","k":"enum","s":"enums","m":{"Redo":"Redo","Rollback":"Rollback","Undo":"Undo"}}],"UndoHistoryItemType":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/UndoHistoryItemType","k":"enum","s":"enums","m":{"Redo":"Redo","Undo":"Undo"}}],"UndoMergeAction":[{"p":"igniteui-webcomponents-spreadsheet","u":"/api/webcomponents/igniteui-webcomponents-spreadsheet/7.0.0/enums/UndoMergeAction","k":"enum","s":"enums","m":{"Merged":"Merged","MergedRemoveUnit":"MergedRemoveUnit","NotMerged":"NotMerged"}}]}} \ No newline at end of file diff --git a/src/lib/platform-context.ts b/src/lib/platform-context.ts index c306c89658..92daf214d8 100644 --- a/src/lib/platform-context.ts +++ b/src/lib/platform-context.ts @@ -160,6 +160,37 @@ const PLATFORMS: Record = { let _ctx: PlatformContext | null = null; let _env: Record | null = null; + +function getBuildMode(): string { + return process.env.DOCS_ENV ?? process.env.NODE_ENV ?? 'development'; +} + +function getApiDocsBaseUrl(): string { + const mode = getBuildMode(); + const value = process.env.API_DOCS_BASE_URL + ?? (mode === 'production' + ? 'https://www.infragistics.com/api' + : 'https://staging.infragistics.com/api'); + + const trimmed = value.replace(/\/+$/, ''); + return trimmed.endsWith('/api') ? trimmed : `${trimmed}/api`; +} + +function getApiLinkIndexName(): string { + return process.env.API_LINK_INDEX_VERSION + ?? (getBuildMode() === 'production' ? 'prod-latest' : 'staging-latest'); +} + +function loadApiLinkIndex(platformSlug: string): PlatformContext['apiLinkIndex'] { + try { + const file = path.resolve(process.cwd(), 'src', 'data', 'api-link-index', platformSlug, `${getApiLinkIndexName()}.json`); + if (!fs.existsSync(file)) return undefined; + return JSON.parse(fs.readFileSync(file, 'utf-8')); + } catch { + return undefined; + } +} + /** * Returns the platform context for the current build. * Resolution order: PLATFORM env var → .platform.json → 'React' default. @@ -186,17 +217,20 @@ export function getPlatformContext(): PlatformContext { } catch { /* use default */ } } - const mode = process.env.DOCS_ENV ?? process.env.NODE_ENV ?? 'development'; - const apiHost = mode === 'production' - ? 'https://www.infragistics.com' - : 'https://staging.infragistics.com'; + const apiDocsBaseUrl = getApiDocsBaseUrl(); + const base = PLATFORMS[name]; _ctx = { ...base, + apiLinkIndex: loadApiLinkIndex(base.lower), apiPackages: Object.fromEntries( Object.entries(base.apiPackages).map(([key, pkg]) => [ key, - { ...pkg, docRoot: pkg.docRoot.replace('https://staging.infragistics.com', apiHost) }, + { + ...pkg, + docRoot: pkg.docRoot + .replace('https://staging.infragistics.com/api', apiDocsBaseUrl), + }, ]) ), }; @@ -216,7 +250,7 @@ export function getEnvVars(): Record { const { name } = getPlatformContext(); const lang = process.env.LANG_CODE ?? 'en'; - const mode = process.env.DOCS_ENV ?? process.env.NODE_ENV ?? 'development'; + const mode = getBuildMode(); // Primary: generated/environment.json (written by generate.mjs when present) try {